/* ============================================================
   Page Loader
   ============================================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; position: relative; }
.loader-fish { width: 80px; height: 40px; animation: fishSwim 2s ease-in-out infinite; }
.fish-group { animation: fishWiggle 0.6s ease-in-out infinite alternate; transform-origin: center; }
@keyframes fishSwim { 0%,100%{transform:translateX(-20px)} 50%{transform:translateX(20px)} }
@keyframes fishWiggle { 0%{transform:rotate(-3deg) scaleX(1)} 100%{transform:rotate(3deg) scaleX(.97)} }

.loader-bubbles { position: absolute; top: 8px; left: 10px; width: 60px; height: 30px; }
.bubble { position: absolute; background: rgba(255,255,255,0.12); border-radius: 50%; animation: bubbleUp 1.8s ease-in infinite; }
.b1 { width:6px; height:6px; left:5px; bottom:0; animation-delay:0s; }
.b2 { width:4px; height:4px; left:15px; bottom:0; animation-delay:.5s; }
.b3 { width:5px; height:5px; left:0; bottom:0; animation-delay:1s; }
@keyframes bubbleUp { 0%{transform:translateY(0) scale(1);opacity:.5} 100%{transform:translateY(-40px) scale(.3);opacity:0} }

.loader-text {
    margin-top: 28px;
    color: rgba(255,255,255,0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* ============================================================
   Reset & Tokens
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Palette */
    --black: #0a0a0a;
    --primary: #111111;
    --gray-900: #1a1a1a;
    --gray-800: #222222;
    --gray-600: #555555;
    --gray-500: #777777;
    --gray-400: #999999;
    --gray-300: #bbbbbb;
    --gray-200: #d4d4d4;
    --gray-100: #eeeeee;
    --gray-50: #f7f7f8;
    --white: #ffffff;
    --silver: #c0c0c0;
    --success: #2e7d32;
    --error: #c62828;

    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 100px;
    --section-pad-mobile: 64px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-800);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }

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

/* ============================================================
   Reveal Animations
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Header
   ============================================================ */
.header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
    flex-shrink: 0;
}

.logo-graphic img { width: 44px; height: 44px; border-radius: var(--radius-sm); }
.logo-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
}

.main-nav ul { display: flex; list-style: none; gap: 32px; }
.main-nav a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: color 0.25s;
    position: relative;
    padding: 4px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.25s, transform 0.25s;
    flex-shrink: 0;
}
.header-cta:hover { background: var(--gray-800); transform: translateY(-1px); }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    overflow: hidden;
}

.water-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,20,20,0.3) 0%, rgba(10,10,10,0.9) 60%, var(--black) 100%);
    z-index: -1;
    overflow: hidden;
}
.water-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 2px, transparent 2px),
        radial-gradient(circle at 60% 70%, rgba(255,255,255,0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 150px 150px, 200px 200px, 120px 120px;
    animation: float-bubbles 20s infinite ease-in-out;
    opacity: 0.4;
}
@keyframes float-bubbles { 0%,100%{transform:translate(0,0);opacity:.4} 50%{transform:translate(15px,-15px);opacity:.6} }

.wave-svg { position:absolute; bottom:0; left:0; width:100%; height:auto; min-height:280px; animation:wave-animation 15s ease-in-out infinite; }
.wave-svg-2 { animation-delay:-5s; opacity:.8; }
.wave-svg-3 { animation-delay:-10s; opacity:.6; }
@keyframes wave-animation { 0%,100%{transform:translateX(0) translateY(0)} 50%{transform:translateX(-25px) translateY(15px)} }

.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; z-index: 0; pointer-events: none;
}
.hero::before { width:400px; height:400px; background:radial-gradient(circle,#444,transparent 60%); top:-80px; left:-60px; }
.hero::after { width:500px; height:500px; background:radial-gradient(circle,#222,transparent 65%); bottom:-120px; right:-80px; }

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

.hero-logo-wrap { margin-bottom: 28px; }
.hero-logo-wrap img {
    max-width: 160px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    margin-bottom: 24px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 3; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

.btn-dark {
    background: var(--primary);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ============================================================
   Section System
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section--white { background: var(--white); }
.section--light { background: var(--gray-50); }
.section--dark { background: var(--gray-900); color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 12px;
}
.section-label--light { color: var(--gray-300); }

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}
.section-title--light { color: var(--white); }

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--silver);
    margin: 20px auto;
    border-radius: 2px;
}
.section-divider--light { background: rgba(255,255,255,0.25); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   Team Section
   ============================================================ */
.about-image {
    max-width: 940px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.team-image { width: 100%; display: block; object-fit: cover; }

/* ============================================================
   Programs
   ============================================================ */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.program-image-wrap { overflow: hidden; }
.program-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.program-card:hover .program-image { transform: scale(1.04); }

.program-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.program-body p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.program-features {
    list-style: none;
    margin-top: auto;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}
.program-features li {
    padding: 5px 0 5px 22px;
    color: var(--gray-600);
    font-size: 0.85rem;
    position: relative;
}
.program-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--silver);
}

/* ============================================================
   Coaches
   ============================================================ */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.coach-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    border: 1px solid var(--gray-100);
}
.coach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.coach-image-wrapper { width: 100%; height: 340px; overflow: hidden; background: var(--gray-50); }
.coach-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.coach-card:hover .coach-image { transform: scale(1.04); }

.coach-info { padding: 28px 24px; }
.coach-info h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.coach-role {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 14px;
}
.coach-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================================
   News / Facebook Feed
   ============================================================ */
.facebook-feed-wrapper {
    margin: 0 auto;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    background: var(--white);
    padding: 10px;
}
.facebook-feed-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 700px;
    border-radius: var(--radius-md);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-text { padding-top: 8px; }

.contact-intro {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 36px;
}
.contact-intro strong { color: var(--white); }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gray-300);
    font-size: 0.95rem;
}
.contact-item svg { color: var(--gray-400); flex-shrink: 0; }
.contact-item a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.25s;
}
.contact-item a:hover { color: var(--white); }

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.9rem;
}
.required { color: var(--error); }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.25s, box-shadow 0.25s;
    background: var(--gray-50);
    color: var(--gray-800);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
    background: var(--white);
}
.form-group input.error,
.form-group textarea.error { border-color: var(--error); }
.form-group textarea { resize: vertical; min-height: 120px; }

