/* ==========================================================================
   1. ELEMENTOS GLOBALES Y BARRA DE NAVEGACIÓN (BREADCRUMBS)
   ========================================================================== */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(22, 27, 34, 0.5);
    border: 1px solid rgba(214, 175, 87, 0.15);
    border-radius: 8px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.breadcrumbs a {
    color: #8b949e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #d4af37;
}

.breadcrumbs a i.fa-house {
    font-size: 13px;
}

.breadcrumbs .separador {
    font-size: 11px;
    color: #d4af37;
    opacity: 0.7;
}

.breadcrumbs .active {
    color: #f3e5ab;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   2. PÁGINA DETALLE DE PRODUCTO (GALERÍA A LA IZQUIERDA, TEXTO A LA DERECHA)
   ========================================================================== */
.contenedor-producto {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
    width: 100%;
}

.galeria-incuteck {
    width: 600px;
    min-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.descripcion-incuteck {
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    color: #f0f6fc;
}

.descripcion-incuteck h2 {
    font-size: 32px;
    color: #d4af37;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.descripcion-incuteck .sku {
    font-size: 13px;
    color: #8b949e;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.descripcion-incuteck .precio {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.descripcion-incuteck .precio small {
    font-size: 16px;
    color: #d4af37;
}

.descripcion-incuteck p {
    font-size: 16px;
    line-height: 1.6;
    color: #c9d1d9;
    margin-bottom: 25px;
}

.caracteristicas-clave {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.caracteristicas-clave li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f0f6fc;
}

.caracteristicas-clave i {
    color: #d4af37;
    width: 20px;
    font-size: 16px;
    text-align: center;
}

.btn-cotizar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e7e34 0%, #25d366 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cotizar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   3. INDEX / LISTADO DE EQUIPOS EN BLOQUES VERTICALES (UNO DEBAJO DE OTRO)
   ========================================================================== */
.products-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 25px;
}

.product-row-card {
    display: block;
    width: 100%;
    background: linear-gradient(145deg, #161b22 0%, #0d1117 100%);
    border: 1px solid rgba(214, 175, 87, 0.1);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-row-card:hover {
    transform: translateY(-2px);
    border-color: rgba(214, 175, 87, 0.4);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.row-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.row-icon {
    font-size: 28px;
    color: #d4af37;
    background: rgba(214, 175, 87, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.row-info {
    flex: 1;
}

.row-info h3 {
    margin: 0 0 6px 0;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.row-info p {
    margin: 0;
    font-size: 14px;
    color: #8b949e;
    line-height: 1.5;
}

.row-price-zone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    min-width: 150px;
    flex-shrink: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 20px;
}

.price-label {
    font-size: 11px;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    margin: 2px 0 8px 0;
}

.view-more {
    font-size: 13px;
    color: #f3e5ab;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

/* ==========================================================================
   4. ESTILOS ARREGLADOS EXCLUSIVOS PARA LA PÁGINA "NOSOTROS"
   ========================================================================== */
.nosotros-hero {
    text-align: center;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
}

/* Contenedores de texto corrido (Historia y Aprendizaje) */
.section-block {
    width: 100%;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.block-background {
    background: rgba(22, 27, 34, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
}

.section-block h2, .card-inner-block h2 {
    color: #d4af37;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.section-center-title {
    color: #fff !important;
    text-align: center;
    font-size: 28px !important;
    margin-top: 20px !important;
    margin-bottom: 35px !important;
    display: block !important;
}

.icon-accent {
    color: #d4af37;
}

.block-text-content p, .card-inner-block p {
    color: #c9d1d9;
    line-height: 1.7;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 16px;
}

.block-text-content p:last-child, .card-inner-block p:last-child {
    margin-bottom: 0;
}

/* Estructura en dos columnas perfectas (Misión/Visión y Filosofía/Propósito) */
.nosotros-grid-dos {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.card-inner-block {
    flex: 1;
    background: linear-gradient(145deg, #161b22 0%, #0d1117 100%);
    border: 1px solid rgba(214, 175, 87, 0.1);
    padding: 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
}

.card-inner-block h3 {
    color: #fff;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

/* Lista de viñetas de propósito */
.highlight-list-title {
    font-weight: 600;
    margin-top: 20px !important;
    color: #f3e5ab !important;
}

.lista-items-check {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.lista-items-check li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #c9d1d9;
    font-size: 15px;
}

.lista-items-check li i {
    color: #d4af37;
    font-size: 14px;
}

/* Cuadrícula de los 7 principios */
.principios-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.tarjeta-individual-principio {
    background: #161b22;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

.icono-contenedor-p {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 15px;
}

.tarjeta-individual-principio h4 {
    margin: 0 0 10px 0;
    font-size: 17px;
    color: #f3e5ab;
    font-weight: 600;
}

.tarjeta-individual-principio p {
    margin: 0;
    font-size: 14px;
    color: #8b949e;
    line-height: 1.6;
}

.span-full-width {
    grid-column: span 2;
    align-items: center;
    text-align: center;
}

/* ==========================================================================
   5. RESPONSIVO INTEGRADO (SOPORTE PARA CELULARES Y TABLETAS)
   ========================================================================== */
@media (max-width: 992px) {
    .contenedor-producto {
        flex-direction: column;
        gap: 30px;
    }

    .galeria-incuteck {
        width: 100%;
        min-width: 100%;
    }
    
    .descripcion-incuteck {
        width: 100%;
    }
    
    .descripcion-incuteck h2 {
        font-size: 26px;
    }
}

@media (max-width: 850px) {
    .nosotros-grid-dos {
        flex-direction: column;
        gap: 20px;
    }
    
    .principios-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .span-full-width {
        grid-column: span 1;
        text-align: left;
        align-items: flex-start;
    }
    
    .section-center-title {
        font-size: 24px !important;
    }
}

@media (max-width: 768px) {
    .row-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .row-price-zone {
        width: 100%;
        align-items: flex-start;
        text-align: left;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 0;
        padding-top: 15px;
    }
}