/* ==========================================================================
   1. CONFIGURACIÓN GLOBAL & VARIABLES
   ========================================================================== */
:root {
    --brand-orange: #e38500;
    --brand-orange-hover: #c57400;
    --brand-wine: #6e1d34;
    --dark-color: #1a1a1a;
    --text-gray: #333333;
    --bg-crema: #f9f7f4;
    --white: #ffffff;
    --font-main: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-gray); background-color: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   2. HEADER (ESCRITORIO & GENERAL)
   ========================================================================== */
.main-header {
    background-color: var(--bg-crema);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img { height: 48px; width: auto; }

/* Navegación Escritorio */
.nav-list { display: flex; gap: 20px; }
.nav-item { position: relative; padding: 10px 0; }
.nav-item > a { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 6px; white-space: nowrap; }

.dropdown-menu {
    position: absolute; top: 100%; left: 0; background: var(--white);
    min-width: 220px; box-shadow: var(--shadow-md); border-radius: 8px;
    padding: 10px 0; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: var(--transition);
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { padding: 10px 20px; display: block; font-size: 13px; }
.dropdown-menu li a:hover { background: #f5f5f5; color: var(--brand-orange); }

/* Buscador */
.header-search-container { flex-grow: 1; max-width: 450px; }
.search-box {
    background: var(--white); border-radius: 50px; display: flex;
    padding: 4px 4px 4px 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.search-box input { border: none; outline: none; flex-grow: 1; font-family: var(--font-main); font-size: 13px; }
.btn-search { background: var(--brand-orange); color: var(--white); border: none; border-radius: 50px; padding: 10px 22px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; }

/* Acciones Derecha */
.header-right { display: flex; align-items: center; gap: 15px; }
.btn-login-pill { background: var(--white); padding: 10px 25px; border-radius: 50px; font-weight: 700; font-size: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 8px; white-space: nowrap; }

/* Selector de País */
.country-wrapper { position: relative; display: inline-block; }
.country-selector {
    background: var(--brand-orange); color: var(--white);
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; cursor: pointer;
}
.country-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0; background: var(--white);
    min-width: 180px; border-radius: 12px; box-shadow: var(--shadow-md);
    padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 1200;
}
.country-wrapper:hover .country-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.country-dropdown li a { display: flex; align-items: center; gap: 12px; padding: 10px 20px; font-size: 13px; font-weight: 600; }
.country-dropdown li a img { width: 20px; }

.mobile-hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--brand-wine); }

/* ==========================================================================
   3. RESPONSIVE MÓVIL (Acomodo Logo -> Login -> País -> Hamburguesa)
   ========================================================================== */
@media (max-width: 1150px) {
    .header-container { flex-wrap: wrap; justify-content: space-between; }
    .header-nav { display: none !important; }
    
    /* Reordenamiento */
    .logo { order: 1; }
    .header-right { order: 2; gap: 10px; flex-grow: 0; }
    .header-search-container { order: 3; width: 100%; max-width: 100%; margin-top: 10px; }

    /* Ajuste elementos en Header móvil */
    .btn-login-pill { padding: 10px 15px; }
    .btn-login-pill span { display: none; } /* Solo icono en móvil */
    .country-selector { width: 40px; height: 40px; font-size: 10px; }
    .mobile-hamburger { display: block; }
}

/* ==========================================================================
   4. SIDEBAR MÓVIL & ACORDEÓN
   ========================================================================== */
.mobile-sidebar { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: var(--white); z-index: 2000; transition: 0.4s ease; padding: 25px; }
.mobile-sidebar.active { right: 0; }
.sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: none; z-index: 1999; }

.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.sidebar-logo { height: 35px; }
.btn-close-sidebar { background: none; border: none; font-size: 32px; cursor: pointer; color: var(--brand-wine); }