.submit-button {
    margin-top: 6px;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    font-size: 0.95rem;
}
.submit-button:hover { background: var(--gray-800); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.submit-button:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.form-status { padding: 0; margin-bottom: 12px; border-radius: var(--radius-sm); font-size: 0.88rem; text-align: center; transition: all 0.3s; }
.form-status.success { padding:12px; background:#E8F5E9; color:var(--success); border:1px solid #C8E6C9; }
.form-status.error { padding:12px; background:#FFEBEE; color:var(--error); border:1px solid #FFCDD2; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 56px 0 24px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer-social { display: flex; gap: 10px; }
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
}
.social-icon:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--gray-300);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.25s;
}
.footer-col a:hover { color: var(--white); }

.affiliations-section {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    margin-bottom: 32px;
}
.affiliations-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 20px;
    font-weight: 500;
}
.affiliations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.affiliation-logo {
    height: 40px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    opacity: 0.5;
    transition: opacity 0.3s;
    filter: grayscale(100%) brightness(2);
    padding: 6px;
}
.affiliation-logo:hover { opacity: 0.8; }

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--gray-600);
    font-size: 0.82rem;
}

/* ============================================================
   WhatsApp
   ============================================================ */
#whatsapp-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    text-decoration: none;
}
.whatsapp-text {
    background: var(--white);
    color: var(--gray-800);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-family: var(--font-body);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    font-weight: 500;
}
#whatsapp-float {
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
#whatsapp-float:hover { transform: scale(1.08); }
#whatsapp-float img { width: 30px; height: 30px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 968px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        border-top: 1px solid var(--gray-100);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .main-nav.active { max-height: 420px; }
    .main-nav ul { flex-direction: column; padding: 12px 24px; gap: 0; }
    .main-nav li { border-bottom: 1px solid var(--gray-100); }
    .main-nav li:last-child { border-bottom: none; }
    .main-nav a { display: block; padding: 14px 0; font-size: 15px; }
    .main-nav a::after { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; }

    .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

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

    .coaches-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .coach-image-wrapper { height: 240px; }
    .coach-info { padding: 20px 14px; }
    .coach-info h3 { font-size: 1.1rem; }
    .coach-description { font-size: 0.82rem; }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }

    .section { padding: var(--section-pad) 0; }
    .section-title { font-size: 1.9rem; }
    .section-header { margin-bottom: 40px; }

    .hero { min-height: 520px; padding: 80px 0; }
    .hero-logo-wrap img { max-width: 130px; }
    .hero-description { font-size: 1rem; }
    .hero-badge { font-size: 11px; padding: 5px 16px; }

    .coaches-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .coach-image-wrapper { height: 320px; }
    .coach-info { padding: 24px 20px; }
    .coach-info h3 { font-size: 1.3rem; }
    .coach-description { font-size: 0.9rem; }

    .contact-form { padding: 28px 20px; }

    .footer-top { flex-direction: column; gap: 20px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}

@media (max-width: 540px) {
    .facebook-feed-wrapper {
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 0;
        box-shadow: none;
        border: none;
    }
    .facebook-feed-wrapper iframe { min-height: 550px; border-radius: 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .logo-name { font-size: 17px; letter-spacing: 2px; }
    .logo-graphic img { width: 36px; height: 36px; }

    .hero { padding: 60px 0; min-height: 460px; }
    .hero-logo-wrap img { max-width: 110px; }
    .hero-description { font-size: 0.92rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }

    .section-title { font-size: 1.6rem; }

    .whatsapp-text { display: none; }
}
