/* =====================================================
   HANEI ACADEMIA - CSS
   Premium training academy for aesthetic professionals
   ===================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Brand Colors - warm gold/cream/pink palette */
    --color-primary: #C8956C;
    --color-primary-light: #D4A97A;
    --color-primary-dark: #B07D58;
    --color-accent: #E8C4A0;
    --color-accent-light: #F2DCC8;
    --color-gold: #C9A96E;
    --color-gold-light: #E4D5B7;
    --color-pink: #D4A0A0;
    --color-pink-light: #F0D5D5;
    --color-rose: #C48B8B;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-cream: #FDFCFA;
    --color-warm-white: #FBF8F4;
    --color-warm-gray: #F5F0EB;
    --color-text: #3D3531;
    --color-text-muted: #7A7572;
    --color-text-light: #A09A96;
    --color-border: #E8E2DC;

    /* WhatsApp */
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1DAE54;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --section-padding: 120px;
    --section-padding-mobile: 70px;
    --container-max: 1140px;
    --container-padding: 24px;
    --header-height: 72px;

    /* Effects */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.6s ease;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn i {
    font-size: 1.15em;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(200, 149, 108, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 149, 108, 0.45);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 149, 108, 0.3);
}

.btn--accent {
    background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}

.btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.45);
}

.btn--whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    font-size: 1.1rem;
    padding: 18px 42px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    animation: pulse-whatsapp 2s infinite;
}

.btn--whatsapp:hover {
    background: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55); }
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 0;
    transition: all var(--transition-normal);
    height: var(--header-height);
}

.header--scrolled {
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header__logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    z-index: 1001;
}

.header__logo-accent {
    font-weight: 400;
    font-style: italic;
    color: var(--color-primary);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 4px 0;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.header__link:hover {
    color: var(--color-primary);
}

.header__link:hover::after {
    width: 100%;
}

.header__link--cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.header__link--cta::after {
    display: none;
}

.header__link--cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white) !important;
}

/* Mobile Menu Toggle */
.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-warm-white) 0%, var(--color-accent-light) 40%, var(--color-pink-light) 70%, var(--color-gold-light) 100%);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero__badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(200, 149, 108, 0.12);
    border: 1px solid rgba(200, 149, 108, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero__cta {
    font-size: 1.05rem;
    padding: 16px 40px;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 0.8rem;
    animation: float 2.5s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section--light {
    background: var(--color-cream);
}

.section--warm {
    background: var(--color-warm-white);
}

.section--cta {
    background: linear-gradient(135deg, var(--color-warm-white) 0%, var(--color-accent-light) 50%, var(--color-pink-light) 100%);
    padding: var(--section-padding) 0;
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section__title {
    margin-bottom: 16px;
}

.section__title--left {
    text-align: left;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== FEATURES GRID ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-pink-light));
    border-radius: 16px;
    font-size: 1.4rem;
    color: var(--color-primary-dark);
}

.feature-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.feature-card__text {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==================== COURSES GRID ==================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.course-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.course-card--featured {
    border-left-color: var(--color-gold);
}

.course-card__badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.course-card__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.course-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-gold-light));
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--color-primary-dark);
}

.course-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--font-body);
    line-height: 1.3;
}

