/* ========================================
   BIG TALENTS GIMNASIO CAMPESTRE
   CSS Principal - style.css
   ======================================== */

:root {
    --primary: #f5a800;
    --primary-dark: #d4900a;
    --primary-light: #ffd166;
    --secondary: #2c3e50;
    --secondary-light: #3d5166;
    --accent-blue: #3498db;
    --accent-green: #2ecc71;
    --accent-red: #e74c3c;
    --text-dark: #1a1a2e;
    --text-body: #4a4a6a;
    --text-light: #8888aa;
    --bg-light: #f8f9fd;
    --bg-cream: #fffbf0;
    --white: #ffffff;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --navbar-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── PWA BANNER ── */
.pwa-banner {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    background: linear-gradient(135deg, var(--secondary), #1a2535);
    color: var(--white); padding: 12px 20px;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.4s ease;
}
.pwa-banner.hidden { display: none; }
.pwa-banner-content {
    max-width: 600px; margin: 0 auto;
    display: flex; align-items: center; gap: 12px;
}
.pwa-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; }
.pwa-text { flex: 1; }
.pwa-text strong { display: block; font-size: 0.95rem; font-weight: 800; }
.pwa-text span { font-size: 0.8rem; opacity: 0.8; }
.btn-install {
    background: var(--primary); color: var(--secondary);
    border: none; padding: 8px 18px; border-radius: 20px;
    font-weight: 800; font-size: 0.85rem; cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: var(--transition); flex-shrink: 0;
}
.btn-install:hover { background: var(--primary-light); }
.btn-close-pwa {
    background: none; border: none; color: var(--white);
    font-size: 1.4rem; cursor: pointer; padding: 0 4px; line-height: 1;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--white); height: var(--navbar-h);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.navbar.scrolled {
    height: 64px;
    box-shadow: var(--shadow-md);
}
.nav-container {
    max-width: 1300px; margin: 0 auto; padding: 0 24px;
    height: 100%; display: flex; align-items: center; gap: 16px;
}
.nav-logo img { height: 56px; width: auto; transition: var(--transition); }
.navbar.scrolled .nav-logo img { height: 46px; }

.nav-menu { margin-left: auto; }
.nav-menu > ul { display: flex; gap: 4px; }
.nav-menu > ul > li { position: relative; }
.nav-menu > ul > li > a {
    display: flex; align-items: center; gap: 4px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.9rem; color: var(--text-dark);
    transition: var(--transition);
}
.nav-menu > ul > li > a:hover,
.nav-menu > ul > li > a.active {
    color: var(--primary); background: rgba(245,168,0,0.08);
}
.arrow { font-size: 0.6rem; transition: var(--transition); }
.has-dropdown:hover .arrow { transform: rotate(180deg); }

.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white); min-width: 220px;
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: var(--transition); padding: 8px 0;
}
.has-dropdown:hover .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
    display: block; padding: 10px 20px;
    font-weight: 600; font-size: 0.88rem; color: var(--text-body);
    transition: var(--transition);
}
.dropdown li a:hover { color: var(--primary); background: var(--bg-light); padding-left: 26px; }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.nav-phone {
    display: flex; align-items: center; gap: 6px;
    font-weight: 700; font-size: 0.85rem; color: var(--secondary);
    background: var(--bg-light); padding: 8px 14px;
    border-radius: 20px; transition: var(--transition);
}
.nav-phone:hover { background: var(--primary); color: var(--white); }
.nav-intranet { display: flex; flex-direction: column; gap: 4px; }
.btn-intranet, .btn-pagos {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.78rem; font-weight: 700; padding: 4px 10px;
    border-radius: 6px; transition: var(--transition);
}
.btn-intranet { color: var(--secondary); }
.btn-intranet:hover { color: var(--primary); }
.btn-pagos { color: var(--primary-dark); }
.btn-pagos:hover { color: var(--primary); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
    display: block; width: 26px; height: 2.5px;
    background: var(--text-dark); border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; margin-top: var(--navbar-h);
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.75) 0%, rgba(245,168,0,0.3) 100%);
}
.hero-content {
    position: relative; z-index: 10;
    text-align: center; color: var(--white);
    padding: 0 24px;
}
.hero-logo-wrap { margin-bottom: 20px; }
.hero-logo-img { height: 100px; margin: 0 auto; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4)); }
.hero-title {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin-bottom: 12px;
}
.hero-title em { color: var(--primary-light); font-style: italic; }
.hero-subtitle {
    font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px;
    font-weight: 600; letter-spacing: 0.05em;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: var(--secondary);
    padding: 14px 32px; border-radius: 50px;
    font-weight: 800; font-size: 0.95rem;
    transition: var(--transition); box-shadow: 0 4px 20px rgba(245,168,0,0.4);
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,168,0,0.5); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); color: var(--white);
    padding: 14px 32px; border-radius: 50px;
    font-weight: 800; font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(8px); transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

