/**
 * CAMPOAVENTURAS 2026 - CSS CONSOLIDADO PARTE 1/4
 * Variables, Base, Navegación y Hero Section
 * Versión: 8.0 MEJORADA UI | Fecha: 2025 | Autor: Clubkaribe &reg;
 */

/* ===================================
   VARIABLES CSS GLOBALES Y TEMAS
   =================================== */

/* TEMA CLARO (POR DEFECTO) */
:root,
[data-theme="light"] {
    /* COLORES PRINCIPALES DEL LOGO */
    --ca-verde: #4CAF50;
    --ca-naranja: #ff6600;
    --ca-azul: #6bccf1;
    --ca-azul-oscuro: #1e3a5f;
    --ca-marron: #8B4513;

    /* OVERRIDE BOOTSTRAP CON COLORES DEL CAMPAMENTO */
    --bs-primary: var(--ca-naranja);
    --bs-secondary: var(--ca-azul);
    --bs-success: var(--ca-verde);
    --bs-info: var(--ca-azul);
    --bs-warning: var(--ca-naranja);

    /* SISTEMA DE COLORES UNIFICADO */
    --color-primary: #ff6600;
    --color-primary-light: #ff8533;
    --color-primary-dark: #cc5200;
    --color-secondary: #6bccf1;
    --color-secondary-light: #8ed9f6;
    --color-secondary-dark: #4db8e8;
    --color-dark: #1a1a1a;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    --color-info: #17a2b8;

    /* COLORES DE FONDO */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;

    /* COLORES DE TEXTO */
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --text-inverse: #ffffff;

    /* GRADIENTES */
    --gradient-hero: linear-gradient(135deg, rgba(255,102,0,0.85), rgba(107,204,241,0.85));
    --gradient-mission: linear-gradient(45deg, rgba(0,123,255,0.9), rgba(0,86,179,0.9));
    --gradient-trust: linear-gradient(145deg, #ffffff, #f0f7ff);
    --gradient-sunset: linear-gradient(135deg, #ff6b6b, #ffd93d);
    --gradient-ocean: linear-gradient(135deg, #667eea, #764ba2);
    --gradient-forest: linear-gradient(135deg, #43e97b, #38f9d7);

    /* TIPOGRAFÍA */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Righteous', cursive;
    --font-size-base: 1rem;

    /* SOMBRAS */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
    --shadow-hero: 4px 4px 8px rgba(0,0,0,0.5);
    --shadow-lg-hover: 0 15px 50px rgba(0,0,0,0.25);

    /* BORDES */
    --border-color: #e9ecef;
    --border-radius-sm: 0.375rem;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
    --border-radius-full: 50px;
    --border-radius-circle: 50%;

    /* TRANSICIONES */
    --transition-normal: 0.3s ease;
    --transition-base: all 0.3s ease;

    /* ESPACIADO */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
}

/* ===== TEMA OSCURO ===== */
[data-theme="dark"] {
    --color-primary: #ff7722;
    --color-primary-dark: #cc5f1b;
    --color-secondary: #7dcbf2;
    --color-secondary-dark: #5eb0d4;

    --bg-primary: #1a202c;
    --bg-secondary: #2d3748;
    --bg-tertiary: #4a5568;

    --text-primary: #f7fafc;
    --text-secondary: #cbd5e0;
    --text-muted: #a0aec0;
    --text-inverse: #1a202c;

    --gradient-hero: linear-gradient(135deg, rgba(255,119,34,0.9), rgba(125,203,242,0.8));
    --gradient-mission: linear-gradient(45deg, rgba(66,153,225,0.9), rgba(49,130,206,0.9));
    --gradient-trust: linear-gradient(145deg, #1a202c, #2d3748);

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);
    --shadow-hero: 4px 4px 8px rgba(0,0,0,0.9);

    --border-color: #4a5568;
}

/* ===================================
   RESET Y BASE
   =================================== */

html {
    scroll-behavior: smooth;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1200 - 320)));
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: all var(--transition-normal);
}

/* Clases de utilidad para texto compatible con temas */
.text-theme-primary { color: var(--text-primary) !important; }
.text-theme-secondary { color: var(--text-secondary) !important; }
.text-theme-muted { color: var(--text-muted) !important; }
.text-theme-inverse { color: var(--text-inverse) !important; }

/* Aplicar transición a elementos temáticos */
.navbar-custom, .hero-section, .stat-card, .mission-card, .trust-card, .team-card,
.garantia-card, .evento-card, .noticia-card, .faq-item, .footer {
    transition: background-color var(--transition-normal), color var(--transition-normal),
                box-shadow var(--transition-normal), border-color var(--transition-normal);
}

/* ===================================
   NAVEGACIÓN PERSONALIZADA
   =================================== */

.navbar-custom {
    background: rgba(26, 26, 26, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all var(--transition-normal);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Clase dinámica para cuando hay admin bar */
.navbar-custom.with-admin-bar {
    margin-top: 50px;
}

.navbar-custom.scrolled {
    padding: 0.5rem 0;
}

.navbar-custom .nav-link-ca,
.navbar-custom .nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: all var(--transition-normal);
}

.navbar-custom .nav-link-ca::after,
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.navbar-custom .nav-link-ca:hover,
.navbar-custom .nav-link:hover {
    color: var(--color-primary) !important;
    transform: translateY(-2px);
}

.navbar-custom .nav-link-ca:hover::after,
.navbar-custom .nav-link-ca.active::after,
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 80%;
}

.navbar-custom .btn-cta {
    background: var(--color-primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(255,102,0,0.3);
    border: none;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.navbar-custom .btn-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,102,0,0.5);
    color: white !important;
}

/* Logo en navbar */
.navbar-brand img {
    width: 150px;
    height: auto;
    transition: transform var(--transition-normal);
}

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

/* Theme Toggle Button */
.navbar-custom #themeToggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.navbar-custom #themeToggle:hover {
    background-color: rgba(255,255,255,0.1) !important;
    transform: rotate(15deg);
}