.sidebar-link-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; font-weight: 700; border-bottom: 1px solid #eee; cursor: pointer; }
.sidebar-link-wrapper i { transition: 0.3s; font-size: 12px; }
.sidebar-item.active .sidebar-link-wrapper i { transform: rotate(180deg); color: var(--brand-orange); }
.sidebar-submenu { max-height: 0; overflow: hidden; transition: 0.4s; background: #f9f9f9; }
.sidebar-item.active .sidebar-submenu { max-height: 500px; }
.sidebar-submenu li a { display: block; padding: 12px 20px; font-size: 14px; border-bottom: 1px solid #eee; }
.sidebar-divider { height: 1px; background: #eee; margin: 20px 0; }



/* ==========================================================================
   1. ESTRUCTURA GLOBAL (GRID MAESTRO)
   ========================================================================== */
.container {
    width: 92%;           /* Margen de seguridad lateral */
    max-width: 1600px;    /* LÍMITE SOLICITADO */
    margin: 0 auto;       /* Centrado automático */
    position: relative;
}

/* ==========================================================================
   2. HERO SECTION (CONTENIDO ACOTADO)
   ========================================================================== */
.hero {
    background-color: var(--bg-crema);
    padding: 60px 0 0 0;
    position: relative;
    /* Curvatura estética en la base */
    border-bottom-left-radius: 170px; 
    border-bottom-right-radius: 170px;
    overflow: hidden;
}

/* El grid ahora vive dentro de .container (HTML) para respetar los 1600px */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    padding-bottom: 20px;
}

.hero-content {
    padding-right: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #433633; 
    margin-bottom: 50px;
}

.hero-title span {
    color: var(--brand-wine);
}

/* Grid de beneficios internos */
.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    max-width: 750px;
}

.stat-item {
    border-left: 2px solid rgba(0,0,0,0.1);
    padding-left: 20px;
}

.stat-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Decoración Flecha Naranja */
.hero-arrow-decor {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: 2px solid var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    background: var(--bg-crema);
    z-index: 2;
}

/* Contenedor Imagen Hero */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-chica {
    width: 100%;
    max-width: 700px; /* Ajuste para que no se vea gigante en 1600px */
    height: auto;
}

.floating-tooltip {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 5;
    text-align: right;
}

.tooltip-dot {
    width: 14px;
    height: 14px;
    background: #b1b9c3;
    border-radius: 50%;
    margin-left: auto;
    margin-bottom: 8px;
}

.tooltip-line {
    width: 70px;
    height: 1px;
    background: #b1b9c3;
    margin-left: auto;
    margin-bottom: 10px;
}

.floating-tooltip p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

/* Area de CTAs Inferior (Acotada a 1600px) */
.hero-footer {
    padding: 10px 0 50px 0;
    text-align: center;
}

.hero-footer-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #333;
    margin-bottom: 40px;
}

