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

*/

/* --- VARIABLES Y CONFIGURACIÓN BASE --- */
:root {
    --primary-color: #b90d00;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-beige: #E6DFD3;
    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    --wa-color: #25D366;
    --wa-color-hover: #20ba5a;
    --shadow-color: rgba(37, 211, 102, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-index: border-box;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;

}

/* --- HEADER & NAVEGACIÓN --- */
.header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.ios-notification {
	position: fixed;
	top: -100px; /* Escondido por defecto arriba */
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 400px;
	background: rgba(255, 255, 255, 0.85); /* Efecto translúcido de iOS */
	backdrop-filter: blur(20px); /* Desenfoque de fondo tipo Apple */
	-webkit-backdrop-filter: blur(20px);
	border-radius: 22px; /* Bordes muy redondeados estilo iPhone */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	padding: 12px 16px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #000000;
	z-index: 99999;
	transition: top 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animación con rebote suave */
	cursor: pointer;
}

/* Clase que activa la aparición */
.ios-notification.show {
	top: 20px; /* Baja hasta 20px del tope */
}

/* Contenedor de la foto de perfil */
.notif-avatar-container {
	position: relative;
	margin-right: 14px;
	flex-shrink: 0;
}

.notif-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}
.owl-dots {
  position: absolute;
  top: 50%;
  right: 20px; /* Cambia a left: 20px si los prefieres en el lado izquierdo */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column; /* Apilados verticalmente */
  gap: 10px; /* Espaciado uniforme entre puntos */
  z-index: 10;
  margin: 0 !important;
}

/* Reset y diseño minimalista para los puntos */
.owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 0 !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

/* Estado al pasar el cursor (Hover) */
.owl-dot:hover span {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

/* Estado Activo (Minimalista con expansión vertical u horizontal) */
.owl-dot.active span {
  height: 20px !important; /* Estira el punto para un efecto moderno */
  background-color: #ffffff !important;
  border-radius: 4px;
}

/* Mini icono de WhatsApp superpuesto en la esquina de la foto */
.notif-wa-badge {
	position: absolute;
	bottom: -2px;
	right: -2px;
	background-color: #25D366;
	color: white;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	border: 2px solid white;
}

/* Contenido del texto */
.notif-content {
	flex-grow: 1;
}

.notif-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2px;
}

.notif-title {
	font-weight: 600;
	font-size: 14px;
	color: #1c1c1e;
}

.notif-time {
	font-size: 11px;
	color: #8e8e93;
}

.notif-message {
	font-size: 13px;
	color: #3a3a3c;
	line-height: 1.3;
}
/* Estilización del Logo con CSS puro emulando el isotipo */
.logo-icon {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 0.9;
    border: 2px dashed var(--primary-color);
    padding: 2px 10px;
    margin-bottom: 2px;
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}
/* --- ESTILOS GENERALES DEL MENÚ (ESCRITORIO) --- */
.nav {
    display: flex;
    align-items: center;
    gap: 104px;
}

