/*
  GoDriver - Design System & Base Styles
  Style inspired by Fintech/Crypto Premium Landing Pages
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* Loader de Pre-carregamento */
#hero-loader {
    position: fixed;
    inset: 0;
    background: #030303;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 222, 198, 0.1);
    border-top-color: var(--clr-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px var(--clr-primary-glow);
}

.loader-text {
    margin-top: 24px;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    color: var(--clr-primary);
    letter-spacing: 4px;
    font-weight: 700;
    text-shadow: 0 0 8px var(--clr-primary-glow);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

:root {
    /* Colors */
    --clr-bg: #030303;
    --clr-surface: #0a0a0a;
    --clr-surface-light: #111111;
    --clr-primary: #00dec6;
    /* Neon Cyan/Teal */
    --clr-primary-glow: rgba(0, 222, 198, 0.4);
    --clr-text-main: #ffffff;
    --clr-text-muted: #a0a0a0;
    --clr-border: rgba(255, 255, 255, 0.1);

    /* Effects */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-blur: blur(12px);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-max-width: 1200px;
    --section-spacing: 120px;
}

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

html {
    /* scroll-behavior: smooth; -- Removido para evitar conflitos com ScrollTrigger (GSAP) */
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Gradient */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 222, 198, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 100, 90, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 10%, rgba(0, 222, 198, 0.08) 0%, transparent 40%),
        linear-gradient(160deg, #040f0e 0%, #030303 50%, #050d0c 100%);
    z-index: -10;
    pointer-events: none;
}

main {
    position: relative;
    z-index: 10;
    /* Content on top */
}

header,
footer {
    z-index: 100;
}





/* Reusable Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 10px;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: #000;
    box-shadow: 0 0 20px var(--clr-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--clr-primary-glow);
}

.btn-outline {
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(204, 255, 0, 0.05);
    transform: translateY(-3px);
}

.text-gradient-neon {
    background: linear-gradient(135deg, #fff 30%, var(--clr-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 222, 198, 0.1);
    color: var(--clr-primary);
    border: 1px solid rgba(0, 222, 198, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    text-align: center;
}

.section-subtitle {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 16px 0;
    background: rgba(3, 3, 3, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--clr-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

.logo i {
    color: var(--clr-primary);
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav ul a {
    color: var(--clr-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

nav ul a:hover {
    color: var(--clr-primary);
}

/* Glass Card */
.glass-card {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(204, 255, 0, 0.3);
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Canvas Background do Video */
.hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 0.5;
    /* background-color: #000; */
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 50%, rgba(3, 3, 3, 0.35) 0%, rgba(3, 3, 3, 0.85) 100%),
        linear-gradient(to top, rgba(3, 3, 3, 0.9) 0%, transparent 20%),
        linear-gradient(to bottom, rgba(3, 3, 3, 0.9) 0%, transparent 20%);
    z-index: 2;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    align-items: center;
}

.hero-content {
    grid-area: 1 / 1;
    max-width: 650px;
    text-align: left;
    z-index: 2;
}


.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 540px;
}

/* Hero mid-scroll statement overlay */
.hero-statement {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 650px;
    text-align: left;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 4;
}

.hero-statement-icon {
    font-size: 2rem;
    color: var(--clr-primary);
    opacity: 0.5;
    margin-bottom: 28px;
}

.hero-statement p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    line-height: 1.65;
    font-weight: 300;
    color: #e0e0e0;
    max-width: 650px;
}


.hero-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #eee;
}

.indicator-item i {
    color: var(--clr-primary);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.avatars {
    display: flex;
    margin-left: 10px;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--clr-bg);
    margin-left: -10px;
}

/* Phone Mockup Placeholder Base */
.phone-mockup-container {
    width: 100%;
    height: 100%;
    background: transparent;
    position: relative;
    padding: 0;
}

.gallery-card {
    position: absolute;
    height: 75vh;
    max-height: 700px;
    max-width: 80vw;
    aspect-ratio: 9/19;
    will-change: transform, filter, opacity;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Statement Section */
.statement-section {
    padding: 80px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.statement-card {
    position: relative;
    padding: 60px 40px;
    text-align: center;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 222, 198, 0.05));
    border: 1px solid rgba(0, 222, 198, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(0, 222, 198, 0.05);
}

.statement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 222, 198, 0.1), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.statement-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    opacity: 0.5;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.statement-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.6;
    font-weight: 300;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.statement-text .text-gradient-neon {
    font-weight: 600;
}

