  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --red: #e8001c;
    --dark: #111111;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #888888;
    --yellow: #f5c518;
  }

  .desktop-only {
    display: flex !important;
  }

  .mobile-only {
    display: none !important;
  }

  body {
    font-family: 'Barlow', sans-serif;
    background: #fff;
    color: #111;
    overflow-x: hidden;
    font-size: 18px;
    /* Aumentado para 18px */
  }

  body.menu-open {
    overflow: hidden;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 60px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    background: #111;
    transition: all 0.3s ease;
  }

  /* Toggle animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
  }

  .nav-logo svg {
    width: 110px;
    height: 32px;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 15px;
    /* Aumentado de 13px */
    font-weight: 700;
    color: #333;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: var(--red);
  }

  /* Mobile overlay menu */
  .mobile-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 60px);
    background: #fff;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu.active {
    left: 0;
  }

  .mobile-links {
    list-style: none;
    padding: 20px 40px;
  }

  .mobile-links li {
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
  }

  .mobile-links a {
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
  }

  /* Responsive Mobile Styles */
  @media (max-width: 768px) {
    nav {
      padding: 0 20px;
      justify-content: flex-start;
      /* Logo centered via absolute position tricks or Flex spacing */
    }

    .menu-toggle {
      display: flex;
      position: absolute;
      left: 20px;
    }

    .nav-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-links {
      display: none;
    }

    .desktop-only {
      display: none !important;
    }

    .mobile-only {
      display: flex !important;
    }

    .sport-carousel {
      display: flex;
    }
  }

  /* ===== SPORT CAROUSEL MOBILE ===== */
  @media (max-width: 768px) {
    .desktop-only {
      display: none !important;
    }

    .mobile-only {
      display: flex !important;
    }

    .sport-carousel {
      display: flex;
    }
  }

  /* ===== HERO SLIDER ===== */
  .hero-slider {
    position: relative;
    width: 100%;
    height: 450px;
    /* Ajustado de 420px */
    overflow: hidden;
    background: #111;
  }

  .slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }

  .slide.active {
    opacity: 1;
    pointer-events: all;
  }

  .slide-1 {
    background: linear-gradient(135deg, #000 0%, #1a0005 40%, #8b0015 70%, #e8001c 100%);
  }

  .slide-content {
    padding: 0 80px;
    z-index: 2;
    max-width: 520px;
  }

  .slide-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }

  .slide-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px;
    font-weight: 900;
    font-style: italic;
    color: var(--red);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 0 40px rgba(232, 0, 28, 0.4);
  }

  .slide-subtitle {
    font-size: 22px;
    /* Aumentado de 18px */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .slide-badges {
    display: flex;
    gap: 18px;
    align-items: center;
  }

  .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .badge-icon {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
  }

  .badge-text {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .slide-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: -20px;
  }

  .slide-image .player {
    height: 95%;
    object-fit: contain;
    filter: drop-shadow(-10px 0 30px rgba(0, 0, 0, 0.5));
  }

  /* Red diagonal shape */
  .slide-1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 200px;
    width: 400px;
    height: 100%;
    background: var(--red);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.15;
  }

  .slide-1::after {
    content: '';
    position: absolute;
    top: -50px;
    right: 150px;
    width: 300px;
    height: 200%;
    background: var(--red);
    clip-path: polygon(40% 0, 100% 0, 60% 100%, 0% 100%);
    opacity: 0.25;
  }

  /* Slider controls */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 60px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .slider-btn.prev {
    left: 0;
  }

  .slider-btn.next {
    right: 0;
  }

  .slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s;
  }

  .dot.active {
    background: #fff;
  }

  /* Placeholder athletes */
  .athlete-placeholder {
    position: absolute;
    right: 60px;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    gap: 0;
    height: 100%;
  }

  .athlete {
    height: 90%;
    width: 180px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .athlete-body {
    width: 130px;
    height: 85%;
    background: linear-gradient(180deg, #c8001a 0%, #8b0010 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .athlete-body::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
  }

  .icone-logo-shirt {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
  }

  /* ===== UNIFORMES SECTION ===== */
  .section-uniforms {
    padding: 60px 0 0;
    text-align: center;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 18px;
    /* Aumentado de 16px */
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  /* Sport tabs */
  .sport-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
  }

  .sport-tab {
    padding: 14px 28px;
    font-size: 15px;
    /* Aumentado de 13px */
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #666;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
  }

  .sport-tab.active {
    background: #111;
    color: #fff;
    border-bottom-color: #111;
  }

  .sport-tab:hover:not(.active) {
    color: #111;
  }

  /* Sport carousel (mobile) - Movido para o final (Media Queries) para evitar duplicidade */


  /* Uniform feature panel */
  .uniform-panel {
    background: #111;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .uniform-info {
    max-width: 420px;
    text-align: left;
  }

  .uniform-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .uniform-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 54px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
  }

  .uniform-desc {
    font-size: 18px;
    /* Aumentado de 15px */
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .btn-group {
    display: flex;
    gap: 12px;
  }

  .btn {
    padding: 11px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid;
  }

  .btn-outline-white {
    background: transparent;
    border-color: #fff;
    color: #fff;
  }

  .btn-outline-white:hover {
    background: #fff;
    color: #111;
  }

  .uniform-images {
    display: flex;
    gap: 16px;
    align-items: flex-end;
  }

  .shirt-card {
    width: 200px;
    height: 240px;
    background: linear-gradient(135deg, #1a3a2a, #0d5c3a);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shirt-card:nth-child(2) {
    background: linear-gradient(135deg, #0a0a1a, #1a2a3a);
  }

  .shirt-visual {
    width: 100px;
    height: 120px;
    position: relative;
  }

  .shirt-svg {
    width: 100%;
    height: 100%;
  }

  .shirt-number {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
  }

  .shirt-name {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
  }

  /* ===== EURO SECTION ===== */
  .euro-section {
    padding: 70px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #fff;
  }

  .euro-images {
    flex: initial;
    display: flex;
    justify-content: center;
  }

  .euro-info {
    max-width: 400px;
  }

  .euro-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .euro-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 16px;
    color: #111;
  }

  .euro-desc {
    font-size: 18px;
    /* Aumentado de 15px */
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .btn-dark {
    background: #111;
    border-color: #111;
    color: #fff;
  }

  .btn-dark:hover {
    background: #333;
    border-color: #333;
  }

  .btn-outline-dark {
    background: transparent;
    border-color: #111;
    color: #111;
  }

  .btn-outline-dark:hover {
    background: #111;
    color: #fff;
  }

  .euro-player {
    width: 300px;
    height: 360px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .player-figure {
    width: 220px;
    height: 320px;
    background: linear-gradient(180deg, #e8f4ff 0%, #b8d8f0 50%, #88bce0 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .player-figure::before {
    content: '⚽';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 32px;
    opacity: 0.7;
  }

  /* ===== 3D SIMULATOR SECTION ===== */
  .simulator-section {
    background: #f5f5f5;
    padding: 70px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .simulator-images {
    flex: initial;
    display: flex;
    justify-content: center;
  }

  .simulator-shirts {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .sim-shirt {
    width: 130px;
    height: 155px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .sim-shirt-1 {
    background: linear-gradient(135deg, #1a6b1a, #0d3d0d);
  }

  .sim-shirt-2 {
    background: linear-gradient(135deg, #3b1a8b, #1a0d5c);
  }

  .sim-shirt-3 {
    background: linear-gradient(135deg, #c8001a, #7a0010);
  }

  /* checkerboard pattern */
  .sim-shirt-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-conic-gradient(rgba(255, 255, 255, 0.15) 0% 25%, transparent 0% 50%);
    background-size: 20px 20px;
  }

  /* stripes */
  .sim-shirt-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
        rgba(255, 255, 255, 0) 0px,
        rgba(255, 255, 255, 0) 12px,
        rgba(0, 0, 0, 0.4) 12px,
        rgba(0, 0, 0, 0.4) 14px);
  }

  .sim-info {
    max-width: 340px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .sim-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .sim-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 16px;
    color: #111;
  }

  .sim-desc {
    font-size: 18px;
    /* Aumentado de 15px */
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  /* ===== QUALITY SLIDER ===== */
  .quality-slider {
    background: #111;
    padding: 70px 40px;
    overflow: hidden;
  }

  .quality-slides {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .quality-slide {
    display: none;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .quality-slide.active {
    display: flex;
  }

  .quality-info {
    max-width: 380px;
  }

  .quality-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .quality-desc {
    font-size: 13px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .quality-images {
    flex: initial;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .quality-img {
    width: 450px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .badge-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 3px;
    opacity: 0.5;
  }

  .quality-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }

  .quality-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .quality-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .quality-btn:hover {
    background: #e8001c;
    transform: scale(1.1);
  }



  /* ===== ORDER STEPS ===== */
  .order-section {
    padding: 70px 60px;
    text-align: center;
    background: #fff;
  }

  .order-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }

  .order-subtitle {
    font-size: 12px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
  }

  .order-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
    position: relative;
  }

  .step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ccc;
    background: #f8f8f8;
    border-radius: 4px;
  }

  .step-arrow {
    font-size: 24px;
    color: #ddd;
    flex-shrink: 0;
    margin: 0 -10px;
    position: relative;
    top: -16px;
  }

  .step-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
  }

  .step-label span {
    display: block;
    color: var(--red);
    font-size: 9px;
  }

  .step-map {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
  }

  /* ===== SOCIAL ===== */
  .social-section {
    padding: 50px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .social-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
  }

  .social-icon:hover {
    transform: scale(1.1);
    background: rgb(29, 185, 84);
  }

  /* ===== SUPPORT SECTION ===== */
  .support-section {
    background: #111;
    padding: 50px;
    text-align: center;
  }

  .support-question {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .support-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
  }

  .support-btns {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .support-btn {
    padding: 10px 22px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
  }

  .support-btn-whatsapp {
    background: #25D366;
    color: #fff;
  }

  .support-btn-whatsapp:hover {
    background: #1db954;
  }

  .support-btn-email {
    background: #fff;
    color: #111;
  }

  .support-btn-email:hover {
    background: #eee;
  }

  .support-btn-phone {
    background: #333;
    color: #fff;
  }

  .support-btn-phone:hover {
    background: #444;
  }

  /* ===== SITE FOOTER ===== */
  .site-footer {
    background: #000;
    color: #fff;
    padding: 60px 40px 20px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-col {
    flex: 1;
    min-width: 160px;
  }

  .footer-col-logo {
    flex: 1.5;
    display: flex;
    align-items: flex-start;
  }

  .footer-title {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-style: italic;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: var(--red);
  }

  .footer-col-contact .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    font-size: 13px;
    margin-bottom: 12px;
  }

  .footer-contact-item a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-contact-item a:hover {
    color: var(--red);
  }

  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
  }

  .footer-social a:hover {
    background: var(--red);
  }

  .footer-bottom {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #fff;
  }

  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.2s;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  /* Shirt SVG shapes */
  .shirt-shape {
    width: 90px;
    height: 100px;
    position: relative;
  }

  /* ===== RESPONSIVE HELPERS ===== */
  @media (max-width: 768px) {
    nav {
      padding: 0 20px;
    }

    .nav-links {
      display: none;
    }

    .hero-slider {
      height: 280px;
    }

    .slide-content {
      padding: 0 40px;
    }

    .slide-title {
      font-size: 48px;
    }

    .uniform-panel,
    .euro-section,
    .simulator-section,
    .quality-slide {
      flex-direction: column;
      padding: 40px 20px;
      text-align: center;
    }

    .support-btns {
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .support-btn {
      flex: 1 1 140px;
    }

    .site-footer {
      padding: 40px 20px 20px;
    }

    .footer-container {
      flex-direction: column;
      gap: 40px;
      text-align: center;
      align-items: center;
    }

    .footer-col {
      min-width: 100%;
      width: 100%;
    }

    .footer-col-logo,
    .footer-contact-item,
    .footer-social {
      justify-content: center;
    }

    .footer-logo {
      display: flex;
      justify-content: center;
      width: 100%;
    }
  }

  /* ===== SPORT CAROUSEL MOBILE ===== */
  .sport-carousel {
    display: none;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #111;
    -webkit-overflow-scrolling: touch;
    /* Suavidade no iOS */
    touch-action: pan-x;
    /* Garante o swipe horizontal */
  }

  .sport-carousel::-webkit-scrollbar {
    display: none;
  }

  .sport-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: #1a1a1a;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    border: none;
    border-bottom: 4px solid transparent;
    transition: border-color 0.3s;
    -webkit-user-select: none;
    user-select: none;
  }

  .sport-card.active {
    border-bottom-color: #e8001c;
  }

  .sport-card img {
    width: 100%;
    height: 65vw;
    max-height: 400px;
    object-fit: cover;
    object-position: top;
    display: block;
    pointer-events: none;
  }

  .card-footer {
    background: #000;
    color: #fff;
    padding: 14px 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
  }

  /* MEDIA QUERIES */
  @media (max-width: 768px) {
    .desktop-only {
      display: none !important;
    }

    .mobile-only {
      display: flex !important;
    }

    .sport-carousel {
      display: flex;
    }

    .section-uniforms {
      padding-top: 40px;
    }

    .hero-slider {
      height: 250px;
      /* Ajustado de 480px para mostrar mais da largura da imagem */
    }

    .slide-content {
      padding: 0 20px;
    }

    .slide-title {
      font-size: 42px;
    }

    .uniform-panel {
      flex-direction: column;
      padding: 40px 20px;
      text-align: center;
    }

    .uniform-img-box {
      width: 100%;
      height: 250px;
    }
  }