/* Apuntamos al ul generado automáticamente por WordPress */
.nav .menu ul, 
.menu-wrapper-responsive ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav .menu ul li a, 
.menu-wrapper-responsive ul li a {
    text-decoration: none;
    color: #221A15; /* Marrón Oscuro */
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav .menu ul li a:hover,
.nav .menu ul li.current_page_item a {
    color: #A73E19; /* Terracota de la marca */
}

/* Botón Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #221A15;
    transition: all 0.3s ease;
}

/* --- 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;
}


/* Botón de Contacto Estilo Header */
.btn-contact {
    font-family: var(--font-headings);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-contact:hover {
    background-color: #8c3213;
    transform: translateY(-1px);
}
/* --- 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 */
.btn-product-quote {
    margin-top: 0px;
}

.btn-product-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary-color); /* 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);
}

.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;
}

/* 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);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    /* Reemplaza esta URL con tu imagen real de fondo */
    
    display: flex;
    align-items: center;
    padding: 60px 20px 120px 20px;
    border-radius: 10px 10px 0px 0px;
    animation-name: animTexto;
	animation-duration: 15s;
	background-position: center;
	-webkit-animation-fill-mode: forwards;
}
@keyframes animTexto {
  from {
    background-size: 100% auto;
  }
  to {
     background-size: 140% auto;
  }
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 670px;
    color: var(--text-light);
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-title strong{opacity: 0.8}
.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    font-family: var(--font-headings);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-hero:hover {
    background-color: #8c3213;
    transform: translateY(-2px);
}

/* --- SECCIÓN DE CARACTERÍSTICAS (FLOAT CARD) --- */
.features-section {
    position: relative;
    max-width: 1100px;
    margin: -60px auto 60px auto; /* Hace el efecto flotante sobre el hero */
    padding: 0 20px;
    z-index: 10;
}

.features-container {
    background-color: #f9f6f0;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 30px 20px;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Iconos usando SVG integrados para simular los de la imagen */
.feature-item img{
    display: block; margin-bottom: 15px;
}

.feature-title {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.feature-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #555555;
    max-width: 250px;
}

/* --- MENÚ DE HAMBURGUESA PARA MÓVILES --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}
/* --- 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; 
    }
}
/* --- SECCIÓN NUESTROS PRODUCTOS --- */
.products-section {
    width: 100%;
    padding: 20px 20px 90px 20px;
    background-color: #ffffff;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Encabezado */
.products-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.products-subtitle {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Puntos decorativos del subtítulo en el diseño original */
.products-subtitle::before,
.products-subtitle::after {
    content: "•";
    color: var(--primary-color);
}

.products-title {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin: 10px 0 15px 0;
    letter-spacing: -0.5px;
}

.products-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

/* Grid del catálogo */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Tarjeta Individual */
.product-card {
    position: relative;
    border-radius: 12px;
    aspect-ratio: 1 / 1; /* Hace que las tarjetas sean perfectamente cuadradas */
    overflow: hidden;
    background-color: #000000;
    cursor: pointer;
}

/* Imagen de Fondo del Card */
.product-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Degradado oscuro inicial para legibilidad del título */
.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* Contenedor de Textos */
.product-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Alinea los elementos al fondo inicialmente */
    z-index: 3;
    transition: justify-content 0.4s ease;
}

.product-item-title {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0;
    transition: transform 0.4s ease, margin-bottom 0.4s ease;
}

.product-item-description {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    max-height: 0;
    overflow: hidden;
}

/* --- EFECTOS HOVER (INTERACCIÓN PRINCIPAL) --- */
.product-card:hover .product-card-bg {
    transform: scale(1.08);
    filter: blur(5px) brightness(0.6); /* Genera el desenfoque y oscurece la imagen trasera */
}

.product-card:hover::after {
    opacity: 0; /* Desactiva el degradado inicial ya que todo el fondo se oscurece */
}

.product-card:hover .product-card-content {
    justify-content: center; /* Centra los textos verticalmente al pasar el mouse */
}

.product-card:hover .product-item-title {
    margin-bottom: 10px;
}

.product-card:hover .product-item-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px; /* Permite el despliegue animado de la descripción */
}
/* --- SECCIÓN SOBRE NOSOTROS --- */
.about-section {
    width: 100%;
    background-color: #F9F6F0; /* Fondo beige muy claro idéntico a la imagen */
    display: flex;
    align-items: center;
}

.about-container {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
    gap: 60px;
    align-items: center;
}

/* Manejo de la Imagen */
.about-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 4px; /* Un quiebre sutil en las esquinas */
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene la proporción de la foto tapando el área */
    display: block;
}

/* Columna de Contenido */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 0px;
}