/* Video Tutorial Section */
.video-frame-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-frame-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-primary), rgba(0, 222, 198, 0.15));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: fluid-morph 10s ease-in-out infinite;
    z-index: 1;
    filter: blur(12px);
    opacity: 0.7;
}

.tutorial-video {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes fluid-morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: scale(1) rotate(0deg);
    }

    33% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: scale(1.02) rotate(2deg);
    }

    66% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: scale(0.98) rotate(-2deg);
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: scale(1) rotate(0deg);
    }
}

/* Reports Section */
.reports-visual {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.plan-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.plan-card.highlighted {
    border-color: var(--clr-primary);
    background: rgba(204, 255, 0, 0.02);
    transform: scale(1.05);
}

.plan-price {
    font-size: 3rem;
    font-family: 'Sora', sans-serif;
    margin: 20px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.plan-features i {
    color: var(--clr-primary);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--clr-text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* Contact Section */
.contact-section {
    padding: 40px 0 120px;
    position: relative;
    z-index: 3;
}

.contact-card {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 222, 198, 0.035));
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 42px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.contact-copy .section-title,
.contact-copy .section-subtitle {
    text-align: left;
}

.contact-copy .section-title {
    margin-bottom: 18px;
}

.contact-copy .section-subtitle {
    margin: 0;
    max-width: 420px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: var(--clr-text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    background: rgba(3, 3, 3, 0.55);
    color: var(--clr-text-main);
    font: inherit;
    padding: 14px 16px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(0, 222, 198, 0.7);
    box-shadow: 0 0 0 4px rgba(0, 222, 198, 0.08);
}

.contact-submit {
    width: fit-content;
    border: 0;
}
.contact-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.contact-status {
    min-height: 1.25rem;
    margin: 0;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.contact-status.success {
    color: var(--clr-primary);
}

.contact-status.error {
    color: #ff7a7a;
}
/* Quem Somos Section */
.quem-somos-section {
    height: 100vh;
    position: relative;
    background: transparent;
    z-index: 5;
    overflow: hidden;
}

.qs-container {
    display: grid;
    place-items: center;
    margin-top: 100px;
    width: 100%;
    height: 100vh;
}

.qs-title-stack {
    grid-area: 1 / 1;
    position: relative;
    z-index: 10;
    text-align: center;
}

.qs-title {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.qs-title.outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 222, 198, 0.5);
    /* Techy cyan stroke */
    pointer-events: none;
    z-index: -1;
}

.qs-content-stack {
    grid-area: 1 / 1;
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 100%;
    z-index: 5;
}

.qs-menu {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: 40px;
    padding: 6px;
    opacity: 0;
    /* Animated by GSAP */
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.qs-menu-item {
    padding: 10px 24px;
    border-radius: 30px;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.qs-menu-item.active {
    background: var(--clr-primary);
    color: #000;
    box-shadow: 0 0 15px var(--clr-primary-glow);
}

.qs-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.qs-text p {
    font-size: 1.25rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-top: 20px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.fade-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--clr-border);
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 24px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col ul a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.privacy-policy {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.privacy-policy:hover {
    color: var(--clr-primary);
}

@media (max-width: 968px) {

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    /* Quem Somos Mobile */
    .quem-somos-section {
        height: auto !important;
        padding: 60px 0;
    }
    
    .qs-container {
        height: auto !important;
        display: flex;
        flex-direction: column;
        margin-top: 0;
        gap: 40px;
    }

    .qs-title-stack {
        position: relative;
    }

    .qs-title {
        font-size: 3rem;
    }

    .qs-title.outline {
        display: none;
    }

    .qs-content-stack {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    .qs-menu {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        opacity: 1 !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        pointer-events: auto;
        margin-bottom: 20px;
    }

    .qs-menu-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .qs-text {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        padding: 24px;
        pointer-events: auto;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        xPercent: unset;
        yPercent: unset;
    }

    .qs-title-stack {
        display: none;
    }

    .qs-content-stack {
        height: auto !important;
        position: relative !important;
        max-width: 100%;
        width: 100%;
        padding: 0 16px;
    }

    nav,
    .header-cta {
        display: none;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 0;
        max-width: 100%;
    }

    .hero-statement {
        display: none !important;
    }

    .hero-statement-icon {
        display: none;
    }

    .hero-eyebrow {
        display: block;
        text-align: center;
    }

    .hero-indicators {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .plan-card.highlighted {
        transform: scale(1);
    }
    .contact-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px;
    }

    .contact-copy .section-title,
    .contact-copy .section-subtitle {
        text-align: center;
    }

    .contact-copy .section-subtitle {
        margin: 0 auto;
    }

    .contact-submit {
        width: 100%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

.particle {
    position: absolute;
    z-index: -1;
}

/* Initial hidden state for GSAP ScrollTrigger reveal animations */
.section-header {
    opacity: 0;
    transform: translateY(40px);
}

.glass-card {
    opacity: 0;
    transform: translateY(50px);
}

/* Scroll Car Animation Styles */
.scroll-path-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.scroll-svg {
    width: 100%;
    height: 100%;
}

#scrolling-car {
    width: 80px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    /* Nível intermediário */
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

/* 3D Effect - Sections layering */
#carro-animacao section {
    position: relative;
    transition: var(--transition-smooth);
}

#why,
#gallery,
#reports,
#faq,
#contact {
    z-index: 2;
    /* Carro passa POR CIMA */
    background-color: transparent;
    /* Sem fundo para ver o caminho limpo */
}

#features,
#pricing {
    z-index: 10;
    /* Carro passa POR BAIXO */
    background-color: rgba(3, 3, 3, 0.6);
    /* Leve transparência */
    backdrop-filter: blur(12px);
    /* Blur para o efeito 3D de "mergulho" */
    -webkit-backdrop-filter: blur(12px);
}

/* Custom Cursor */
@media (hover: hover) and (pointer: fine) {

    body,
    a,
    button,
    input,
    textarea,
    .btn,
    .faq-question,
    .mobile-toggle,
    nav ul a,
    .logo {
        cursor: none !important;
    }

    .custom-cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 36px;
        height: 36px;
        pointer-events: none;
        z-index: 999999;
        transform: translate(-30%, -30%);
        will-change: transform;
        transition: width 0.2s, height 0.2s, transform 0.2s;
    }

    .custom-cursor img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: rotate(-15deg);
        transition: transform 0.2s;
    }

    body.hovering-interactive .custom-cursor {
        width: 44px;
        height: 44px;
    }

    body.hovering-interactive .custom-cursor img {
        transform: rotate(-15deg) scale(1.15);
        filter: drop-shadow(0 0 8px var(--clr-primary));
    }
}

@media (hover: none) {
    .custom-cursor {
        display: none !important;
    }
}

/* ==============================
   Speedometer Back-to-Top Button
   ============================== */
#speedometer-btn {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 99990;
    background: rgba(3, 3, 3, 0);
    border: 1.5px solid rgba(0, 222, 198, 0);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    gap: 0;
    /* box-shadow:
        0 0 20px rgba(0, 222, 198, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.6); */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.85);
    transition:
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    will-change: transform, opacity;
}

#speedometer-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

#speedometer-btn:hover {
    border-color: rgba(0, 222, 198, 0.7);
    box-shadow:
        0 0 30px rgba(0, 222, 198, 0.35),
        0 12px 40px rgba(0, 0, 0, 0.7);
    transform: translateY(-4px) scale(1.06);
}

#speedometer-btn:active {
    transform: translateY(0) scale(0.96);
}

#speedometer-canvas {
    width: 60px;
    height: 60px;
    display: block;
    pointer-events: none;
}

.speedo-label {
    position: absolute;
    bottom: -25px;
    font-family: 'Outfit', 'Sora', sans-serif;
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(0, 222, 198, 0.7);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 600px) {
    #speedometer-btn {
        bottom: 20px;
        right: 20px;
        width: 68px;
        height: 68px;
    }

    #speedometer-canvas {
        width: 52px;
        height: 52px;
    }
}




