/* ============================================================
   ATOMIC TRAINING — STYLESHEET PRINCIPAL
   Colores: Naranja #E87722 | Azul oscuro #0D1B3E | Blanco #FFFFFF
   Tipografía: Syne (títulos) + DM Sans (cuerpo)
   Degradados: Estilo Zuhma — coral #F0453A → naranja #F5803A
   ============================================================ */

/* --- VARIABLES --- */
:root {
    --orange:       #E87722;
    --orange-light: #F5A052;
    --orange-dark:  #C4601A;
    --navy:         #0D1B3E;
    --navy-mid:     #162347;
    --navy-light:   #1E3163;
    --white:        #FFFFFF;
    --off-white:    #F7F8FC;
    --gray-100:     #F0F2F7;
    --gray-300:     #CBD3E4;
    --gray-500:     #7A88A8;
    --gray-700:     #3C4B6A;
    --text-body:    #2A3550;

    /* Degradados estilo Zuhma */
    --grad-primary:   linear-gradient(135deg, #F0453A 0%, #F5803A 100%);
    --grad-primary-h: linear-gradient(135deg, #D93C32 0%, #E06B28 100%);
    --grad-navy-deep: linear-gradient(180deg, #07101F 0%, #0D1B3E 100%);

    --font-head:    'Syne', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    32px;

    --shadow-sm:    0 2px 8px rgba(13,27,62,.10);
    --shadow-md:    0 8px 32px rgba(13,27,62,.15);
    --shadow-lg:    0 20px 60px rgba(13,27,62,.20);

    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container:    1200px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- UTILIDADES --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 96px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #F0453A;
    background: rgba(240,69,58,.10);
    border: 1px solid rgba(240,69,58,.25);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 16px;
}
.tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F0453A;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 16px;
}
.section--navy .section-header h2 { color: var(--white); }
.section-header p { color: var(--gray-500); font-size: 17px; }
.section--navy .section-header p { color: var(--gray-300); }

/* --- BOTONES --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    border-radius: 100px;
    padding: 13px 28px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--grad-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(240,69,58,.35);
}
.btn--primary:hover {
    background: var(--grad-primary-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240,69,58,.50);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn--outline:hover {
    background: rgba(255,255,255,.10);
    border-color: var(--white);
}
.btn--navy {
    background: linear-gradient(135deg, #162347 0%, #0D1B3E 100%);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.10);
}
.btn--navy:hover {
    background: linear-gradient(135deg, #1E3163 0%, #162347 100%);
    border-color: rgba(255,255,255,.20);
    transform: translateY(-2px);
}
.btn--cta {
    background: var(--grad-primary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    border-color: transparent;
    box-shadow: 0 3px 12px rgba(240,69,58,.30);
}
.btn--cta:hover {
    background: var(--grad-primary-h);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: var(--grad-navy-deep);
    color: rgba(255,255,255,.75);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    gap: 16px;
}
.topbar__left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__left a, .topbar__right a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar__left a:hover, .topbar__right a:hover { color: var(--orange-light); }
.topbar__left span { display: flex; align-items: center; gap: 7px; }
.topbar__left i { color: #F5803A; font-size: 12px; }
.topbar__right { display: flex; gap: 14px; font-size: 14px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.logo-mock {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    font-size: 28px;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(240,69,58,.5));
    animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text--main {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    letter-spacing: .06em;
}
.logo-text--sub {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 10px;
    color: #F0453A;
    letter-spacing: .18em;
}
.logo-mock--footer .logo-text--main { color: var(--white); }

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: #F0453A;
    background: rgba(240,69,58,.08);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 4px;
}
.navbar__toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,128,58,.15) 0%, transparent 65%),
        radial-gradient(ellipse 60% 80% at 20% 30%, rgba(30,49,99,.6) 0%, transparent 70%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0F2250 100%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero__content { max-width: 560px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,69,58,.15);
    border: 1px solid rgba(240,69,58,.35);
    border-radius: 100px;
    color: var(--orange-light);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 24px;
    animation: fadeInUp .6s ease both;
}
.hero__badge i { font-size: 10px; }

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp .7s ease .1s both;
}
.hero h1 em {
    font-style: normal;
    color: #F5803A;
    position: relative;
}
.hero__sub {
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp .7s ease .2s both;
}
.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    animation: fadeInUp .7s ease .3s both;
}
.hero__stats {
    display: flex;
    gap: 36px;
    animation: fadeInUp .7s ease .4s both;
}
.hero__stat-num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.hero__stat-num span { color: #F5803A; }
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,.55); }

/* Hero visual */
.hero__visual {
    position: relative;
    animation: fadeInRight .8s ease .2s both;
}
.hero__img-main {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
}
.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-light) 0%, #253d7a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.3);
    font-family: var(--font-head);
    font-size: 13px;
    gap: 10px;
    border: 2px dashed rgba(255,255,255,.15);
    border-radius: inherit;
}
.img-placeholder i { font-size: 40px; opacity: .4; }