.hero-dots {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer;
    transition: var(--transition);
}
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ── FEATURES BAR ── */
.features-bar {
    background: var(--secondary); display: flex;
    overflow-x: auto;
}
.feature-item {
    flex: 1; min-width: 220px;
    display: flex; align-items: center; gap: 14px;
    padding: 28px 32px; color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition); cursor: pointer;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(245,168,0,0.15); }
.feature-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(245,168,0,0.2); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.feature-item strong { display: block; font-weight: 800; font-size: 0.9rem; }
.feature-item span { font-size: 0.75rem; opacity: 0.7; }
.feature-item .arrow-right { margin-left: auto; opacity: 0.5; font-size: 1.2rem; transition: var(--transition); }
.feature-item:hover .arrow-right { opacity: 1; transform: translateX(4px); }

/* ── ABOUT ── */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover;
}
.about-img-sec {
    position: absolute; bottom: -30px; right: -30px;
    width: 45%; border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); border: 5px solid var(--white);
    aspect-ratio: 1; object-fit: cover;
}
.section-tag {
    display: inline-block; background: rgba(245,168,0,0.12);
    color: var(--primary-dark); padding: 6px 16px;
    border-radius: 20px; font-weight: 800; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.about-content h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.4rem; font-weight: 800; color: var(--text-dark);
    line-height: 1.2; margin-bottom: 20px;
}
.about-content h2 em { color: var(--primary); font-style: italic; }
.about-content > p { color: var(--text-body); margin-bottom: 32px; font-size: 1.05rem; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.af-item { display: flex; gap: 16px; align-items: flex-start; }
.af-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: rgba(245,168,0,0.1); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.af-item strong { display: block; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.af-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ── VALORES ── */
.valores-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2535 100%);
    color: var(--white);
}
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.2rem; font-weight: 800; color: var(--white);
    margin-top: 8px;
}
.section-header.centered h2 { color: var(--text-dark); }
.valores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.valor-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md); padding: 32px 24px;
    transition: var(--transition); position: relative; overflow: hidden;
}
.valor-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary);
}
.valor-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.valor-number {
    font-family: 'Baloo 2', cursive;
    font-size: 3rem; font-weight: 900; color: rgba(245,168,0,0.2);
    line-height: 1; margin-bottom: 12px;
}
.valor-card h3 { color: var(--primary-light); font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.valor-card p { font-size: 0.88rem; opacity: 0.8; line-height: 1.6; }

/* ── PROGRAMAS ── */
.programas-section { padding: 100px 0; background: var(--bg-light); }
.programas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.programa-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.programa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.programa-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.programa-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.programa-card:hover .programa-img-wrap img { transform: scale(1.05); }
.programa-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44,62,80,0.6) 0%, transparent 60%);
}
.programa-info { padding: 24px; }
.programa-info h3 { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.2rem; color: var(--text-dark); margin-bottom: 8px; }
.programa-info p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 18px; line-height: 1.5; }
.btn-programa {
    display: inline-block; background: var(--secondary); color: var(--white);
    padding: 10px 22px; border-radius: 8px;
    font-weight: 700; font-size: 0.85rem; transition: var(--transition);
}
.btn-programa:hover { background: var(--primary); color: var(--secondary); }