.about-subtitle {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-title {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

/* Lista de Beneficios */
.about-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icono Check circular usando CSS puro */
.about-icon-check {
    width: 24px;
    height: 24px;
    border: 2px solid #C49A82; /* Tono marrón claro/ocre del check */
    border-radius: 50%;
    position: relative;
    flex-shrink: 0; /* Evita que se deforme si el texto es largo */
}

/* Dibujo del check interno */
.about-icon-check::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #C49A82;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.about-benefit-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #4A4A4A;
    line-height: 1.4;
    font-weight: 400;
}

/* Botón con flecha integrada */
.btn-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    font-family: var(--font-headings);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-about:hover {
    background-color: #8c3213;
    transform: translateY(-2px);
}

.btn-about-arrow {
    width: 18px;
    height: 18px;
    fill: none;
    transition: transform 0.3s ease;
}

.btn-about:hover .btn-about-arrow {
    transform: translateX(4px); /* Pequeña interacción elegante en la flecha */
}
/* ==========================================
   ESTILOS PRE-FOOTER CTA (WHATSAPP BAR)
   ========================================== */
.cta-prefooter {
    width: 100%;
    /* Efecto de capa con textura sutil oscura inspirada en ladrillos */
    background: linear-gradient(rgba(53, 35, 27, 0.92), rgba(53, 35, 27, 0.92)), 
                url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=100&q=50');
    padding: 30px 20px;
    color: var(--text-light);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cta-whatsapp-icon {
    width: 54px;
    height: 54px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.cta-whatsapp-icon svg {
    width: 28px;
    height: 28px;
}

.cta-title {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.cta-divider {
    width: 1px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.cta-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 380px;
    line-height: 1.4;
}

/* Botón Blanco Cotiza Aquí */
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
    flex-shrink: 0;
}

.btn-cta-whatsapp svg {
    width: 16px;
    height: 16px;
}

.btn-cta-whatsapp:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
}


/* ==========================================
   ESTILOS FOOTER PRINCIPAL
   ========================================== */
.main-footer {
    background-color: #221A15; /* Tono marrón muy oscuro idéntico a la imagen */
    color: #bfaea4; /* Color de fuente suave para lectura óptima sobre oscuro */
    padding: 70px 20px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; /* Proporciones de columnas */
    gap: 50px;
    padding-bottom: 50px;
}

/* Columna de Información Corporativa */
.info-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 25px;
}

.logo-box {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 6px 14px;
    letter-spacing: 1px;
    display: inline-block;
}

.footer-about-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Bloque Redes Sociales */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.footer-socials a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.social-icon {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: -2px;
}

.social-svg {
    width: 16px;
    height: 16px;
}

/* Títulos de sección en el Footer */
.footer-title {
    font-family: var(--font-headings);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Listas de Enlaces comunes */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #bfaea4;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Columna de Contacto */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.footer-contact-info a {
    color: #bfaea4;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

/* Botón Terracota inferior Cotiza Aquí */
.btn-footer-cotiza {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 220px;
}

.btn-footer-cotiza svg {
    width: 14px;
    height: 14px;
}

.btn-footer-cotiza:hover {
    background-color: #8c3213;
}


/* ==========================================
   BARRA DE COPYRIGHT INFERIOR
   ========================================== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    margin-top: 20px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: #bfaea4;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.bottom-divider {
    color: rgba(255, 255, 255, 0.15);
}


/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* Pasa a 2x2 en pantallas medianas */
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Ajustes del Bloque de WhatsApp Superior */
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-left {
        flex-direction: column;
        gap: 10px;
    }

    .cta-divider {
        display: none; /* Quitamos la línea vertical en móviles */
    }

    .cta-text {
        max-width: 100%;
    }

    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* Ajustes del Footer */
    .footer-container {
        grid-template-columns: 1fr; /* Una sola columna fluida en celulares */
        gap: 35px;
        padding-bottom: 35px;
    }

    .btn-footer-cotiza {
        max-width: 100%; /* El botón se expande a lo ancho del teléfono */
    }

    /* Ajustes del Copyright */
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* --- ESTILOS DE LA PANTALLA DE CARGA --- */
#brick-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* Fondo transparente para que no pinte un bloque blanco antes de los ladrillos */
  background-color: transparent; 
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

.falling-bricks-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 3px;
  /* El color beige del fondo se asigna aquí para que sea lo primero que se vea con los ladrillos */
  background-color: #fff; 
}

.brick-piece {
  background-color: var(--primary-color);
  width: 100%;
  height: 100%;
  /* Inicia inmediatamente arriba listo para caer */
  transform: translateY(-120vh); 
  will-change: transform;
}

.brick-piece.fall {
  animation: brickDrop 0.6s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

@keyframes brickDrop {
  to {
      transform: translateY(0);
  }
}

/* --- LOGO CENTRAL --- */
.preloader-logo-wrapper {
  position: relative;
  z-index: 10001;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
	background: var(--primary-color);
}

.preloader-logo-wrapper.reveal {
  opacity: 1;
  transform: scale(1);
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 20px 25px;
  border-radius: 8px;

}

.preloader-logo-icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 0.9;

  padding: 4px 15px;
  margin-bottom: 5px;
}

.preloader-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3px;
  margin-top: 5px;
}