/* Floating cards */
.hero__card {
    position: absolute;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}
.hero__card--1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.hero__card--2 { top: -16px; right: -20px; animation-delay: 1.5s; }
.hero__card-icon {
    width: 40px; height: 40px;
    background: var(--grad-primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}
.hero__card-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}
.hero__card-text span { font-size: 12px; color: var(--gray-500); }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================================
   STRIP BENEFICIOS
   ============================================================ */
.strip-benefits {
    background: var(--grad-primary);
    padding: 20px 0;
    overflow: hidden;
}
.strip-benefits__inner {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow-x: auto;
}
.strip-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}
.strip-benefit i { font-size: 18px; opacity: .85; }
.strip-benefit__sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4); flex-shrink: 0; }

/* ============================================================
   NOSOTROS (Home)
   ============================================================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about__img-wrap { position: relative; }
.about__img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about__img-badge {
    position: absolute;
    bottom: 32px;
    right: -24px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about__img-badge strong {
    display: block;
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.about__img-badge span { font-size: 13px; opacity: .9; }

.about__content h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}
.about__content p { color: var(--gray-700); margin-bottom: 16px; font-size: 16.5px; }
.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 36px;
}
.about__feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: var(--transition);
}
.about__feat:hover { background: rgba(240,69,58,.08); }
.about__feat i {
    color: #F0453A;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}
.about__feat strong { display: block; font-size: 14px; font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.about__feat span { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

/* ============================================================
   EVENTOS
   ============================================================ */
.eventos__filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.filter-btn {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 100px;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--grad-primary);
    border-color: transparent;
    color: var(--white);
}

.eventos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.evento-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.evento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.evento-card__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.evento-card__img .img-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    font-size: 11px;
    border-radius: 0;
    border: none;
    min-height: 180px;
}
.evento-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}
.evento-badge--hot { background: var(--grad-primary); }
.evento-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.evento-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
}
.evento-card__meta i { color: #F0453A; font-size: 12px; }
.evento-card__title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}
.evento-card__date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #F0453A;
    font-weight: 600;
}
.evento-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
}
.evento-card__actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 12px;
    padding: 9px 12px;
}

.eventos__cta { text-align: center; }

/* Skeleton loader */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-300) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-wave 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeleton-wave { to { background-position: -200% 0; } }

/* ============================================================
   ÁREAS / TEMÁTICAS
   ============================================================ */
.areas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.area-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}
.area-card:hover {
    background: rgba(240,69,58,.12);
    border-color: rgba(240,69,58,.35);
    transform: translateY(-4px);
}
.area-card__icon {
    width: 56px; height: 56px;
    background: var(--grad-primary);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(240,69,58,.35);
}
.area-card h3 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.area-card p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ============================================================
   CIFRAS / STATS
   ============================================================ */
.stats-section {
    padding: 72px 0;
    background: var(--grad-primary);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.12) 0%, transparent 70%);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.stat-item { text-align: center; }
.stat-item__num {
    font-family: var(--font-head);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item__label {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
}

/* ============================================================
   TESTIMONIALES
   ============================================================ */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 80px;
    color: #F0453A;
    opacity: .15;
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
}
.testimonial-card__stars { color: #FFC53D; font-size: 14px; margin-bottom: 14px; }
.testimonial-card__text { color: var(--gray-700); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-card__name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); }
.testimonial-card__role { font-size: 12px; color: var(--gray-500); }

