/* =========================================
   1. VARIABLES Y CONFIGURACIÓN GENERAL
   ========================================= */
:root {
    /* --- PALETA DE COLORES "PREMIUM ANDINA" --- */
    --primary-color: #A04036;       /* Terracota (Acción) */
    --primary-hover: #82322a;       /* Terracota Oscuro */
    
    --gold-main: #C8A165;           /* Dorado Champán */
    --gold-dark: #bf953f;           /* Dorado Oscuro */
    
    --bg-light: #FAFAF5;            /* Blanco Hueso (Fondo) */
    --bg-dark: #1F2225;             /* Gris Pizarra (Navbar/Footer) */
    
    --text-main: #2C2C2C;           /* Gris Oscuro */
    --text-soft: #666666;           /* Gris Suave */
    --text-white: #F4F4F4;          /* Blanco Texto */
    
    /* Tipografías */
    --font-title: 'Cinzel', serif; 
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

/* =========================================
   2. NAVBAR (CABECERA INTELIGENTE)
   ========================================= */
.navbar {
    position: fixed; /* Siempre fija para poder controlarla */
    top: 0; left: 0; width: 100%;
    height: 90px;
    display: flex;
    align-items: center; justify-content: space-between;
    padding: 0 50px;
    z-index: 1000;
    transition: transform 0.4s ease, background-color 0.4s ease; /* Transición suave */
    background: transparent; /* Transparente al inicio */
}

/* Estado cuando bajas (se oculta subiendo hacia arriba) */
.navbar.navbar-hidden {
    transform: translateY(-100%); 
}

/* Estado cuando subes o estás abajo (fondo oscuro sólido) */
.navbar.scrolled {
    background-color: rgba(31, 34, 37, 0.98);
    height: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Logo */
.nav-left { flex: 1; display: flex; justify-content: flex-start; }

.logo-link img {
    height: 55px; width: auto; display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: transform 0.3s;
}
.logo-link img:hover { transform: scale(1.05); }

/* Menú Central */
.nav-links {
    list-style: none; display: flex; justify-content: center; gap: 30px;
}

.nav-links a {
    text-decoration: none; color: var(--text-white); font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.nav-links a:hover { color: var(--gold-main); }

/* Iconos Derecha */
.nav-right {
    flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 20px;
}

.action-icon {
    color: var(--text-white); font-size: 1.2rem; transition: transform 0.2s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.action-icon:hover { color: var(--gold-main); transform: scale(1.1); }

/* Idioma */
.lang-selector {
    color: var(--text-white); font-size: 0.9rem; font-weight: bold; cursor: pointer;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); margin-right: 5px;
}
.lang-selector .active { color: var(--gold-main); }
.lang-selector .inactive { color: #ccc; }
.lang-selector .divider { margin: 0 5px; opacity: 0.7; }

/* Botón Donar */
.btn-donate {
    background-color: var(--primary-color); color: white; text-decoration: none;
    padding: 10px 25px; border-radius: 4px; font-weight: bold;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.btn-donate:hover { background-color: var(--primary-hover); transform: translateY(-2px); }

/* Responsive Items */
.mobile-only { display: none; }
.desktop-only { display: block; }
.menu-toggle { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   3. HERO SECTION (PORTADA)
   ========================================= */
.hero {
    background: linear-gradient(
        to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%   
    ), url('assets/APUZEN\ \(28\).jpg'); /* Verifica que la ruta sea correcta */
    
    background-size: cover; background-position: center; background-repeat: no-repeat;
    height: 100vh; width: 100%; 
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 0 20px;
    position: relative;
}

.hero-content { max-width: 1000px; z-index: 2; margin-top: 60px; }

.top-label-container { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 20px; }
.top-label { font-size: 0.85rem; letter-spacing: 4px; color: var(--gold-main); text-transform: uppercase; font-weight: bold; text-shadow: 0 1px 2px rgba(0,0,0,0.8); }
.line { width: 40px; height: 1px; background: var(--gold-main); box-shadow: 0 1px 2px rgba(0,0,0,0.8); }

.gold-shimmer {
    font-family: var(--font-title); font-size: 4.5rem; margin-bottom: 10px;
    text-transform: uppercase; line-height: 1.1; color: white;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero h2 {
    font-family: var(--font-title); font-size: 2rem; color: #fff;
    font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 25px; text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.separator-red {
    width: 70px; height: 3px; background: var(--primary-color);
    margin: 0 auto 30px auto; box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.hero-description {
    color: #f0f0f0; font-size: 1.15rem; line-height: 1.6; max-width: 750px;
    margin: 0 auto 40px auto; font-weight: 400; text-shadow: 0 2px 4px rgba(0,0,0,1);
}
.highlight-gold { color: var(--gold-main); font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,1); }

.hero-buttons { display: flex; justify-content: center; gap: 20px; }
.btn {
    padding: 15px 35px; border-radius: 50px; font-size: 1rem;
    font-weight: 700; cursor: pointer; transition: 0.3s; 
    display: flex; align-items: center; gap: 10px; border: none;
}
.btn-red { background: var(--primary-color); color: white; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.btn-red:hover { background: var(--primary-hover); transform: translateY(-3px); }

.btn-transparent { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.8); color: white; }
.btn-transparent:hover { background: rgba(255,255,255,0.2); border-color: var(--gold-main); color: var(--gold-main); transform: translateY(-3px); }


/* =========================================
   4. FEATURES (ICONOS)
   ========================================= */
.features { background-color: var(--bg-light); padding: 80px 20px; position: relative; }

.features-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px; text-align: center;
}

.feature-item { display: flex; flex-direction: column; align-items: center; }

.icon-box {
    width: 70px; height: 70px; background: white;
    border: 1px solid rgba(200, 161, 101, 0.3); border-radius: 15px;
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.feature-item:hover .icon-box { transform: translateY(-5px); border-color: var(--gold-main); }
.icon-box i { font-size: 1.8rem; color: var(--gold-main); }

.feature-item h3 { font-family: var(--font-title); font-size: 1rem; margin-bottom: 8px; color: var(--text-main); font-weight: 700; }
.feature-item p { font-size: 0.9rem; color: var(--text-soft); }


/* =========================================
   5. TIENDA (STORE SECTION) - ¡CORREGIDO!
   ========================================= */
.store-section {
    padding: 80px 20px;
    background-color: #FAFAF5;
}

.store-container { max-width: 1200px; margin: 0 auto; }

/* Cabecera de la Tienda */
.store-header {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 50px; border-bottom: 1px solid #e0e0e0; padding-bottom: 20px;
}

.sub-title-red { display: block; color: var(--primary-color); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 5px; text-transform: uppercase; }
.main-title { font-family: var(--font-title); font-size: 2.5rem; color: var(--text-main); margin: 0; }

.btn-view-all {
    background-color: #2c2c2c; color: #fff; padding: 10px 25px;
    text-decoration: none; font-size: 0.9rem; border-radius: 4px; transition: 0.3s;
}
.btn-view-all:hover { background-color: #000; }

/* --- GRID CORREGIDO (AUTO-FILL) --- */
.products-grid {
    display: grid;
    /* auto-fill: Evita que se estiren si hay pocos productos */
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px; /* Espacio entre tarjetas */
    width: 100%;
}

.loading-text { width: 100%; text-align: center; color: #999; grid-column: 1/-1; }

/* Tarjeta de Producto */
.product-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    
    /* SEGURIDAD: Máximo ancho para que no se vea gigante */
    max-width: 350px; 
    margin: 0 auto; /* Centrado si sobra espacio en su columna */
}

.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.card-image { position: relative; height: 280px; width: 100%; background-color: #f4f4f4; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }

.tag-category {
    position: absolute; top: 15px; left: 15px;
    background-color: rgba(255,255,255,0.9); padding: 5px 12px;
    font-size: 0.75rem; font-weight: bold; border-radius: 20px;
    text-transform: uppercase; color: var(--text-main);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card-info { padding: 20px; text-align: center; }

.card-info h3 { font-family: var(--font-title); font-size: 1.1rem; margin-bottom: 10px; color: var(--text-main); text-transform: uppercase; }
.card-info .price { font-size: 1.3rem; color: var(--primary-color); font-weight: 700; margin-bottom: 15px; display: block; }

.btn-add-cart {
    width: 100%; padding: 12px; background-color: #2c2c2c; color: white;
    border: none; border-radius: 6px; font-weight: 700; cursor: pointer;
    text-transform: uppercase; font-size: 0.85rem; transition: 0.3s;
}
.btn-add-cart:hover { background-color: var(--primary-color); }


/* =========================================
   6. CURSO (SECCIÓN EXISTENTE)
   ========================================= */
.course-section { background-color: #ffffff; padding: 100px 20px; display: flex; justify-content: center; }
.course-container { max-width: 1100px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.badge {
    background-color: var(--primary-color); color: white; padding: 5px 15px;
    border-radius: 20px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; display: inline-block; margin-bottom: 20px;
}

.course-text h2 { font-family: var(--font-title); font-size: 2.2rem; color: var(--text-main); line-height: 1.2; margin-bottom: 20px; }
.highlight-red { color: var(--primary-color); }
.separator-small { width: 50px; height: 4px; background: var(--gold-main); margin-bottom: 25px; border-radius: 2px; }

.course-text p { color: var(--text-soft); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.text-bold { font-weight: 700; color: var(--primary-color); }

.course-buttons { display: flex; gap: 15px; margin-top: 30px; }
.btn-outline-dark {
    background: transparent; border: 2px solid var(--text-main); color: var(--text-main);
    padding: 12px 30px; border-radius: 50px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.btn-outline-dark:hover { background: var(--text-main); color: white; }

.course-image-wrapper { position: relative; padding: 20px; }
.course-image-wrapper img { width: 100%; border-radius: 20px; position: relative; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.deco-shape { position: absolute; width: 100px; height: 100px; background: linear-gradient(135deg, var(--gold-main), var(--gold-dark)); border-radius: 20px; z-index: 1; }
.deco-shape.top-left { top: 0; left: 0; }
.deco-shape.bottom-right { bottom: 0; right: 0; }


/* =========================================
   7. MODAL DE LOGIN (POPUP)
   ========================================= */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(31, 34, 37, 0.6); backdrop-filter: blur(8px);
    z-index: 2000; justify-content: center; align-items: center; padding: 20px;
}

.modal-card {
    background-color: white; width: 100%; max-width: 450px; padding: 40px;
    border-radius: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative; text-align: center; animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.close-modal { position: absolute; top: 20px; right: 25px; font-size: 1.5rem; color: #999; cursor: pointer; }
.close-modal:hover { color: var(--text-main); }

.modal-header h3 { font-size: 1.8rem; color: var(--text-main); margin-bottom: 10px; font-weight: 700; }
.modal-header p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 30px; }

.input-group { text-align: left; margin-bottom: 20px; }
.input-group label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.input-group input {
    width: 100%; padding: 12px 15px; border: 1px solid #e0e0e0; border-radius: 10px;
    font-size: 1rem; color: #333; outline: none; transition: 0.3s; background-color: #fff;
}
.input-group input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(160, 64, 54, 0.1); }

.password-wrapper { position: relative; }
.show-pass { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #999; cursor: pointer; }

.form-actions { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; font-size: 0.9rem; }
.remember-me { display: flex; align-items: center; gap: 8px; color: var(--text-soft); cursor: pointer; }
.forgot-pass { text-decoration: none; color: var(--primary-color); font-weight: 700; }

.btn-login-submit {
    width: 100%; padding: 14px; background-color: var(--primary-color); color: white;
    border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer;
    margin-bottom: 15px; transition: background 0.3s;
}
.btn-login-submit:hover { background-color: var(--primary-hover); }

.btn-google {
    width: 100%; padding: 12px; background-color: #fff; border: 1px solid #e0e0e0;
    color: var(--text-main); border-radius: 10px; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s;
}
.btn-google:hover { background-color: #f9f9f9; border-color: #ccc; }

.modal-footer { margin-top: 25px; font-size: 0.9rem; color: var(--text-soft); }
.modal-footer a { color: var(--primary-color); text-decoration: none; font-weight: 700; margin-left: 5px; }


/* =========================================
   8. BOTÓN FLOTANTE ADMIN
   ========================================= */
.admin-floating-btn {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background-color: var(--gold-main); color: white;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999; text-decoration: none; transition: all 0.3s ease;
    border: 2px solid white;
}
.admin-floating-btn:hover {
    transform: scale(1.1); background-color: var(--gold-dark);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}


/* =========================================
   9. RESPONSIVE (MÓVILES)
   ========================================= */
@media (max-width: 900px) {
    .navbar { padding: 15px 20px; height: 70px; }
    .nav-left { flex: 0; } 
    .logo-link img { height: 40px; }
    .nav-right { flex: 1; gap: 15px; }
    
    .desktop-only { display: none; }
    .mobile-only { display: block; } 
    .menu-toggle { display: block; margin-left: 10px; }

    /* Menú Móvil Desplegable */
    .nav-links {
        position: absolute; top: 70px; left: 0; width: 100%;
        background-color: var(--bg-dark); 
        flex-direction: column; align-items: center; padding: 40px 0; gap: 30px;
        transform: translateY(-150%); transition: transform 0.4s ease;
        z-index: 999; border-bottom: 1px solid var(--gold-dark);
    }
    .nav-links.active { transform: translateY(0); }

    .gold-shimmer { font-size: 2.8rem; }
    .course-container { grid-template-columns: 1fr; }
    .store-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px; }
    .btn { width: 100%; justify-content: center; }
}




/* =========================================
   ESTILOS NUEVOS: OFERTAS Y PRECIOS TACHADOS
   ========================================= */

/* Contenedor de precios (para ponerlos lado a lado) */
.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* Precio Antiguo (Gris y Tachado) */
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Etiqueta Roja de OFERTA */
.tag-sale {
    position: absolute;
    top: 15px;
    right: 15px; /* A la derecha, opuesto a la categoría */
    background-color: #dc2626; /* Rojo Intenso */
    color: white;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
    letter-spacing: 1px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animación pequeña para que destaque al cargar */
@keyframes popIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* =========================================
   ESTILOS MODAL DE PRODUCTO (ETAPA 3)
   ========================================= */

/* Fondo Oscuro con Blur */
.modal-overlay-product {
    display: none; /* Oculto por defecto */
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(31, 34, 37, 0.85); /* Fondo oscuro */
    backdrop-filter: blur(5px);
    z-index: 3000; /* Encima de todo */
    justify-content: center; align-items: center;
    padding: 20px;
    opacity: 0; transition: opacity 0.3s ease; /* Animación suave */
}

.modal-overlay-product.active { display: flex; opacity: 1; }

/* Caja Blanca Principal */
.modal-product-box {
    background: white; width: 100%; max-width: 1000px;
    border-radius: 16px; overflow: hidden; position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-height: 90vh; overflow-y: auto; /* Scroll si es muy alto */
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn { from { transform: scale(0.9); } to { transform: scale(1); } }

.close-product-modal {
    position: absolute; top: 15px; right: 20px;
    font-size: 2rem; cursor: pointer; color: #333; z-index: 10;
    transition: 0.2s;
}
.close-product-modal:hover { color: var(--primary-color); transform: rotate(90deg); }

/* Layout de 2 Columnas */
.modal-product-content {
    display: grid; grid-template-columns: 1fr 1fr;
}

/* --- COLUMNA IZQUIERDA: GALERÍA --- */
.modal-gallery {
    background-color: #f4f4f4; padding: 20px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.main-image-container {
    position: relative; width: 100%; height: 400px;
    border-radius: 8px; overflow: hidden;
}
.main-image-container img { width: 100%; height: 100%; object-fit: contain; }

/* Flechas Carrusel */
.nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.8); border: none; width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; font-size: 1.2rem; transition: 0.3s;
    display: none; /* Se activan con JS si hay fotos */
}
.nav-btn:hover { background: white; color: var(--primary-color); }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Miniaturas */
.gallery-thumbnails {
    display: flex; gap: 10px; margin-top: 15px; overflow-x: auto;
}
.thumb {
    width: 60px; height: 60px; border-radius: 6px; cursor: pointer;
    border: 2px solid transparent; object-fit: cover; opacity: 0.6;
}
.thumb.active { border-color: var(--primary-color); opacity: 1; }

/* --- COLUMNA DERECHA: INFO --- */
.modal-info { padding: 40px; }

.tag-category-modal {
    background: var(--bg-dark); color: white; padding: 4px 10px;
    font-size: 0.7rem; border-radius: 4px; text-transform: uppercase;
}

#modalTitle {
    font-family: var(--font-title); font-size: 2rem; margin: 15px 0;
    line-height: 1.2;
}

/* Precio en Modal */
.price-container-modal { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; }
.modal-price { font-size: 1.8rem; color: var(--primary-color); font-weight: 700; }
.modal-old-price { text-decoration: line-through; color: #999; font-size: 1.2rem; }

.modal-description { color: #666; line-height: 1.6; margin-bottom: 30px; font-size: 0.95rem; }

/* Selector Cantidad */
.quantity-control { margin-bottom: 25px; }
.quantity-control label { font-weight: bold; display: block; margin-bottom: 8px; font-size: 0.9rem; }
.qty-wrapper { display: flex; align-items: center; gap: 5px; }
.qty-btn {
    width: 35px; height: 35px; background: #eee; border: none; border-radius: 4px;
    font-weight: bold; cursor: pointer; transition: 0.2s;
}
.qty-btn:hover { background: #ddd; }
#qtyInput {
    width: 50px; text-align: center; border: 1px solid #ddd; height: 35px; border-radius: 4px; font-weight: bold;
}

/* Botón Acción */
.btn-add-modal {
    width: 100%; padding: 15px; background: var(--primary-color); color: white;
    border: none; border-radius: 8px; font-weight: 700; letter-spacing: 1px;
    cursor: pointer; transition: 0.3s;
}
.btn-add-modal:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* --- RELACIONADOS --- */
.related-products-section { margin-top: 40px; border-top: 1px solid #eee; padding-top: 20px; }
.related-products-section h4 { font-size: 0.9rem; margin-bottom: 15px; text-transform: uppercase; color: #999; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.related-item { cursor: pointer; transition: 0.3s; }
.related-item:hover { opacity: 0.8; }
.related-item img { width: 100%; height: 80px; object-fit: cover; border-radius: 6px; }
.related-item p { font-size: 0.75rem; font-weight: bold; margin-top: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Responsive */
@media (max-width: 800px) {
    .modal-product-content { grid-template-columns: 1fr; }
    .main-image-container { height: 300px; }
    .modal-info { padding: 25px; }
}


/* =========================================
   ESTILO DEL CONTADOR DEL CARRITO (NUEVO)
   ========================================= */
.cart-icon {
    position: relative; /* Para poder posicionar el número */
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc2626; /* Rojo */
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bg-dark); /* Borde oscuro para separar */
    display: none; /* Se oculta si es 0 */
}

.cart-count.active {
    display: flex;
    animation: bounce 0.3s ease;
}

@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}


/* =========================================
   ESTILOS DEL CARRITO LATERAL (SIDEBAR)
   ========================================= */

/* Fondo oscuro detrás del carrito */
.cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 4000;
    display: none; /* Oculto */
    backdrop-filter: blur(3px);
}
.cart-overlay.active { display: block; }

/* El Panel Lateral */
.cart-sidebar {
    position: fixed; top: 0; right: 0;
    width: 100%; max-width: 400px; height: 100vh;
    background: white; z-index: 4001;
    transform: translateX(100%); /* Escondido a la derecha */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex; flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.cart-sidebar.active { transform: translateX(0); }

/* Cabecera */
.cart-header {
    padding: 20px; background: var(--bg-dark); color: white;
    display: flex; justify-content: space-between; align-items: center;
}
.cart-header h3 { font-family: var(--font-title); font-size: 1.2rem; margin: 0; letter-spacing: 1px; }
.close-cart { font-size: 2rem; cursor: pointer; transition: 0.3s; line-height: 1; }
.close-cart:hover { color: var(--gold-main); }

/* Lista de Items (Scrollable) */
.cart-items {
    flex: 1; overflow-y: auto; padding: 20px;
    background-color: #FAFAF5;
}
.empty-msg { text-align: center; color: #999; margin-top: 50px; }

/* Item Individual */
.cart-item {
    display: flex; gap: 15px; margin-bottom: 20px;
    background: white; padding: 10px; border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
}
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; }
.item-details { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.item-details h4 { font-size: 0.9rem; margin-bottom: 5px; color: var(--text-main); }
.item-price { font-weight: bold; color: var(--primary-color); font-size: 0.95rem; }

/* Controles Pequeños (+ / -) */
.item-controls { display: flex; align-items: center; gap: 10px; margin-top: 5px; }
.mini-btn {
    width: 25px; height: 25px; background: #eee; border: none; border-radius: 4px;
    cursor: pointer; font-weight: bold; display: flex; align-items: center; justify-content: center;
}
.mini-btn:hover { background: #ddd; }
.item-qty { font-size: 0.85rem; font-weight: bold; }

.btn-remove {
    position: absolute; top: 10px; right: 10px;
    color: #999; cursor: pointer; font-size: 0.9rem; transition: 0.2s;
}
.btn-remove:hover { color: var(--primary-color); }

/* Pie de Carrito (Footer) */
.cart-footer {
    padding: 25px; background: white; border-top: 1px solid #eee;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}
.cart-total {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1.2rem; font-weight: 700; margin-bottom: 20px;
    font-family: var(--font-title);
}
.btn-checkout {
    width: 100%; padding: 15px; background: var(--primary-color); color: white;
    border: none; border-radius: 8px; font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: 0.3s; letter-spacing: 1px;
}
.btn-checkout:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* --- LOGOS DE PAGO --- */
.payment-methods { margin-top: 20px; text-align: center; border-top: 1px solid #eee; padding-top: 15px; }
.payment-methods p { font-size: 0.75rem; color: #999; margin-bottom: 10px; text-transform: uppercase; }

.logos-grid { display: flex; justify-content: center; gap: 10px; align-items: center; flex-wrap: wrap; }
.pay-logo { height: 25px; opacity: 0.7; }

/* Badges CSS para Yape/Plin (por si no hay imagenes) */
.pay-badge {
    padding: 4px 10px; border-radius: 4px; color: white;
    font-size: 0.7rem; font-weight: bold; letter-spacing: 0.5px;
}
.yape { background-color: #742284; /* Morado Yape */ }
.plin { background-color: #00C3E5; /* Celeste Plin */ }







/* =========================================
   ESTILO PARA PÁGINAS INTERNAS (CATÁLOGO)
   ========================================= */

/* Hero Pequeño (Misma imagen, menor altura) */
.hero-small {
    /* Usamos la misma imagen que la portada */
    background: linear-gradient(
        to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%   
    ), url('assets/apus fondo.jpg'); 
    
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    
    /* Altura ajustada para catálogo (no pantalla completa) */
    height: 50vh; 
    min-height: 400px;
    width: 100%; 
    
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-align: center; 
    padding: 0 20px;
    position: relative;
    margin-bottom: 40px; /* Separación con los productos */
}

/* Ajustes de texto para el Hero Pequeño */
.hero-small .gold-shimmer {
    font-size: 3.5rem; /* Un poco más pequeño que en la portada */
    margin-bottom: 10px;
}

.hero-small h2 {
    font-size: 1.2rem;
    color: #ddd;
    letter-spacing: 3px;
    font-weight: 400;
}




/* =========================================
   NAVBAR MODO CLARO (Barra Blanca / Letras Negras)
   ========================================= */
.navbar.navbar-light {
    background-color: #ffffff; /* Fondo Blanco */
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Sombra suave */
    height: 90px;
}

/* Cambiar color de letras, iconos y menú a oscuro */
.navbar.navbar-light .nav-links a,
.navbar.navbar-light .action-icon,
.navbar.navbar-light .lang-selector,
.navbar.navbar-light .menu-toggle {
    color: #2C2C2C; /* Gris oscuro casi negro */
    text-shadow: none; /* Sin sombras */
}

/* Color dorado al pasar el mouse */
.navbar.navbar-light .nav-links a:hover,
.navbar.navbar-light .action-icon:hover {
    color: #C8A165;
}

/* Ajustes para Móvil en Modo Claro */
@media (max-width: 900px) {
    .navbar.navbar-light .nav-links {
        background-color: #ffffff;
        border-bottom: 1px solid #eee;
    }
    /* En móvil, los enlaces dentro del menú desplegable también oscuros */
    .navbar.navbar-light .nav-links a { color: #2C2C2C; }
}



/* =========================================
   ESTILOS PERFIL DE USUARIO
   ========================================= */

/* Hacemos la tarjeta de perfil más ancha que la de login */
.modal-card.profile-card {
    max-width: 600px;
    padding: 30px;
    text-align: left; /* Alineación izquierda para formularios */
}

/* PESTAÑAS (TABS) */
.profile-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-soft);
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--gold-main);
    border-bottom-color: var(--gold-main);
}

.tab-btn:hover { color: var(--text-main); }

/* CONTENIDO DE PESTAÑAS */
.tab-content { display: none; animation: fadeIn 0.3s ease; }
.tab-content.active { display: block; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* AVATAR */
.profile-avatar {
    text-align: center; margin-bottom: 20px;
}
.profile-avatar img {
    width: 80px; height: 80px; border-radius: 50%;
    border: 3px solid var(--gold-main); padding: 3px;
    object-fit: cover;
}

/* FORMULARIO EN FILAS */
.input-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}

/* BOTONES PERFIL */
.btn-save {
    width: 100%; padding: 14px; background-color: var(--text-main); color: white;
    border: none; border-radius: 8px; font-weight: 700; cursor: pointer;
    margin-top: 10px; transition: 0.3s; letter-spacing: 1px;
}
.btn-save:hover { background-color: var(--gold-main); }

.logout-section {
    margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; text-align: center;
}
.btn-logout {
    background: none; border: 1px solid #ff4444; color: #ff4444;
    padding: 10px 30px; border-radius: 50px; font-weight: bold; cursor: pointer;
    transition: 0.3s;
}
.btn-logout:hover { background: #ff4444; color: white; }

/* LISTA DE PEDIDOS (VACÍA POR AHORA) */
.orders-list {
    min-height: 200px; max-height: 400px; overflow-y: auto;
}
.empty-orders {
    text-align: center; color: #ccc; margin-top: 50px;
}
.empty-orders i { font-size: 3rem; margin-bottom: 10px; }





/* AGREGA ESTO AL FINAL DE TU CSS */

/* Forzar que la barra blanca se mantenga blanca incluso al hacer scroll */
.navbar.navbar-light.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Asegurar que los textos sigan negros */
.navbar.navbar-light.scrolled .nav-links a,
.navbar.navbar-light.scrolled .action-icon {
    color: #2C2C2C !important;
}

/* Hover dorado */
.navbar.navbar-light.scrolled .nav-links a:hover,
.navbar.navbar-light.scrolled .action-icon:hover {
    color: var(--gold-main) !important;
}


/* =========================================
   ESTILOS CONTENIDO GRATIS (DISEÑO LIMPIO)
   ========================================= */

/* Contenedor principal de texto */
.free-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Texto de introducción */
.free-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grilla de Detalles (2 columnas limpias) */
.free-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    text-align: left; /* Texto alineado a la izquierda para listas */
}

.free-col h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #2C2C2C;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-main);
    display: inline-block;
}

.free-list {
    list-style: none;
    padding: 0;
}

.free-list li {
    margin-bottom: 20px;
    color: #555;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
}

.free-list li i {
    color: var(--primary-color);
    margin-top: 5px;
}

/* Cita Final */
.free-quote {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-style: italic;
}

/* Formulario Limpio */
.clean-form {
    max-width: 500px;
    margin: 0 auto 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Sombra muy suave */
    border: 1px solid #eee;
}

.clean-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #FAFAF5;
    outline: none;
    transition: 0.3s;
}

.clean-form input:focus {
    border-color: var(--gold-main);
    background: white;
}

.clean-form button {
    width: 100%;
    padding: 15px;
    background-color: #2C2C2C;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
}

.clean-form button:hover {
    background-color: var(--gold-main);
}




/* =========================================
   ESTILOS FORMULARIO PREMIUM (FREE CONTENT)
   ========================================= */

.clean-form {
    max-width: 600px;
    margin: 0 auto 80px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Sombra elegante */
    border-top: 4px solid var(--gold-main); /* Detalle de marca superior */
    position: relative;
}

.clean-form h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clean-form input, 
.clean-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #FAFAF5; /* Fondo hueso suave */
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.clean-form input:focus,
.clean-form textarea:focus {
    border-color: var(--gold-main);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(200, 161, 101, 0.1); /* Resplandor dorado */
    outline: none;
}

.clean-form button {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-color); /* Terracota */
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.clean-form button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(160, 64, 54, 0.2);
}

.clean-form button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}


/* =========================================
   ESTILOS SERVICIOS (DISEÑO PEREGRINACIÓN)
   ========================================= */

.services-section {
    padding: 80px 20px;
    background-color: #fff;
}

.services-header {
    text-align: center; margin-bottom: 60px;
}

.services-header h2 {
    font-family: var(--font-title); font-size: 2.5rem; color: var(--text-main);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}

.services-header .sub-title {
    font-size: 0.9rem; color: var(--primary-color); font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px;
}

.services-header p {
    color: var(--text-soft); max-width: 600px; margin: 0 auto; line-height: 1.6;
}

/* GRID DE SERVICIOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px; max-width: 1200px; margin: 0 auto;
}

/* TARJETA ESTILO PEREGRINACIÓN */
.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Imagen con Título Superpuesto */
.service-img-box {
    position: relative;
    height: 350px; /* Imagen alta */
    width: 100%;
}

.service-img-box img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-box img { transform: scale(1.05); }

/* Gradiente para que se lea el texto */
.img-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

/* Título dentro de la imagen */
.service-title-overlay {
    position: absolute; bottom: 20px; left: 20px; z-index: 2;
    font-family: var(--font-title);
    color: white; font-size: 1.6rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

/* Decoración dorada bajo el título */
.service-title-overlay::after {
    content: ''; display: block; width: 40px; height: 3px;
    background-color: var(--gold-main); margin-top: 8px;
}

/* Etiqueta Popular (Opcional) */
.tag-popular {
    position: absolute; top: 20px; right: 20px;
    background-color: #dc2626; color: white;
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    z-index: 3; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Cuerpo de Texto */
.service-body {
    padding: 25px;
    flex: 1; /* Empuja el botón al final */
    display: flex; flex-direction: column;
}

.service-desc {
    font-size: 0.95rem; color: #555; line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Cortar texto si es muy largo */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Botón Rojo Ancho */
.btn-service {
    width: 100%; padding: 15px;
    background-color: var(--primary-color);
    color: white; border: none;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: 0.3s;
    margin-top: auto; /* Siempre al fondo */
    border-radius: 0 0 20px 20px; /* Bordes redondos solo abajo */
}

.btn-service:hover {
    background-color: var(--primary-hover);
}

/* Botón Ver Todos (Home) */
.view-all-container { text-align: center; margin-top: 50px; }
.btn-view-services {
    text-decoration: none; color: var(--text-main); font-weight: 700;
    border-bottom: 2px solid var(--gold-main); padding-bottom: 5px;
    transition: 0.3s;
}
.btn-view-services:hover { color: var(--gold-main); }

/* =========================================
   ESTILOS PÁGINA DE DETALLE (SERVICIOS)
   ========================================= */

/* Hero Gigante de Detalle */
.detail-hero {
    height: 70vh;
    background-size: cover; background-position: center;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    margin-bottom: 0; /* Pegado al contenido */
}
.detail-hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* Oscurecer para leer texto */
}
.detail-hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
.detail-hero h1 {
    font-family: var(--font-title); font-size: 3.5rem; text-transform: uppercase;
    margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Contenedor Principal */
.detail-container {
    max-width: 1000px; margin: -60px auto 100px auto; /* Sube sobre el hero */
    background: white; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 60px; position: relative; z-index: 5;
}

/* Secciones de Contenido */
.detail-section { margin-bottom: 50px; }
.detail-section h3 {
    font-family: var(--font-title); font-size: 1.5rem; color: var(--primary-color);
    margin-bottom: 20px; border-bottom: 2px solid #eee; padding-bottom: 10px;
    display: inline-block;
}
.detail-text {
    font-size: 1.1rem; line-height: 1.8; color: #444; white-space: pre-line; /* Respeta saltos de línea */
}

/* Lista de Detalles (Iconos) */
.detail-list-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
}
.detail-item { display: flex; gap: 15px; align-items: flex-start; }
.detail-item i {
    font-size: 1.5rem; color: var(--gold-main); background: #fafaf5;
    width: 50px; height: 50px; display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
}
.detail-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 5px; }
.detail-item p { font-size: 0.9rem; color: #666; }

/* Galería Interna */
.detail-gallery {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px; margin-top: 30px;
}
.detail-gallery img {
    width: 100%; height: 200px; object-fit: cover; border-radius: 10px;
    transition: transform 0.3s; cursor: pointer;
}
.detail-gallery img:hover { transform: scale(1.03); }

/* Botón Flotante de Reserva */
.book-action-area {
    text-align: center; margin-top: 60px; padding-top: 40px; border-top: 1px solid #eee;
}
.btn-book-big {
    background-color: var(--primary-color); color: white;
    padding: 18px 50px; font-size: 1.2rem; font-weight: 700;
    border: none; border-radius: 50px; cursor: pointer;
    box-shadow: 0 10px 30px rgba(160, 64, 54, 0.3); transition: 0.3s;
    text-transform: uppercase; letter-spacing: 1px;
}
.btn-book-big:hover { background-color: var(--primary-hover); transform: translateY(-5px); }

/* Responsive */
@media (max-width: 768px) {
    .detail-hero h1 { font-size: 2.2rem; }
    .detail-container { margin: 0; border-radius: 0; padding: 40px 20px; }
}












/* =========================================
   DISEÑO "ZEN SPLIT" (PANTALLA DIVIDIDA)
   ========================================= */

.zen-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* IZQUIERDA: La Imagen Fija */
.zen-visual {
    width: 50%;
    height: 100vh;
    position: sticky; /* Se queda pegada al bajar */
    top: 0;
    background-size: cover;
    background-position: center;
    /* Sombra interna sutil para dar profundidad */
    box-shadow: inset -5px 0 20px rgba(0,0,0,0.1); 
}

/* DERECHA: El Contenido */
.zen-content {
    width: 50%;
    padding: 140px 80px 80px 80px; /* Mucho padding arriba para la navbar */
    background-color: #FAFAF5; /* Blanco Hueso */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tipografía Zen */
.zen-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.zen-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.zen-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    white-space: pre-line;
    margin-bottom: 40px;
}

/* Detalles (Itinerario) */
.zen-details-box {
    background: white;
    padding: 30px;
    border-left: 3px solid var(--gold-main);
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.zen-details-box h4 {
    font-family: var(--font-title);
    margin-bottom: 10px;
    color: var(--text-main);
}
.zen-details-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    white-space: pre-line;
}

/* Galería Pequeña en el Texto */
.zen-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.zen-gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.zen-gallery-grid img:hover { transform: scale(1.03); }

/* Botón Flotante Zen */
.btn-zen {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 40px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    align-self: flex-start; /* Para que no ocupe todo el ancho */
    box-shadow: 0 10px 25px rgba(160, 64, 54, 0.2);
}
.btn-zen:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

/* --- RESPONSIVE (MÓVIL) --- */
@media (max-width: 1000px) {
    .zen-wrapper { flex-direction: column; } /* Uno abajo del otro */
    
    .zen-visual {
        width: 100%;
        height: 60vh; /* Imagen alta en móvil */
        position: relative; /* Ya no es sticky */
    }
    
    .zen-content {
        width: 100%;
        padding: 50px 25px 100px 25px; /* Padding normal */
    }
    
    .zen-title { font-size: 2.5rem; }
    
    .btn-zen {
        width: 100%; /* Botón ancho en móvil */
        position: fixed;
        bottom: 0; left: 0;
        z-index: 100;
        border-radius: 0;
        padding: 20px;
    }
}



/* =========================================
   CATÁLOGO DE SERVICIOS (ZIG-ZAG)
   ========================================= */

/* Cabecera de la página */
.services-page-header {
    padding: 160px 20px 80px 20px;
    text-align: center;
    background-color: var(--bg-light);
}
.services-page-header h1 {
    font-family: var(--font-title); font-size: 3rem; margin-bottom: 20px; color: var(--text-main);
}

/* Contenedor Principal */
.services-zigzag-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px 100px 20px;
    display: flex; flex-direction: column; gap: 100px; /* Separación entre filas */
}

/* Fila Individual */
.service-row {
    display: flex; align-items: center; gap: 60px;
    opacity: 0; animation: fadeIn 0.8s forwards;
}

/* MAGIA: Invierte el orden en filas pares (2, 4, 6...) */
.service-row:nth-child(even) { flex-direction: row-reverse; }

/* Imagen */
.service-row-img {
    flex: 1; height: 450px;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-row-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.service-row:hover .service-row-img img { transform: scale(1.05); }

/* Texto */
.service-row-info { flex: 1; padding: 20px; }
.service-row-info h2 {
    font-family: var(--font-title); font-size: 2.2rem; margin-bottom: 20px; color: var(--text-main);
}
.service-row-info p {
    font-size: 1.05rem; line-height: 1.8; color: #555; margin-bottom: 30px;
}

/* Botón "Ver Detalles" */
.btn-zigzag {
    display: inline-block; padding: 12px 30px;
    border: 2px solid var(--text-main); color: var(--text-main);
    font-weight: 700; text-transform: uppercase; text-decoration: none;
    transition: 0.3s; letter-spacing: 1px;
}
.btn-zigzag:hover { background-color: var(--text-main); color: white; }

@keyframes fadeIn { to { opacity: 1; } }

/* Responsive */
@media (max-width: 900px) {
    .service-row, .service-row:nth-child(even) { flex-direction: column; gap: 30px; }
    .service-row-img { width: 100%; height: 300px; }
}




/* =========================================
   SECCIÓN "EL GUÍA" (ORIGIN & DESTINY)
   ========================================= */

.guide-section {
    padding: 100px 20px;
    background-color: white; /* Fondo limpio */
    display: flex;
    justify-content: center;
    overflow: hidden; /* Para que el cuadro naranja no se salga */
}

.guide-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px; /* Separación entre foto y texto */
}

/* --- LADO IZQUIERDO: FOTO --- */
.guide-image-wrapper {
    position: relative;
    flex: 1;
    max-width: 450px;
}

.guide-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2; /* Encima del cuadro naranja */
    display: block;
}

/* El Cuadro Naranja Decorativo */
.guide-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: #E85D04; /* Naranja Terracota */
    border-radius: 20px;
    z-index: 1; /* Detrás de la foto */
}

/* --- LADO DERECHO: TEXTO --- */
.guide-content {
    flex: 1;
}

.guide-label {
    color: #C0392B; /* Rojo Terracota */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.guide-title {
    font-family: var(--font-title); /* Cinzel */
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Línea decorativa pequeña bajo el título */
.guide-separator {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #E85D04, #F4A261);
    margin-bottom: 30px;
}

.guide-quote {
    font-family: 'Lato', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* La Tarjeta Beige (Yuri Flores) */
.guide-card {
    background-color: #FAF9F6; /* Beige muy suave */
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #C0392B; /* Borde rojo a la izquierda */
}

.guide-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.guide-role {
    font-size: 0.85rem;
    color: #C0392B; /* Rojo */
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.guide-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive (Móvil) */
@media (max-width: 900px) {
    .guide-container {
        flex-direction: column; /* Uno encima del otro */
        gap: 50px;
    }
    
    .guide-image-wrapper {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .guide-image-wrapper::after {
        width: 100px; height: 100px; /* Más pequeño en móvil */
        bottom: -20px; right: -20px;
    }

    .guide-title { font-size: 2.2rem; }
}



/* =========================================
   SECCIÓN TESTIMONIOS (DARK LUXURY)
   ========================================= */
.testimonials-section {
    background: #111; /* Fondo oscuro profundo */
    padding: 100px 0;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.testi-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.testi-header h2 {
    font-family: var(--font-title);
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    /* Efecto Dorado en el Texto */
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    color: transparent;
    text-transform: uppercase;
}

.testi-header span {
    color: #888;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: block;
}

/* Carrusel Infinito */
.carousel-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Animación lenta y continua */
    animation: scroll 60s linear infinite;
}

.carousel-track:hover { animation-play-state: paused; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Se mueve la mitad */
}

/* Tarjeta de Testimonio (Glass Effect) */
.testi-card {
    width: 400px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
    flex-shrink: 0;
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.testi-user {
    display: flex; gap: 15px; align-items: center; margin-bottom: 20px;
}

.testi-avatar {
    width: 55px; height: 55px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid var(--gold-main);
}

.testi-info h4 { margin: 0; color: white; font-family: var(--font-title); font-size: 1.1rem; }
.testi-info small { color: #aaa; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; }

.testi-stars { color: #FFD700; font-size: 0.9rem; margin-bottom: 15px; }
.testi-msg { color: #ddd; font-style: italic; font-size: 0.95rem; line-height: 1.7; }

/* Botón "Dejar Testimonio" */
.btn-gold-outline {
    background: transparent; color: var(--gold-main);
    border: 1px solid var(--gold-main); padding: 15px 40px;
    font-weight: bold; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; transition: 0.3s; position: relative; z-index: 2;
}

.btn-gold-outline:hover {
    background: var(--gold-main); color: #111;
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.3);
}

/* Modal Responsive */
@media (max-width: 900px) {
    .testi-card { width: 300px; }
}


/* =========================================
   SECCIÓN NEWSLETTER: SEEDS OF WISDOM
   ========================================= */
.newsletter-section {
    position: relative;
    /* Reemplaza esta URL con tu foto de bosque/hojas */
    background-image: url('assets/APUZEN\ \(30\).jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax elegante */
    padding: 120px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Capa oscura para que se lea el texto */
.newsletter-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 62, 80, 0.7); /* Tono verde/azul oscuro andino */
    z-index: 1;
}

.newsletter-content {
    position: relative; z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-title);
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.newsletter-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* Formulario de Suscripción */
.subscribe-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.subscribe-form input::placeholder { color: #ccc; }

.btn-subscribe {
    background-color: var(--gold-main);
    color: #111;
    border: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-subscribe:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .subscribe-form { flex-direction: column; border-radius: 20px; background: transparent; border: none; }
    .subscribe-form input { background: rgba(0,0,0,0.5); border-radius: 10px; margin-bottom: 10px; text-align: center; }
    .btn-subscribe { width: 100%; }
}





/* =========================================
   MEJORAS NEWSLETTER (Mensajes Elegantes)
   ========================================= */

/* Contenedor de Éxito (Oculto por defecto) */
.newsletter-success {
    display: none; /* Se activa con JS */
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.newsletter-success i {
    font-size: 4rem;
    color: var(--gold-main);
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.newsletter-success h3 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.newsletter-success p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Estado de Error (Input Rojo) */
.input-error {
    border: 2px solid #ff4444 !important; /* Rojo alerta */
    background-color: rgba(255, 68, 68, 0.1) !important;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Texto de Error debajo del botón */
.error-text {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    display: none; /* Oculto */
}


/* =========================================
   FOOTER (PIE DE PÁGINA - ANCESTRAL LEGACY)
   ========================================= */
.site-footer {
    background-color: #EAE6D9; /* Beige extraído de la imagen */
    color: #4B4B4B; /* Gris oscuro suave para texto */
    padding: 80px 20px 30px 20px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* 4 Columnas: Marca (más ancha) | Nav | Servicios | Contacto */
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Títulos de Columna */
.footer-col h4 {
    font-family: var(--font-title);
    color: #6D6253; /* Marrón tierra */
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Columna 1: Marca */
.footer-brand img {
    height: 55px; /* Logo un poco más grande */
    margin-bottom: 20px;
    opacity: 0.9;
    display: block;
}
.footer-brand p {
    line-height: 1.7;
    max-width: 300px;
    color: #555;
    font-size: 0.95rem;
}

/* Enlaces (Listas) */
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
    font-weight: 500;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--primary-color); /* Terracota al pasar mouse */
    padding-left: 5px; /* Pequeño movimiento */
}

/* Columna 4: Contacto */
.contact-list {
    list-style: none;
    padding: 0;
}
.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #555;
}
.contact-list i {
    color: #8B8070;
    margin-top: 4px;
    font-size: 1.1rem;
}
.contact-list a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}
.contact-list a:hover { color: var(--primary-color); }

/* Redes Sociales */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.social-btn {
    width: 42px; height: 42px;
    background-color: rgba(139, 128, 112, 0.1); /* Círculo beige oscuro */
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #6D6253;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}
.social-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Barra Inferior (Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

.created-by {
    display: flex;
    align-items: center;
    gap: 5px;
}

.created-by a {
    color: #6D6253;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}
.created-by a:hover { color: var(--primary-color); }

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr; /* Una sola columna */
        gap: 50px;
        text-align: center;
    }
    .footer-brand img, .footer-brand p { margin: 0 auto 20px auto; }
    .contact-list li { justify-content: center; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}



/* =========================================
   PÁGINA NOSOTROS (LINAJE FLORES)
   ========================================= */

/* Hero Específico para Nosotros */
.about-hero {
    /* Usamos una imagen de montaña/Andes */
    background: linear-gradient(
        to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%   
    ), url('assets/fondo\ nosotros.JPG'); /* Asegúrate de tener esta imagen o usa otra */
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    letter-spacing: 2px;
}

/* Contenedor de Biografías */
.biography-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 120px; /* Separación entre generaciones */
}

/* Fila de Biografía (Zig-Zag) */
.bio-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Invertir orden en filas pares (Julio Flores) */
.bio-row.reverse {
    flex-direction: row-reverse;
}

/* Imagen de Biografía */
.bio-image {
    flex: 1;
    position: relative;
}

.bio-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.bio-image:hover img {
    transform: scale(1.02);
}

/* Marco decorativo detrás de la foto */
.bio-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-main);
    border-radius: 12px;
    top: 20px;
    left: 20px;
    z-index: -1;
    transition: 0.3s;
}

.bio-row.reverse .bio-image::before {
    left: -20px; /* Ajuste para el lado izquierdo */
}

/* Texto de Biografía */
.bio-content {
    flex: 1;
}

.bio-role {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.bio-name {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.1;
}

.bio-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* SECCIÓN MISIÓN Y VISIÓN */
.mission-vision-section {
    background-color: #FAFAF5; /* Beige Hueso */
    padding: 100px 20px;
    text-align: center;
}

.mv-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold-main);
}

.mv-box h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.mv-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .about-hero h1 { font-size: 2.2rem; }
    
    .bio-row, .bio-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .bio-image img { height: 350px; }
    
    .mv-container { grid-template-columns: 1fr; gap: 30px; }
}




/* =========================================
   PÁGINA DE CONTACTO (BUZÓN SAGRADO)
   ========================================= */

/* Hero de Contacto */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/fondo\ contacto.jpg'); /* Asegúrate de tener una foto oscura/mística */
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.contact-hero p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
}

/* Sección Principal (Dos Columnas) */
.contact-section {
    padding: 80px 20px;
    background-color: #FAFAF5; /* Beige Hueso */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Columna Izquierda: Info + Mapa */
.contact-info-col h3 {
    font-family: var(--font-title);
    color: var(--text-main);
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px; height: 50px;
    background: white;
    border: 1px solid var(--gold-main);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--gold-main);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 { margin: 0 0 5px 0; color: #333; font-size: 1.1rem; }
.info-text p { margin: 0; color: #666; font-size: 0.95rem; line-height: 1.5; }
.info-text a { color: #666; text-decoration: none; transition: 0.3s; }
.info-text a:hover { color: var(--terracota); }

/* Mapa */
.map-box {
    margin-top: 40px;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

/* Columna Derecha: Formulario Flotante */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    top: -50px; /* Efecto flotante sobre el hero */
}

.form-group-contact {
    margin-bottom: 20px;
}

.form-group-contact label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}

.form-group-contact input, 
.form-group-contact textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group-contact input:focus, 
.form-group-contact textarea:focus {
    outline: none;
    border-color: var(--gold-main);
    background: white;
    box-shadow: 0 0 10px rgba(200, 161, 101, 0.1);
}

.btn-send-msg {
    width: 100%;
    background: var(--text-main);
    color: var(--gold-main);
    border: 1px solid var(--text-main);
    padding: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-send-msg:hover {
    background: var(--gold-main);
    color: white;
    border-color: var(--gold-main);
}

/* Mensaje de Éxito (Oculto) */
.contact-success-msg {
    display: none;
    text-align: center;
    padding: 40px 0;
}
.contact-success-msg i {
    font-size: 4rem; color: var(--gold-main); margin-bottom: 20px;
}
.contact-success-msg h3 { font-family: var(--font-title); font-size: 2rem; }

/* Responsive */
@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-card { top: 0; padding: 25px; }
    .contact-hero { height: 40vh; }
    .contact-hero h1 { font-size: 2.5rem; }
}

/* =========================================
   PÁGINA CHECKOUT (FINAL - FIXED LAYOUT)
   ========================================= */
.checkout-section {
    padding: 180px 20px 100px 20px; /* Más espacio arriba para que no choque con el menú */
    background-color: #FAFAF5; 
    min-height: 100vh;
    font-family: 'Lato', sans-serif;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr; /* Proporción ideal */
    gap: 40px;
    align-items: start; /* Importante para que el sticky funcione */
}

/* --- TARJETAS BLANCAS --- */
.white-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); 
    border: 1px solid rgba(0,0,0,0.02);
}

.white-card h2, .white-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #222;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FORMULARIO CON ICONOS (IZQUIERDA) --- */
.billing-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-full { grid-column: 1 / -1; }

.billing-group { display: flex; flex-direction: column; }
.billing-group label {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input con Icono */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 1rem;
    transition: 0.3s;
    pointer-events: none;
}

.input-with-icon input, 
.input-with-icon select, 
.input-with-icon textarea {
    width: 100%;
    padding: 14px 14px 14px 45px; /* Espacio para icono */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: #fcfcfc;
    transition: 0.3s;
    color: #333;
    font-family: 'Lato', sans-serif;
}

.input-with-icon input:focus, 
.input-with-icon select:focus, 
.input-with-icon textarea:focus {
    outline: none;
    border-color: var(--gold-main);
    background: white;
    box-shadow: 0 0 0 3px rgba(200, 161, 101, 0.1);
}

.input-with-icon:focus-within i { color: var(--gold-main); }

/* --- COLUMNA DERECHA (STICKY) --- */
/* Esto hace que la derecha baje contigo para que no se vea vacío */
.order-col { 
    position: relative;
    height: 100%; 
}

.sticky-wrapper { 
    position: sticky; 
    top: 140px; /* Se queda pegado a 140px del techo al bajar */
    z-index: 10;
}

/* Lista de Productos */
.order-items { margin-bottom: 25px; }

.order-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.item-left { display: flex; align-items: center; gap: 15px; }
.item-img-wrapper { position: relative; }

.item-img-wrapper img {
    width: 50px; height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.qty-badge {
    position: absolute;
    top: -8px; right: -8px;
    background: #444;
    color: white;
    font-size: 0.7rem;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-weight: bold;
    border: 2px solid white;
}

.item-name { font-weight: 600; color: #333; font-size: 0.9rem; line-height: 1.2; }
.item-price { font-weight: 700; color: #555; }

/* Totales */
.price-breakdown { margin-top: 20px; }
.breakdown-row {
    display: flex; justify-content: space-between;
    margin-bottom: 10px; font-size: 0.95rem; color: #666;
}
.breakdown-row.total {
    margin-top: 20px; padding-top: 20px;
    border-top: 2px solid #eee;
    font-size: 1.5rem; color: #222; font-family: var(--font-title);
    align-items: center;
}
.total-amount { color: var(--gold-main); }

/* Selector de Pago */
.payment-selector { display: grid; gap: 15px; margin-top: 30px; }

.pay-card-option {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.pay-card-option:hover { border-color: #bbb; }
.pay-card-option.active {
    border-color: var(--gold-main);
    background: rgba(200, 161, 101, 0.05);
}

.pay-left { display: flex; align-items: center; gap: 12px; font-weight: 700; color: #333; }
.pay-left input { accent-color: var(--gold-main); width: 20px; height: 20px; }
.pay-icons { display: flex; gap: 8px; align-items: center; }
.pay-icons img { height: 24px; width: auto; object-fit: contain; }

/* Botones */
.pay-actions { margin-top: 30px; }

#btnCulqi {
    width: 100%;
    background: linear-gradient(135deg, #00c46e 0%, #00a05a 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 196, 110, 0.25);
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#btnCulqi:hover { transform: translateY(-3px); }

/* Responsive */
@media (max-width: 900px) {
    .checkout-container { grid-template-columns: 1fr; gap: 30px; }
    .order-col { order: -1; }
    .sticky-wrapper { position: static; }
}



/* =========================================
   ESTILOS DINÁMICOS "ULTIMATE" (DETALLE SERVICIOS)
   ========================================= */

/* 1. INTRODUCCIÓN (FOTO + TEXTO) - Como "What does a Paqo do?" */
.block-2cols {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 60px 0;
    align-items: center;
}

.block-2cols img {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Sombra elegante */
    object-fit: cover;
}

.block-2cols div {
    flex: 1;
    min-width: 300px;
}

.block-2cols h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2. BARRA DE INFORMACIÓN (ROSA) - Como "Degrees / Duration" */
.block-feature-bar {
    background-color: #FFAFAF; /* Rosa pastel de la foto */
    color: #880E4F; /* Texto vino oscuro */
    padding: 40px 20px;
    margin: 60px -80px; /* Se expande a los lados (Rompe el contenedor) */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    border-top: 4px solid white;
    border-bottom: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.block-feature-bar div {
    border-left: 1px solid rgba(136, 14, 79, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-feature-bar div:first-child { border-left: none; }

.block-feature-bar h5 {
    font-family: var(--font-title);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.block-feature-bar p {
    font-size: 1rem;
    font-weight: 500;
}

/* 3. MALLA CURRICULAR (TARJETAS NEGRAS) - Como "Module I, II..." */
.modules-grid-container {
    background-color: #000; /* Fondo negro total */
    padding: 60px 40px;
    margin: 60px -80px; /* Expandido */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    color: white;
}

/* Título de la sección dentro del negro */
.modules-grid-container::before {
    content: 'CURRICULUM MESH';
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
    opacity: 0.8;
}

.module-card {
    background: transparent; /* Se integra en el fondo negro */
    padding: 10px;
    border-left: 1px solid #333; /* Línea sutil separadora */
    padding-left: 20px;
}

.module-card h4 {
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.module-card ul {
    list-style: none;
    padding: 0;
}

.module-card li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    gap: 10px;
    line-height: 1.4;
}

.module-card li::before {
    content: "✓";
    color: #d32f2f; /* Check rojo como en la foto */
    font-weight: bold;
}

/* 4. EXTRAS (Citas, Videos, Acordeones) */
.quote-block {
    background: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.quote-author {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
    font-style: normal;
    text-align: right;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Acordeón (Para Itinerarios) */
details {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

summary {
    padding: 18px;
    background: #fafafa;
    cursor: pointer;
    font-weight: bold;
    font-family: var(--font-title);
    color: #333;
    transition: 0.3s;
    outline: none;
    list-style: none; /* Quitar flecha por defecto */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: '+'; 
    font-size: 1.5rem; 
    color: var(--primary-color);
}

details[open] summary {
    background: #eee;
    border-bottom: 1px solid #ddd;
}

details[open] summary::after { content: '-'; }

.accordion-content {
    padding: 25px;
    line-height: 1.7;
    color: #555;
}

/* Galería Grid de 4 */
.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.gallery-grid-4 img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-grid-4 img:hover { transform: scale(1.05); }

/* AJUSTES RESPONSIVE */
@media (max-width: 900px) {
    .block-feature-bar, 
    .modules-grid-container {
        margin-left: -25px; /* Ajustar desborde en móvil */
        margin-right: -25px;
        padding: 30px 20px;
    }
    
    .block-2cols { gap: 30px; }
    
    .block-feature-bar {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 20px;
    }
    
    .block-feature-bar div {
        border-left: none;
        border-bottom: 1px solid rgba(136, 14, 79, 0.1);
        padding-bottom: 15px;
    }
    
    .modules-grid-container {
        grid-template-columns: 1fr;
    }
}

/* --- ESTILOS EXTRA PARA PÁGINA CURSO --- */

/* Etiquetas de Rangos (Positions) */
.rank-badge {
    background-color: #D32F2F; /* Rojo Sangre */
    color: white;
    padding: 15px 40px;
    font-family: var(--font-title);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px; /* Bordes rectangulares como la foto */
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s;
}

.rank-badge:hover {
    transform: scale(1.05);
    background-color: #B71C1C;
}

/* Ajuste para que la barra rosa se vea bien en esta página */
.block-feature-bar p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Ajuste Hero Curso */
.detail-hero p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}


/* =========================================
   ESTILOS MODAL TIPO RESERVA (REGISTRO FREE)
   ========================================= */

/* Ajustes específicos para la tarjeta */
.modal-card.reservation-style {
    max-width: 500px;
    padding: 30px 40px;
    border-top: 5px solid var(--primary-color); /* Borde rojo superior */
    background: #FFFAF5; /* Fondo ligeramente crema como la imagen */
}

/* Inputs estilo "Reserva" */
.input-group-res {
    margin-bottom: 15px;
    text-align: left;
}

.input-group-res label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color); /* Color terracota en labels */
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.input-group-res input, .fake-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333;
    background: white;
    outline: none;
    transition: 0.3s;
}

.fake-input {
    background-color: #f3f3f3;
    color: #555;
    font-weight: 500;
}

.input-group-res input:focus {
    border-color: var(--gold-main);
    box-shadow: 0 0 5px rgba(200, 161, 101, 0.2);
}

/* Filas de 2 columnas */
.row-res {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Botón Final Grande */
.btn-reserve-now {
    width: 100%;
    padding: 15px;
    background-color: #ccc; /* Gris por defecto hasta hover */
    background: linear-gradient(to right, #A04036, #82322a); /* Terracota degradado */
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(160, 64, 54, 0.3);
    transition: transform 0.2s;
}

.btn-reserve-now:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 500px) {
    .row-res { grid-template-columns: 1fr; }
    .modal-card.reservation-style { padding: 20px; }
}


/* =========================================
   LIBRO DE RECLAMACIONES (BOTÓN FLOTANTE)
   ========================================= */
.book-float-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Esquina izquierda */
    width: 60px;
    height: 60px;
    background-color: white;
    border: 2px solid #A04036; /* Color Terracota */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9990; /* Debajo del modal pero encima del contenido */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.book-float-btn:hover {
    transform: scale(1.1);
    background-color: #FAFAF5;
}

.book-float-btn img {
    width: 35px;
    height: auto;
}

/* Tooltip (Texto al pasar el mouse) */
.book-float-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 70px;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    font-weight: bold;
}

.book-float-btn:hover::after {
    opacity: 1;
    left: 80px; /* Pequeño movimiento */
}

/* Modal Específico del Libro */
.complaint-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

@media (max-width: 600px) {
    .complaint-form-grid { grid-template-columns: 1fr; }
    .book-float-btn { width: 50px; height: 50px; bottom: 20px; left: 20px; }
    .book-float-btn img { width: 28px; }
    .book-float-btn::after { display: none; /* Ocultar tooltip en móvil */ }
}



/* =========================================
   MEJORA PARA LA COLUMNA LEGAL Y GRID
   ========================================= */

/* 1. Corregimos el grid para aceptar 5 columnas */
.footer-container {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr !important;
}

/* 2. Estilo específico para la imagen del Libro de Reclamaciones */
.footer-col a img {
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    margin-top: 10px;
    border-radius: 4px;
}

/* 3. Efecto al pasar el mouse sobre el libro */
.footer-col a:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* 4. Ajuste para que en celulares se vea bien (una sola columna) */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .footer-col a img {
        margin: 15px auto 0 auto; /* Centra la imagen en móviles */
    }
}



/* Banner de Cookies Estilizado */
.cookie-overlay {
    position: fixed;
    bottom: -100%; /* Escondido al inicio */
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    border-top: 2px solid #C8A165; /* Tu color dorado */
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    justify-content: center;
}

.cookie-overlay.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.cookie-content i {
    color: #C8A165;
    font-size: 1.5rem;
}

.btn-accept {
    background: #C8A165;
    color: black;
    border: none;
    padding: 8px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-accept:hover {
    background: #A04036; /* Tu color rojo */
    color: white;
}

.cookie-link {
    color: #aaa;
    font-size: 0.8rem;
    text-decoration: underline;
    margin-left: 10px;
}



.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #555;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}


/* =========================================
   RESPONSIVE COOKIE BANNER
   ========================================= */
@media (max-width: 768px) {
    .cookie-overlay {
        padding: 25px 15px; /* Más espacio interno */
    }

    .cookie-content {
        flex-direction: column; /* Apilar elementos verticalmente */
        gap: 15px;
        text-align: center;
    }

    .cookie-content i {
        font-size: 2rem; /* Icono un poco más grande para destacar */
        margin-bottom: 5px;
    }

    .cookie-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
    }

    .cookie-buttons {
        width: 100%;
        display: flex;
        flex-direction: column; /* Botón arriba, link abajo */
        gap: 12px;
        align-items: center;
    }

    .btn-accept {
        width: 100%; /* Botón a lo ancho del celular para facilitar el clic */
        padding: 14px;
        font-size: 1rem;
        order: 1; /* El botón va primero */
    }

    .cookie-link {
        margin-left: 0;
        font-size: 0.85rem;
        order: 2; /* El link de privacidad va debajo */
    }
}


/* Ocultar la barra de Google y el logo original del widget */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Evitar que Google cambie el color de fuente de tus menús */
font {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* =========================================
   BLOQUEO TOTAL DE INTERFAZ DE GOOGLE
   ========================================= */

/* Oculta el contenedor principal por ID (necesita barras invertidas por los caracteres especiales) */
#\:1\.container, #\:0\.container, .goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Evita que el body se desplace cuando Google inyecta la barra */
body {
    top: 0px !important;
    position: static !important;
}

/* Oculta los tooltips de "Texto original" al pasar el mouse */
#goog-gt-tt, .goog-te-balloon-frame, .skiptranslate {
    display: none !important;
    visibility: hidden !important;
}

/* Quita el resaltado azul/amarillo de los textos traducidos */
font {
    background-color: transparent !important;
    box-shadow: none !important;
    all: unset !important;
}


.lang-selector span {
    cursor: pointer;
    transition: color 0.3s ease;
}



/* Corrección: Ocultar logo y texto del footer pedido por el cliente */
.footer-brand {
    display: none !important;
}

/* Ajuste de columnas: Como ahora hay 4 columnas en lugar de 5, 
   ajustamos el espacio para que no quede un hueco vacío a la izquierda */
.footer-container {
    grid-template-columns: 1fr 1fr 1fr 1.2fr !important;
}

/* =========================================
   BLOQUEO TOTAL Y DEFINITIVO DE GOOGLE
   ========================================= */

/* Oculta absolutamente todos los marcos y banners de Google */
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner-frame, 
.goog-te-balloon-frame,
#goog-gt-tt, 
.skiptranslate,
#\:1\.container, 
#\:0\.container,
.goog-te-spinner-pos {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
}

/* Fuerza al cuerpo a ignorar los 40px que Google inyecta */
body {
    top: 0 !important;
    position: static !important;
    min-height: 100vh !important;
}

/* Quita el resaltado azul que aparece al traducir */
font {
    background-color: transparent !important;
    box-shadow: none !important;
    all: unset !important;
}


