/*
Theme Name: Sellador Para Rocochos
Theme URI: Seoconsultingperu.com
Author: Seo Consulting 
Author URI: 
Description: Plantilla Básica Seo Consulting

*/
:root {
    --primary-orange: #b90d00;
    --primary-orange-hover: #962e1e;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --bg-dark-badge: rgba(30, 15, 10, 0.85);
	--wa-color: #25D366;
    --wa-color-hover: #20ba5a;
    --shadow-color: rgba(37, 211, 102, 0.4);
}

/* --- CONFIGURACIÓN DE ANIMACIÓN --- */
.scroll-animate {
    opacity: 0;
    will-change: transform, opacity;
    /* Usamos var(--delay, 0s) para que si no pones delay, por defecto sea 0 segundos */
    transition: transform 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
                opacity 1.2s ease;
    transition-delay: var(--delay, 0s); 
}

.scroll-animate.fade-up {
    transform: translateY(30px);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- OPTIMIZACIÓN PARA MÓVILES --- */
@media (max-width: 768px) {
    .scroll-animate {
        /* En pantallas chicas quitamos el delay para que la navegación se sienta instantánea */
        transition-delay: 0s !important; 
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body, html {
    height: 100%;
    color: var(--text-white);
    overflow-x: hidden;
}

/* Contenedor unificado y responsive solicitado */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navegación */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-top: 15px;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.548) 25%, rgba(0, 0, 0, 0.457) 80%, rgba(0, 0, 0, 0) 92%);
    padding-bottom: 20px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icono de Ladrillo Simulado con CSS */
.logo-icon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 28px;
}
.logo-icon div {
    background-color: var(--primary-orange);
    height: 10px;
}
.logo-icon div:nth-child(1) { grid-column: span 2; }

.logo-text {
    line-height: 1;
}
.logo-text h1 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.logo-text p {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

/* --- NOTA DE COBERTURA DE ENVÍO --- */
.product-shipping-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #444444;
    padding-top: 5px;
}

.shipping-icon {
    width: 20px;
    height: 20px;
    color: #A73E19; /* Acento terracota */
}

/* --- REAPLICACIÓN MOSAICO IZQUIERDO --- */
.product-media-side .project-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columnas para encajar al costado del texto */
    gap: 16px;
}
.btn-cotizar {
    background-color: var(--primary-orange);
    color: #000;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-cotizar:hover {
    background-color: var(--primary-orange-hover);
}

/* Hero Section Principal */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    /* Imagen de fondo representativa de arquitectura moderna con degradado oscuro para legibilidad */
    background-image: linear-gradient(to right, rgb(0 0 0 / 66%) 40%, rgb(0 0 0 / 4%) 100%), url(img/banner1.webp);
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    padding-top: 100px;
    animation-name: animTexto;
	animation-duration: 20s;
	-webkit-animation-fill-mode: forwards;
}
@keyframes animTexto {
  from {
    background-size: 100% auto;
  }
  to {
     background-size: 130% auto;
  }
}

.hero-content {
    max-width: 650px;
    padding-bottom: 40px;
}

.hero-subtitle {
    color: #ffffffca;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    color: #fff;
    background: var(--primary-orange);
    padding: 5px;
}

.hero-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-productos {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-orange);
    color: var(--text-white);
    padding: 14px 28px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-productos:hover {
    background-color: var(--primary-orange-hover);
}




.wa-button-container {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 9999;
display: flex;
align-items: center;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* El Botón de WhatsApp */
.wa-btn {
width: 60px;
height: 60px;
background-color: var(--wa-color);
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
font-size: 32px;
transition: transform 0.3s ease, background-color 0.3s ease;
cursor: pointer;

/* Despliegue de sombra inicial y animación de pulso de sombra */
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
animation: wa-pulse 2s infinite;
}

.wa-btn:hover {
background-color: var(--wa-color-hover);
transform: scale(1.08);
}

/* Animación de la Sombra (Efecto Pulso) */
@keyframes wa-pulse {
0% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 0 var(--shadow-color);
}
70% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18), 0 0 0 15px rgba(37, 211, 102, 0);
}
100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0);
}
}