#brick-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.purpose-section {
    width: 100%;
    background-color: #ffffff;
    padding: 90px 20px;
}
.purpose-container {
    width: 1200px;
    margin: 0 auto; max-width: 97%;
}
.purpose-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.purpose-subtitle {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.purpose-title {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 15px 0;
    line-height: 1.3;
}
.purpose-line {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 20px auto;
}
.purpose-lead {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.6;
}
.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.purpose-card {
    background-color: #F9F6F0; /* Fondo sutil de la paleta original */
    padding: 40px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(167, 62, 25, 0.05);
}
.purpose-icon-box {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.purpose-card-title {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.purpose-card-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.purpose-card-highlight {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- SECCIÓN GALERÍA DE PROYECTOS --- */
.gallery-section {
    width: 100%;
    background-color: #F9F6F0;
    padding: 80px 20px;
}
.gallery-container, .blog-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title-wrap {
    text-align: center;
    margin-bottom: 45px;
}
.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(34, 26, 21, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-overlay span {
    font-family: var(--font-headings);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- SECCIÓN BLOG --- */
.blog-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
}
.blog-card {
    background-color: #ffffff;
    border: 1px solid #e6dfd3;
    border-radius: 6px;
    overflow: hidden;
    margin: 10px 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.blog-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
}
.blog-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-date {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #999999;
    margin-bottom: 10px;
}
.blog-card-title {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 12px;
}
.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-link {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}
.blog-link:hover { text-decoration: underline; }

/* Customización de flechas de Owl Carousel para que combinen con la marca */
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-color) !important;
}










.project-detail-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
}
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    background-color: #F5F5F5;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}
.project-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.2;
    margin-bottom: 15px;
}
.highlight-text { color: #A73E19; }
.project-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #666666;
    max-width: 580px;
    line-height: 1.5;
}
.project-header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.author-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
}

/* --- BOTÓN CONTACTAR NOTIFY --- */
.btn-contact-notify {
    position: relative;
    display: inline-block;
    background-color: #A73E19;
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: transform 0.2s, background-color 0.2s;
}
.btn-contact-notify:hover {
    background-color: #8c3213;
    transform: scale(1.03);
}
.notification-badge {
    position: absolute;
    top: -2px;
    right: 4px;
    width: 10px;
    height: 10px;
    background-color: #00E676;
    border-radius: 50%;
    border: 2px solid #ffffff;
}
.notification-badge::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid #00E676;
    animation: activePing 1.8s infinite ease-out;
}
@keyframes activePing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

