        :root {
            --dark-blue: #131E9A;
            --primary-blue: #102A83;
            --secondary-blue: #1E40AF;
            --bg-blue: #2432D3;
            --accent-yellow: #F1E40C;
            --text-white: #FFFFFF;
            --text-dark: #1F2937;
            --transparent-black: rgba(0, 0, 0, 0.4);
            --font-heading: 'Roboto Condensed', sans-serif;
            --font-body: 'Roboto Condensed', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-white);
            background-color: var(--primary-blue);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 800;
            text-transform: uppercase;
        }
        h1 {
            color: var(--accent-yellow);
            font-size: 42px;
            font-weight: 800;
            font-style: italic;
        }
        h2 {
            font-size: 32px;
            font-weight: 400;
            text-transform: none;
        }
.swiper {
  width: 100%;
  height: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
        a {
            text-decoration: none;
            color: inherit;
        }


        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-yellow);
            color: var(--bg-blue);
            padding: 15px 20px;
            font-family: var(--font-heading);
            font-weight: 800;
            border: none;
            cursor: pointer;
            font-size: 22px;
        }

        .btn:hover {
            background-color: #fff;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--transparent-black);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--accent-yellow);
            letter-spacing: -1px;
        }

        .nav-links {
            display: flex;
            gap: 70px;
            list-style: none;
        }

        .nav-links a {
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 16px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent-yellow);
        }

        /* Hero Section */
        .hero {
            min-height: 579px;
            background: url('../images/hero-bg.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            text-transform: none;
            font-weight: 400;
            color: #fff;
        }
        .hero-content h1 span {
            font-weight: 800;
        }

        .hero-date {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .hero-date .date-block img {
            height: 104px !important;
            width: auto;
        }

        .date-block {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .date-number {
            font-size: 5rem;
            font-weight: 900;
            color: var(--accent-yellow);
            line-height: 1;
        }

        .date-label {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-location {
            font-size: 35px;
            margin-bottom: 30px;
            font-weight: 400;
        }
        .hero-date .date-separator {
            width: 10px !important;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            text-align: center;
            background: url('../images/bg-saearun.png') center/cover;
        }

        .section-title {
            color: var(--accent-yellow);
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .about-text, .impact-text, .beneficiary-desc, .awards-list li, .observation, .awards-box p, .footer-label, .kit-address {
            max-width: 867px;
            margin: 0 auto 30px;
            font-size: 22px;
            font-weight: 400;
        }
        .observation, .awards-box p {
            margin-bottom: 0;
        }
        .beneficiary-desc {
            max-width: 564px;
        }
        /* Impact Section */
        .impact {
            padding: 100px 0;
            background: url('../images/bg-impacto.png') bottom/cover;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            text-align: center;
            position: relative;
            min-height: 100vh;
        }

        .impact .container {
            z-index: 1;
            background-color: transparent;
        }

        .icon-bg-impact {
            position: absolute;
            top: 0;
            right: 0;
            width: 182px;
            height: 292px;
            background-image: url('../images/icon-bg.svg');
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 0;
        }

        /* .impact::before {
            content: '';
            position: absolute;
            top: 10%;
            right: -5%;
            width: 200px;
            height: 200px;
            background: var(--accent-yellow);
            transform: rotate(45deg);
            opacity: 0.1;
        }
     */

        .impact-highlight {
            font-size: 2.5rem;
            color: var(--accent-yellow);
            font-weight: 900;
            margin: 20px 0;
            line-height: 1.2;
            display: inline-block;
            position: relative;
            overflow: hidden;
            min-height: 2.8rem;
        }

        .impact-highlight.slide-out {
            animation: impact-slide-out 0.3s forwards ease;
        }

        .impact-highlight.slide-in {
            animation: impact-slide-in 0.3s forwards ease;
        }

        .impact h3 {
            font-weight: 400; 
            margin-bottom: 30px;
            margin-top: 90px;
        }
        .impact h3::before, .important-note h4::before {
            content: '';
            display: block;
            width: 383px;
            height: 2px;
            background: var(--accent-yellow);
            margin: 20px auto 90px;
        }
        @keyframes impact-slide-out {
            0% { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(-100%); opacity: 0; }
        }

        @keyframes impact-slide-in {
            0% { transform: translateY(100%); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }


        /* Beneficiary Section */
        .beneficiary {
            padding: 80px 0;
            text-align: center;
            background-color: var(--primary-blue);
        }

        /* .beneficiary-logo {
            width: 120px;
            height: 120px;
            background: var(--accent-yellow);
            border-radius: 50%;
            margin: 30px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-weight: 800;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        } */

        .beneficiary-name {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--text-white);
        }


        .link-text {
            color: var(--accent-yellow);
            font-weight: 800;
            font-size: 22px;
            padding-bottom: 2px;
        }

        /* Kit Section */
        .kit {
            padding: 100px 0;
            text-align: center;
            background-color: var(--bg-blue);
        }
        .kit h1 {
            font-size: 70px;
            font-weight: 800;
        }

        .kit-info {
            margin-top: 40px;
        }
        .kit-info h1 {
            color: var(--accent-yellow);
            margin-bottom: 10px;
            font-size: 22px;
            font-style: normal;
            font-weight: 400;
        }

        .kit-dates {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--text-white);
            flex-direction: row;
            display: flex;
            justify-content: center;
        }


        .important-note {
            padding: 20px;
            margin-top: 30px;
            margin-left: auto;
            margin-right: auto;
        }

        .important-note h4 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1rem;
            text-transform: none;
        }

        .important-note ul {
            list-style: none;
            text-align: center;
            display: inline-block;
            font-size: 22px;
            font-weight: 400;
        }

        .important-note li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .important-note li::before, .awards-list li::before {
            content: '•';
            color: var(--accent-yellow);
            position: relative;
            left: -10px;
            font-weight: bold;
        }

        /* Race Info Section */
        .race-info {
            padding: 100px 0;
            background: url('../images/bg-info.png') center/cover;
        }
        .race-info .section-title {
            text-transform: none;
            font-style: normal;
        }
        .race-info .race-date-big .date-block .date-icon {
            width: 131px;
            height: auto;
            transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

       
        .race-info .race-date-big .date-block .date-icon:hover {
            transform: scale(1.2);
        }
        

        .race-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            margin-bottom: 60px;
            background-color: var(--dark-blue);
        }

        .map-container {
            overflow: hidden;
            height: 540px;
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: left;
            color: var(--accent-yellow);
            font-family: var(--font-heading);
            font-weight: 700;
        }
        
        .map-placeholder img {
            width: auto;
            height: 100%;
            object-fit: cover;
        }

        .race-details {
            text-align: left;
        }

        .race-date-big {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            justify-content: center;
        }

        .race-date-big .date-number {
            font-size: 6rem;
            color: var(--accent-yellow);
        }

        .race-location {
            font-size: 1.3rem;
            line-height: 1.6;
            text-align: center;
        }
        
        .awards-wrapper {
        position: relative;
        margin-bottom: 60px;
        }
        .awards-box {
            background: var(--dark-blue);
            padding: 40px 0 40px 0;
            position: relative;
            text-align: center;
            margin-bottom: 60px;
            z-index: 1; 
        }

        .icon-bg-awards {
            position: absolute;
            bottom: -110px;
            left: -135px;
            width: 182px;
            height: 292px;
            background-image: url(../images/icon-bg.svg);
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 0;
        }

        .awards-box .btn {
            white-space: nowrap;
        }

        .awards-box h1 {
            color: var(--accent-yellow);
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-style: normal;
            font-weight: 400;
        }

        .awards-list {
            list-style: none;
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .awards-list li {
            margin-bottom: 10px;
        }

        .observation {
            margin-top: 20px;
            font-size: 0.85rem;
            opacity: 0.8;
            font-style: italic;
        }

        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: var(--primary-blue);
        }
        .gallery .section-title {
            text-transform: none;
            font-style: normal;
            font-weight: 500;
        }   

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 50px;
            position: relative;
        }
        .swiper-area {
            position: relative;
        }
        .gallery-item {
            aspect-ratio: 1/1;
            background: #1e3a8a;
            overflow: hidden;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .gallery-confianca {
            margin-top: 70px;
        }
        .gallery-nav-next, .gallery-nav-prev, .gallery-confianca-nav-next, .gallery-confianca-nav-prev {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.2rem;
            z-index: 10;
        }

        .gallery-nav-prev::before, .gallery-confianca-nav-prev::before {
            content: url('../images/swiper/prev.svg');
        }

        .gallery-nav-next::before, .gallery-confianca-nav-next::before {
            content: url('../images/swiper/next.svg');
        }

        .gallery-nav-prev, .gallery-confianca-nav-prev { left: -55px; }
        .gallery-nav-next, .gallery-confianca-nav-next { right: -55px; }

        /* Footer */
        footer {
            background: url('../images/bg-footer.png') center/cover;
            padding: 80px 0 40px;
            text-align: center;
            min-height: 1473px;
        }

        .footer-section {
            margin-bottom: 60px;
        }

        /* .saea-logo {
            width: 100px;
            height: 100px;
            background: var(--text-white);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-weight: 800;
            font-family: var(--font-heading);
        } */

        .sponsors-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .sponsor-logo {
            color: var(--text-white);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
        }


        .kit-image {
            width: 100%;
            height: auto;
            display: block;
            margin: auto;
        }
        .kit-image-mobile {
            display: none;
        }   
        .display-desk {
            display: block;
        }

        .kit-showcase {
            padding: 0;
            background-image: url(../images/fundo-kit.png);
            background-position: top center;
            width: 900px;
            height: 525px;
            margin: 0 auto;
        }
        .menu-toggle {
            display: none;
        }
        .display-mobile {
            display: none;
        }
/* ==========================================
   MOBILE STYLES - max-width: 768px
   ========================================== */

@media (max-width: 768px) {
    /* --- Base & Typography --- */
    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    *, *::before, *::after {
        box-sizing: border-box;
    }

    h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    /* Texto das sections - Roboto Condensed 18px centralizado */
    p, li, .about-text, .impact-text, .beneficiary-desc, .kit-address, .race-location {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 18px;
        text-align: center;
        line-height: 1.5;
    }

    /* --- Navigation Mobile --- */
    nav {
        padding: 10px 0;
        background: var(--transparent-black);
        width: 100%;
    }

    .nav-container {
        position: relative;
        padding: 0 25px;
        justify-content: center;
        width: 100%;
    }

    .logo {
        margin: 0 auto;
    }

    .logo img {
        max-height: 40px;
        width: auto;
        display: block;
        margin: 0 auto;
    }

    /* Hamburger Menu Button */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .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(7px, -6px);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        text-align: left;
        color: var(--text-white);
        transition: all 0.3s;
    }

    .nav-links a:hover {
        background: rgba(241, 228, 12, 0.1);
        padding-left: 25px;
    }

    /* --- Hero Section Mobile --- */
    .hero {
        min-height: auto;
        padding: 100px 25px 60px;
        background-position: center 30%;
        width: 100%;
        max-height: 453px;
        background-position-x: 66% !important;
        display: flex;
        background-position-y: top !important;
        background-size: cover;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .hero-date {
        margin-bottom: 20px;
    }

    .hero-date img {
        max-width: 120px;
        height: auto;
    }

    .date-separator {
        max-width: 20px !important;
    }

    .hero-date .date-separator {
        width: 10px !important;
    }

    .hero-location {
        font-size: 18px;
        margin-bottom: 25px;
        text-align: center;
    }

    .btn {
        font-size: 20px;
        padding: 15px 25px;
    }

    /* --- About Section Mobile --- */
    .about {
        padding: 60px 25px;
        background-size: cover;
        background-position: center;
        width: 100%;
        background: var(--bg-blue);
    }

    .about .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.6;
    }


    /* --- Impact Section Mobile --- */
    .impact {
        padding: 60px 0;
        min-height: auto;
        background-attachment: scroll;
        width: 100%;
    }

    /* Padding apenas à esquerda para swipers colarem na direita */
    .impact .container {
        padding: 0;
        padding-left: 25px;
        width: 100%;
        max-width: 100%;
    }

    .impact h2 {
        font-size: 24px;
        margin-bottom: 20px;
        padding-right: 25px;
    }

    .impact-highlight {
        font-size: 32px;
        margin: 20px 0;
        min-height: auto;
        line-height: 1.3;
        padding-right: 25px;
    }

    .impact-text {
        font-size: 18px;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 40px;
        padding-right: 25px;
    }

    .impact h3 {
        font-size: 20px;
        margin: 40px 0 20px;
        text-align: center;
        padding-right: 25px;
    }

    .impact h3::before {
        width: 60%;
        margin: 20px auto 30px;
    }

    .beneficiary-logo {
        margin: 20px auto;
    }

    .beneficiary-logo img {
        max-width: 229px;
        height: auto;
    }

    .beneficiary-desc {
        font-size: 18px;
        text-align: center;
        margin-bottom: 15px;
        line-height: 1.5;
        padding-right: 25px;
    }

    .link-text {
        font-size: 18px;
        display: block;
        margin: 20px 0;
        text-align: center;
        padding-right: 25px;
        line-height: normal;
    }

    .swiper-area {
        margin-top: 30px;
        width: 100%;
        padding-right: 0;
        margin-right: 0;
        overflow: hidden;
    }

    .gallery-confianca {
        margin-top: 30px;
        padding-right: 0;
        margin-right: 0;
        width: 100%;
    }

    /* --- Kit Section Mobile --- */
    .important-note li::before, .awards-list li::before {
        color: var(--text-white);
    }
    .kit {
        padding: 40px 0;
    }
    
    .kit .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .kit .section-title span {
        font-size: 24px !important;
    }

    .kit-showcase {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 30px;
        padding: 0;
        width: 90%;
        height: 245px;
        
    }

    .kit-image {
        width: 100%;
    }

    .kit-info h1 {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }

    .kit-dates {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 10px;
        text-align: center;
        line-height: 1.4;
        flex-direction: column;
        display: flex;
    }

    .kit-address {
        font-size: 18px;
        text-align: center;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .important-note {
         padding: 0 20px;
        margin-top: 0;
    }

    .important-note h4 {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }

    .important-note h4::before {
        width: 50%;
        margin: 35px auto;
    }

    .important-note ul {
        font-size: 18px;
        text-align: center;
        padding-left: 0;
    }

    .important-note li {
        margin-bottom: 12px;
        padding-left: 0;
        line-height: 1.5;
    }

    /* --- Race Info Section Mobile --- */

    .race-info .race-date-big .date-block .date-icon {
        width: 115px;
        height: auto;
    }

    .race-info .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .race-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
        background-color: transparent;
    }

    .map-container {
        height: 375px;
        order: 1;
    }
    .map-placeholder {
        padding: 20px;
    }
    .map-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .race-details {
        order: 2;
        text-align: center;
    }

    .race-date-big {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 20px;
    }

    .race-date-big .date-icon {
        max-width: 131px !important;
        height: auto;
    }

    .race-date-big img {
        max-width: 100px;
        height: auto;
    }

    .race-location {
        font-size: 18px;
        line-height: 1.5;
        text-align: center;
    }


    /* --- Awards Section Mobile --- */
    .awards-wrapper {
        margin-bottom: 40px;
    }

    .awards-box {
        padding: 80px 25px 30px;
        margin-bottom: 40px;
        background: linear-gradient(180deg, rgb(255 255 255 / 0%) 15%, var(--dark-blue) 15%, var(--dark-blue) 27%);
    }

    .awards-box h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .awards-box p {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }

    .awards-list {
        font-size: 18px;
        text-align: center;
        padding-left: 0;
        list-style: none;
    }

    .awards-list li {
        margin-bottom: 10px;
        padding-left: 0;
        position: relative;
        line-height: 1.5;
    }

    .observation {
        font-size: 16px;
        margin-top: 20px;
        font-style: italic;
        opacity: 0.8;
        text-align: center;
    }

    /* --- Gallery Section Mobile --- */
    .gallery {
        padding: 60px 0;
        width: 100%;
    }

    .gallery .container {
        padding: 0;
        padding-left: 25px;
        width: 100%;
        max-width: 100%;
    }

    .gallery .section-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding-right: 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        padding-right: 0;
        margin-right: 0;
        width: 100%;
    }

    .gallery-item {
        aspect-ratio: 3/4;
        background: #1e3a8a;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    /* Swiper Confiança - aspect ratio portrait */
    .gallery-confianca .gallery-item {
        aspect-ratio: 3/4;
    }

    /* Ajustar Swiper para colar na borda direita mantendo margem esquerda */
    .swiper {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
    }

    .swiper-wrapper {
        padding-right: 0;
        margin-right: 0;
    }

    .swiper-slide {
        width: auto;
        max-width: 100%;
    }

    /* --- Footer Mobile --- */
    footer {
        padding: 60px 0 40px;
        min-height: auto;
        width: 100%;
    }

    .footer-section {
        margin-bottom: 60px;
    }

    .footer-label {
        font-size: 14px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.8;
        text-align: center;
        padding: 0 25px;
    }

    .saea-logo img {
        max-width: 120px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .sponsors-grid {
        display: flex;
        padding: 20px;
        gap: 5px 0;
        flex-direction: row;
        width: 100%;
    }

    .sponsor-logo {
        align-items: center;
        justify-content: center;
        width: calc(33.33% - 10px);
    }

    .sponsor-logo img {
        width: auto;
        height: 45px;
        max-width: 100%;
    }

    .ftd-logo {
        order: 1;
        align-self: flex-start;
    }

    .edix-logo {
        order: 2;
    }

    .forma-logo {
        order: 3;
    }

    .analia-logo {
        order: 4;
        width: 100%;
    }
    .acosforma-logo {
        order: 5;
        width: calc( 50% - 10px);
    }
    .r-ribeiro-logo {
        order: 6;
        width: calc( 50% - 10px);

    }
    .dass-logo {
        order: 7;
        width: calc( 50% - 10px);
    }
    .pole-scola-logo {
        order: 8;  
        width: calc( 50% - 10px);
    }
    .magic-place-logo {
        order: 10;
        width: calc( 50% - 10px);
    }
    .conhecer-logo {
        order:9;
    }

    /* --- Utility Classes Mobile --- */
    .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .display-mobile {
        display: block;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    /* Hide desktop-only elements */
    .display-desk {
        display: none;
    }

    /* Smooth scrolling for anchor links */
    html {
        scroll-behavior: smooth;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Garantir que sections não ultrapassem a tela */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* ==========================================
   EXTRA SMALL DEVICES - max-width: 480px
   ========================================== */

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-date img {
        max-width: 100px;
    }

    .about .section-title,
    .kit .section-title {
        font-size: 24px;
    }


    .kit .section-title span {
        font-size: 20px !important;
    }

    .race-date-big .date-icon {
        max-width: 131 !important;
    }

}

/* ==========================================
   TOUCH DEVICE OPTIMIZATIONS
   ========================================== */

@media (hover: none) and (pointer: coarse) {
    .nav-links a:hover {
        background: transparent;
        padding-left: 20px;
    }

    .nav-links a:active {
        background: rgba(241, 228, 12, 0.2);
    }

    .btn:active {
        transform: scale(0.98);
    }
}