/* Texto de Llamada a la Acción (Tooltip) */
.wa-tooltip {
background-color: #ffffff;
color: #333333;
padding: 10px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
margin-right: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
white-space: nowrap;
opacity: 0;
transform: translateX(20px);
transition: opacity 0.4s ease, transform 0.4s ease;
pointer-events: none; /* Evita interferir con clics */
position: relative;
	display: none;
}

/* Flecha del Tooltip */
.wa-tooltip::after {
content: '';
position: absolute;
right: -6px;
top: 50%;
transform: translateY(-50%) rotate(45deg);
width: 12px;
height: 12px;
background-color: #ffffff;
}

/* Clase activa para mostrar el texto */
.wa-tooltip.show {
opacity: 1;
transform: translateX(0);
	display: block;
}


/* Badge Lateral Derecho (Asesoría) */
.badge-asesoria {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-orange);
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    z-index: 100;
}

.badge-asesoria span {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(180deg);
}

.badge-asesoria svg {
    width: 18px;
    height: 18px;
    fill: var(--text-white);
}


/* 1. Barra de Beneficios Superior */
.features-bar {
    background-color: var(--primary-orange); /* Color terracota corporativo */
    position: relative;
    z-index: 5;
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ffffff;
}

.feature-icon {
    font-size: 28px;
    opacity: 0.9;
    margin-top: 2px;
}

.feature-item h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

/* 2. Estructura de la Sección de Productos */
.products-section {
    background-color: #fcfbfa; /* Fondo claro crema roto */
    padding: 100px 0;
    color: #222222;
}

.grid-products-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

/* Columna Izquierda (Textos) */
.products-text-side {
    position: relative;
}

.section-tag {
    color: #b33925;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.products-text-side h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.products-text-side p {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.link-all-products {
    color: #b33925;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.link-all-products:hover {
    gap: 12px;
}

/* Imagen de Arquitectura Izquierda y Patrón de Puntos */
.decor-image-container {
    margin-top: 45px;
    position: relative;
    width: 100%;
}

.decor-image {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#b33925 20%, transparent 20%);
    background-size: 10px 10px;
    z-index: 1;
    opacity: 0.4;
}