/* ── NOVEDADES ── */
.novedades-section { padding: 80px 0; background: var(--white); }
.novedades-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.novedades-text h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.2rem; font-weight: 800; color: var(--text-dark);
    line-height: 1.2; margin-bottom: 20px;
}
.btn-arrow { color: var(--primary); font-weight: 800; font-size: 1rem; }
.btn-arrow:hover { color: var(--primary-dark); }
.novedades-docs { display: flex; gap: 20px; }
.doc-card {
    flex: 1; display: flex; align-items: center; gap: 14px;
    border: 1px solid #e8e8f0; border-radius: var(--radius-md);
    padding: 16px; transition: var(--transition);
}
.doc-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.doc-thumb {
    width: 70px; height: 90px; flex-shrink: 0;
    border-radius: 8px; overflow: hidden; background: var(--bg-light);
}
.doc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.doc-info { display: flex; flex-direction: column; gap: 4px; }
.doc-type {
    display: inline-block; background: var(--primary);
    color: var(--secondary); font-size: 0.7rem; font-weight: 900;
    padding: 2px 8px; border-radius: 4px;
    width: fit-content;
}
.doc-info strong { font-size: 0.88rem; color: var(--text-dark); line-height: 1.3; }
.doc-info small { font-size: 0.78rem; color: var(--text-light); }

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a2535 100%);
    padding: 48px 0;
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.cta-inner h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 4px; }
.btn-cta {
    background: var(--primary); color: var(--secondary);
    padding: 14px 28px; border-radius: 8px;
    font-weight: 900; font-size: 0.88rem;
    letter-spacing: 0.05em; transition: var(--transition);
    white-space: nowrap;
}
.btn-cta:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: #111827; color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; opacity: 0.7; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px; background: rgba(255,255,255,0.1);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--secondary); }
.footer-col h4 {
    font-weight: 800; font-size: 0.9rem; color: var(--primary-light);
    letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: 0.88rem; opacity: 0.7; transition: var(--transition);
}
.footer-col ul a:hover { opacity: 1; color: var(--primary-light); padding-left: 6px; }
.footer-col address p {
    font-size: 0.88rem; opacity: 0.7; line-height: 1.6;
    margin-bottom: 8px;
}
.footer-col address a { opacity: 1; color: var(--primary-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.82rem; opacity: 0.5; }
.footer-admin-link { font-size: 0.78rem; opacity: 0.3; transition: var(--transition); }
.footer-admin-link:hover { opacity: 1; color: var(--primary); }

/* ── INNER PAGES ── */
.page-hero {
    background: linear-gradient(135deg, var(--secondary), #1a2535);
    padding: 80px 0 60px; margin-top: var(--navbar-h); color: var(--white);
}
.breadcrumb {
    display: flex; gap: 8px; align-items: center;
    font-size: 0.82rem; opacity: 0.7; margin-bottom: 12px;
}
.breadcrumb a { transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb span { opacity: 0.5; }
.page-hero h1 {
    font-family: 'Baloo 2', cursive; font-size: 2.8rem; font-weight: 900;
}
.page-content { padding: 80px 0; }
.content-with-sidebar {
    display: grid; grid-template-columns: 1fr 280px; gap: 60px;
}
.sidebar-nav {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid #e8e8f0; padding: 8px; height: fit-content;
    position: sticky; top: 100px;
}
.sidebar-nav a {
    display: block; padding: 12px 20px; border-radius: 10px;
    font-weight: 700; font-size: 0.9rem; color: var(--text-body);
    transition: var(--transition); border-bottom: 1px solid #f0f0f8;
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: var(--primary); color: var(--secondary);
}
.page-text h2 {
    font-family: 'Baloo 2', cursive; font-size: 1.8rem; font-weight: 800;
    color: var(--text-dark); margin: 32px 0 16px;
}
.page-text h2:first-child { margin-top: 0; }
.page-text p { color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-family: 'Baloo 2', cursive; font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 24px; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.cd-icon {
    width: 44px; height: 44px; background: rgba(245,168,0,0.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--primary);
}
.cd-text strong { display: block; font-weight: 800; color: var(--text-dark); }
.cd-text span { font-size: 0.88rem; color: var(--text-light); }
.numbers-box {
    background: linear-gradient(135deg, var(--secondary), #1a2535);
    color: var(--white); border-radius: var(--radius-lg); padding: 32px; margin-top: 24px;
}
.numbers-box h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; }
.numbers-box .phone-num {
    font-family: 'Baloo 2', cursive; font-size: 1.5rem; font-weight: 900;
    color: var(--primary-light); display: block; margin-bottom: 8px;
}
.numbers-box .hours { margin-top: 16px; font-size: 0.9rem; opacity: 0.8; }
.numbers-box .hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid #e0e0f0; border-radius: 10px;
    font-family: 'Nunito', sans-serif; font-size: 0.9rem; color: var(--text-dark);
    background: var(--white); transition: var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245,168,0,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.btn-submit {
    background: var(--primary); color: var(--secondary);
    border: none; padding: 14px 36px; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.95rem;
    cursor: pointer; transition: var(--transition);
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }
.required-note { font-size: 0.8rem; color: var(--text-light); margin-top: 8px; }
.required-note span { color: var(--accent-red); }

/* ── STAFF CARDS ── */
.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.staff-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); text-align: center; padding-bottom: 24px;
}
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.staff-photo { width: 100%; aspect-ratio: 1; overflow: hidden; }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.staff-card:hover .staff-photo img { transform: scale(1.05); }
.staff-info { padding: 20px 16px 0; }
.staff-info h3 { font-weight: 800; font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
.staff-badge {
    display: inline-block; background: rgba(245,168,0,0.15);
    color: var(--primary-dark); padding: 4px 12px; border-radius: 20px;
    font-size: 0.78rem; font-weight: 700;
}

/* ── ALERTS ── */
.alert {
    padding: 14px 20px; border-radius: 10px; margin-bottom: 16px;
    font-weight: 600; font-size: 0.9rem;
}
.alert-success { background: rgba(46,204,113,0.1); color: #27ae60; border: 1px solid rgba(46,204,113,0.3); }
.alert-error { background: rgba(231,76,60,0.1); color: #c0392b; border: 1px solid rgba(231,76,60,0.3); }

/* ── ANIMATIONS ── */
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
    opacity: 0; animation: fadeInUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .valores-grid { grid-template-columns: repeat(2, 1fr); }
    .programas-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { gap: 40px; }
    .content-with-sidebar { grid-template-columns: 1fr; }
    .sidebar-nav { position: static; }
}

@media (max-width: 768px) {
    :root { --navbar-h: 64px; }
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed; top: var(--navbar-h); left: 0; right: 0;
        background: var(--white); padding: 16px 0 32px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-110%); opacity: 0; visibility: hidden;
        transition: var(--transition); max-height: calc(100vh - var(--navbar-h)); overflow-y: auto;
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-menu > ul { flex-direction: column; padding: 0 16px; gap: 0; }
    .nav-menu > ul > li > a { padding: 14px 16px; border-radius: 10px; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; background: var(--bg-light); border-radius: 10px; margin-top: 4px; margin-bottom: 4px; }
    .has-dropdown:hover .dropdown, .has-dropdown .dropdown { display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .nav-actions { display: none; }
    .nav-phone { display: none; }
    
    .hero { height: 80vh; min-height: 500px; }
    .hero-title { font-size: 1.8rem; }
    .hero-btns { gap: 10px; }
    .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 0.88rem; }
    
    .features-bar { flex-direction: column; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-sec { display: none; }
    .valores-grid { grid-template-columns: 1fr; }
    .programas-grid { grid-template-columns: 1fr; }
    .novedades-inner { grid-template-columns: 1fr; }
    .novedades-docs { flex-direction: column; }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .staff-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .staff-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 1.5rem; }
    .about-content h2 { font-size: 1.8rem; }
}