.hero-btns-group {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-hero-wine {
    background-color: var(--brand-wine);
    color: var(--white);
    padding: 20px 45px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-hero-wine:hover {
    background-color: #4a1323;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(110, 29, 52, 0.2);
}

/* ==========================================================================
   5. RESPONSIVE REFINADO
   ========================================================================== */
@media (max-width: 1100px) {
    .container { width: 95%; }
    .hero { border-radius: 0 0 60px 60px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content { padding-right: 0; }
    .hero-stats-grid { margin: 0 auto; text-align: left; max-width: 500px; }
    .hero-image-container { justify-content: center; }
    .hero-chica { max-width: 90%; }
    .hero-btns-group { flex-direction: column; align-items: center; }
    .btn-hero-wine { width: 100%; max-width: 380px; justify-content: center; }
    .hero-arrow-decor { display: none; } /* Limpieza visual en móvil */
}



/* ==========================================================================
   SERVICIOS - ALINEACIÓN DE PRECISIÓN (1600PX)
   ========================================================================== */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-main-grid {
    display: grid;
    /* Dos columnas: Izquierda fija y derecha flexible */
    grid-template-columns: 1fr 1.1fr; 
    grid-auto-rows: 1fr; /* Filas de igual altura */
    gap: 25px;
    margin-bottom: 60px;
}

/* Tarjeta Izquierda (Grande) */
.card-left {
    grid-row: span 2; /* Ocupa el alto de las dos de la derecha */
    background-color: #ebe5e8 !important; /* Color solicitado */
    text-align: center;
    justify-content: center !important;
}

/* Tarjetas Derecha */
.card-right {
    background-color: #f7f3f0 !important; /* Color solicitado */
    flex-direction: row !important; /* Imagen al lado del texto */
    align-items: center;
    text-align: left;
}

/* Estilo común de las Cards */
.service-card {
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

/* Imágenes: Ancho fijo de 220px */
.service-card img {
    width: 220px; 
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.card-right .card-image-side {
    flex-shrink: 0; /* Evita que la imagen se encoja */
    margin-right: 30px;
}

.card-left .card-image {
    margin-bottom: 30px;
}

/* Tipografía y Botones */
.service-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.btn-service {
    background-color: var(--brand-wine);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

/* Footer Sección */
.services-footer-text {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-footer-text p {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 10px;
}

.services-footer-text h4 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4a3a3a;
}

/* ==========================================================================
   RESPONSIVE SERVICIOS REFINADO
   ========================================================================== */
@media (max-width: 1100px) {
    .services-main-grid {
        grid-template-columns: 1fr; /* Columna única */
        grid-auto-rows: auto;
    }

    .card-left {
        grid-row: span 1;
    }

    .card-right {
        flex-direction: column !important;
        text-align: center;
    }

    .card-right .card-image-side {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .service-card img {
        width: 180px; /* Reducción ligera para móviles */
    }
}


/* ==========================================================================
   BLOQUE 4: PLANES Y FAQ (VERSIÓN FINAL CONSOLIDADA)
   ========================================================================== */
.plans-section {
    padding: 30px 0;
    background-color: var(--bg-crema);
}

.plans-grid-main {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Equilibrio entre Slider y FAQ */
    gap: 60px;
    align-items: center;
}

/* --- ESTRUCTURA DEL SLIDER --- */
.plans-slider-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea todo al inicio para que los dots sigan la card */
}

.slider-layout {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

/* Tarjeta del Plan */
.plan-card {
    background: #fff;
    padding: 50px;
    border-radius: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    flex: 1;
    max-width: 420px; /* Ancho fijo para control de dots */
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-header h3 { 
    font-size: 2.2rem; 
    font-weight: 800; 
    color: #444; 
    margin-bottom: 5px;
}

.plan-header p { 
    color: #888; 
    margin-bottom: 25px; 
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 20px; 
}

.plan-price { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 35px; 
}

.plan-price .amount { 
    font-size: 3.8rem; 
    font-weight: 800; 
    color: #333; 
}

.plan-price .currency { 
    font-size: 1.6rem; 
    font-weight: 800; 
    align-self: flex-start; 
    margin-top: 12px; 
}

.price-info p { 
    font-size: 0.85rem; 
    color: #777; 
    line-height: 1.3; 
}

.plan-features { 
    margin-bottom: 40px; 
}

.plan-features li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 15px; 
    font-weight: 600; 
    color: #444; 
}

.plan-features i { 
    color: #555; 
    font-size: 1.2rem; 
}

.btn-plan-action {
    display: block;
    text-align: center;
    border: 2px solid #555;
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    color: #444;
    transition: var(--transition);
}

.btn-plan-action:hover {
    background: var(--brand-wine);
    color: #fff;
    border-color: var(--brand-wine);
}

/* --- CONTROLES LATERALES (DERECHA) --- */
.slider-side-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arrow-ctrl {
    width: 85px;
    height: 85px;
    border: 2px solid var(--brand-orange);
    border-radius: 50%;
    background: transparent;
    color: var(--brand-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.arrow-ctrl i { 
    font-size: 2.5rem; 
}

.arrow-ctrl:hover {
    background: var(--brand-orange);
    color: #fff;
}

.arrow-ctrl.hidden {
    opacity: 0.1;
    cursor: default;
    pointer-events: none;
}

/* --- DOTS (EXTERNOS Y CENTRADOS BAJO CARD) --- */
.slider-dots-container {
    width: 420px; /* Match exacto con el max-width de la plan-card */
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.s-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.s-dot.active {
    background: var(--brand-wine);
    transform: scale(1.1);
}

/* --- FAQ / INFO (DERECHA) --- */
.plans-faq {
    padding-left: 20px;
}

.faq-box {
    border-left: 6px solid var(--brand-orange);
    padding-left: 25px;
    margin-bottom: 45px;
}

.faq-box:last-child {
    margin-bottom: 0;
}

.faq-box h4 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-box p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .plans-grid-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .plans-slider-wrapper {
        align-items: center; /* Centra todo en móvil */
    }

    .slider-layout {
        flex-direction: column;
        gap: 25px;
    }

    .slider-side-controls {
        flex-direction: row;
        order: 2;
    }

    .plan-card {
        order: 1;
        width: 100%;
        max-width: 100%;
        padding: 35px 25px;
    }

    .slider-dots-container {
        width: 100%;
        order: 3;
    }

    .faq-box h4 {
        font-size: 1.4rem;
    }
}



/* ==========================================================================
   BLOQUE 5: ACERCA DE NOSOTROS
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Imagen ligeramente más pequeña que el texto */
    gap: 80px;
    align-items: center;
}

/* --- Contenedor de Imagen --- */
.about-image-wrapper {
    position: relative;
}

.about-main-img {
    width: 100%;
    border-radius: 60px; /* Bordes muy redondeados como la imagen */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Medalla de 20 años */
.experience-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 160px;
    height: 160px;
    background-color: var(--brand-wine);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(110, 29, 50, 0.3);
    z-index: 10;
}

.experience-badge i {
    color: var(--brand-orange);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.exp-years {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
}

/* --- Lado Derecho: Contenido --- */

/* Píldora Superior */
.service-pill {
    background-color: #ede9eb; /* Gris/Guinda muy claro del diseño */
    border-radius: 100px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.pill-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    line-height: 1.2;
}

/* Título y Descripción */
.about-text-area {
    padding-left: 20px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4b4b4b;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Botón Ver Más */
.btn-about-more {
    background-color: var(--brand-wine);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.btn-about-more:hover {
    background-color: #4a1323;
    transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .experience-badge {
        width: 130px;
        height: 130px;
        top: -15px;
        left: -15px;
    }

    .service-pill {
        padding: 20px 30px;
        border-radius: 30px; /* Menos redondeado en móvil para espacio */
        flex-direction: column;
        text-align: center;
    }

    .about-text-area {
        padding-left: 0;
        text-align: center;
    }

    .about-description {
        margin: 0 auto 30px;
    }
}


/* ==========================================================================
   REDISEÑO FOOTER ARCII Cloud
   ========================================================================== */
.main-footer {
    background-color: #f2eeef;
    padding-top: 0;
    font-family: 'Raleway', sans-serif;
}

/* 1. Barra superior (CTA y Newsletter) */
.footer-cta-bar {
    background-color: var(--brand-wine); /* #6e1d34 */
    padding: 50px 0;
    color: white;
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.cta-help-box {
    display: flex;
    gap: 25px;
    align-items: center;
}

.cta-icon i {
    font-size: 3.5rem;
    color: var(--brand-orange);
}

.cta-content h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.cta-btns {
    display: flex;
    gap: 15px;
}

.btn-cta-white {
    background-color: white;
    color: var(--brand-wine);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
}

.btn-cta-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    flex: 1;
    outline: none;
}

.newsletter-form button {
    background: var(--brand-orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
}

/* 2. Cuerpo del Footer */
.footer-main-content {
    padding: 70px 0;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

.footer-brand-col .footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.brand-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-directorio {
    list-style: none;
}

.contact-directorio li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--brand-wine);
    font-size: 0.9rem;
}

.contact-directorio i {
    color: var(--brand-orange);
    width: 20px;
}

/* 3. Grid de Links */
.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.mt-footer { margin-top: 40px; }

.footer-list li { margin-bottom: 10px; }
.footer-list a {
    font-size: 0.9rem;
    color: #444;
    transition: 0.3s;
}

.footer-list a:hover {
    color: var(--brand-orange);
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-main-grid { grid-template-columns: 1fr; }
    .footer-brand-col { text-align: center; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 40px; }
    .contact-directorio { display: inline-block; text-align: left; }
    .footer-cta-grid { grid-template-columns: 1fr; text-align: center; }
    .cta-help-box { flex-direction: column; }
    .cta-btns { justify-content: center; }
}

@media (max-width: 768px) {
    .footer-links-wrapper { grid-template-columns: 1fr; gap: 0; }
    .footer-title { cursor: pointer; padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.05); margin-bottom: 0; }
    .footer-list { max-height: 0; overflow: hidden; transition: 0.4s; }
    .footer-col.active .footer-list { max-height: 600px; padding: 15px 0; }
}

/* ==========================================================================
   BLOQUE DE CRÉDITOS Y REDES SOCIALES (FOOTER FINAL)
   ========================================================================== */
.footer-credits {
    background-color: #ebe5e8; /* Un tono más profundo que el f2eeef del footer */
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

/* Lado Izquierdo: Textos Legales */
.credits-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

.credits-left p {
    margin: 0;
}

.credits-left a {
    color: #555;
    transition: color 0.3s ease;
}

.credits-left a:hover {
    color: var(--brand-orange);
}

.separator {
    color: #ccc;
    font-weight: 300;
}

/* Lado Derecho: Iconos Sociales */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--brand-wine); /* #6e1d34 */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background-color: var(--brand-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(227, 133, 0, 0.3);
    color: white;
}

/* Ajustes Responsive para Créditos */
@media (max-width: 992px) {
    .credits-flex {
        flex-direction: column-reverse; /* Redes sociales arriba en móvil */
        gap: 25px;
        text-align: center;
    }

    .credits-left {
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none; /* Quitamos separadores en vertical para móvil */
    }
}

/* ==========================================================================
   CHECKOUT / CARRITO STYLES
   ========================================================================== */
.checkout-shell {
  background: radial-gradient(circle at top right, rgba(227, 133, 0, 0.12), transparent 40%), #f7f5f3;
  min-height: 100vh;
  padding: 40px 0 80px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
  align-items: start;
}
.checkout-card {
  background: #fff;
  border: 1px solid #ece7e2;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(53, 24, 30, 0.06);
}
.checkout-title {
  font-size: 2rem;
  font-weight: 800;
  color: #352229;
  margin-bottom: 6px;
}
.checkout-subtitle {
  color: #5f5a57;
  margin-bottom: 20px;
}
.cart-items-list {
  display: grid;
  gap: 12px;
}
.cart-item-card {
  display: grid;
  grid-template-columns: 1.2fr 0.35fr 0.35fr 0.22fr;
  gap: 12px;
  align-items: center;
  border: 1px solid #efe9e3;
  border-radius: 14px;
  padding: 14px;
  background: #fffdfa;
}
.cart-item-main h4 {
  margin: 0;
  font-size: 1rem;
  color: #39242d;
  font-weight: 800;
}
.cart-item-main p {
  margin: 6px 0 0;
  font-size: 0.84rem;
  color: #7a706a;
}
.cart-item-controls label {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 6px;
  color: #7a706a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.cart-item-controls input {
  width: 100%;
  border: 1px solid #ddd3cb;
  border-radius: 8px;
  padding: 7px;
}
.cart-item-price {
  font-weight: 800;
  color: #6e1d34;
  text-align: right;
}
.cart-remove {
  border: 0;
  border-radius: 8px;
  padding: 8px;
  background: #f9e7eb;
  color: #8c4655;
  font-weight: 700;
  cursor: pointer;
}
.checkout-summary {
  position: sticky;
  top: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #5d5551;
  font-size: 0.94rem;
}
.summary-row.total {
  border-top: 1px solid #e8ded6;
  margin-top: 14px;
  padding-top: 14px;
  color: #2f1f25;
  font-weight: 800;
  font-size: 1.06rem;
}
.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkout-form-grid .full {
  grid-column: span 2;
}
.checkout-input {
  width: 100%;
  border: 1px solid #ddd3cb;
  border-radius: 10px;
  padding: 12px 13px;
  font-family: inherit;
}
.checkout-action {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #6e1d34, #8c4655);
  color: #fff;
  padding: 13px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 14px;
}
.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 10px;
}
.coupon-row button {
  border: 1px solid #d7cdc5;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  background: #fff;
  color: #64444e;
  cursor: pointer;
}
.checkout-feedback {
  margin-top: 12px;
  border-radius: 12px;
  padding: 12px;
  font-weight: 700;
  display: none;
}
.checkout-feedback.success { background: #e6f8ee; color: #0f5132; }
.checkout-feedback.error { background: #fde8e8; color: #9b1c1c; }
.checkout-feedback.warning { background: #fff4e2; color: #8b4a03; }
.cart-empty {
  border: 2px dashed #dfd5cd;
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  color: #81756f;
}
@media (max-width: 980px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .cart-item-card { grid-template-columns: 1fr; }
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-form-grid .full { grid-column: auto; }
}

/* ==========================================================================
   INDEX STYLES
   ========================================================================== */
.plan-card.is-popular {
    border: 2px solid #e38500;
    transform: scale(1.02);
}
.plan-card.is-popular #p-popular {
    display: block !important;
}
#planCard {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.plan-icon-styled {
    font-size: 2.5rem; 
    color: var(--brand-orange); 
    margin-bottom: 20px;
}
.plan-popular-badge {
    position: absolute; 
    top: -15px; 
    right: 40px; 
    background: var(--brand-orange); 
    color: var(--white); 
    padding: 6px 15px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    font-weight: 800; 
    display: none;
}
.plan-savings-styled {
    margin-bottom: 25px; 
    background: #f1f5f9; 
    padding: 12px 15px; 
    border-radius: 12px;
}
.plan-saving-text {
    color: #10b981; 
    font-weight: 700; 
    font-size: 0.9rem; 
    margin-bottom: 4px;
}
.plan-billing-text {
    font-size: 0.85rem; 
    color: #64748b;
}

/* CMS Feed and Announcements */
.cms-article-card {
    background: #f9f7f4; 
    border-radius: 16px; 
    padding: 24px;
}
.cms-article-title {
    margin-bottom: 12px; 
    color: var(--brand-wine);
}