/* --- MOSAICO DE IMÁGENES REFINADO --- */
.project-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Reducido a 3 columnas para mayor balance visual sin iconos */
    gap: 24px;
}
.mosaic-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f7f7f7;
    cursor: pointer;
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Indicador sutil de zoom al pasar el cursor */
.mosaic-hover-indicator {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(34, 26, 21, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.zoom-icon {
    background-color: #ffffff;
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-item:hover .mosaic-hover-indicator { opacity: 1; }
.mosaic-item:hover .zoom-icon { transform: scale(1); }

/* Alturas asimétricas limpias */
.size-small { aspect-ratio: 1 / 0.8; }
.size-normal { aspect-ratio: 1 / 1; }
.size-medium { aspect-ratio: 1 / 1.25; }
.size-tall { aspect-ratio: 1 / 1.5; }

/* --- POPUP LIGHTBOX CON FONDO DESENFOCADO (BLUR) --- */
.lightbox-overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(26, 20, 17, 0.6); /* Capa oscura traslúcida */
    backdrop-filter: blur(12px); /* Efecto cristal esmerilado / desenfoque brutal */
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 6px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

#lightbox-caption {
    margin-top: 20px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
}
.lightbox-close:hover {
    color: #A73E19;
    transform: scale(1.1);
}


/* --- DISEÑO ESTRUCTURAL INTERNO --- */
.product-internal-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 20px;
}

.product-internal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    grid-template-columns: 1.1fr 0.9fr; /* Equilibrio perfecto entre fotos y texto */
    gap: 90px;
    align-items: start;
    flex-direction: row-reverse;
}

/* --- COLUMNA DE DETALLES TEXTUALES (image_f30964.png) --- */
.product-info-side {
    position: sticky;
    top: 40px; /* Se queda estático mientras navegas por las imágenes a la izquierda */
	width: 125%; max-width: 449px;
}

.product-category-tag {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #888888;
    display: block;
    margin-bottom: 5px;
}

.product-main-name {
    font-family: var(--font-headings);
    font-size: 2.6rem;
    font-weight: 800;
    color: #221A15; /* Sintonizado con la marca */
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.product-unit-tag {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: #221A15;
    display: block;
    margin-bottom: 30px;
}

/* --- SISTEMA DE ACORDEONES MINIMALISTA --- */
.product-details-accordion {
    border-top: 1px solid #E6DFD3;
    margin-bottom: 30px;
}

.accordion-item {
    border-bottom: 1px solid #E6DFD3;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: #221A15;
    cursor: pointer;
    text-align: left;
}

.accordion-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Rotación de flecha si está activo */
.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* Permite expandir fluidamente el contenido */
}

.accordion-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    padding-bottom: 20px;
    margin: 0;
}

/* --- TABLA DE ESPECIFICACIONES --- */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-align: center;
}

.specifications-table th {
    background-color: #F9F6F0;
    color: #666666;
    font-weight: 600;
    padding: 10px;
    border: 1px solid #E6DFD3;
}

.specifications-table td {
    color: #221A15;
    padding: 12px;
    border: 1px solid #E6DFD3;
}

/* --- 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;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .product-internal-container {
        grid-template-columns: 1fr; /* Apilado vertical en tablets y celulares */
        gap: 40px;
        display: grid;
    }
    .project-header{display: none;}
    .product-info-side {
        position: relative;
        top: 0;
    }
}




/* 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; }




.img-nosotros{background: url(https://pruebas.rocochosenlima.com/wp-content/uploads/2026/07/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;}
/* --- CONTENEDORES --- */
.services-template-section {
    width: 100%;
    background-color: #ffffff;
    padding: 90px 20px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CABECERA EDITORIAL --- */
.services-hero-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 80px auto;
}

.services-pretitle {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: #A73E19; /* Tono Terracota */
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.services-main-title {
    font-family: var(--font-headings);
    font-size: 2.6rem;
    font-weight: 800;
    color: #221A15; /* Marrón Oscuro */
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.services-title-separator {
    width: 50px;
    height: 2px;
    background-color: #A73E19;
    margin: 25px auto;
}

.services-lead-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.6;
}

/* --- BLOQUE DESTACADO ASIMÉTRICO (TIPO PORTAFOLIO) --- */
.service-featured-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    background-color: #F9F6F0; /* Fondo Off-White Beige */
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.service-featured-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 40px rgba(34, 26, 21, 0.06);
}

