/* ==========================================================================
   DESCUBRE YUCATÁN — Estilos exclusivos de esta landing page
   Reutiliza variables y clases de style.css (header, hero, cta-section,
   footer, section-header, whatsapp-float). Aquí solo van los componentes
   nuevos: nav pill, tarjetas de stats, galería y recomendaciones.
   ========================================================================== */

/* Botón destacado tipo "pill" en el menú de navegación */
.nav-link-pill {
    background-color: rgba(201, 169, 110, 0.12);
    color: var(--color-accent-gold-hover) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 8px 22px !important;
    margin-left: 6px;
}

.nav-link-pill:hover {
    background-color: var(--color-accent-gold) !important;
    color: #ffffff !important;
}

/* Fondo cálido reutilizable (misma familia del dorado de acento) */
.bg-warm {
    background-color: #f8f0e3;
}

.bg-neutral {
    background-color: var(--bg-section-alt);
}

/* ==========================================================================
   SECCIÓN DE ESTADÍSTICAS / ARGUMENTOS DE INVERSIÓN
   ========================================================================== */
.stats-section {
    padding: 80px 20px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.stat-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-gold), var(--color-gold-alt));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 18px auto;
    box-shadow: 0 6px 18px rgba(201, 169, 110, 0.3);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--color-primary-navy);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tarjetas sin cifra grande: la etiqueta hace de encabezado principal */
.stat-label-solo {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-primary-navy);
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}


/* ==========================================================================
   SECCIÓN DE GALERÍA / DESTINOS
   ========================================================================== */
.gallery-section {
    padding: 80px 20px;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.gallery-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}

.gallery-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.gallery-card-body {
    padding: 22px 24px 26px 24px;
}

.gallery-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.gallery-card-desc {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   TARJETAS SIN IMAGEN (recomendaciones y hospedaje/servicios premium)
   ========================================================================== */
.simple-cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.simple-card {
    background-color: var(--bg-white);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.simple-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.simple-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-accent-gold), var(--color-gold-alt));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.simple-card-source {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent-gold);
    margin-bottom: 4px;
}

.simple-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.simple-card-desc {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Variante más ancha para hospedaje/servicios premium */
.hosting-card {
    padding: 32px;
}

.hosting-card .simple-card-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.hosting-card .simple-card-title {
    font-size: 19px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .simple-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .simple-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .stats-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .stats-section, .gallery-section {
        padding: 56px 16px;
    }
}
