* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg,
            #0a0e27 0%,
            #1a1540 15%,
            #1a3a8a 30%,
            #1a1540 45%,
            #3a0e1a 60%,
            #8a1515 75%,
            #2a0a1a 90%,
            #0a0e27 100%);
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: gradientShift 15s ease infinite;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.header {
    padding: 28px 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 20, 40, 0);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    position: relative;
    margin-left: 60px;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 200px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.582)) drop-shadow(0 0 20px rgba(37, 99, 235, 0.4)) drop-shadow(0 0 40px rgba(235, 37, 37, 0.3));
    transition: all 0.4s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-image:hover {
    filter: drop-shadow(2px 2px 6px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 30px rgba(37, 99, 235, 0.7)) drop-shadow(0 0 50px rgba(235, 37, 37, 0.6));
    transform: rotate(-2deg);
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.582)) drop-shadow(0 0 20px rgba(37, 99, 235, 0.4)) drop-shadow(0 0 40px rgba(235, 37, 37, 0.3));
    }

    50% {
        filter: drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.582)) drop-shadow(0 0 30px rgba(37, 99, 235, 0.6)) drop-shadow(0 0 50px rgba(235, 37, 37, 0.5));
    }
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 35px;
    backdrop-filter: blur(10px);
}

/* Esconde link Contato no nav em desktop */
.nav-link-contato {
    display: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #25eba9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffb3, #00ffc8);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    transform: translateY(-1px);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 100, 235, 0);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}


.theme-switcher {
    display: flex;
    gap: 8px;
    margin-left: 15px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.theme-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 8px;
}

.theme-btn svg {
    width: 20px;
    height: 20px;
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.theme-btn.active {
    background: rgba(235, 37, 37, 0.3);
    color: #eb2525;
}


body[data-theme="wave"] {
    background: linear-gradient(135deg,
            #0a0e27 0%,
            #1a1540 15%,
            #1a3a8a 30%,
            #1a1540 45%,
            #3a0e1a 60%,
            #8a1515 75%,
            #2a0a1a 90%,
            #0a0e27 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #fff;
}

body[data-theme="dark"] {
    background: #1a1a1a;
    background-size: 100% 100%;
    animation: none;
    color: #e0e0e0;
}

body[data-theme="light"] {
    background: #ffffff;
    background-size: 100% 100%;
    animation: none;
    color: #1a1a1a;
}


body[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .nav-link {
    color: #1a1a1a;
}

body[data-theme="light"] .nav-link:hover {
    color: #eb2525;
}

body[data-theme="light"] .btn-contact {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}

body[data-theme="light"] .btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.25);
}

body[data-theme="light"] .theme-switcher {
    background: rgba(0, 0, 0, 0.05);
}

body[data-theme="light"] .theme-btn {
    color: rgba(0, 0, 0, 0.5);
}

body[data-theme="light"] .theme-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

body[data-theme="light"] .hero-title,
body[data-theme="light"] .hero-subtitle,
body[data-theme="light"] .section-title,
body[data-theme="light"] .section-subtitle,
body[data-theme="light"] h1,
body[data-theme="light"] h2,
body[data-theme="light"] h3,
body[data-theme="light"] p {
    color: #1a1a1a;
}

body[data-theme="light"] .piloto-card {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .piloto-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .piloto-card {
    background-image: url('/imagens/background piloto.png');
    background-size: cover;
    background-position: center;
}

body[data-theme="light"] .piloto-overlay {
    background: rgba(0, 0, 0, 0.85);
}

body[data-theme="light"] .piloto-overlay-nome {
    color: #fff;
}

body[data-theme="light"] .piloto-overlay-cargo {
    color: #09ff00;
}

body[data-theme="light"] .piloto-overlay-info {
    color: #ccc;
}

body[data-theme="light"] .piloto-overlay-btn {
    color: #fff;
}

body[data-theme="light"] .piloto-name {
    color: #1a1a1a;
}

body[data-theme="light"] .campeonato-card {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .footer {
    background: linear-gradient(135deg, rgba(187, 222, 251, 0.3) 0%, rgba(225, 190, 231, 0.3) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .footer-title,
body[data-theme="light"] .footer-link {
    color: #1a1a1a;
}

body[data-theme="light"] .footer-link:hover {
    color: #eb2525;
}

body[data-theme="light"] .social-link {
    color: #1a1a1a;
    border-color: rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .social-link:hover {
    background: rgba(235, 37, 37, 0.1);
    color: #eb2525;
}

body[data-theme="light"] .piloto-name-tag {
    background: rgba(10, 10, 30, 0.95);
    border-color: #eb2525;
    box-shadow: 0 5px 25px rgba(235, 37, 37, 0.5);
}

body[data-theme="light"] .name-tag-text {
    color: #fff;
}

body[data-theme="light"] .btn-consultation {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
    color: #1a1a1a;
}

body[data-theme="light"] .btn-consultation:hover {
    background: rgba(37, 235, 103, 0.15);
    border-color: #25eb67;
    color: #0a8040;
}

body[data-theme="light"] .carousel-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

body[data-theme="light"] .carousel-btn:hover {
    background: rgba(235, 37, 37, 0.1);
    border-color: #eb2525;
}

body[data-theme="light"] .pilotos-section {
    background: linear-gradient(135deg, #e0eeff 0%, #b3cfd383 100%);
}

body[data-theme="light"] .pilotos-section::before {
    opacity: 0.2;
}

body[data-theme="light"] .heading-pilotos h1 {
    color: #1a1a1a;
}

body[data-theme="light"] .sobre-section {
    background: linear-gradient(135deg, #bbdefb 0%, #e1bee7 100%);
}

body[data-theme="light"] .sobre-section::before {
    opacity: 0.2;
}

body[data-theme="light"] .sobre-title {
    color: #1a1a1a;
}

body[data-theme="light"] .sobre-text {
    color: #333;
}

body[data-theme="light"] .example-2 .icon-content a {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}

body[data-theme="light"] .example-2 .icon-content a:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #eb2525;
}

body[data-theme="light"] .scroll-to-top {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

body[data-theme="light"] .scroll-to-top svg {
    color: #1a1a1a;
}

body[data-theme="light"] .scroll-to-top:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #eb2525;
}

body[data-theme="light"] .logo-image {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
    animation: none;
}

body[data-theme="light"] .logo-image:hover {
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 15px rgba(0, 0, 0, 0.3));
}

body[data-theme="light"] .logo-dark {
    display: none;
}

body[data-theme="light"] .logo-light {
    display: block;
}

.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

body[data-theme="light"] .nav {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(0, 0, 0, 0.034);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    padding: 12px 35px;
}


body[data-theme="dark"] .header {
    background: rgba(26, 26, 26, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .piloto-card {
    background-image: url('/imagens/background piloto.png');
    background-size: cover;
    background-position: center;
}

body[data-theme="dark"] .campeonato-card {
    background: rgba(255, 255, 255, 0.05);
}

body[data-theme="dark"] .footer {
    background: rgba(26, 26, 26, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .sobre-section {
    background: rgba(20, 20, 20, 0.95);
}

body[data-theme="dark"] .sobre-section::before {
    opacity: 0.3;
}

body[data-theme="dark"] .carousel-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .pilotos-section {
    background: #0d1117;
}

body[data-theme="dark"] .pilotos-section::before {
    opacity: 0.3;
}


.hero {
    margin-top: 10px;
    padding: 100px 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    min-height: 90vh;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}


.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 88px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero-title.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    line-height: 1.6;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    filter: drop-shadow(2px 2px 4px rgb(255, 255, 255));
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateX(0);
}

.btn-consultation {
    align-self: flex-start;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}

.btn-consultation.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease, opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
}

.btn-consultation:hover {
    border-color: #25eb67;
    background: rgba(37, 235, 176, 0.1);
    color: #25ebb0;
}

.btn-consultation svg {
    transition: transform 0.3s ease;
}

.btn-consultation:hover svg {
    transform: translateX(5px);
}


.piloto-principal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateX(200px);
    transition: opacity 1.2s ease-out 0.4s, transform 1.2s ease-out 0.4s;
}

.piloto-principal.visible {
    opacity: 1;
    transform: translateX(100px);
}

.hero-image {
    width: 700px;
    height: auto;
    display: block;
    object-fit: contain;
    margin-top: -100px;
    transform: translateX(100px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    animation: float 4s ease-in-out infinite;
    transition: opacity 0.5s ease-in-out;
}

.piloto-stats {
    position: absolute;
    top: 160px;
    right: 50px;
    z-index: 10;
}

.stat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(10, 10, 30, 0.9);
    border: 3px solid #2563eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
    animation: rotateGlow 3s ease-in-out infinite;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
}

.stat-text {
    font-size: 10px;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.piloto-name-tag {
    position: absolute;
    bottom: 120px;
    left: 35%;
    transform: translateX(-50%);
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 15px;
    border: 2px solid #eb2525;
    box-shadow: 0 5px 25px rgba(235, 37, 37, 0.5);
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    z-index: 10;
}

.name-tag-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
}

.name-tag-subtitle {
    display: block;
    font-size: 11px;
    color: #eb2525;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
    }

    50% {
        box-shadow: 0 5px 30px rgba(37, 99, 235, 0.7);
    }
}

@keyframes rotateGlow {

    0%,
    100% {
        border-color: #2563eb;
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
    }

    50% {
        border-color: #eb2525;
        box-shadow: 0 0 30px rgba(235, 37, 37, 0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateX(100px) translateY(0px);
    }

    50% {
        transform: translateX(100px) translateY(-20px);
    }
}


.pilotos-section {
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(235, 37, 37, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, #0f0f1e 0%, #1a0f2e 50%, #0a051f 100%);
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.pilotos-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.pilotos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 100px,
            rgba(37, 99, 235, 0.03) 100px,
            rgba(37, 99, 235, 0.03) 200px);
    pointer-events: none;
}

.heading-pilotos {
    text-align: center;
    padding: 60px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.heading-pilotos h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.pilotos-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 0, 0, 0);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn svg {
    width: 36px !important;
    height: 36px !important;
    transition: transform 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgb(255, 0, 106);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover svg {
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: translateY(0);
}

.pilotos-carousel {
    overflow: hidden;
    flex: 1;
}

.pilotos-container {
    display: flex;
    gap: 40px;
    overflow-x: visible;
    padding: 10px 0;
    scroll-padding: 0;
    scrollbar-width: none;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pilotos-container::-webkit-scrollbar {
    display: none;
}

.piloto-card {
    flex: 0 0 calc(25% - 30px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        opacity 0.5s ease;
    opacity: 1;
    position: relative;
    background-image: url('/imagens/background piloto.png');
    background-size: cover;
    background-position: center;
    scroll-snap-align: start;
}

.piloto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.piloto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 30px;
    padding-bottom: 60px;
}

.piloto-card:hover .piloto-overlay {
    opacity: 1;
}

.piloto-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.piloto-card:hover .piloto-overlay-content {
    transform: translateY(0);
}

.piloto-overlay-nome {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.piloto-overlay-cargo {
    font-size: 14px;
    color: #09ff00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.piloto-overlay-info {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.piloto-overlay-btn {
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.piloto-overlay-btn:hover {
    background: transparent;
    border-color: #eb2525;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 37, 37, 0.3);
}

.piloto-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
}


ul {
    list-style: none;
}

.example-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.example-2 .icon-content {
    margin: 0 10px;
    position: relative;
}

.example-2 .icon-content .tooltip {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%) translateX(-10px);
    color: #fff;
    padding: 6px 10px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.example-2 .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

.example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 28px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.example-2 .icon-content a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.example-2 .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
}

.example-2 .icon-content a:hover {
    color: white;
}

.example-2 .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
    height: 100%;
}

.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"]~.tooltip {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.example-2 .icon-content a[data-social="tiktok"] .filled,
.example-2 .icon-content a[data-social="tiktok"]~.tooltip {
    background-color: #000000;
}

.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"]~.tooltip {
    background-color: #FF0000;
}

.example-2 .icon-content a[data-social="whatsapp"] .filled,
.example-2 .icon-content a[data-social="whatsapp"]~.tooltip {
    background-color: #25D366;
}




.sobre-section {
    background:
        radial-gradient(circle at 50% 50%, rgba(235, 37, 37, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(235, 37, 37, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #0a0a20 0%, #1a0f2e 50%, #0a051f 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.sobre-section.visible {
    opacity: 1;
    transform: scale(1);
}

.sobre-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, rgba(37, 99, 235, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(37, 99, 235, 0.05) 87.5%, rgba(37, 99, 235, 0.05)),
        linear-gradient(150deg, rgba(37, 99, 235, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(37, 99, 235, 0.05) 87.5%, rgba(37, 99, 235, 0.05)),
        linear-gradient(30deg, rgba(235, 37, 37, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(235, 37, 37, 0.05) 87.5%, rgba(235, 37, 37, 0.05)),
        linear-gradient(150deg, rgba(235, 37, 37, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(235, 37, 37, 0.05) 87.5%, rgba(235, 37, 37, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
    opacity: 0.5;
}

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

.sobre-content {
    text-align: center;
}

.sobre-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 20px;
}

.sobre-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #eb2525);
    margin: 0 auto 40px;
}

.sobre-text {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #eb2525);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.footer {
    background: linear-gradient(135deg, #0a0a20 0%, #1a0f2e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(90deg, #2563eb, #eb2525);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-links-section .footer-title {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    align-items: center;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #eb2525;
}

.footer-social-text {
    color: #999;
    font-size: 14px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.scroll-to-top:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.scroll-to-top:hover svg {
    transform: scale(1.1);
    animation: none;
}

.scroll-tooltip {
    position: absolute;
    left: 100%;
    margin-left: 15px;
    background: rgba(10, 10, 30, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top:hover .scroll-tooltip {
    opacity: 1;
}


@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 60px 30px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero-title {
        font-size: 48px;
    }
}

/* ==================== RESPONSIVIDADE COMPLETA ==================== */

/* Tablets e telas médias (768px - 1024px) */
@media (max-width: 1024px) {
    /* Header ajustado */
    .header-content {
        padding: 0 20px;
    }

    .nav {
        gap: 15px;
        padding: 10px 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn-consultation {
        align-self: center;
    }

    /* Personagem principal - mantém visível */
    .piloto-principal {
        justify-content: center;
        transform: translateX(0);
    }

    .piloto-principal.visible {
        transform: translateX(0);
    }

    .hero-image {
        width: 500px;
        margin-top: 0;
        transform: translateX(0);
    }

    .piloto-stats {
        top: 80px;
        right: 20px;
    }

    .piloto-name-tag {
        bottom: 80px;
        left: 50%;
    }

    /* Carrossel - 3 em 3 para tablets */
    .piloto-card {
        flex: 0 0 calc(33.333% - 27px);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* Mobile Landscape (481px - 767px) */
@media (max-width: 767px) {
    /* Header compacto */
    .header {
        padding: 15px 0;
        margin-left: 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo-image {
        width: 120px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 10px;
        padding: 8px 15px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 12px;
        white-space: nowrap;
    }

    .header-actions {
        gap: 10px;
    }

    .btn-contact {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* Botões de tema - ESCONDIDOS EM MOBILE */
    .theme-switcher {
        display: none !important;
    }

    /* Esconde o botão Contato separado em mobile */
    .btn-contact {
        display: none !important;
    }

    /* Esconde Team e Sobre no nav em mobile */
    .nav-link-team,
    .nav-link-sobre {
        display: none !important;
    }

    /* Link Contato no nav - visível apenas em mobile */
    .nav-link-contato {
        display: block;
    }

    /* Hero Section */
    .hero {
        padding: 60px 15px;
        min-height: auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* ESCONDE O PERSONAGEM PRINCIPAL em telas pequenas */
    .piloto-principal {
        display: none !important;
    }

    /* Seção de pilotos */
    .heading-pilotos {
        padding: 40px 20px 20px;
    }

    .heading-pilotos h1 {
        font-size: 36px;
    }

    .pilotos-wrapper {
        padding: 20px 15px;
        gap: 10px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* Carrossel - 2 em 2 para mobile */
    .piloto-card {
        flex: 0 0 calc(50% - 20px);
    }

    .pilotos-container {
        gap: 20px;
    }

    .piloto-img {
        height: 400px;
    }

    .piloto-overlay {
        padding: 20px;
        padding-bottom: 40px;
    }

    .piloto-overlay-nome {
        font-size: 20px;
    }

    .piloto-overlay-cargo {
        font-size: 12px;
    }

    .piloto-overlay-info {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .piloto-overlay-btn {
        padding: 10px 20px;
        font-size: 12px;
        background: rgba(0, 0, 0, 0.8) !important;
        color: white !important;
        border-radius: 25px;
    }

    /* Overlay sempre visível em mobile */
    .piloto-overlay {
        opacity: 1 !important;
        background: transparent !important;
    }

    .piloto-overlay-content {
        transform: translateY(0) !important;
    }

    /* Esconde nome, cargo e info no mobile - só mostra o botão */
    .piloto-overlay-nome {
        display: none !important;
    }

    .piloto-overlay-cargo {
        display: none !important;
    }

    .piloto-overlay-info {
        display: none !important;
    }

    /* Redes sociais laterais - ESCONDIDAS EM MOBILE */
    .example-2 {
        display: none !important;
    }

    /* Botão voltar ao topo - ESCONDIDO EM MOBILE */
    .scroll-to-top {
        display: none !important;
    }

    /* Estatísticas do Sobre Nós - 2x2 em mobile */
    .sobre-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
        padding-top: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-link,
    .footer-social-text {
        font-size: 13px;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    /* Ajusta scroll offset para mobile */
    html {
        scroll-padding-top: 150px;
    }

    /* Header ultra compacto */
    .logo-image {
        width: 100px;
    }

    .nav {
        gap: 8px;
        padding: 6px 10px;
    }

    .nav-link {
        font-size: 11px;
        padding: 2px 4px;
    }

    .btn-contact {
        padding: 6px 15px;
        font-size: 12px;
    }

    .theme-btn {
        width: 28px;
        height: 28px;
    }

    .theme-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Hero */
    .hero {
        padding: 40px 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-consultation {
        padding: 12px 25px;
        font-size: 13px;
    }

    /* Seção pilotos */
    .heading-pilotos h1 {
        font-size: 28px;
    }

    .pilotos-wrapper {
        padding: 15px 5px;
        gap: 5px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    /* Carrossel - 2 por vez (mantém) */
    .piloto-card {
        flex: 0 0 calc(50% - 10px);
    }

    .pilotos-container {
        gap: 10px;
    }

    .piloto-img {
        height: 350px;
    }

    .piloto-overlay {
        padding: 15px;
        padding-bottom: 30px;
    }

    .piloto-overlay-nome {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .piloto-overlay-cargo {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .piloto-overlay-info {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .piloto-overlay-btn {
        padding: 8px 18px;
        font-size: 11px;
    }

    /* Estatísticas do Sobre Nós - menores */
    .sobre-stats {
        gap: 20px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .stat-number {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* Footer */
    .footer-logo {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .nav-link {
        font-size: 10px;
    }

    .hero-title {
        font-size: 32px;
    }

    .heading-pilotos h1 {
        font-size: 24px;
    }

    .piloto-img {
        height: 300px;
    }

    /* Estatísticas do Sobre Nós - ainda menores */
    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 10px;
    }
}

/* ==================== MODO LANDSCAPE (CELULAR DEITADO) ==================== */
@media (max-height: 500px) and (orientation: landscape) {
    /* Header compacto para landscape */
    .header {
        padding: 10px 0;
    }

    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .logo-image {
        width: 80px;
    }

    .nav {
        gap: 8px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .nav-link {
        font-size: 11px;
    }

    /* Esconde elementos como no mobile */
    .btn-contact {
        display: none !important;
    }

    .theme-switcher {
        display: none !important;
    }

    .nav-link-team,
    .nav-link-sobre {
        display: none !important;
    }

    .nav-link-contato {
        display: block;
    }

    /* Hero ultra compacto */
    .hero {
        padding: 40px 15px 20px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-consultation {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* ESCONDE personagem principal em landscape */
    .piloto-principal {
        display: none !important;
    }

    /* Seção pilotos compacta */
    .heading-pilotos {
        padding: 30px 15px 15px;
    }

    .heading-pilotos h1 {
        font-size: 28px;
    }

    .pilotos-wrapper {
        padding: 15px 10px;
        gap: 8px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Carrossel - 2 em 2 em landscape */
    .piloto-card {
        flex: 0 0 calc(50% - 10px);
    }

    .pilotos-container {
        gap: 15px;
    }

    .piloto-img {
        height: 300px;
    }

    .piloto-overlay {
        padding: 15px;
        padding-bottom: 30px;
    }

    .piloto-overlay-nome {
        font-size: 18px;
    }

    .piloto-overlay-cargo {
        font-size: 11px;
    }

    .piloto-overlay-info {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .piloto-overlay-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    /* Sobre nós compacto */
    .sobre-section {
        padding: 40px 20px;
    }

    .sobre-title {
        font-size: 28px;
    }

    .sobre-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .sobre-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Footer compacto */
    .footer {
        padding: 30px 20px 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-logo {
        font-size: 16px;
    }

    .footer-tagline,
    .footer-link,
    .footer-social-text {
        font-size: 11px;
    }

    .footer-title {
        font-size: 14px;
    }

    /* Esconde redes sociais e botão scroll */
    .example-2 {
        display: none !important;
    }

    .scroll-to-top {
        display: none !important;
    }

    /* Ajusta scroll offset para landscape */
    html {
        scroll-padding-top: 80px;
    }
}