.service-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-featured-block:hover .service-featured-image img {
    transform: scale(1.03);
}

.service-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #A73E19;
    color: #ffffff;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.service-featured-content {
    padding-right: 20px;
}

.service-number {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(167, 62, 25, 0.15); /* Transparencia fina */
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.service-block-title {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 700;
    color: #221A15;
    line-height: 1.3;
    margin-bottom: 20px;
}

.service-block-text {
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.service-features-list svg {
    width: 18px;
    height: 18px;
    color: #A73E19;
    flex-shrink: 0;
}

/* --- GRILLA SECUNDARIA DE TARJETAS --- */
.services-secondary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-premium {
    background-color: #ffffff;
    border: 1px solid #E6DFD3;
    padding: 40px 35px;
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    border-color: #A73E19;
    box-shadow: 0 15px 35px rgba(34, 26, 21, 0.05);
}

.service-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-number-mini {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 700;
    color: #A73E19;
    opacity: 0.4;
}

.service-icon-wrapper {
    width: 40px;
    height: 40px;
    color: #A73E19;
    opacity: 0.85;
}

.service-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: #221A15;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}
/* --- 1. HERO BANNER PRINCIPAL --- */
.services-hero-banner {
    position: relative;
    width: 100%;
    min-height: 280px;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=40'); /* Imagen optimizada de fondo */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

/* Capa oscura texturizada para garantizar legibilidad */
.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(34, 26, 21, 0.75); /* Tono marrón oscuro de la marca */
    z-index: 1;
}

.banner-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

/* Migas de Pan (Breadcrumbs) */
.breadcrumbs-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #A73E19; /* Terracota de acento */
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* Títulos del Banner */
.banner-title {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.banner-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 600px;
}


/* --- 2. LISTADO DE SERVICIOS EN GRID --- */
.services-list-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
}

.services-list-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Estructura limpia de 2 columnas amplias */
    gap: 40px;
}

.service-list-card {
    background-color: #F9F6F0; /* Fondo Off-White Beige */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #E6DFD3;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(34, 26, 21, 0.08);
}

/* Imagen interna fija de la tarjeta */
.service-card-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-list-card:hover .service-card-image-wrapper img {
    transform: scale(1.04);
}

/* Cuerpo textual */
.service-list-card-content {
    padding: 40px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-num {
    position: absolute;
    top: 30px; right: 40px;
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(167, 62, 25, 0.12); /* Sutil número terracota de fondo */
}

.service-list-card-title {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    color: #221A15;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.service-list-card-desc {
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

/* Enlace "Saber Más" con Micro-interacción */
.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 700;
    color: #A73E19;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-read-more:hover {
    color: #221A15;
}

.service-read-more:hover .arrow-icon {
    transform: translateX(6px);
}


/* --- MAQUETACIÓN ESTRUCTURAL --- */
.contact-page-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 20px;
}

.contact-section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Asimetría balanceada */
    gap: 60px;
    align-items: start;
}

/* --- BLOQUE DE INFORMACIÓN (IZQUIERDA) --- */
.contact-pretitle {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: #A73E19;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.contact-main-title {
    font-family: var(--font-headings);
    font-size: 2.4rem;
    font-weight: 800;
    color: #221A15;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-lead-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Listado de Datos */
.contact-data-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-data-item {
    display: flex;
    align-items: start;
    gap: 16px;
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    background-color: #F9F6F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A73E19;
    flex-shrink: 0;
    border: 1px solid #E6DFD3;
}

.contact-icon-box svg {
    width: 18px;
    height: 18px;
}

.contact-data-text h4 {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    color: #221A15;
    margin: 0 0 4px 0;
}

.contact-data-text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #555555;
    margin: 0;
    line-height: 1.4;
}