/* ===================================
   BARRA DE ADMINISTRADOR
   =================================== */

.admin-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26,26,26,0.95);
    color: white;
    padding: 8px 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-primary);
}

.admin-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-bar .admin-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.admin-bar .admin-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-bar .admin-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.admin-bar .admin-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-bar .admin-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.admin-bar .admin-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* ===================================
   HERO SECTION - CORREGIDO
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    padding: 4rem 0;
}

/* Imagen de fondo con opacidad (no afecta el texto) */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/CampoAventuras/fogata.png'); /* Cambia por la ruta real */
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* � Nivel de transparencia del fondo */
    z-index: 0; /* Debajo del contenido */
}

/* Gradiente inferior (para transición al siguiente bloque) */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    z-index: 1; /* Por encima del fondo, pero debajo del contenido */
    pointer-events: none;
}


.hero-misiones {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    padding: 4rem 0;
}

/* Imagen de fondo con opacidad (no afecta el texto) */
.hero-misiones::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/foto_escalada.jpg'); /* � Cambia por la ruta real */
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* � Nivel de transparencia del fondo */
    z-index: 0; /* Debajo del contenido */
}

/* Gradiente inferior (para transición al siguiente bloque) */
.hero-misiones::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    z-index: 1; /* Por encima del fondo, pero debajo del contenido */
    pointer-events: none;
}



.hero-nosotros {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    padding: 4rem 0;
}

/* Imagen de fondo con opacidad (no afecta el texto) */
.hero-nosotros::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/39700624_10214605087495475_687121782980739072_n.jpg'); /* � Cambia por la ruta real */
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* � Nivel de transparencia del fondo */
    z-index: 0; /* Debajo del contenido */
}

/* Gradiente inferior (para transición al siguiente bloque) */
.hero-nosotros::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    z-index: 1; /* Por encima del fondo, pero debajo del contenido */
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2; /* Encima del fondo y gradiente */
}

/* Asegurar que las secciones siguientes estén por ENCIMA del hero */
.stats-realtime,
.trust-section,
.section,
.misiones-section,
.secc-nosotros,
.secc-programas {
    position: relative;
    z-index: 10;
    background: var(--bg-primary);
}

.stats-realtime {
    z-index: 10;
    background: var(--gradient-mission);
    margin-top: -50px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-shadow: var(--shadow-hero);
    margin-bottom: 1.5rem;
    animation: heroTitleAnimation 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    animation: heroSubtitleAnimation 1s ease-out 0.3s both;
}
/* ===================================
   URGENCY BADGES Y COUNTDOWN
   =================================== */

.urgency-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.urgency-badge {
    background: var(--bg-primary);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: pulse 2s infinite;
    transition: all var(--transition-normal);
}

.urgency-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.urgency-badge i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.urgency-badge .badge-number,
.countdown-number {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.urgency-badge .badge-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Countdown Container */
.countdown-container {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    margin: 2rem auto;
    max-width: 90%;
}

.countdown-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 80px;
    transition: all var(--transition-normal);
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.countdown-number {
    color: var(--color-warning);
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
}

/* ===================================
   FALLBACK ALERT
   =================================== */

.fallback-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 193, 7, 0.95);
    color: #212529;
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    z-index: 10000;
    border-bottom: 2px solid #ffc107;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ===================================
   BOTONES PERSONALIZADOS
   =================================== */

.btn-hero {
    background: var(--color-primary);
    border: 3px solid var(--color-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255,102,0,0.4);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-hero:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 15px 40px rgba(255,102,0,0.5);
    color: white;
    transform: translateY(-3px);
}

.btn-hero:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(255,102,0,0.4);
}

.btn-hero.secondary {
    background: transparent;
    border: 3px solid white;
    color: white;
}

.btn-hero.secondary:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

.btn-hero.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Botones de categoría y filtros */
.category-btn {
    transition: all var(--transition-normal);
    border-radius: var(--border-radius-full);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-btn.active {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: white !important;
}

/* ===================================
   SECCIONES Y TÍTULOS
   =================================== */

.section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 800;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: var(--border-radius-full);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* ===================================
   STATS EN TIEMPO REAL
   =================================== */

.stats-realtime {
    background: var(--gradient-mission);
    color: white;
    padding: 4rem 0;
    position: relative;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.stat-card:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stat-number {
    color: #ffd700;
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.stat-change {
    font-size: 0.9rem;
    margin-top: 0.25rem;
    color: rgba(255,255,255,0.7);
}

/* Stats honestos para nosotros.php */
.stats-honest {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
}

.stat-honest-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-honest-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-display);
    display: block;
}

.stat-honest-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ===================================
   SECCIÓN DE CONFIANZA
   =================================== */

.trust-section {
    background: var(--gradient-trust);
    padding: 5rem 0;
}

.stat-card-mini {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

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

.stat-card-mini .stat-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.stat-card-mini .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-display);
    display: block;
}

.stat-card-mini .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.trust-card {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    border-color: transparent;
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid transparent;
    transition: all var(--transition-normal);
    height: 100%;
}

.trust-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.trust-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.trust-title {
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
}

.trust-description {
    text-align: center;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Alert de Primera Edición */
.alert.alert-info {
    background: linear-gradient(135deg, #e3f2fd, #fff5e6);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
}

/* ===================================
   MISSION CARDS
   =================================== */

.misiones-section {
    background: var(--bg-secondary) !important;
    padding: 5rem 0;
}

.mission-card {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-normal);
}

.mission-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.mission-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-image img {
    transform: scale(1.1);
}

.mission-content {
    padding: 2rem;
}

.mission-title {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-title i {
    margin-right: 0.5rem;
}

.mission-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mission);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 2rem;
}

.mission-card:hover .mission-overlay {
    opacity: 0.8;
}

.mission-overlay h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-overlay p {
    margin-bottom: 1.5rem;
}

