*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0a0a0a;
    --white: #f5f3ee;
    --gray: #888;
    --border: rgba(245,243,238,0.12);
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

  
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }

  
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 3rem;
    border-bottom: 1px solid var(--border);
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(10px);
  }
  .nav-logo { cursor: pointer; display: flex; align-items: center; }
  .nav-logo img { height: 52px; width: auto; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; cursor: pointer; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.55rem 1.4rem; border: 1px solid var(--white); color: var(--white); text-decoration: none; transition: background 0.25s, color 0.25s; cursor: pointer; }
  .nav-cta:hover { background: var(--white); color: var(--black); }

  
  .hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 0 3rem 5rem; position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(255,255,255,0.04) 0%, transparent 60%),
      repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.025) 60px);
  }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; animation: fadeUp 0.8s ease 0.1s both; }
  .hero-eyebrow::before { content: ''; display: block; width: 2.5rem; height: 1px; background: var(--gray); }
  .hero-headline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 9rem); line-height: 0.92; letter-spacing: 0.02em; margin-bottom: 3rem; animation: fadeUp 0.8s ease 0.25s both; }
  .hero-headline em { font-style: italic; font-family: 'Barlow', sans-serif; font-weight: 300; font-size: clamp(0.9rem, 2vw, 0.43em); display: block; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 0.3em; white-space: nowrap; }
  .hero-sub { max-width: 480px; font-size: 1rem; line-height: 1.7; color: rgba(245,243,238,0.5); font-weight: 300; margin-bottom: 3rem; animation: fadeUp 0.8s ease 0.4s both; }
  .hero-actions { display: flex; gap: 1.5rem; align-items: center; animation: fadeUp 0.8s ease 0.55s both; }
  .btn-primary { padding: 0.95rem 2.6rem; background: var(--white); color: var(--black); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; font-weight: 600; transition: background 0.25s; cursor: pointer; display: inline-block; }
  .btn-primary:hover { background: #e8e2d6; }
  .btn-ghost { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; cursor: pointer; }
  .btn-ghost:hover { color: var(--white); }
  .hero-scroll { position: absolute; right: 3rem; bottom: 5rem; writing-mode: vertical-rl; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); display: flex; align-items: center; gap: 0.8rem; }
  .hero-scroll::after { content: ''; display: block; width: 1px; height: 3.5rem; background: var(--gray); }

  
  .stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: repeat(4, 1fr); }
  .stat-item { padding: 2.5rem 3rem; border-right: 1px solid var(--border); transition: background 0.25s; }
  .stat-item:last-child { border-right: none; }
  .stat-item:hover { background: rgba(255,255,255,0.03); }
  .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem; letter-spacing: 0.04em; line-height: 1; margin-bottom: 0.4rem; }
  .stat-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }

  
  .section { padding: 8rem 3rem; }
  .section-tag { font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gray); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
  .section-tag::before { content: ''; display: inline-block; width: 1.5rem; height: 1px; background: var(--gray); }
  .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 4.5vw, 4.5rem); letter-spacing: 0.03em; line-height: 1; }

  
  .athletes-section { padding: 8rem 3rem; border-top: 1px solid var(--border); }
  .athletes-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
  .athletes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
  .athlete-card {
    background: var(--black); position: relative; overflow: hidden;
    aspect-ratio: 3/4; cursor: pointer;
    transition: transform 0.3s;
  }
  .athlete-card:hover { z-index: 2; }
  .athlete-photo {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.5s, transform 0.5s;
  }
  .athlete-card:hover .athlete-photo { filter: grayscale(0%); transform: scale(1.04); }
  .athlete-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.2rem;
    transition: background 0.3s;
  }
  .athlete-card:hover .athlete-overlay { background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.8) 60%, transparent 100%); }
  .athlete-sport { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.3rem; }
  .athlete-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.05em; line-height: 1; margin-bottom: 0.5rem; }
  .athlete-cta { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); display: flex; align-items: center; gap: 0.5rem; opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
  .athlete-card:hover .athlete-cta { opacity: 1; transform: translateY(0); }
  .athlete-placeholder {
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
  }
  .athlete-placeholder-inner { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: rgba(255,255,255,0.07); letter-spacing: 0.1em; }

  
  .services-section { padding: 8rem 3rem; border-top: 1px solid var(--border); }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
  .service-card { padding: 3rem 2.5rem; border-right: 1px solid var(--border); position: relative; transition: background 0.3s; cursor: default; }
  .service-card:last-child { border-right: none; }
  .service-card:hover { background: rgba(255,255,255,0.03); }
  .service-num { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 2rem; }
  .service-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
  .service-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(245,243,238,0.45); font-weight: 300; }

  
  .cta-section { padding: 8rem 3rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 4rem; }
  .cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 6rem); letter-spacing: 0.03em; line-height: 0.95; max-width: 700px; }
  .cta-title em { font-family: 'Barlow', sans-serif; font-style: italic; font-weight: 300; font-size: 0.38em; color: var(--gray); display: block; letter-spacing: 0.1em; margin-bottom: 0.5rem; }

  
  footer { padding: 2.5rem 3rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
  .footer-logo img { height: 38px; width: auto; opacity: 0.5; }
  .footer-copy { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gray); }

  
  .profile-page { padding-top: 0; }
  .profile-hero {
    min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 90px; position: relative;
  }
  .profile-photo-col { position: relative; overflow: hidden; }
  .profile-photo { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
  .profile-photo-placeholder { width: 100%; height: 100%; min-height: 600px; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; }
  .profile-photo-placeholder span { font-family: 'Bebas Neue', sans-serif; font-size: 8rem; color: rgba(255,255,255,0.06); }
  .profile-info-col { padding: 6rem 5rem 5rem; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--border); }
  .profile-back { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray); display: flex; align-items: center; gap: 0.6rem; cursor: pointer; transition: color 0.2s; margin-bottom: 4rem; }
  .profile-back:hover { color: var(--white); }
  .profile-sport-tag { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); margin-top: 2rem; display: flex; align-items: center; gap: 0.8rem; }
  .profile-sport-tag::before { content: ''; display: inline-block; width: 1.5rem; height: 1px; background: var(--gray); }
  .profile-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.5rem, 6vw, 6rem); line-height: 0.9; letter-spacing: 0.03em; margin-bottom: 2rem; }
  .profile-age { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 3rem; }
  .profile-bio { font-size: 1rem; line-height: 1.8; color: rgba(245,243,238,0.55); font-weight: 300; margin-bottom: 3rem; }
  .profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border); margin-bottom: 3rem; }
  .profile-stat { padding: 1.5rem; border-right: 1px solid var(--border); }
  .profile-stat:last-child { border-right: none; }
  .profile-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; line-height: 1; margin-bottom: 0.3rem; }
  .profile-stat-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }
  .profile-achievements { margin-top: 0; }
  .profile-achievements h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.12em; margin-bottom: 1rem; color: rgba(245,243,238,0.5); }
  .achievement-list { list-style: none; }
  .achievement-list li { font-size: 0.9rem; font-weight: 300; color: rgba(245,243,238,0.45); padding: 0.55rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.8rem; }
  .achievement-list li::before { content: '—'; color: var(--gray); font-size: 0.8rem; }

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

  
  .stadium-banner {
    position: relative;
    height: 55vh;
    overflow: hidden;
  }
  .stadium-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: brightness(0.75);
  }
  .stadium-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(10,10,10,0.6) 0%,
      rgba(10,10,10,0.1) 40%,
      rgba(10,10,10,0.1) 60%,
      rgba(10,10,10,0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stadium-banner-text {
    text-align: center;
  }
  .stadium-banner-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 6rem);
    letter-spacing: 0.15em;
    line-height: 1;
    color: var(--white);
    text-shadow: 0 2px 40px rgba(0,0,0,0.8);
  }
  .stadium-banner-text p {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245,243,238,0.6);
    margin-top: 0.8rem;
  }

    .hero-athlete-name span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.3rem;
  }
  .hero-athlete-name strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--white);
  }

  
  .hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
    pointer-events: none;
  }
  .hero-carousel-slide.active { opacity: 1; }
  .hero-carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    filter: brightness(0.22);
  }
  .hero-bg { z-index: 1; }
  .hero-eyebrow, .hero-headline, .hero-sub, .hero-actions, .hero-scroll { position: relative; z-index: 2; }
  .carousel-dots {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; gap: 0.6rem; z-index: 2;
  }
  .carousel-dot {
    width: 28px; height: 2px;
    background: rgba(245,243,238,0.25);
    cursor: pointer; transition: all 0.3s;
    border: none; padding: 0;
  }
  .carousel-dot.active { background: var(--white); width: 44px; }
  .hero-athlete-label {
    position: absolute; bottom: 5.5rem; right: 3rem;
    z-index: 2; text-align: right;
    transition: opacity 0.5s ease;
  }
  .hero-athlete-label span {
    display: block; font-size: 0.62rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--gray);
    margin-bottom: 0.2rem;
  }
  .hero-athlete-label strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; letter-spacing: 0.08em; color: var(--white);
  }

  
  .whatsapp-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  }
  .whatsapp-fixed svg { width: 28px; height: 28px; fill: white; }

  
  .nav-instagram {
    display: flex;
    align-items: center;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-instagram:hover { color: var(--white); }
  .nav-instagram svg { width: 18px; height: 18px; fill: currentColor; }

  
  .cta-final {
    padding: 8rem 3rem;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .cta-final-tag {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }
  .cta-final-tag::before, .cta-final-tag::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--gray);
  }
  .cta-final h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 6rem);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1.5rem;
  }
  .cta-final p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(245,243,238,0.5);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto 3rem;
  }
  .cta-final-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  .btn-wa {
    padding: 0.95rem 2rem;
    background: #25D366;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.25s;
  }
  .btn-wa:hover { background: #1db954; }
  .btn-wa svg { width: 16px; height: 16px; fill: white; }
  .btn-ig {
    padding: 0.95rem 2rem;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: opacity 0.25s;
  }
  .btn-ig:hover { opacity: 0.85; }
  .btn-ig svg { width: 16px; height: 16px; fill: white; }
  .btn-email-dark {
    padding: 0.95rem 2rem;
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.25s;
  }
  .btn-email-dark:hover { background: rgba(255,255,255,0.07); }
  .btn-email-dark svg { width: 16px; height: 16px; fill: currentColor; }

  
  .contact-form {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .form-field label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .form-field input,
  .form-field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 0.85rem 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    resize: none;
  }
  .form-field input:focus,
  .form-field textarea:focus { border-color: rgba(245,243,238,0.4); }
  .form-field.full { grid-column: 1 / -1; }
  .form-submit {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    font-family: 'Barlow', sans-serif;
  }
  .form-submit:hover { background: #e8e2d6; }
  .form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border);
    color: rgba(245,243,238,0.6);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  
  .sobre-section {
    padding: 9rem 3rem;
    border-top: 1px solid var(--border);
  }
  .sobre-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 7rem;
    align-items: start;
  }
  .sobre-left .section-tag { margin-bottom: 1.2rem; }
  .sobre-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 3rem;
  }
  .sobre-text p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: rgba(245,243,238,0.52);
    font-weight: 300;
    margin-bottom: 1.4rem;
  }
  .sobre-text p:last-child { margin-bottom: 0; }
  .sobre-text p strong {
    color: rgba(245,243,238,0.85);
    font-weight: 600;
  }
  
  .sobre-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
    border: 1px solid var(--border);
    position: sticky;
    top: 6rem;
  }
  .sobre-badge {
    padding: 2rem 2.2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.6rem;
    transition: background 0.25s;
  }
  .sobre-badge:last-child { border-bottom: none; }
  .sobre-badge:hover { background: rgba(255,255,255,0.03); }
  .sobre-badge-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gray);
  }
  .sobre-badge-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--gray);
  }
  .sobre-badge-text strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .sobre-badge-text span {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
  }

  
  .services-new {
    padding: 8rem 3rem;
    border-top: 1px solid var(--border);
  }
  .services-new-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
  }
  .services-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
  }
  .service-new-card {
    background: var(--black);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .service-new-card:hover { background: rgba(255,255,255,0.035); }
  .service-new-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px;
    height: 0;
    background: var(--white);
    transition: height 0.4s ease;
  }
  .service-new-card:hover::before { height: 100%; }
  .service-new-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    margin-bottom: 1.8rem;
  }
  .service-new-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-new-icon svg {
    width: 28px;
    height: 28px;
    fill: rgba(245,243,238,0.35);
    transition: fill 0.3s;
  }
  .service-new-card:hover .service-new-icon svg { fill: var(--white); }
  .service-new-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 0.9rem;
  }
  .service-new-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(245,243,238,0.4);
    font-weight: 300;
  }

  

  
  @media (max-width: 768px) {

    
    nav {
      padding: 1rem 1.5rem;
    }
    .nav-links {
      display: none;
    }
    .nav-logo img { height: 40px; }

    
    .hero { padding: 0 1.5rem 4rem; }
    .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.15em; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .hero-athlete-label { right: 1.5rem; bottom: 4rem; }
    .carousel-dots { left: 1.5rem; transform: none; }

    
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 1.5rem; }
    .stat-number { font-size: 2.2rem; }

    
    .stadium-banner { height: 35vh; }
    .stadium-banner-text h2 { font-size: clamp(1.5rem, 7vw, 3rem); }
    .stadium-banner-text p { font-size: 0.65rem; letter-spacing: 0.15em; }

    
    .sobre-section { padding: 5rem 1.5rem; }
    .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sobre-right { position: static; }
    .sobre-badge { padding: 1.2rem 1.5rem; }

    
    .athletes-section { padding: 5rem 1.5rem; }
    .athletes-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .athletes-grid { grid-template-columns: 1fr 1fr; }

    
    .services-new { padding: 5rem 1.5rem; }
    .services-new-header { flex-direction: column; gap: 1rem; }
    .services-new-grid { grid-template-columns: 1fr; }

    
    .cta-final { padding: 5rem 1.5rem; }
    .cta-final-buttons { flex-direction: column; align-items: center; }
    .btn-wa, .btn-ig, .btn-email-dark { width: 100%; justify-content: center; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field.full { grid-column: 1; }

    
    .profile-hero { grid-template-columns: 1fr; padding-top: 70px; }
    .profile-photo-col { min-height: 55vw; max-height: 70vw; }
    .profile-info-col { padding: 2.5rem 1.5rem; border-left: none; border-top: 1px solid var(--border); }
    .profile-name { font-size: clamp(2.5rem, 10vw, 4rem); }
    .profile-back { margin-bottom: 2rem; }

    
    footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }

    
    .section-title { font-size: clamp(2rem, 8vw, 3rem); }
    .section { padding: 5rem 1.5rem; }
  }

  @media (max-width: 480px) {
    .athletes-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 1.2rem 1rem; }
    .stat-number { font-size: 1.8rem; }
  }