/* Redes Sociales */
.contact-social-block h4 {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: #221A15;
    margin-bottom: 15px;
}

.contact-social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.social-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #555555;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 100%; height: 1px;
    background-color: #A73E19;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-link:hover { color: #A73E19; }
.social-link:hover::after { transform: scaleX(1); }

/* Estilización elegante del mapa */
.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E6DFD3;
    filter: grayscale(0.4) contrast(1.1); /* Efecto cinemático arquitectónico */
    transition: filter 0.3s ease;
}

.contact-map-wrapper:hover {
    filter: grayscale(0);
}


/* --- FORMULARIO DE CONTACTO (DERECHA) --- */
.contact-form-card {
    background-color: #F9F6F0; /* Fondo Off-White Beige coherente */
    border: 1px solid #E6DFD3;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(34, 26, 21, 0.03);
}

.contact-form-card h3 {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 700;
    color: #221A15;
    margin: 0 0 10px 0;
}

.contact-form-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 35px;
    line-height: 1.5;
}

/* Estilo Inputs Premium (Efecto flotante moderno) */
.premium-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.premium-form input, 
.premium-form select, 
.premium-form textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #C4B9A6;
    padding: 12px 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #221A15;
    outline: none;
    transition: border-color 0.3s ease;
}

.premium-form input:focus, 
.premium-form select:focus, 
.premium-form textarea:focus {
    border-bottom: 2px solid #A73E19;
}

/* Efecto de Etiqueta Flotante */
.premium-form .form-group label {
    position: absolute;
    top: 12px; left: 4px;
    color: #888888;
    font-family: var(--font-body);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Cuando el input está enfocado o tiene texto, la etiqueta sube */
.premium-form input:focus ~ label,
.premium-form input:not(:placeholder-shown) ~ label,
.premium-form textarea:focus ~ label,
.premium-form textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 0.8rem;
    color: #A73E19;
    font-weight: 700;
}

/* Select Label Corrección especial */
.premium-form select:focus ~ .select-label,
.premium-form select:valid ~ .select-label {
    top: -12px;
    font-size: 0.8rem;
    color: #A73E19;
    font-weight: 700;
}


/* --- BOTÓN ENVIAR CON EFECTO DE PULSO ACTIVO (NOTIFICACIÓN) --- */
.form-submit-wrapper {
    margin-top: 35px;
}

.btn-submit-notify {
    position: relative;
    width: 100%;
    background-color: #A73E19;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-submit-notify:hover {
    background-color: #8c3213;
    transform: translateY(-2px);
}

/* Círculo indicador de notificación sobre el botón */
.form-notification-badge {
    position: absolute;
    top: -2px; right: 25px;
    width: 10px; height: 10px;
    background-color: #00E676; /* Verde interactivo idéntico al botón Contactar */
    border-radius: 50%;
    border: 2px solid #ffffff;
}

/* Animación del Ping Expansivo */
.form-notification-badge::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px;
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid #00E676;
    animation: activeFormPing 2s infinite ease-out;
}

@keyframes activeFormPing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

















































/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */
@media (max-width: 992px) {
    .about-container {
        gap: 40px;
    }
    .about-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    .project-gallery-mosaic { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .mosaic-deco-icon { display: none; } /* Ocultamos decorativos en móviles para optimizar espacio */
    
}
/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .service-featured-block {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 30px;
    }
    .services-secondary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-main-title { font-size: 2rem; }
    .services-secondary-grid {
        grid-template-columns: 1fr;
    }
    .service-card-premium { padding: 30px 25px; }
}


/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .services-grid-layout {
        grid-template-columns: 1fr; /* Una sola columna en dispositivos medianos/móviles */
        gap: 30px;
    }
    .banner-title { font-size: 2.4rem; }
    .service-list-card-content { padding: 30px; }
    .service-card-num { top: 20px; right: 30px; }
}
/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .contact-section-container {
        grid-template-columns: 1fr; /* Una sola columna en tabletas y móviles */
        gap: 50px;
    }
    .contact-form-card { padding: 40px 30px; }
}