/* ============================================================
   CONTACTO CTA
   ============================================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0F2250 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(240,69,58,.18) 0%, transparent 70%);
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-section p { color: rgba(255,255,255,.7); font-size: 18px; margin-bottom: 36px; }
.cta-section .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer__top { padding: 72px 0; }
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
}
.footer__desc { font-size: 14px; line-height: 1.7; margin: 20px 0 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 14px;
    transition: var(--transition);
}
.footer__social a:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: var(--white);
}

.footer__heading {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__links a:hover { color: #F5803A; }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.6); }
.footer__contact i { color: #F5803A; font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__contact a:hover { color: #F5803A; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}
.footer__bottom a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__bottom a:hover { color: #F5803A; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse-wa 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,.65), 0 0 0 12px rgba(37,211,102,.12); }
}

/* ============================================================
   ANIMACIONES
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .areas__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .about__grid { gap: 48px; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }

    .topbar__left { display: none; }

    .navbar__toggle { display: flex; }
    .navbar__menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid var(--gray-100);
        box-shadow: var(--shadow-md);
        padding: 12px 0;
    }
    .navbar__menu.open { display: flex; }
    .nav-link { padding: 14px 24px; border-radius: 0; }
    .navbar__menu .btn--cta { margin: 8px 16px 8px; border-radius: var(--radius-sm); justify-content: center; }

    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { display: none; }
    .hero { min-height: 70vh; }
    .hero__stats { gap: 24px; }

    .about__grid { grid-template-columns: 1fr; }
    .about__img-badge { right: 0; }
    .about__features { grid-template-columns: 1fr; }

    .eventos__grid { grid-template-columns: 1fr; }

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

    .testimonials__grid { grid-template-columns: 1fr; }

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

    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .strip-benefits__inner { gap: 20px; overflow-x: auto; }
    .strip-benefit__sep { display: none; }
    .areas__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   NOSOTROS.PHP — ESTILOS ESPECÍFICOS
   Agregar al final del style.css, antes del bloque RESPONSIVE
   ============================================================ */
 
/* --- PAGE HERO (hero de páginas interiores) --- */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    background: var(--navy);
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 100% 50%, rgba(240,69,58,.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 0% 50%, rgba(30,49,99,.5) 0%, transparent 70%),
        var(--grad-navy-deep);
    z-index: 0;
}
.page-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.page-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.page-hero__content .tag { margin-bottom: 12px; }
.page-hero__content h1 {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
}
.page-hero__content p {
    color: rgba(255,255,255,.65);
    font-size: 18px;
    max-width: 560px;
}
 
/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: #F5803A; }
.breadcrumb span:last-child { color: #F5803A; }
 
/* --- ABOUT FULL (sección quiénes somos completa) --- */
.about-full__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.about-full__visual { position: relative; }
.about-full__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-full__badge {
    position: absolute;
    top: 28px;
    right: -20px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.about-full__badge strong {
    display: block;
    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}
.about-full__badge span { font-size: 12px; opacity: .9; }
 
.about-full__card {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    max-width: 260px;
}
.about-full__card-icon {
    width: 40px; height: 40px;
    background: var(--grad-primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}
.about-full__card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}
.about-full__card span { font-size: 12px; color: var(--gray-500); }
 
.about-full__content h2 {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}
.about-full__lead {
    font-size: 17px;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}
.about-full__content p { color: var(--gray-700); margin-bottom: 14px; font-size: 16px; }
 
.about-full__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 32px;
}
.pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.pillar:hover { background: rgba(240,69,58,.08); }
.pillar__icon {
    width: 36px; height: 36px;
    background: var(--grad-primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 15px;
    flex-shrink: 0;
}
.pillar strong { display: block; font-size: 13px; font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.pillar span { font-size: 12px; color: var(--gray-500); line-height: 1.4; }
 
/* --- MISIÓN VISIÓN VALORES --- */
.mvv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mvv-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mvv-card__body { padding: 28px; flex: 1; }
.mvv-card__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #F0453A;
    background: rgba(240,69,58,.10);
    border: 1px solid rgba(240,69,58,.20);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 14px;
}
.mvv-card h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}
.mvv-card p { font-size: 15px; color: var(--gray-700); line-height: 1.7; }
.mvv-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mvv-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}
.mvv-card__list i {
    color: #F0453A;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}
 
/* --- POR QUÉ ELEGIRNOS --- */
.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-item {
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.03);
    transition: var(--transition);
}
.why-item:hover {
    background: rgba(240,69,58,.10);
    border-color: rgba(240,69,58,.30);
    transform: translateY(-4px);
}
.why-item__num {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-item h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.why-item p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }
 
/* --- EQUIPO --- */
.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__body {
    padding: 24px;
}
.team-card h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.team-card__role {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #F0453A;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.team-card p { font-size: 14px; color: var(--gray-700); line-height: 1.65; margin-bottom: 16px; }
.team-card__social {
    display: flex;
    gap: 10px;
}
.team-card__social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-500);
    font-size: 13px;
    transition: var(--transition);
}
.team-card__social a:hover {
    background: var(--grad-primary);
    border-color: transparent;
    color: var(--white);
}
 
/* --- RESPONSIVE NOSOTROS --- */
@media (max-width: 1024px) {
    .about-full__grid { grid-template-columns: 1fr; gap: 48px; }
    .about-full__badge { right: 0; }
    .about-full__card { left: 0; }
    .mvv__grid { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .page-hero { padding: 60px 0 40px; }
    .about-full__pillars { grid-template-columns: 1fr; }
    .why__grid { grid-template-columns: 1fr; }
    .team__grid { grid-template-columns: 1fr; }
}