.mission-overlay .btn {
    background: white;
    color: var(--color-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.mission-overlay .btn:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

.mission-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mission-badge {
    font-size: 0.9rem;
}

.mission-duration {
    font-size: 0.9rem;
    color: var(--text-inverse);
}

/* ===================================
   VIDEO SECTION
   =================================== */

.video-section {
    background: var(--gradient-mission);
    padding: 5rem 0;
}

.video-container {
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    margin: 2rem 0;
}

.video-container video {
    width: 100%;
    height: auto;
}

/* ===================================
   PRICING & CALCULATOR
   =================================== */

.pricing-section {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
    padding: 5rem 0;
}

.pricing-card-main {
    background: var(--bg-primary);
    box-shadow: var(--shadow-xl);
    border-radius: 30px;
    padding: 3rem;
    max-width: 96%;
    margin: 0 auto;
    position: relative;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.pricing-card-main:hover {
    border-color: var(--color-primary);
    box-shadow: 0 25px 70px rgba(255,102,0,0.3);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-warning);
    color: var(--color-dark);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-amount {
    color: var(--text-primary);
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
}

.pricing-period {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.pricing-divider {
    height: 3px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: var(--border-radius-full);
    margin: 2rem 0;
}

.pricing-includes {
    margin: 2rem 0;
}

.pricing-includes-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-normal);
}

.pricing-feature:hover {
    background: var(--bg-secondary);
    transform: translateX(5px);
}

.pricing-feature i {
    color: var(--color-success);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.pricing-feature span {
    flex: 1;
    color: var(--text-primary);
}

/* Progress bar para cupos */
.cupos-progress-bar {
    background: rgba(0,0,0,0.1);
    border-radius: var(--border-radius-full);
    height: 30px;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.cupos-progress-fill {
    background: linear-gradient(90deg, var(--color-warning), var(--color-primary));
    height: 100%;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-weight: 700;
    font-size: 0.9rem;
    transition: width 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Calculadora de Descuentos */
.discount-calculator {
    background: var(--bg-secondary);
    border: 2px dashed var(--color-primary);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    margin: 2rem 0;
    transition: all var(--transition-normal);
}

.discount-calculator:hover {
    box-shadow: var(--shadow-md);
}

.calculator-title {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.calculator-input-group {
    margin-bottom: 1.5rem;
}

.calculator-input {
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-lg);
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    text-align: center;
    width: 100px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.calculator-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,102,0,0.2);
    border-color: var(--color-primary-dark);
}

.calculator-label {
    font-weight: 600;
    color: var(--text-primary);
}

.btn-calcular {
    background: var(--color-primary);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-calcular:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.calculator-result {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 15px;
}

.calculator-result-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.calculator-result-row:last-child {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-primary);
}

/* Métodos de Pago */
.payment-methods {
    text-align: center;
    margin: 2rem 0;
}

.payment-methods-title {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.payment-icon {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    min-width: 100px;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.payment-icon:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.payment-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.payment-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===================================
   GALERÍA
   =================================== */

.gallery-section {
    background: var(--bg-primary);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    width: 100%;
    height: 100%;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gallery-category {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   EQUIPO Y GARANTÍAS
   =================================== */

.team-garantias-section {
    background: var(--gradient-mission);
    color: white;
    padding: 5rem 0;
}

.team-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.team-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-icon {
    font-size: 3rem;
    color: var(--color-warning);
    margin-bottom: 1rem;
}

.team-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.team-role {
    color: var(--color-warning);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.team-experience,
.team-cert {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: rgba(255,255,255,0.9);
}

.team-summary {
    background: rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    margin: 3rem 0;
}

.garantias-section {
    margin-top: 3rem;
}

.garantia-card {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
    border: 2px solid transparent;
}

.garantia-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.garantia-card h5 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.garantia-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.garantia-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* CTA Final en Garantías */
.team-cta-final {
    background: rgba(0,0,0,0.4);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 2px solid rgba(255,215,0,0.5);
}

/* ===================================
   FAQ ACCORDION
   =================================== */

.faq-section {
    background: var(--gradient-trust);
    padding: 5rem 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-primary);
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: 1.3rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* FAQ Completo (de faq.php) */
.faq-section-complete {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-main-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-main-title i {
    color: var(--color-primary);
    margin-right: 1rem;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Buscador FAQ */
.faq-search-container {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
}

.faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 3px solid var(--color-primary);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 20px rgba(255,102,0,0.2);
    transition: all 0.3s ease;
}

.faq-search-box:focus-within {
    box-shadow: 0 8px 30px rgba(255,102,0,0.3);
    transform: translateY(-2px);
}

.faq-search-box i.fa-search {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-right: 1rem;
}

.faq-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
}

.faq-search-input::placeholder {
    color: var(--text-muted);
}

.faq-search-clear {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.faq-search-clear:hover {
    color: var(--color-danger);
}

/* Categorías FAQ */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.faq-category-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.faq-category-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,102,0,0.2);
}

.faq-category-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* ===================================
   HERO DE NOTICIAS
   =================================== */

/* ===================================
   SECCIÓN DE NOTICIAS PARA EL INDEX/HOME
   Estilos específicos con prefijo "home-"
   =================================== */

.home-noticias-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

/* Card principal de noticia en home */
.home-noticia-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-noticia-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

/* Imagen de la noticia */
.home-noticia-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.home-noticia-card:hover .home-noticia-image img {
    transform: scale(1.08);
}

/* Badge de categoría */
.home-noticia-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-noticia-badge i {
    font-size: 0.75rem;
}

/* Contenido de la noticia */
.home-noticia-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-noticia-titulo {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-noticia-card:hover .home-noticia-titulo {
    color: var(--color-primary);
}

.home-noticia-resumen {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer de la card */
.home-noticia-footer {
    margin-top: auto;
}

/* Meta información (fecha y vistas) */
.home-noticia-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.home-noticia-fecha,
.home-noticia-vistas {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.home-noticia-fecha i,
.home-noticia-vistas i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* Información del autor */
.home-noticia-autor {
    font-size: 0.9rem;
}

.home-autor-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid var(--color-primary);
    flex-shrink: 0;
}

.home-autor-avatar-initial {
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.home-autor-info {
    flex: 1;
}

.home-autor-nombre {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.3;
}

.home-autor-cargo {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Animaciones */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-noticia-card {
    animation: slideUpFade 0.6s ease-out;
}

/* Estados de hover adicionales */
.home-noticia-card:hover .home-noticia-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .home-noticia-image {
        height: 220px;
    }

    .home-noticia-titulo {
        font-size: 1.15rem;
    }

    .home-noticia-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .home-noticia-image {
        height: 200px;
    }

    .home-noticia-titulo {
        font-size: 1.1rem;
    }

    .home-noticia-resumen {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }

    .home-noticia-content {
        padding: 1.25rem;
    }

    .home-noticia-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .home-autor-avatar {
        width: 32px;
        height: 32px;
    }
}

/* Tema oscuro */
[data-theme="dark"] .home-noticia-card {
    /* background: #1a1a2e; */
    border-color: #2d2d44;
}

[data-theme="dark"] .home-noticia-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .home-noticia-meta {
    border-bottom-color: #2d2d44;
}

[data-theme="dark"] .home-noticia-badge {
    background: rgba(0, 0, 0, 0.4);
}

/* Efectos adicionales de interacción */
.home-noticia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.home-noticia-card:hover::before {
    transform: scaleX(1);
}

/* Overlay sutil en hover */
.home-noticia-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-noticia-card:hover .home-noticia-image::after {
    opacity: 1;
}

/* Mejoras de accesibilidad */
.home-noticia-card:focus-within {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Loading skeleton (opcional) */
.home-noticia-card.skeleton {
    pointer-events: none;
}

.home-noticia-card.skeleton .home-noticia-image {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.hero-news {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-news .hero-title {
    font-family: 'Righteous', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-news .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Buscador */
.search-box {
    position: relative;
}

.search-box .form-control {
    padding: 0.875rem 3.5rem 0.875rem 1.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 1rem;
}

.search-box .search-btn {
    border: none;
    background: transparent;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
}

.search-box .search-btn:hover {
    background: transparent;
    color: var(--color-secondary);
}

/* ===================================
   BREADCRUMBS
   =================================== */
.breadcrumb-section {
    background: var(--bg-secondary);
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* ===================================
   FILTROS Y CATEGORÍAS
   =================================== */
.filters-section {
    background: var(--bg-primary);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-btn {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.category-btn.active {
    color: white !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.category-btn .badge {
    font-size: 0.7rem;
}

/* ===================================
   ARTÍCULOS DESTACADOS
   =================================== */
.featured-section {
    padding: 4rem 0;
}

.featured-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.featured-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.featured-content {
    padding: 1.75rem;
}

.featured-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.featured-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.featured-title a:hover {
    color: var(--color-primary);
}

.featured-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================
   SECCIÓN DE ARTÍCULOS
   =================================== */
.articles-section {
    padding: 3rem 0;
}

.article-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.article-title a:hover {
    color: var(--color-primary);
}

.article-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================
   SIDEBAR
   =================================== */
.sidebar {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.sidebar h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Items Populares */
.popular-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.9rem;
}

.popular-content {
    flex: 1;
}

.popular-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.popular-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.popular-title a:hover {
    color: var(--color-primary);
}

.popular-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===================================
   SIN RESULTADOS
   =================================== */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results i {
    display: block;
    margin: 0 auto 1.5rem;
}

.no-results h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

/* ===================================
   PAGINACIÓN
   =================================== */
.pagination {
    margin-top: 3rem;
    gap: 0.5rem;
}

.pagination .page-link {
    border-radius: var(--border-radius-md);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: all 0.2s;
}

.pagination .page-link:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* ===================================
   VISTA DE DETALLE DEL ARTÍCULO
   =================================== */
.article-detail {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.article-header {
    position: relative;
}

.article-header-content {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.article-title-large {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.article-body {
    background: var(--bg-primary);
}

.article-content-full {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content-full h2,
.article-content-full h3,
.article-content-full h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.article-content-full p {
    margin-bottom: 1.5rem;
}

.article-content-full strong {
    font-weight: 700;
    color: var(--color-primary);
}

.article-content-full ul,
.article-content-full ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content-full li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* ===================================
   COMPARTIR EN REDES SOCIALES
   =================================== */
.social-share {
    background: var(--bg-secondary);
    padding: 2rem;
}

.social-share h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.facebook:hover {
    background: #145dbf;
}

.social-btn.twitter {
    background: #1DA1F2;
}

.social-btn.twitter:hover {
    background: #0d8bd9;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.whatsapp:hover {
    background: #1eab52;
}

.social-btn.linkedin {
    background: #0A66C2;
}

.social-btn.linkedin:hover {
    background: #084d94;
}

/* ===================================
   ARTÍCULOS RELACIONADOS
   =================================== */
.related-articles {
    padding: 3rem;
}

.related-articles h3 {
    font-weight: 700;
    margin-bottom: 2.5rem;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .hero-news .hero-title {
        font-size: 2rem;
    }

    .hero-news .hero-subtitle {
        font-size: 1rem;
    }

    .article-title-large {
        font-size: 1.75rem;
    }

    .featured-image,
    .article-image {
        height: 180px;
    }

    .article-content-full {
        font-size: 1rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 0.35rem;
    }
}

/* ===================================
   TEMA OSCURO
   =================================== */
[data-theme="dark"] .hero-news {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

[data-theme="dark"] .article-card,
[data-theme="dark"] .featured-card,
[data-theme="dark"] .sidebar {
    /*background: #1a1a2e;*/
    border-color: #2d2d44;
}

[data-theme="dark"] .article-detail {
    background: #1a1a2e;
}

[data-theme="dark"] .social-share {
    background: #16213e;
}

[data-theme="dark"] .search-box .form-control {
    background: #1a1a2e;
    color: white;
}

/* ===================================
   UTILIDADES ADICIONALES
   =================================== */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   PÁGINAS ESPECÍFICAS
   =================================== */

/* Hero para páginas específicas */
.hero-news,
.hero-legal,
.hero-programas {
    background: var(--gradient-mission);
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.hero-news .search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumb-section {
    background: rgba(108, 117, 125, 0.1);
    padding: 1rem 0;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.breadcrumb-item a:hover {
    color: var(--color-primary-dark);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* Sidebar */
.sidebar {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: sticky;
    top: 100px;
}

.sidebar h5 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.popular-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.popular-item:hover {
    background: var(--bg-secondary);
    padding-left: 0.5rem;
    border-radius: var(--border-radius-sm);
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-number {
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
}

.popular-content {
    flex: 1;
}

.popular-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.popular-title a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.popular-title a:hover {
    color: var(--color-primary);
}

/* Legal Pages */
.legal-sidebar {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 1.5rem;
}

.legal-nav {
    list-style: none;
    padding: 0;
}

.legal-nav a {
    color: var(--text-primary);
    transition: all var(--transition-normal);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    display: block;
    margin-bottom: 0.5rem;
    border-left: 3px solid transparent;
}

.legal-nav a:hover,
.legal-nav a.active {
    background: var(--color-primary);
    color: white;
    transform: translateX(5px);
    border-left-color: var(--color-primary-dark);
}

.legal-content {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.subsection-title {
    color: var(--text-primary);
    border-left: 4px solid var(--color-primary);
    padding-left: 1rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.legal-text {
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-list {
    padding-left: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.highlight-box,
.info-box,
.warning-box {
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid;
}

.highlight-box {
    background: rgba(255, 102, 0, 0.1);
    border-color: var(--color-primary);
}

.highlight-box h4 {
    color: var(--color-primary);
}

.info-box {
    background: rgba(107, 204, 241, 0.1);
    border-color: var(--color-secondary);
}

.info-box h4 {
    color: var(--color-secondary-dark);
}

.warning-box {
    background: rgba(220, 53, 69, 0.1);
    border-color: var(--color-danger);
}

.warning-box h4 {
    color: var(--color-danger);
}

/* Nosotros Page - Timeline */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
    margin: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background-color: var(--border-color);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 4px solid var(--bg-primary);
    z-index: 1;
}

.timeline-content {
    padding: 20px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-lg);
    background: var(--bg-primary);
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

/**
 * CAMPOAVENTURAS 2026 - CSS CONSOLIDADO PARTE 4/4 FINAL
 * Footer, Floating Buttons, Utilities, Animaciones y Responsive
 * Versión: 8.0 MEJORADA UI | Fecha: 2025 | Autor: Clubkaribe &reg;
 */

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--color-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.footer-section h5 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    display: inline-block;
    padding: 0.25rem 0;
    transition: all var(--transition-normal);
}

.footer-section ul li a:hover {
    transform: translateX(5px);
}

.footer-social {
    text-align: center;
    margin: 2rem 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    color: white;
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Footer CA (para registro.php) */
.footer-ca {
    background: var(--color-dark);
    color: white;
    padding: 3rem 0 1rem;
}

/* ===================================
   BOTONES FLOTANTES
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1fb855;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.reserve-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--color-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reserve-float:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    color: white;
}

.whatsapp-float-ca {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.whatsapp-float-ca:hover {
    background: #1fb855;
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   FLOATING ICONS (para otras páginas)
   =================================== */

.floating-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.floating-icon {
	background: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.floating-icon:hover {
    transform: translateX(-5px);
    color: white;
    box-shadow: var(--shadow-lg);
}

.floating-icon .tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.floating-icon:hover .tooltip {
    opacity: 1;
}

/* ===================================
   UTILIDADES Y ANIMACIONES
   =================================== */

/* Animación de aparición */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse para elementos destacados */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

/* Fade in para artículos */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Clases de utilidad adicionales */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.bg-ca-verde {
    background-color: var(--ca-verde) !important;
}

.bg-ca-naranja {
    background-color: var(--ca-naranja) !important;
}

.text-ca-verde {
    color: var(--ca-verde) !important;
}

.text-ca-naranja {
    color: var(--ca-naranja) !important;
}

.text-ca-naranja2 {
    color: var(--ca-naranja) !important;
    font-size: 2.5rem;
}
.btn-ca-primary {
    background-color: var(--ca-naranja);
    border-color: var(--ca-naranja);
    color: white;
    transition: all var(--transition-normal);
}

.btn-ca-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

.btn-primary-custom:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-legal {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.btn-legal:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: white;
}

/* Clases para ocultar elementos en impresión */
.no-print {
    display: block;
}

@media print {
    .no-print {
        display: none !important;
    }
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (max-width: 991.98px) {
    /* Timeline responsivo */
    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 0;
        margin-left: 50px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-left: 0;
        text-align: left;
    }

    /* Sidebar sticky disable en tablet */
    .sidebar,
    .legal-sidebar {
        position: static;
    }

    /* Stats reducidos */
    .stat-number {
        font-size: 2.5rem;
    }

    /* Hero ajustado */
    .hero-section {
        padding: 6rem 0 3rem;
    }

    /* Navbar */
    .navbar-custom .nav-link-ca,
    .navbar-custom .nav-link {
        margin: 0.5rem 0;
    }
}

/* ===================================
   RESPONSIVE DESIGN - MÓVIL
   =================================== */

@media (max-width: 768px) {
    /* Ajustes para móvil */
    .hero-section {
        padding: 6rem 0 3rem;
        min-height: 80vh;
    }

    .section {
        padding: 3rem 0;
    }

    .section-padding {
        padding: 3rem 0;
    }

    /* Títulos */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    /* Stats responsive */
    .stat-honest-number {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Urgency badges */
    .urgency-badges {
        gap: 1rem;
    }

    .urgency-badge {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
    }

    /* Countdown */
    .countdown-container {
        padding: 1.5rem;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.5rem;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    /* Timeline móvil */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: calc(100% - 50px);
        margin-left: 50px !important;
        text-align: left !important;
    }

    .timeline-item .timeline-dot {
        left: -35px !important;
    }

    /* Botones flotantes móvil */
    .reserve-float {
        bottom: 90px;
        right: 20px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Navegación móvil */
    .navbar-custom {
        padding: 0.75rem 0;
    }

    .navbar-brand img {
        width: 120px;
    }

    /* Mission cards */
    .mission-content {
        padding: 1.25rem;
    }

    .mission-title {
        font-size: 1.2rem;
    }

    /* Team cards */
    .team-info {
        padding: 1rem;
    }

    .team-name {
        font-size: 1.2rem;
    }

    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Pricing */
    .pricing-card-main {
        padding: 2rem 1.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .calculator-input-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .calculator-input {
        width: 80px;
        padding: 0.5rem;
        font-size: 1rem;
    }

    .payment-icons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .payment-icon {
        min-width: 120px;
    }

    /* Botones */
    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin: 0.25rem;
    }

    .btn-hero.btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Cards */
    .mission-card,
    .trust-card,
    .team-card,
    .garantia-card {
        margin-bottom: 1.5rem;
    }

    /* FAQ categorías */
    .faq-categories {
        gap: 0.5rem;
    }

    .faq-category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .faq-category-header {
        flex-wrap: wrap;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    /* Footer */
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Admin bar móvil */
    .admin-bar .admin-stats,
    .admin-bar .admin-nav {
        display: none;
    }

    .admin-bar {
        padding: 4px 0;
    }

    /* Floating icons ocultos en móvil */
    .floating-icons {
        display: none;
    }

    /* Legal */
    .legal-content {
        padding: 1.5rem;
    }

    .subsection-title {
        font-size: 1.2rem;
    }

    /* Timeline content */
    .timeline-content {
        padding: 1rem;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }
}

/* ===================================
   RESPONSIVE - MÓVILES PEQUEÑOS
   =================================== */

@media (max-width: 576px) {
    /* Ajustes extra para móviles pequeños */
    .hero-section {
        padding: 5rem 0 2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .btn-hero {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin: 0.25rem;
    }

    .pricing-card-main {
        padding: 1.5rem 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.75rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    /* Urgency badges extra pequeño */
    .urgency-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    /* Admin bar oculto en extra pequeño */
    .admin-bar {
        display: none;
    }

    /* Navegación extra pequeño */
    .navbar-custom.with-admin-bar {
        margin-top: 0;
    }

    /* Hero actions - stack vertical */
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-hero {
        width: 100%;
        max-width: 300px;
    }

    /* Mission card overlay ajuste */
    .mission-overlay {
        padding: 1rem;
    }

    .mission-overlay h5 {
        font-size: 1.2rem;
    }

    /* Footer columnas */
    .footer-content .row > div {
        margin-bottom: 2rem;
    }
}

/* ===================================
   NOTIFICACIONES (CSS EN LÍNEA - YA EN JS)
   Estas reglas son generadas por campoaventuras.js
   =================================== */

.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.notification {
    transition: all 0.3s ease;
}

.notification:hover {
    transform: translateX(-5px);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* ===================================
   SCROLL TO TOP (SI SE IMPLEMENTA)
   =================================== */

.scroll-to-top {
    position: fixed;
    bottom: 180px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* ===================================
   MEJORAS DE ACCESIBILIDAD
   =================================== */

/* Focus visible para navegación por teclado */
*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip to content para lectores de pantalla */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-to-content:focus {
    top: 0;
}

/* Mejora de contraste para modo oscuro */
[data-theme="dark"] .text-muted {
    color: #a0aec0 !important;
}

/* ===================================
   SMOOTH SCROLLING MEJORADO
   =================================== */

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   FIN CAMPOAVENTURAS 2026 - SISTEMA COMPLETO
   =================================== */

/* ============================================================
   � MÓVILES (hasta 767px)
   ============================================================ */
@media (max-width: 767px) {

  html {
    font-size: 15px;
  }

  body {
    padding-top: 60px;
  }

  .navbar-custom {
    padding: 0.5rem 1rem;
  }

  .navbar-brand img {
    width: 120px;
  }

  .hero-section,
  .hero-misiones,
  .hero-nosotros {
    min-height: 85vh;
    padding: 3rem 1rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }

  .urgency-badges {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .mission-card,
  .trust-card,
  .garantia-card,
  .home-noticia-card {
    margin-bottom: 2rem;
  }

  .mission-image {
    height: 180px;
  }

  .mission-content {
    padding: 1.25rem;
  }

  .stat-card,
  .stat-card-mini {
    padding: 1.5rem 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .pricing-card-main {
    padding: 2rem 1.5rem;
  }

  .btn-hero {
    width: 100%;
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .payment-icons {
    gap: 1rem;
  }

  .payment-icon {
    min-width: 80px;
    padding: 0.75rem;
  }

  .footer .container {
    text-align: center;
  }

  /* Botones flotantes: más pequeños */
  .whatsapp-float, .reserve-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 15px;
  }

  /* Ajustar admin bar */
  .admin-bar .container {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* ============================================================
   � TABLETS (768px – 991px)
   ============================================================ */
@media (min-width: 768px) and (max-width: 991px) {

  html {
    font-size: 16px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .hero-section,
  .hero-misiones,
  .hero-nosotros {
    padding: 4rem 2rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }

  .section {
    padding: 4rem 2rem;
  }

  .mission-card .mission-content {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card-main {
    padding: 2.5rem 2rem;
  }

  .team-card,
  .garantia-card,
  .trust-card {
    margin-bottom: 2rem;
  }

  .faq-accordion {
    padding: 0 1.5rem;
  }

  .btn-hero {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .payment-icons {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}


/* ============================================================
   � PORTÁTILES / PCS (992px – 1439px)
   ============================================================ */
@media (min-width: 992px) and (max-width: 1439px) {

  html {
    font-size: 17px;
  }

  .navbar-brand img {
    width: 150px;
  }

  .hero-section {
    min-height: 100vh;
  }

  .section {
    padding: 5rem 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .mission-image {
    height: 220px;
  }

  .faq-accordion {
    max-width: 800px;
  }

  .pricing-card-main {
    max-width: 900px;
  }

  .payment-icons {
    justify-content: center;
    gap: 1.5rem;
  }

  .team-card,
  .trust-card,
  .garantia-card {
    height: 100%;
  }
}


/* ============================================================
   �️ PANTALLAS GRANDES / TV (1440px en adelante)
   ============================================================ */
@media (min-width: 1440px) {

  html {
    font-size: 18px;
  }

  body {
    max-width: 1800px;
    margin: 0 auto;
  }

  .navbar-custom {
    padding: 1rem 3rem;
  }

  .section {
    padding: 6rem 0;
  }

  .hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
  }

  .mission-image {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .pricing-card-main {
    max-width: 1200px;
  }

  .trust-card,
  .mission-card,
  .home-noticia-card {
    transition: all 0.3s ease;
  }

  .trust-card:hover,
  .mission-card:hover,
  .home-noticia-card:hover {
    transform: translateY(-10px) scale(1.02);
  }
}


/* ============================================================
   � MICROAJUSTES UNIVERSALES (todas las resoluciones)
   ============================================================ */
@media (max-width: 991px) {
  .row > [class*="col-"] {
    margin-bottom: 1.5rem;
  }

  .text-center-sm {
    text-align: center !important;
  }
}

@media (max-width: 575px) {
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block !important;
  }
}

.hero-title-3d {
	font-size: clamp(3.5rem, 8vw, 5rem);
	text-shadow:
		5px 5px 0px rgba(0, 0, 0, 0.55),
		10px 10px 0px rgba(255, 255, 255, 0.15),
		15px 15px 0px rgba(0, 0, 0, 0.35),
		20px 20px 30px rgba(0, 0, 0, 0.65),
		0px 0px 15px rgba(107, 204, 241, 0.7),
		0px 0px 30px rgba(255, 255, 255, 0.5);
	animation: titleLevitateXL 3s ease-in-out infinite;
}

.hero-subtitle-3d {
	text-shadow:
		2px 2px 0px rgba(0, 0, 0, 0.55),
		4px 4px 0px rgba(255, 255, 255, 0.15);
	animation: subtitleLevitateXL 3.5s ease-in-out infinite;
	animation-delay: 0.2s;
}

.hero-calendar-3d {
	text-shadow:
		3px 3px 0px rgba(0, 0, 0, 0.55),
		6px 6px 0px rgba(204, 204, 255, 0.15);
	animation: subtitleLevitateXL 3.5s ease-in-out infinite;
	animation-delay: 0.2s;
}

	.faq-section-complete {
		padding: 5rem 0;
		background: linear-gradient(180deg, #f8f9fa, #ffffff);
	}

	.faq-header {
		text-align: center;
		margin-bottom: 3rem;
	}

	.faq-main-title {
		font-family: 'Righteous', cursive;
		font-size: clamp(2rem, 5vw, 3rem);
		color: #1a1a1a;
		margin-bottom: 1rem;
	}

	.faq-main-title i {
		color: #ff6600;
		margin-right: 1rem;
	}

	.faq-subtitle {
		font-size: 1.2rem;
		color: #666;
	}

	/* BUSCADOR */
	.faq-search-container {
		max-width: 700px;
		margin: 0 auto 3rem;
		position: relative;
	}

	.faq-search-box {
		position: relative;
		display: flex;
		align-items: center;
		background: white;
		border: 3px solid #ff6600;
		border-radius: 50px;
		padding: 1rem 1.5rem;
		box-shadow: 0 5px 20px rgba(255,102,0,0.2);
		transition: all 0.3s ease;
	}

	.faq-search-box:focus-within {
		box-shadow: 0 8px 30px rgba(255,102,0,0.3);
		transform: translateY(-2px);
	}

	.faq-search-box i.fa-search {
		color: #ff6600;
		font-size: 1.3rem;
		margin-right: 1rem;
	}

	.faq-search-input {
		flex: 1;
		border: none;
		outline: none;
		font-size: 1.1rem;
		font-family: 'Montserrat', sans-serif;
		color: #1a1a1a;
	}

	.faq-search-input::placeholder {
		color: #999;
	}

	.faq-search-clear {
		background: none;
		border: none;
		color: #999;
		font-size: 1.2rem;
		cursor: pointer;
		padding: 0.5rem;
		transition: color 0.3s ease;
	}

	.faq-search-clear:hover {
		color: #dc3545;
	}

	.faq-search-results {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		border-radius: 20px;
		box-shadow: 0 10px 40px rgba(0,0,0,0.2);
		margin-top: 1rem;
		max-height: 400px;
		overflow-y: auto;
		z-index: 100;
		display: none;
	}

	.faq-search-results.show {
		display: block;
	}

	.faq-search-result-item {
		padding: 1rem 1.5rem;
		border-bottom: 1px solid #f0f0f0;
		cursor: pointer;
		transition: background 0.3s ease;
	}

	.faq-search-result-item:hover {
		background: #fff5f0;
	}

	.faq-search-result-item:last-child {
		border-bottom: none;
	}

	.faq-search-result-category {
		font-size: 0.8rem;
		color: #ff6600;
		font-weight: 600;
		text-transform: uppercase;
		margin-bottom: 0.3rem;
	}

	.faq-search-result-question {
		font-weight: 600;
		color: #1a1a1a;
		margin-bottom: 0.3rem;
	}

	.faq-search-result-preview {
		font-size: 0.9rem;
		color: #666;
	}

	/* CATEGORÍAS */
	.faq-categories {
		display: flex;
		justify-content: center;
		gap: 1rem;
		flex-wrap: wrap;
		margin-bottom: 3rem;
	}

	.faq-category-btn {
		background: white;
		border: 2px solid #e9ecef;
		padding: 0.8rem 1.5rem;
		border-radius: 50px;
		font-weight: 600;
		color: #666;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.faq-category-btn:hover {
		border-color: #ff6600;
		color: #ff6600;
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(255,102,0,0.2);
	}

	.faq-category-btn.active {
		background: #ff6600;
		border-color: #ff6600;
		color: white;
	}

	.faq-category-btn i {
		font-size: 1.1rem;
	}

	/* SECCIONES DE CATEGORÍA */
	.faq-category-section {
		margin-bottom: 3rem;
	}

	.faq-category-section.hidden {
		display: none;
	}

	.faq-category-header {
		display: flex;
		align-items: center;
		gap: 1rem;
		margin-bottom: 1.5rem;
		padding-bottom: 1rem;
		border-bottom: 3px solid #f0f0f0;
	}

	.faq-category-icon {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 1.5rem;
	}

	.faq-category-title {
		flex: 1;
		font-size: 1.8rem;
		font-weight: 700;
		color: #1a1a1a;
		margin: 0;
	}

	.faq-category-count {
		background: #f0f0f0;
		padding: 0.3rem 0.8rem;
		border-radius: 20px;
		font-size: 0.9rem;
		color: #666;
		font-weight: 600;
	}

	/* FAQ ITEMS */
	.faq-items {
		display: grid;
		gap: 1rem;
	}

	.faq-item {
		background: white;
		border-radius: 15px;
		box-shadow: 0 2px 10px rgba(0,0,0,0.05);
		overflow: hidden;
		transition: all 0.3s ease;
	}

	.faq-item:hover {
		box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	}

	.faq-item.hidden {
		display: none;
	}

	.faq-question {
		padding: 1.5rem;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 1rem;
		background: white;
		transition: all 0.3s ease;
	}

	.faq-question:hover {
		background: #fff5f0;
	}

	.faq-question-text {
		flex: 1;
		font-weight: 700;
		font-size: 1.1rem;
		color: #1a1a1a;
	}

	.faq-icon {
		color: #ff6600;
		font-size: 1.3rem;
		transition: transform 0.3s ease;
	}

	.faq-item.active .faq-icon {
		transform: rotate(180deg);
	}

	.faq-answer {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease, padding 0.4s ease;
		padding: 0 1.5rem;
	}

	.faq-item.active .faq-answer {
		max-height: 1000px;
		padding: 0 1.5rem 1.5rem;
	}

	.faq-answer p {
		color: #555;
		line-height: 1.8;
		margin: 0;
	}

	/* NO RESULTADOS */
	.faq-no-results {
		text-align: center;
		padding: 3rem;
		background: white;
		border-radius: 20px;
		box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	}

	.faq-no-results i {
		font-size: 4rem;
		color: #ccc;
		margin-bottom: 1rem;
	}

	.faq-no-results h3 {
		color: #1a1a1a;
		margin-bottom: 0.5rem;
	}

	.faq-no-results p {
		color: #666;
		margin-bottom: 1.5rem;
	}

	.btn-whatsapp-faq {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		background: #25D366;
		color: white;
		padding: 1rem 2rem;
		border-radius: 50px;
		font-weight: 700;
		text-decoration: none;
		transition: all 0.3s ease;
	}

	.btn-whatsapp-faq:hover {
		background: #1fb855;
		transform: translateY(-2px);
		box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
		color: white;
	}

	/* CTA FINAL */
	.faq-cta {
		text-align: center;
		margin-top: 4rem;
		padding: 3rem;
		background: linear-gradient(135deg, #ff6600, #6bccf1);
		border-radius: 30px;
		color: white;
	}

	.faq-cta h3 {
		font-size: 2rem;
		margin-bottom: 0.5rem;
		color: white;
	}

	.faq-cta p {
		font-size: 1.1rem;
		margin-bottom: 2rem;
		opacity: 0.9;
	}

	.faq-cta-buttons {
		display: flex;
		justify-content: center;
		gap: 1rem;
		flex-wrap: wrap;
	}

	.btn-faq-primary,
	.btn-faq-secondary {
		padding: 1rem 2rem;
		border-radius: 50px;
		font-weight: 700;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		transition: all 0.3s ease;
	}

	.btn-faq-primary {
		background: white;
		color: #ff6600;
	}

	.btn-faq-primary:hover {
		background: #f0f0f0;
		transform: translateY(-2px);
		box-shadow: 0 5px 20px rgba(0,0,0,0.2);
		color: #ff6600;
	}

	.btn-faq-secondary {
		background: rgba(255,255,255,0.2);
		color: white;
		border: 2px solid white;
	}

	.btn-faq-secondary:hover {
		background: white;
		color: #ff6600;
	}

	/* RESPONSIVE */
	@media (max-width: 768px) {
		.faq-section-complete {
			padding: 3rem 0;
		}

		.faq-categories {
			gap: 0.5rem;
		}

		.faq-category-btn {
			padding: 0.6rem 1rem;
			font-size: 0.9rem;
		}

		.faq-category-header {
			flex-wrap: wrap;
		}

		.faq-category-title {
			font-size: 1.5rem;
		}

		.faq-question-text {
			font-size: 1rem;
		}

		.faq-cta-buttons {
			flex-direction: column;
		}

		.btn-faq-primary,
		.btn-faq-secondary {
			width: 100%;
			justify-content: center;
		}
	}


		.custom-tooltip {
		  --bs-tooltip-bg: #ff3300;
		  --bs-tooltip-color: #fff;
		}