@media (max-width: 768px) {
    .contact-main-title { font-size: 1.9rem; }
    .form-row-2 { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
    .services-hero-banner { min-height: 220px; padding: 40px 20px; }
    .banner-title { font-size: 2rem; }
    .banner-subtitle { font-size: 1rem; }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
     .purpose-grid { grid-template-columns: 1fr; gap: 24px; }
        .purpose-title { font-size: 1.6rem; }
        .purpose-card { padding: 25px; }
    .about-container {
        grid-template-columns: 1fr; /* Pasa a una sola columna en móviles */
        gap: 40px;
    }
    .project-header {
        flex-direction: column;
        padding: 25px;
    }
    .project-main-title { font-size: 1.7rem; }
    .project-gallery-mosaic {
        grid-template-columns: 1fr; /* 1 sola columna en smartphones */
        gap: 16px;
    }
    .about-image-wrapper {
        min-height: 300px;
        height: 350px;
    }

    .about-title {
        font-size: 1.8rem;
    }
    
    .about-benefits-list {
        margin-bottom: 30px;
    }

    .btn-about {
        width: 100%; /* Botón completo en pantallas pequeñas para mejor usabilidad touch */
    }
    .project-header { flex-direction: column; padding: 25px; }
    .project-gallery-mosaic { grid-template-columns: 1fr; }
    .lightbox-close { top: 15px; right: 20px; font-size: 2.5rem; }
}
/* --- ADAPTACIÓN RESPONSIVA (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas en laptops/tablets horizontales */
        gap: 20px;
    }
    .products-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets verticales */
        gap: 16px;
    }
    
    /* En dispositivos móviles, forzamos que se muestre siempre un poco la descripción 
       o simplificamos el hover para evitar problemas de click en pantallas táctiles */
    .product-item-description {
        font-size: 0.8rem;
    }
    .header{width: 83%;}
}
/* --- 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: 480px) {
    .products-grid {
        grid-template-columns: 1fr; /* 1 sola columna en smartphones */
    }
    .products-header {
        margin-bottom: 30px;
    }
}
/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .features-container {
        gap: 20px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {


     .btn-contact {
        display: none; /* En producción se activaría con JS mediante una clase */
    }
.menu-toggle {
        display: flex; /* Se muestra en móviles */
    }

    /* Animación de Hamburguesa a X */
    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Contenedor del menú desplegable de WordPress */
    .nav .menu, 
    .menu-wrapper-responsive {
        position: fixed;
        top: 0;
        right: -100%; /* Escondido a la derecha */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #F9F6F0; /* Fondo Off-White Beige */
        box-shadow: -10px 0 30px rgba(34, 26, 21, 0.1);
        padding: 80px 30px 40px 30px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-sizing: border-box;
    }

    /* Cuando el menú se abre */
    .nav .menu.active, 
    .menu-wrapper-responsive.active {
        right: 0;
    }

    /* Reordenamos la lista verticalmente dentro de la cortina */
    .nav .menu ul, 
    .menu-wrapper-responsive ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav .menu ul li, 
    .menu-wrapper-responsive ul li {
        width: 100%;
    }
	@keyframes animTexto {
	  from {
		background-size: auto 100% ;
	  }
	  to {
		 background-size: auto  140%;
	  }
	}
    .nav .menu ul li a, 
    .menu-wrapper-responsive ul li a {
        font-size: 1.15rem;
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid rgba(34, 26, 21, 0.05);
    }
    /* Mover el botón de contacto dentro del flujo o mantenerlo accesible */
    .btn-contact {
        margin-right: 40px; /* Separación para que no choque con la hamburguesa */
    }

	.hero-description{    font-size: 0.9rem;}
    .hero {
        min-height: 60vh;
        padding: 60px 20px 140px 20px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .features-section {
        margin-top: -80px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 20px;
    }

    .feature-text {
        max-width: 100%;
    }
}