/* Columna Derecha (Lista de Tarjetas) */
.products-cards-side {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.card-img-holder {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon-badge {
    position: absolute;
    bottom: 0;
    left: 20px;
    background-color: #b33925;
    color: #ffffff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.card-info {
    padding: 25px 20px;
}

.card-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card-info p {
    font-size: 12px;
    color: #666666;
    margin-bottom: 20px;
}

.card-link {
    color: #b33925;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.about-us-section {
    background-color: var(--primary-orange); /* Fondo terracota que domina el lado izquierdo */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Diseño partido: el contenedor limita el contenido pero el diseño visual se expande */
.grid-about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Columna Izquierda */
.section-tag-light {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 500px;
}

.about-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 520px;
}

/* Grid Interno de Beneficios */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-icon {
    font-size: 24px;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 3px;
}

.about-feature-item h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.about-feature-item p {
    font-size: 11.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
}

/* Columna Derecha (Imágenes y Efecto de Rotación) */
.about-image-side {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen grande de fondo */
.about-bg-image {
    position: absolute;
    top: -80px;
    right: -200px;
    width: calc(100% + 200px);
    height: calc(100% + 160px);
    object-fit: cover;
    z-index: 1;
}

/* Contenedor de la tarjeta rotada */
.rotated-card-container {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    padding: 12px;
    padding-bottom: 24px; /* Simula formato polaroid/borde inferior ancho */
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotate(-4deg); /* Rotación exacta solicitada */
    transition: transform 0.3s ease;
    width: 85%;
    max-width: 340px;
}

.rotated-card-container:hover {
    transform: rotate(-2deg) scale(1.02);
}

.rotated-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
/* 1. Sección de Galería y Testimonios */
.projects-gallery-section {
    background-color: #fcfbfa; /* Fondo crema claro uniforme */
    padding: 80px 0 60px 0;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.gallery-title-area .section-tag {
    color: #b33925; [cite: 6]
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.gallery-title-area h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #b33925;
    color: #b33925; 
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;

}

.btn-secondary-outline:hover {
    background-color: #b33925; 
    color: #ffffff;
}

/* Grid de la galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card {
    background-color: #ffffff;
    border-radius: 16px; /* Bordes notablemente redondeados según imagen */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: 280px;
}

/* Tarjeta de Testimonio */
.testimonial-card {
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.quote-icon {
    font-size: 32px;
    color: #b33925; [cite: 6]
    line-height: 1;
}

.testimonial-text {
    font-size: 13.5px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 15px 0;
    font-weight: 500;
}

.rating-stars {
    color: #f39c12; /* Color dorado para las estrellas */
    font-size: 14px;
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 12px;
    color: #888888;
    font-weight: 600;
}

/* Tarjetas de imágenes */
.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.img-card:hover img {
    transform: scale(1.05);
}

/* 2. Barra de Contacto Rápido (Footer) */
.contact-info-bar {
    background-color: #f5f2ed; /* Fondo ligeramente más oscuro que la sección superior */
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.grid-contact-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Separadores verticales internos */
.contact-bar-item:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 20px;
}

.contact-bar-icon-box {
    background-color: var(--primary-orange);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-bar-text span {
    display: block;
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-bar-text a, 
.contact-bar-text p {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.contact-bar-text a:hover {
    color: #b33925; 
}


/* --- ESTILOS SECCIÓN SELLADOR PROTECTOR --- */

.product-feature-section {
    background-color: #ffffff;
    padding: 80px 0 0 0; /* Dejamos el espacio inferior para la barra terracota */
    color: #222222;
}

/* Encabezado */
.product-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
    display: block;
}

.product-section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-orange); /* Rojo terracota característico */
    letter-spacing: -0.5px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 15px;
    color: #666666;
    font-weight: 500;
}

/* Grid de Distribución de 3 columnas (Características - Foto - Características) */
.grid-product-features {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* Alineaciones simétricas según el lado */
.left-column .product-feature-card {
    text-align: right;
    flex-direction: row-reverse;
}

.right-column .product-feature-card {
    text-align: left;
    flex-direction: row;
}

.product-feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Círculos de los Iconos */
.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-orange);
    flex-shrink: 0;
    background-color: #fff;
}

.feature-card-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #b33925;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.feature-card-text p {
    font-size: 12.5px;
    color: #555555;
    line-height: 1.5;
}

/* Columna de la Imagen */
.product-image-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img-shadow-box {
    position: relative;
    width: 100%;
    max-width: 280px;
}

.main-product-img {
    width: 100%;
    height: auto;
    object-fit: contain;

}

/* --- BARRA DE BADGES INFERIOR (TERRACOTA) --- */
.product-badges-bar {
    background-color: var(--primary-orange);
    color: #ffffff;
    padding: 35px 0;

    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.grid-product-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.badge-pill-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.badge-pill-item i {
    font-size: 26px;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 2px;
}

.badge-pill-item h4 {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.badge-pill-item p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}
.img-nosotros{background: url(img/slider.jpg); background-size: cover; height: 250px; width: 100%; padding-top: 130px; text-align: center; color: #fff;}
.img-nosotros a{color: #fff; padding: 0px 10px; text-decoration: none;}
.img-nosotros h1{padding-bottom: 10px;}
/* --- ESTILOS SECCIÓN PASO A PASO --- */

.steps-section {
    background-color: #fcfbfa; /* Fondo crema muy suave consistente con la web */
    padding: 90px 0;
    color: #222222;
}

.steps-header {
    text-align: center;
    margin-bottom: 55px;
}

.steps-header .section-tag {
    color: #b33925; /* Terracota corporativo */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.steps-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.steps-subtitle {
    font-size: 14px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Distribución en Grid de los 3 Pasos */
.grid-steps-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tarjetas de los Pasos individuales */
.step-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(179, 57, 37, 0.08); /* Sombra terracota muy sutil */
}

/* Contenedor de Imagen y Etiqueta Flotante */
.step-image-box {
    position: relative;
    height: 440px;
    width: 100%;
    overflow: hidden;
}

.step-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #b33925;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Contenido de texto inferior */
.step-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-text-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-check-icon {
    font-size: 18px;
    color: #27ae60; /* Verde de validación limpio y estético */
    margin-top: 1px;
    flex-shrink: 0;
}

.step-text-row p {
    font-size: 12.5px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* Variación visual ligera para el segundo párrafo informativo del paso 3 */
.extra-tip {
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    padding-top: 12px;
}

.dark-cta-section {
    background-color: #111111; /* Fondo negro puro/oscuro elegante */
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decoración geométrica sutil de fondo usando los colores terracota de la marca */
.dark-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(179, 57, 37, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* Caja contenedora interna para alinear texto y botón */
.cta-inner-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* Área de Texto */
.cta-content-text {
    max-width: 650px;
}

.cta-content-text .cta-tag {
    color: #b33925; /* Terracota corporativo */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.cta-content-text h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-content-text p {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
    margin: 0;
}

/* Área del Botón */
.cta-action-area {
    flex-shrink: 0;margin-top: 15px;
}

/* Botón Grande Especial estilo Premium */
.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: #25d366; /* Verde oficial de WhatsApp */
    color: #ffffff;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    width: 100%;
}

.btn-whatsapp-large i {
    font-size: 42px; /* Icono muy grande y llamativo */
    line-height: 1;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text-wrapper span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 500;
}

.btn-text-wrapper strong {
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
    white-space: nowrap;
}

/* Efectos al pasar el cursor (Hover) */
.btn-whatsapp-large:hover {
    transform: translateY(-4px);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.46);
}






.product-detail-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #222222;
    font-family: 'Montserrat', sans-serif;
}

/* Distribución del Grid Principal */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Columna de imágenes ligeramente más ancha */
    gap: 60px;
    align-items: start;
}

/* --- BLOQUE DE IMÁGENES / GALERÍA --- */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    background-color: #f7f7f7;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Efecto visual sutil al pasar el mouse por la imagen principal */
.main-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Grid de Miniaturas inferiores */
.thumbnail-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumb-box {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-box:hover {
    opacity: 1;
}

.thumb-box.active {
    border-color: #b33925; /* Color terracota marca la miniatura activa */
    opacity: 1;
}

/* --- PANEL DE INFORMACIÓN DEL PRODUCTO --- */
.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-category-tag {
    color: #b33925;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}

.product-info-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

/* Pequeñas etiquetas debajo del título */
.product-status-bar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.status-badge {
    background-color: #f7f4f2;
    color: #555555;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge i {
    color: #b33925;
    font-size: 14px;
}

/* Párrafo Descriptivo */
.product-description-text p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* --- CUADRÍCULA DE ESPECIFICACIONES TÉCNICAS --- */
.technical-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: #faf9f7;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f0ede9;
}

.spec-item-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* Hace que la especificación de Tonalidades tome las dos columnas por su longitud */
.full-width-spec {
    grid-column: span 2;
    border-top: 1px dashed #e4dfda;
    border-bottom: 1px dashed #e4dfda;
    padding: 15px 0;
}

.spec-icon {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b33925;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.02);
    flex-shrink: 0;
    border: 1px solid #eeeae6;
}

.spec-details h3 {
    font-size: 12.5px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0 0 4px 0;
}

.spec-details p {
    font-size: 13px;
    color: #555555;
    line-height: 1.4;
    margin: 0;
}

/* Área del botón */
.product-action-box {
    margin-top: 10px;
}

.btn-product-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary-orange); /* Color Terracota corporativo */
    color: #ffffff;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 6px 20px rgba(179, 57, 37, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-product-quote i {
    font-size: 20px;
}

.btn-product-quote:hover {
    background-color: #962e1d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(179, 57, 37, 0.35);
}
/* --- INTEGRACIÓN DE OWL CAROUSEL EN LA GALERÍA --- */

.thumbnail-slider {
    position: relative;
    padding: 0 30px; /* Espacio lateral para que las flechas no pisen las imágenes */
}

.thumb-item {
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover, .thumb-item.active {
    opacity: 1;
}

.thumb-item.active {
    border-color: #b33925; /* Color terracota identificador */
}

/* Personalización Estética de las Flechas de Owl Carousel */
.thumbnail-slider .owl-nav button.owl-prev,
.thumbnail-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff !important;
    color: #b33925 !important;
    width: 26px;
    height: 26px;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    transition: all 0.2s ease;
}

.thumbnail-slider .owl-nav button.owl-prev {
    left: 0;
}

.thumbnail-slider .owl-nav button.owl-next {
    right: 0;
}

.thumbnail-slider .owl-nav button:hover {
    background: #b33925 !important;
    color: #ffffff !important;
}

/* Clases base heredadas del contenedor anterior */
.product-detail-section { background-color: #ffffff; padding: 80px 0; color: #222222; font-family: 'Montserrat', sans-serif;}
.product-detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.product-gallery { display: flex; flex-direction: column; gap: 20px; }
.main-image-wrapper { width: 100%; height: 480px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); }
.main-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.product-info-panel { display: flex; flex-direction: column; gap: 30px; }
.product-category-tag { color: #b33925; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 6px; }
.product-info-header h1 { font-size: 32px; font-weight: 800; color: #1a1a1a; line-height: 1.2; margin: 0 0 15px 0; }
.product-status-bar { display: flex; gap: 15px; flex-wrap: wrap; }
.status-badge { background-color: #f7f4f2; color: #555555; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; }
.status-badge i { color: #b33925; font-size: 14px; }
.product-description-text p { font-size: 14.5px; color: #555555; line-height: 1.6; margin: 0; }
.technical-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; background-color: #faf9f7; padding: 25px; border-radius: 12px; border: 1px solid #f0ede9; }
.spec-item-card { display: flex; gap: 15px; align-items: flex-start; }
.full-width-spec { grid-column: span 2; border-top: 1px dashed #e4dfda; border-bottom: 1px dashed #e4dfda; padding: 15px 0; }
.spec-icon { width: 38px; height: 38px; background-color: #ffffff; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #b33925; font-size: 18px; box-shadow: 0 3px 10px rgba(0,0,0,0.02); flex-shrink: 0; border: 1px solid #eeeae6; }
.spec-details h3 { font-size: 12.5px; font-weight: 700; color: #1a1a1a; text-transform: uppercase; letter-spacing: 0.3px; margin: 0 0 4px 0; }
.spec-details p { font-size: 13px; color: #555555; line-height: 1.4; margin: 0; }

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Evita que los cálculos dinámicos de Owl Carousel estiren este contenedor */
    width: 100%;
    max-width: 100%;
    overflow: hidden; 
}

.main-image-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    background-color: #f7f7f7;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Control estricto sobre el carrusel de miniaturas */
.thumbnail-slider {
    position: relative;
    padding: 0 30px; 
    width: 100%;
    max-width: 100%;
    /* Obliga a Owl Carousel a alinearse correctamente en pantallas táctiles */
    box-sizing: border-box; 
}

/* Fuerza a que TODAS las imágenes dentro de Owl Carousel hereden el ancho del slider */
.thumbnail-slider .owl-stage-outer {
    width: 100%;
    overflow: hidden;
}

.thumb-item {
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Evita que la imagen se estire de forma nativa e ignore el contenedor de Owl */
    max-width: 100%; 
    display: block;
}

.thumb-item:hover, .thumb-item.active {
    opacity: 1;
}

.thumb-item.active {
    border-color: #b33925;
}

/* Flechas de navegación */
.thumbnail-slider .owl-nav button.owl-prev,
.thumbnail-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff !important;
    color: #b33925 !important;
    width: 26px;
    height: 26px;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    z-index: 10;
}

.thumbnail-slider .owl-nav button.owl-prev { left: 0; }
.thumbnail-slider .owl-nav button.owl-next { right: 0; }



/* --- ESTILOS SECCIÓN NOSOTROS --- */

.about-section {
    background-color: #ffffff;
    padding: 90px 0;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
}

/* Grid Superior (Texto vs Panel de Datos) */
.about-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text-content .about-tag {
    color: #b33925; /* Terracota corporativo */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.about-text-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.about-lead {
    font-size: 16px;
    font-weight: 600;
    color: #b33925;
    line-height: 1.6;
}

.about-text-content p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

/* Panel de Estadísticas e Imagen Derecha */
.about-stats-panel {
    position: relative;
    width: 100%;
}

.stats-bg-image {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stats-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

/* Contenedor flotante de las cajas de datos */
.stats-floating-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background-color: #111111; /* Fondo oscuro elegante */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box h3 {
    color: #b33925;
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.stat-box p {
    color: #cccccc;
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
}

.stat-wide-box {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(179, 57, 37, 0.15);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(179, 57, 37, 0.3);
}

.stat-wide-box i {
    color: #b33925;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-wide-box p {
    color: #ffffff;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Grid Inferior: Tarjetas Misión y Visión */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 70px; /* Margen para compensar el panel flotante */
}

.values-card {
    background-color: #faf9f7;
    border: 1px solid #f0ede9;
    padding: 35px 30px;
    border-radius: 14px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(179, 57, 37, 0.05);
    border-color: #e4dfda;
}

.values-icon-box {
    width: 50px;
    height: 50px;
    background-color: #b33925;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(179, 57, 37, 0.2);
}

.values-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.values-text p {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}



.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; /* Altura controlada */
}

/* Menú en Escritorio */
.menu-popup-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navigation-menu {
    display: flex;
    gap: 25px;
}

.navigation-menu a:hover{
    color: #b33925; /* Terracota corporativo */
}

.btn-cotizar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #b90d00;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.btn-cotizar:hover {
    background-color: #962e1d;
}

/* Ocultar botón de hamburguesa por defecto en Desktop */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100; /* Siempre por encima del popup */
}

.hamburger-btn span {
    width: 100%;
    height: 2.5px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- SECCIÓN DE CLIENTES (OWL CAROUSEL) --- */
.clients-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.clients-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2530;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.clients-header p {
    font-size: 1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Items individuales dentro del Carrusel */
.logos-carousel .logo-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px; /* Altura homogénea */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
    margin: 10px 5px; /* Margen para que no se corten las sombras */
}

/* Control de las imágenes transparentes */
.logos-carousel .logo-item img {
    max-width: 85%;
    max-height: 70px;
    width: auto !important; /* Sobrescribe el 100% de Owl Carousel para evitar deformaciones */
    object-fit: contain;

    transition: all 0.3s ease;
}

/* Hover Effects */
.logos-carousel .logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.logos-carousel .logo-item:hover img {
    filter: grayscale(0%) contrast(100%);
    opacity: 1;
}

/* Ajustes para la paginación de Owl Carousel (Puntos inferiores) */
.logos-carousel .owl-dots {
    margin-top: 25px !important;
}
.logos-carousel .owl-theme .owl-dots .owl-dot span {
    background: #cbd5e1 !important;
}
.logos-carousel .owl-theme .owl-dots .owl-dot.active span {
    background: #1a2530 !important;
}


/* --- RESPONSIVE / MÓVIL (MÁXIMO 992PX) --- */
@media (max-width: 992px) {
    .hamburger-btn {
        display: flex; /* Mostrar hamburguesa */
    }

    /* Transformar el contenedor en un POPUP a pantalla completa */
    .menu-popup-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98); /* Fondo blanco sutilmente traslúcido */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        z-index: 1050;
        
        /* Oculto por defecto con animación suave */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    /* Clase activa que inyectará JavaScript para mostrar el popup */
    .menu-popup-wrapper.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navigation-menu {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .navigation-menu a {
        font-size: 22px; /* Enlaces más grandes para fácil click en celulares */
    }

    /* Evitar que el scroll de la web se mueva al abrir el menú */
    body.menu-open {
        overflow: hidden;
    }

    /* --- ANIMACIÓN DE LA HAMBURGUESA A "X" --- */
    .hamburger-btn.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #b33925;
    }
    .hamburger-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #b33925;
    }
}

@media (max-width: 992px) {
    .about-main-grid {
        grid-template-columns: 1fr; /* Una sola columna en tabletas y móviles */
        gap: 40px;
    }

    .about-stats-panel {
        margin-bottom: 30px; /* Añade holgura al panel flotante */
    }

    .about-cards-grid {
        grid-template-columns: 1fr; /* Misión y Visión pasan a apilarse */
        gap: 20px;
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .about-text-content h2 {
        font-size: 28px;
    }

    .stats-bg-image {
        height: 280px; /* Reduce tamaño de imagen en móviles */
    }

    .stats-floating-grid {
        position: static; /* En móviles deja de flotar para evitar encimar texto */
        margin-top: 20px;
        left: 0;
        right: 0;
        padding: 15px;
    }

    .about-cards-grid {
        margin-top: 30px;
    }

    .values-card {
        padding: 25px 20px;
        flex-direction: column; /* Icono arriba del texto en móviles muy chicos */
        gap: 15px;
    }
}
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr; /* Cambia a una columna fluida */
        gap: 40px;
        width: 100%;
    }
    .main-image-wrapper {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .main-image-wrapper {
        height: 260px; /* Altura ideal y controlada para móviles */
    }
    .thumb-item {
        height: 70px; /* Reducción proporcional del tamaño de miniatura */
    }
    .thumbnail-slider {
        padding: 0 25px; /* Menor espacio lateral en móviles */
    }
}
@media (max-width: 992px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .main-image-wrapper { height: 380px; }
}
@media (max-width: 576px) {
    .main-image-wrapper { height: 280px; }
    .thumb-item { height: 75px; }
    .technical-specs-grid { grid-template-columns: 1fr; }
    .full-width-spec { grid-column: span 1; }
}

/* --- ADAPTACIÓN RESPONSIVE (MEDIA QUERIES) --- */

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr; /* Cambia a una sola columna */
        gap: 40px;
    }

    .main-image-wrapper {
        height: 38px;
        height: 380px; /* Reducción de altura para pantallas medianas */
    }
}

@media (max-width: 576px) {
    .product-detail-section {
        padding: 50px 0;
    }

    .product-info-header h1 {
        font-size: 26px;
    }

    .main-image-wrapper {
        height: 280px; /* Ajuste cómodo para dispositivos móviles */
    }

    .thumbnail-images-grid {
        gap: 10px;
    }

    .thumb-box {
        height: 75px;
    }

    .technical-specs-grid {
        grid-template-columns: 1fr; /* Especificaciones una debajo de otra */
        padding: 20px;
    }

    .full-width-spec {
        grid-column: span 1;
    }
    
    .btn-product-quote {
        padding: 15px 20px;
        font-size: 13px;
    }
}
@media (max-width: 992px) {
    .cta-inner-box {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }
    
    .cta-content-text h2 {
        font-size: 28px;
    }
    
    .btn-text-wrapper {
        text-align: center;
    }
}

@media (max-width: 550px) {
    .dark-cta-section {
        padding: 60px 0;
    }

    .cta-content-text h2 {
        font-size: 24px;
    }

    .btn-whatsapp-large {
        padding: 16px 24px;
        width: 100%;
        justify-content: center;
    }

    .btn-whatsapp-large i {
        font-size: 32px;
    }

    .btn-text-wrapper strong {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .grid-steps-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    /* Hace que el paso 3 ocupe el ancho completo si queda un espacio impar */
    .step-card:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 650px) {
    .grid-steps-layout {
        grid-template-columns: 1fr;
    }
    .step-card:nth-child(3) {
        grid-column: span 1;
    }
    .steps-header h2 {
        font-size: 28px;
    }
    .step-image-box {
        height: 200px;
    }
}

/* --- MEDIA QUERIES (RESPONSIVE) --- */

@media (max-width: 1024px) {
    .grid-product-features {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    /* Movemos la imagen al tope del grid para tablets */
    .product-image-center {
        grid-column: span 2;
        order: -1;
        margin-bottom: 20px;
    }
    
    .left-column .product-feature-card {
        text-align: left;
        flex-direction: row;
    }
    
    .grid-product-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 680px) {
    .grid-product-features {
        grid-template-columns: 1fr;
    }
    
    .product-image-center {
        grid-column: span 1;
    }
    
    .product-section-header h2 {
        font-size: 32px;
    }
    
    .grid-product-badges {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-badges-bar {
        border-radius: 0; /* Cuadrado en móvil para integrarse mejor al scroll plano */
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-contact-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .contact-bar-item:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .gallery-title-area h2 {
        font-size: 26px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .grid-contact-bar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-bar-item {
        background-color: #ffffff;
        padding: 15px !important;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }
}








@media (max-width: 992px) {
    .grid-about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .about-image-side {
        min-height: 350px;
    }
    
    .about-bg-image {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-radius: 6px;
    }
    
    /* Efecto tintado sobre el fondo en móvil para garantizar legibilidad */
    .about-image-side::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 6px;
    }
}

@media (max-width: 576px) {
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .rotated-card-container {
        width: 90%;
    }
}








@media (max-width: 1100px) {
    .grid-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .grid-products-layout {
        grid-template-columns: 1fr;
    }
    .decor-image-container {
        display: none; /* Opcional: oculta la decoración para no alargar demasiado en tablets */
    }
}

@media (max-width: 768px) {
    .products-cards-side {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .grid-features {
        grid-template-columns: 1fr;
    }
    .products-cards-side {
        grid-template-columns: 1fr;
    }
    .features-bar {
        margin-top: 0; /* Reseteo en móviles */
    }
    .products-text-side h2 {
        font-size: 26px;
    }
}


/* Responsive / Media Queries */
@media (max-width: 992px) {
    nav {
        display: none; /* Ideal para integrar con un menú hamburguesa móvil posterior */
    }
    .hero-title {
        font-size: 38px;
    }
	.hero{height: auto; min-height: inherit; padding-bottom: 70px}
    .badge-envios {
        right: 5%;
    }
	nav a{color: #000}
}

@media (max-width: 576px) {
    .hero {
        align-items: flex-start;
        padding-top: 140px;
    }
	@keyframes animTexto {
	  from {
		background-size: auto 100%;
	  }
	  to {
		 background-size: auto 130%;
	  }
	}
    .hero-title {
        font-size: 31px;
    }
    .btn-cotizar {
        display: none;
    }
    .badge-envios {
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        justify-content: center;
    }
}