/* ============================================ */
/* 1. RESET Y ESTILOS BASE */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f5f0ff;
    color: #1a1a2e;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.separador {
    width: 70px;
    height: 4px;
    background: #e94944;
    margin: 0.75rem auto 0;
    border-radius: 4px;
}

/* ============================================ */
/* 2. TOP BAR */
/* ============================================ */
.top-bar {
    background: #1a0e3a;
    padding: 0.4rem 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar-logo {
    background: #e94944;
    padding: 0.3rem 1.2rem;
    display: inline-block;
    border-radius: 6px;
}

.logo-texto {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.logo-icono {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-palabras {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-amigos {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-bailando {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: -2px;
    opacity: 0.9;
}

.top-bar-socials {
    display: flex;
    gap: 1rem;
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.top-bar-socials a:hover {
    color: #FFD966;
    transform: translateY(-2px);
}

.top-bar-whatsapp a {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.15);
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-whatsapp a i {
    color: #25d366;
    font-size: 1rem;
}

.top-bar-whatsapp a:hover {
    background: rgba(37, 211, 102, 0.3);
}

/* ============================================ */
/* 3. HEADER */
/* ============================================ */
.main-header {
    background: linear-gradient(135deg, #2C1B5A, #3d2a7a);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo-principal .logo-header {
    height: 85px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-principal .logo-header:hover {
    transform: scale(1.03);
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.main-nav .nav-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: #fff;
    background: rgba(233, 73, 68, 0.3);
}

.header-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #e94944;
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.header-cta .btn-cta:hover {
    background: #FFD966;
    color: #1a0e3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 73, 68, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.3rem;
}

/* ============================================ */
/* 4. SECCIÓN HERO */
/* ============================================ */
.section-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2C1B5A, #5e3ac0);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(233, 73, 68, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.section-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 217, 102, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: #e94944;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content .highlight {
    background: linear-gradient(135deg, #FFD966, #e94944);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFD966;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ============================================ */
/* 5. SECCIÓN HISTORIA */
/* ============================================ */
.section-historia {
    padding: 4rem 0;
    background: #f5f0ff;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #2C1B5A;
}

.section-subtitle {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

.historia-contenedor-unico {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.historia-bloque {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(44, 27, 90, 0.06);
    border-left: 4px solid #e94944;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.historia-bloque.visible {
    opacity: 1;
    transform: translateY(0);
}

.historia-bloque:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 40px rgba(44, 27, 90, 0.10);
}

.historia-bloque.destacado {
    border-left-color: #FFD966;
    background: linear-gradient(135deg, #ffffff, #faf7ff);
}

.historia-texto-principal {
    margin-bottom: 1.2rem;
}

.historia-texto-principal p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.historia-texto-principal .destacado {
    color: #e94944;
    font-weight: 700;
}

.historia-texto-principal strong {
    color: #2C1B5A;
    font-weight: 700;
}

.historia-grafico {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed rgba(233, 73, 68, 0.15);
}

.grafico-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(233, 73, 68, 0.06);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2C1B5A;
    transition: all 0.3s ease;
}

.grafico-item i {
    color: #e94944;
    font-size: 1rem;
    width: 1.2rem;
    text-align: center;
}

.grafico-item:hover {
    background: rgba(233, 73, 68, 0.12);
    transform: translateY(-2px);
}

.historia-imagen-container {
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 27, 90, 0.08);
    position: relative;
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.6s ease;
}

.historia-imagen-container.visible {
    opacity: 1;
    transform: scale(1);
}

.historia-imagen-container img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.imagen-leyenda {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(transparent, rgba(44, 27, 90, 0.8));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.03em;
}

.historia-cierre {
    margin-top: 1rem;
}

.cierre-card {
    background: linear-gradient(135deg, #2C1B5A, #3d2a7a);
    color: #fff;
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(44, 27, 90, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.cierre-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cierre-card i {
    font-size: 2.5rem;
    color: #FFD966;
    margin-bottom: 1rem;
}

.cierre-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

.cierre-card p strong {
    color: #FFD966;
}

.cierre-frase {
    margin-top: 1.2rem;
    font-size: 1.15rem !important;
    font-weight: 600;
    color: #FFD966 !important;
    opacity: 1 !important;
}

/* ============================================ */
/* 6. SECCIÓN MISIÓN, VISIÓN Y VALORES */
/* ============================================ */
.section-mision {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2C1B5A, #3d2a7a);
    color: #fff;
}

.section-mision .section-header h2 {
    color: #fff;
}

.section-mision .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-mision .separador {
    background: #FFD966;
}

.mision-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mision-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem 1.8rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.mision-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.mision-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.valores-card {
    padding: 2rem 2.5rem;
    text-align: center;
}

.valores-card .mision-icon {
    text-align: center;
}

.valores-card h3 {
    text-align: center;
}

.valores-card .valores-lista {
    text-align: left;
    margin-top: 1.5rem;
}

.mision-icon {
    font-size: 2.5rem;
    color: #FFD966;
    margin-bottom: 1rem;
}

.mision-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.mision-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.mision-card p:last-child {
    margin-bottom: 0;
}

.valores-lista {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.valores-lista li {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.valores-lista li:hover {
    background-color: #FFD966;
    transform: translateX(4px);
}

.valores-lista li i {
    color: #FFD966;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: color 0.3s ease;
}

.valores-lista li strong {
    color: #fff;
    transition: color 0.3s ease;
}

.valores-lista li span {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.valores-lista li:hover i,
.valores-lista li:hover strong,
.valores-lista li:hover span {
    color: #1a0e3a;
}

/* ============================================ */
/* 7. SECCIÓN COMPROMISO */
/* ============================================ */
.section-compromiso {
    padding: 4rem 0;
    background: #f5f0ff;
}

.compromiso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.compromiso-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(44, 27, 90, 0.06);
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.compromiso-card.visible {
    opacity: 1;
    transform: scale(1);
}

.compromiso-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 50px rgba(44, 27, 90, 0.12);
}

.compromiso-icon {
    font-size: 2.5rem;
    color: #e94944;
    margin-bottom: 1rem;
}

.compromiso-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2C1B5A;
    margin-bottom: 0.6rem;
}

.compromiso-card p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

/* ============================================ */
/* 8. SECCIÓN CTA */
/* ============================================ */
.section-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e94944, #c62828);
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
}

.cta-content h2 span {
    color: #FFD966;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-grande {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffffff;
    color: #e94944;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-grande:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: #2C1B5A;
    color: white;
}

/* ============================================ */
/* 9. FOOTER */
/* ============================================ */
.main-footer {
    background: #1a0e3a;
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-col p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFD966;
}

.footer-col ul li i {
    width: 1.4rem;
    color: #e94944;
    flex-shrink: 0;
    text-align: center;
}

.footer-bottom {
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-credit a {
    color: #FFD966;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-credit a:hover {
    text-decoration: underline;
}

.footer-credit a i {
    font-size: 0.9rem;
}

/* ============================================ */
/* 10. BOTONES FLOTANTES */
/* ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.08) translateY(-3px);
}

.float-whatsapp {
    background: #25d366;
}

.float-whatsapp:hover {
    background: #268142;
}

.float-contrast {
    background: #e94944;
}

.float-contrast:hover {
    background: #8F332D;
    color: #ffffff;
}

.float-up {
    background: #e94944;
}

.float-up:hover {
    background: #8F332D;
    color: #ffffff;
}

/* ============================================ */
/* 11. ANIMACIONES */
/* ============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================ */
/* 12. ESTADO DE CONTRASTE ALTO (accesibilidad) */
/* ============================================ */

/* ============================================ */
/* 12.1 CONTRASTE ALTO - FONDOS Y SECCIONES */
/* ============================================ */
body.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

body.high-contrast .main-header,
body.high-contrast .top-bar,
body.high-contrast .section-mision,
body.high-contrast .section-hero,
body.high-contrast .section-cta,
body.high-contrast .section-historia,
body.high-contrast .section-compromiso,
body.high-contrast .main-footer {
    background: #111 !important;
}

/* ============================================ */
/* 12.2 CONTRASTE ALTO - TOP BAR */
/* ============================================ */
body.high-contrast .top-bar {
    border-bottom: 2px solid #ffcc00 !important;
}

body.high-contrast .top-bar-logo {
    background: #ffcc00 !important;
}

body.high-contrast .top-bar-logo .logo-icono,
body.high-contrast .top-bar-logo .logo-amigos,
body.high-contrast .top-bar-logo .logo-bailando {
    color: #000 !important;
}

body.high-contrast .top-bar-socials a {
    color: #ffcc00 !important;
}

body.high-contrast .top-bar-socials a:hover {
    color: #fff !important;
}

body.high-contrast .top-bar-whatsapp a {
    background: #222 !important;
    border: 1px solid #555 !important;
}

body.high-contrast .top-bar-whatsapp a i {
    color: #ffcc00 !important;
}

body.high-contrast .top-bar-whatsapp a span {
    color: #fff !important;
}

body.high-contrast .top-bar-whatsapp a:hover {
    background: #333 !important;
}

/* ============================================ */
/* 12.3 CONTRASTE ALTO - HEADER Y NAVEGACIÓN */
/* ============================================ */
body.high-contrast .main-header {
    border-bottom: 2px solid #ffcc00 !important;
}

body.high-contrast .main-nav .nav-list a {
    color: #fff !important;
}

body.high-contrast .main-nav .nav-list a:hover,
body.high-contrast .main-nav .nav-list a.active {
    background: #ffcc00 !important;
    color: #000 !important;
}

body.high-contrast .header-cta .btn-cta {
    background: #ffcc00 !important;
    color: #000 !important;
    border-color: #ffcc00 !important;
}

body.high-contrast .header-cta .btn-cta:hover {
    background: #ffd700 !important;
    color: #000 !important;
}

body.high-contrast .menu-toggle {
    color: #ffcc00 !important;
}

/* ============================================ */
/* 12.4 CONTRASTE ALTO - HERO */
/* ============================================ */
body.high-contrast .hero-badge {
    background: #ffcc00 !important;
    color: #000 !important;
}

body.high-contrast .hero-content .highlight {
    -webkit-text-fill-color: #ffcc00 !important;
    background: none !important;
    color: #ffcc00 !important;
}

body.high-contrast .stat-number {
    color: #ffcc00 !important;
}

body.high-contrast .stat-label {
    color: #ddd !important;
}

body.high-contrast .hero-content p {
    color: #ddd !important;
}

body.high-contrast .section-hero::before,
body.high-contrast .section-hero::after {
    display: none !important;
}

/* ============================================ */
/* 12.5 CONTRASTE ALTO - HISTORIA */
/* ============================================ */
body.high-contrast .section-header h2 {
    color: #ffcc00 !important;
}

body.high-contrast .section-subtitle {
    color: #ddd !important;
}

body.high-contrast .historia-bloque {
    background: #1a1a1a !important;
    border-left-color: #ffcc00 !important;
    color: #fff !important;
    box-shadow: none !important;
}

body.high-contrast .historia-bloque.destacado {
    background: #1a1a1a !important;
    border-left-color: #ffcc00 !important;
}

body.high-contrast .historia-texto-principal p {
    color: #ddd !important;
}

body.high-contrast .historia-texto-principal .destacado {
    color: #ffcc00 !important;
}

body.high-contrast .historia-texto-principal strong {
    color: #ffcc00 !important;
}

body.high-contrast .historia-grafico {
    border-top-color: rgba(255, 204, 0, 0.3) !important;
}

body.high-contrast .grafico-item {
    background: rgba(255, 204, 0, 0.1) !important;
    color: #fff !important;
}

body.high-contrast .grafico-item i {
    color: #ffcc00 !important;
}

body.high-contrast .grafico-item:hover {
    background: rgba(255, 204, 0, 0.2) !important;
}

body.high-contrast .historia-imagen-container {
    box-shadow: 0 0 0 2px #ffcc00 !important;
}

body.high-contrast .imagen-leyenda {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9)) !important;
    color: #ffcc00 !important;
}

body.high-contrast .cierre-card {
    background: #1a1a1a !important;
    border: 2px solid #ffcc00 !important;
}

body.high-contrast .cierre-card i {
    color: #ffcc00 !important;
}

body.high-contrast .cierre-card p {
    color: #ddd !important;
}

body.high-contrast .cierre-card p strong {
    color: #ffcc00 !important;
}

body.high-contrast .cierre-frase {
    color: #ffcc00 !important;
}

/* ============================================ */
/* 12.6 CONTRASTE ALTO - MISIÓN, VISIÓN Y VALORES */
/* ============================================ */
body.high-contrast .mision-card {
    background: #1a1a1a !important;
    border-color: #444 !important;
}

body.high-contrast .mision-card:hover {
    background: #222 !important;
}

body.high-contrast .mision-card h3 {
    color: #ffcc00 !important;
}

body.high-contrast .mision-card p {
    color: #ddd !important;
}

body.high-contrast .mision-icon {
    color: #ffcc00 !important;
}

body.high-contrast .valores-lista li {
    background: #222 !important;
}

body.high-contrast .valores-lista li:hover {
    background-color: #ffcc00 !important;
}

body.high-contrast .valores-lista li i {
    color: #ffcc00 !important;
}

body.high-contrast .valores-lista li strong {
    color: #fff !important;
}

body.high-contrast .valores-lista li span {
    color: #ddd !important;
}

body.high-contrast .valores-lista li:hover i,
body.high-contrast .valores-lista li:hover strong,
body.high-contrast .valores-lista li:hover span {
    color: #000 !important;
}

/* ============================================ */
/* 12.7 CONTRASTE ALTO - COMPROMISO */
/* ============================================ */
body.high-contrast .compromiso-card {
    background: #1a1a1a !important;
    border: 1px solid #444 !important;
    box-shadow: none !important;
}

body.high-contrast .compromiso-card:hover {
    border-color: #ffcc00 !important;
    background: #222 !important;
}

body.high-contrast .compromiso-icon {
    color: #ffcc00 !important;
}

body.high-contrast .compromiso-card h3 {
    color: #ffcc00 !important;
}

body.high-contrast .compromiso-card p {
    color: #ddd !important;
}

/* ============================================ */
/* 12.8 CONTRASTE ALTO - CTA */
/* ============================================ */
body.high-contrast .section-cta {
    border: 2px solid #ffcc00 !important;
}

body.high-contrast .cta-content h2 {
    color: #fff !important;
}

body.high-contrast .cta-content h2 span {
    color: #ffcc00 !important;
}

body.high-contrast .cta-content p {
    color: #ddd !important;
}

body.high-contrast .btn-cta-grande {
    background: #ffcc00 !important;
    color: #000 !important;
    border: 2px solid #ffcc00 !important;
}

body.high-contrast .btn-cta-grande:hover {
    background: #ffd700 !important;
    color: #000 !important;
    transform: translateY(-4px) !important;
}

/* ============================================ */
/* 12.9 CONTRASTE ALTO - FOOTER */
/* ============================================ */
body.high-contrast .main-footer {
    border-top: 2px solid #ffcc00 !important;
}

body.high-contrast .footer-col h4 {
    color: #ffcc00 !important;
}

body.high-contrast .footer-col p {
    color: #ddd !important;
}

body.high-contrast .footer-col ul li {
    color: #ddd !important;
}

body.high-contrast .footer-col ul li a {
    color: #ddd !important;
}

body.high-contrast .footer-col ul li a:hover {
    color: #ffcc00 !important;
}

body.high-contrast .footer-col ul li i {
    color: #ffcc00 !important;
}

body.high-contrast .footer-bottom {
    color: #999 !important;
}

body.high-contrast .footer-credit a {
    color: #ffcc00 !important;
}

body.high-contrast .footer-credit a i {
    color: #ffcc00 !important;
}

/* ============================================ */
/* 12.10 CONTRASTE ALTO - BOTONES FLOTANTES */
/* ============================================ */
body.high-contrast .float-btn {
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.3) !important;
}

body.high-contrast .float-whatsapp {
    background: #ffcc00 !important;
    color: #000 !important;
}

body.high-contrast .float-whatsapp:hover {
    background: #ffd700 !important;
    color: #000 !important;
}

body.high-contrast .float-contrast {
    background: #ffcc00 !important;
    color: #000 !important;
}

body.high-contrast .float-contrast:hover {
    background: #ffd700 !important;
    color: #000 !important;
}

body.high-contrast .float-up {
    background: #ffcc00 !important;
    color: #000 !important;
}

body.high-contrast .float-up:hover {
    background: #ffd700 !important;
    color: #000 !important;
}

/* ============================================ */
/* 12.11 CONTRASTE ALTO - ELEMENTOS ADICIONALES */
/* ============================================ */
body.high-contrast .separador {
    background: #ffcc00 !important;
}

body.high-contrast .section-mision .separador {
    background: #ffcc00 !important;
}

body.high-contrast .section-mision .section-subtitle {
    color: #ddd !important;
}

body.high-contrast .section-compromiso .section-header h2 {
    color: #000 !important;
}

body.high-contrast .section-compromiso .section-subtitle {
    color: #555 !important;
}

/* ============================================ */
/* 13. RESPONSIVE */
/* ============================================ */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .top-bar-logo {
        padding: 0.25rem 1rem;
    }
    .logo-icono { font-size: 2rem; }
    .logo-amigos { font-size: 1.1rem; }
    .logo-bailando { font-size: 0.65rem; }

    .mision-grid-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .valores-lista {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

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

    .cta-content h2 {
        font-size: 2rem;
        white-space: normal;
        display: block;
    }

    .historia-contenedor-unico {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    .historia-bloque {
        padding: 1.5rem;
    }
    .historia-imagen-container img {
        height: 180px;
    }
}

/* Móviles grandes (600px - 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }
    .main-nav.open {
        display: block;
    }
    .main-nav .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 0.3rem;
    }
    .main-nav .nav-list a {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        width: 100%;
        text-align: center;
    }
    .header-cta .btn-cta {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    .logo-principal .logo-header {
        height: 45px;
    }

    .top-bar-inner {
        justify-content: center;
        gap: 0.8rem;
    }
    .top-bar-whatsapp span {
        display: none;
    }
    .top-bar-logo {
        padding: 0.2rem 0.8rem;
        border-radius: 4px;
    }
    .logo-texto { gap: 0.4rem; }
    .logo-icono { font-size: 1.7rem; }
    .logo-amigos { font-size: 0.95rem; }
    .logo-bailando { font-size: 0.55rem; }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }

    .section-historia {
        padding: 2.5rem 0;
    }
    .historia-contenedor-unico {
        gap: 1.2rem;
        padding: 0;
    }
    .historia-bloque {
        padding: 1.2rem;
        border-left-width: 3px;
    }
    .historia-texto-principal p {
        font-size: 0.95rem;
    }
    .historia-grafico {
        gap: 0.6rem;
        padding-top: 0.8rem;
    }
    .grafico-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    .historia-imagen-container img {
        height: 150px;
    }
    .imagen-leyenda {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .cierre-card {
        padding: 1.8rem 1.5rem;
    }
    .cierre-card p {
        font-size: 0.95rem;
    }
    .cierre-frase {
        font-size: 1rem !important;
    }

    .mision-grid-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto 1.5rem;
    }
    .mision-card {
        padding: 1.5rem 1.2rem;
    }
    .valores-card {
        padding: 1.5rem;
    }
    .valores-lista {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 100%;
    }
    .valores-lista li {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .valores-lista li i {
        margin-top: 0;
    }

    .compromiso-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 1.2rem;
    }
    .compromiso-card {
        padding: 1.5rem 1.2rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
        white-space: normal;
        display: block;
    }
    .cta-content p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    .btn-cta-grande {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-col ul li {
        justify-content: center;
    }
    .footer-credit a {
        justify-content: center;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 0.8rem;
    }
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* Móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
    .top-bar-logo {
        padding: 0.15rem 0.6rem;
        border-radius: 4px;
    }
    .logo-texto { gap: 0.3rem; }
    .logo-icono { font-size: 1.4rem; }
    .logo-amigos { font-size: 0.8rem; }
    .logo-bailando { font-size: 0.5rem; }
    .top-bar-socials {
        gap: 0.6rem;
    }
    .top-bar-socials a {
        font-size: 0.85rem;
    }

    .logo-principal .logo-header {
        height: 38px;
    }
    .header-cta .btn-cta {
        font-size: 0.6rem;
        padding: 0.3rem 0.7rem;
        gap: 0.3rem;
    }
    .header-cta .btn-cta i {
        font-size: 0.7rem;
    }

    .section-hero {
        padding: 2.5rem 0;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    .hero-stats {
        gap: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }

    .section-historia {
        padding: 2rem 0;
    }
    .historia-contenedor-unico {
        gap: 1rem;
    }
    .historia-bloque {
        padding: 1rem;
        border-left-width: 3px;
        border-radius: 0.8rem;
    }
    .historia-texto-principal p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .historia-grafico {
        gap: 0.5rem;
        padding-top: 0.6rem;
        flex-wrap: wrap;
    }
    .grafico-item {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        gap: 0.4rem;
    }
    .grafico-item i {
        font-size: 0.8rem;
        width: 1rem;
    }
    .historia-imagen-container {
        border-radius: 0.8rem;
    }
    .historia-imagen-container img {
        height: 120px;
    }
    .imagen-leyenda {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .cierre-card {
        padding: 1.2rem 1rem;
        border-radius: 1rem;
    }
    .cierre-card p {
        font-size: 0.9rem;
    }
    .cierre-card i {
        font-size: 2rem;
    }
    .cierre-frase {
        font-size: 0.95rem !important;
    }

    .section-mision {
        padding: 2.5rem 0;
    }
    .mision-card {
        padding: 1.2rem 0.8rem;
    }
    .mision-card h3 {
        font-size: 1.1rem;
    }
    .mision-card p {
        font-size: 0.85rem;
    }
    .mision-icon {
        font-size: 2rem;
    }
    .valores-card {
        padding: 1rem 0.8rem;
    }
    .valores-lista li {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }
    .valores-lista li strong {
        display: block;
    }

    .section-compromiso {
        padding: 2.5rem 0;
    }
    .compromiso-card {
        padding: 1.2rem 0.8rem;
    }
    .compromiso-card h3 {
        font-size: 1rem;
    }
    .compromiso-card p {
        font-size: 0.8rem;
    }
    .compromiso-icon {
        font-size: 2rem;
    }

    .section-cta {
        padding: 2.5rem 0;
    }
    .cta-content h2 {
        font-size: 1.4rem;
        white-space: normal;
        display: block;
    }
    .cta-content p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    .btn-cta-grande {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .main-footer {
        padding: 1.5rem 0 0;
    }
    .footer-grid {
        gap: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .footer-col h4 {
        font-size: 0.85rem;
    }
    .footer-col ul li {
        font-size: 0.8rem;
        justify-content: center;
    }
    .footer-logo {
        height: 40px;
    }
    .footer-bottom {
        padding: 0.8rem 0;
        font-size: 0.7rem;
    }

    .floating-buttons {
        bottom: 0.8rem;
        right: 0.6rem;
        gap: 0.5rem;
    }
    .float-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* Móviles muy pequeños (hasta 400px) */
@media (max-width: 400px) {
    .top-bar-logo {
        padding: 0.1rem 0.4rem;
        border-radius: 3px;
    }
    .logo-texto { gap: 0.2rem; }
    .logo-icono { font-size: 1.2rem; }
    .logo-amigos { font-size: 0.65rem; }
    .logo-bailando { font-size: 0.4rem; }
    .top-bar-socials a {
        font-size: 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }
    .section-header h2 {
        font-size: 1.4rem;
    }
    .hero-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.8rem;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-label {
        font-size: 0.65rem;
    }

    .historia-bloque {
        padding: 0.8rem;
    }
    .historia-texto-principal p {
        font-size: 0.85rem;
    }
    .grafico-item {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }
    .historia-imagen-container img {
        height: 100px;
    }

    .cierre-card {
        padding: 1rem 0.8rem;
    }
    .cierre-card p {
        font-size: 0.85rem;
    }
    .cierre-frase {
        font-size: 0.85rem !important;
    }

    .mision-card {
        padding: 1rem 0.6rem;
    }
    .mision-card h3 {
        font-size: 1rem;
    }
    .mision-card p {
        font-size: 0.8rem;
    }
    .mision-icon {
        font-size: 1.8rem;
    }
    .valores-card {
        padding: 0.8rem 0.6rem;
    }
    .valores-lista li {
        font-size: 0.75rem;
        padding: 0.3rem 0.4rem;
        gap: 0.4rem;
    }

    .compromiso-card {
        padding: 1rem 0.6rem;
    }
    .compromiso-card h3 {
        font-size: 0.9rem;
    }
    .compromiso-card p {
        font-size: 0.75rem;
    }
    .compromiso-icon {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.2rem;
    }
    .cta-content p {
        font-size: 0.85rem;
    }
    .btn-cta-grande {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    .btn-cta-grande i {
        font-size: 0.9rem;
    }

    .footer-col ul li {
        font-size: 0.75rem;
    }
    .footer-col ul li i {
        width: 1.2rem;
        font-size: 0.8rem;
    }
    .footer-bottom {
        font-size: 0.65rem;
    }
    .footer-credit a i {
        font-size: 0.8rem;
    }

    .float-btn {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}