.course-card__duration {
    font-size: 0.82rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-card__desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.course-card__includes {
    margin-bottom: 24px;
    flex-grow: 1;
}

.course-card__includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.course-card__includes li i {
    color: var(--color-primary);
    font-size: 0.75rem;
    min-width: 14px;
}

.course-card__btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ==================== MENTORSHIP GRID ==================== */
.mentorship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mentorship-card {
    background: linear-gradient(145deg, var(--color-white) 0%, var(--color-warm-gray) 100%);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.mentorship-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.mentorship-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    border-radius: 16px;
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.mentorship-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.mentorship-card__for {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-primary);
    background: rgba(200, 149, 108, 0.1);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.mentorship-card__desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.mentorship-card__includes {
    margin-bottom: 28px;
    flex-grow: 1;
}

.mentorship-card__includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.mentorship-card__includes li i {
    color: var(--color-gold);
    font-size: 0.85rem;
}

.mentorship-card__btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ==================== ABOUT / VERONICA ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

.about__photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-width: 360px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--color-accent-light), var(--color-pink-light), var(--color-gold-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.about__photo-img {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
}

.about__role {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.about__bio {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 36px;
}

.about__stats {
    display: flex;
    gap: 36px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat__plus {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

.stat__label {
    display: block;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-top: 6px;
    font-weight: 500;
}

/* ==================== AUDIENCE ==================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.audience-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.audience-card__emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.audience-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: var(--font-body);
}

.audience-card__text {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ==================== TIMELINE / METODOLOGIA ==================== */
.timeline {
    position: relative;
    max-width: 660px;
    margin: 0 auto;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-primary), var(--color-gold));
    border-radius: 2px;
}

.timeline__item {
    position: relative;
    margin-bottom: 40px;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: -48px;
    top: 2px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 2px 12px rgba(200, 149, 108, 0.3);
    z-index: 1;
}

.timeline__title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.timeline__text {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ==================== CTA BLOCK ==================== */
.cta-block {
    text-align: center;
    margin-bottom: 48px;
}

.cta-block__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-block__text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-block__btn {
    margin-bottom: 0;
}

/* ==================== CONTACTO + UBICACIÓN COMBINADO ==================== */
.contact-location {
    display: grid;
    grid-template-columns: minmax(300px, 380px) 1fr;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    min-height: 380px;
}

.contact-location__info {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.contact-location__detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.contact-location__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(155, 139, 122, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-location__icon i {
    color: var(--color-primary);
    font-size: 0.95rem;
}

.contact-location__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
    flex: 1;
}

.contact-location__text strong {
    display: block;
    font-size: 0.72rem;
    color: var(--color-primary);
    margin-bottom: 1px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    text-align: left;
}

.contact-location__text span {
    display: block;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.35;
    text-align: left;
}

.contact-location__text a {
    font-size: 0.88rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
    text-align: left;
}

.contact-location__text a:hover {
    color: var(--color-primary);
}

.contact-location__actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.contact-location__actions .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 10px 16px;
}

.contact-location__map {
    min-height: 380px;
    position: relative;
    z-index: 1;
}

/* Leaflet overrides para mapa limpio */
.contact-location__map .leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.15);
    font-family: inherit;
}

.contact-location__map .leaflet-popup-content {
    margin: 12px 16px;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 32px;
}

.footer__inner {
    text-align: center;
}

.footer__brand {
    margin-bottom: 20px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer__logo em {
    font-weight: 400;
    color: var(--color-primary-light);
}

.footer__tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 16px;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-primary-light);
}

.footer__parent {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer__parent a {
    color: var(--color-primary-light);
}

.footer__parent a:hover {
    text-decoration: underline;
}

.footer__copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
    animation: pulse-float 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-float {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}

/* ==================== ANIMATIONS ==================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for grid items */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }

.courses-grid .course-card:nth-child(2) { transition-delay: 0.1s; }
.courses-grid .course-card:nth-child(3) { transition-delay: 0.2s; }

.mentorship-grid .mentorship-card:nth-child(2) { transition-delay: 0.1s; }

.audience-grid .audience-card:nth-child(2) { transition-delay: 0.1s; }
.audience-grid .audience-card:nth-child(3) { transition-delay: 0.2s; }

.timeline__item:nth-child(2) { transition-delay: 0.08s; }
.timeline__item:nth-child(3) { transition-delay: 0.16s; }
.timeline__item:nth-child(4) { transition-delay: 0.24s; }
.timeline__item:nth-child(5) { transition-delay: 0.32s; }

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in-up {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ==================== RESPONSIVE: TABLET ==================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .mentorship-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about__photo-placeholder {
        max-width: 280px;
    }

    .about__photo-img {
        max-width: 280px;
    }

    .section__title--left {
        text-align: center;
    }

    .about__stats {
        justify-content: center;
    }

    .about__role,
    .about__bio {
        text-align: center;
    }

    .contact-location {
        grid-template-columns: minmax(280px, 340px) 1fr;
        min-height: 340px;
    }

    .contact-location__info {
        padding: 28px 24px;
        gap: 14px;
    }

    .contact-location__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .contact-location__map {
        min-height: 340px;
    }
}

/* ==================== RESPONSIVE: MOBILE ==================== */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
        --container-padding: 20px;
    }

    /* Mobile Menu */
    .header__toggle {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 0;
        transition: right var(--transition-normal);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    }

    .header__nav.open {
        right: 0;
    }

    .header__link {
        font-size: 1.05rem;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .header__link--cta {
        margin-top: 16px;
        width: auto;
        border-bottom: none;
    }

    /* Mobile overlay */
    .header__nav.open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }

    /* Hero */
    .hero {
        padding-top: calc(var(--header-height) + 20px);
    }

    .hero__scroll-indicator {
        display: none;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 24px;
    }

    /* Audience */
    .audience-grid {
        grid-template-columns: 1fr;
    }

    /* About stats */
    .about__stats {
        flex-direction: column;
        gap: 24px;
    }

    /* Contact location */
    .contact-location {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contact-location__info {
        padding: 28px 20px 24px;
        gap: 14px;
    }

    .contact-location__detail {
        flex-direction: row;
        gap: 12px;
    }

    .contact-location__icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .contact-location__icon i {
        font-size: 0.9rem;
    }

    .contact-location__text strong {
        font-size: 0.7rem;
    }

    .contact-location__text span,
    .contact-location__text a {
        font-size: 0.88rem;
    }

    .contact-location__actions {
        width: 100%;
        margin-top: 4px;
    }

    .contact-location__actions .btn {
        flex: 1;
        font-size: 0.82rem;
    }

    .contact-location__map {
        min-height: 260px;
    }

    /* Footer */
    .footer__links {
        flex-direction: column;
        gap: 12px;
    }

    /* WhatsApp float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }
}

/* ==================== RESPONSIVE: SMALL MOBILE ==================== */
@media (max-width: 480px) {
    .hero__title {
        font-size: 2.6rem;
    }

    .hero__cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn--whatsapp {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .course-card__header {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==================== LARGE SCREENS ==================== */
@media (min-width: 1200px) {
    :root {
        --container-max: 1200px;
    }
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: var(--section-padding);
    min-height: 80vh;
}

.legal-page h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 32px;
    text-align: center;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p {
    margin-bottom: 16px;
}

.legal-page ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--color-primary);
}

.legal-page a:hover {
    text-decoration: underline;
}
