/* ==========================================================================
   CSS Reset & Variables
   ========================================================================== */
:root {
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Color Palette */
    --bg-dark: #000000;
    --bg-card: #0A0A0A;
    --text-primary: #FFFFFF;
    --text-secondary: #E5E5EA;
    --text-muted: #8E8E93;

    /* Premium Glassmorphism Specs */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px) saturate(180%);

    /* Layout */
    --container-padding: 24px;
    --border-radius-main: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: #050505;
}

body {
    font-family: var(--font-body);
    background-color: #050505;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    padding: 0;
}

/* ==========================================================================
   Hero Container (Card-style wrapper matching reference rounded container)
   ========================================================================== */
.hero-container {
    position: relative;
    margin: var(--container-padding);
    min-height: calc(100vh - (var(--container-padding) * 2));
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-main);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Soft glow around the container */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease;
}

/* Background Video Styling */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3) translateY(8%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

/* ==========================================================================
   Navigation Bar (Dual State: Initial & Sticky)
   ========================================================================== */
.navbar-initial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0;
    opacity: 0;
    animation: slideDown 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-initial-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 48px;
}

.navbar-initial .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

.navbar-initial .nav-links li {
    display: flex;
    align-items: center;
}

/* Vertical separator line between links */
.navbar-initial .nav-links li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-left: 20px;
    pointer-events: none;
}

/* Sticky Floating Navbar (Glassmorphism, slides down on scroll up) */
.navbar-sticky-wrapper {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translate(-50%, -150%);
    width: 100%;
    max-width: 960px;
    z-index: 1000;
    padding: 0 24px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.navbar-sticky-wrapper.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.navbar-sticky {
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px 8px 28px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Theme Light for Sticky Navbar */
.navbar-sticky-wrapper.theme-light .navbar-sticky {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.navbar-sticky-wrapper.theme-light .nav-links a {
    color: rgba(0, 0, 0, 0.6);
}

.navbar-sticky-wrapper.theme-light .nav-links a:hover,
.navbar-sticky-wrapper.theme-light .nav-links a.active {
    color: #000000;
}

.navbar-sticky-wrapper.theme-light .nav-links a::after {
    background-color: #000000;
}

.navbar-sticky-wrapper.theme-light .logo-img {
    filter: invert(1);
}

.navbar-sticky-wrapper.theme-light .btn-nav {
    background-color: #000000;
    color: #FFFFFF;
}

.navbar-sticky-wrapper.theme-light .mobile-toggle {
    color: #000000;
}

.navbar-sticky .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-img {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-mobile {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

/* Subtle dot animation for active link */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--text-primary);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
    left: 20%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Nav Button specific styling */
.btn-nav {
    background-color: var(--text-primary);
    color: var(--bg-dark);
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-nav:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-nav:hover i {
    transform: translateX(3px);
}

/* Hero Primary Button */
.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-dark);
    padding: 16px 36px;
    font-size: 1rem;
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

/* Hero Secondary Button */
.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
    padding: 16px 36px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* One-time reflection/shimmer effect on entrance */
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    animation: shineSweep 1.0s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.8s;
}

@keyframes shineSweep {
    to {
        left: 150%;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: calc(100vh - (var(--container-padding) * 2) - 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Subtle background vignette/glow effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 250;
    line-height: 1.2;
    letter-spacing: -0.045em;
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* ==========================================================================
   Hero Timeline Component
   ========================================================================== */
.hero-timeline {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 60px auto 70px auto;
    padding: 0 160px 40px 160px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1.2s;
    user-select: none;
}

.timeline-line-wrapper {
    position: relative;
    width: 100%;
    height: 6px;
    z-index: 1;
}

.timeline-line {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #FFFFFF;
    border-radius: 10px;
    animation: drawProgressWidth 1.0s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.5s;
}

.timeline-item {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-start {
    left: 0;
}

.item-middle-1 {
    left: 25%;
}

.item-middle-2 {
    left: 50%;
}

.item-middle-3 {
    left: 75%;
}

.item-end {
    left: 100%;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    box-sizing: border-box;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 3;
}

/* Sequential activation timing */
.item-start .timeline-dot {
    animation: activateDot 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.50s;
}

.item-middle-1 .timeline-dot {
    animation: activateDot 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.75s;
}

.item-middle-2 .timeline-dot {
    animation: activateDot 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2.00s;
}

.item-middle-3 .timeline-dot {
    animation: activateDot 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2.25s;
}

.item-end .timeline-dot {
    animation: activateDot 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2.50s;
}

.timeline-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0;
    transition: all 0.5s ease;
}

/* Label specific positions on Desktop */
.item-start .timeline-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(-12px, -50%);
    text-align: right;
    white-space: nowrap;
}

.item-middle-1 .timeline-label,
.item-middle-2 .timeline-label,
.item-middle-3 .timeline-label {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 12px);
    text-align: center;
    white-space: nowrap;
}

.item-end .timeline-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(12px, -50%);
    text-align: left;
    white-space: nowrap;
}

/* Label animation declarations */
.item-start .timeline-label {
    animation: fadeInLabelHorizontal 0.6s ease forwards 1.60s;
}

.item-middle-1 .timeline-label {
    animation: fadeInLabelMiddle 0.6s ease forwards 1.85s;
}

.item-middle-2 .timeline-label {
    animation: fadeInLabelMiddle 0.6s ease forwards 2.10s;
}

.item-middle-3 .timeline-label {
    animation: fadeInLabelMiddle 0.6s ease forwards 2.35s;
}

.item-end .timeline-label {
    animation: fadeInLabelHorizontal 0.6s ease forwards 2.60s;
}

/* Animation declarations */
@keyframes drawProgressWidth {
    to {
        width: 100%;
    }
}

@keyframes drawProgressHeight {
    to {
        height: 100%;
    }
}

@keyframes activateDot {
    to {
        transform: scale(1);
        background-color: #FFFFFF;
    }
}

@keyframes fadeInLabelMiddle {
    to {
        opacity: 1;
        transform: translate(-50%, 0);
        color: var(--text-primary);
    }
}

@keyframes fadeInLabelHorizontal {
    to {
        opacity: 1;
        transform: translate(0, -50%);
        color: var(--text-primary);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.0s cubic-bezier(0.16, 1, 0.3, 1) 1.00s forwards;
}



/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        filter: blur(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        filter: blur(15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

/* ==========================================================================
   Experience Section (2nd Section)
   ========================================================================== */
.experiencia-section {
    position: relative;
    background-color: #121214;
    padding: 80px 60px 100px 60px;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.experiencia-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.experiencia-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.experiencia-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 250;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 48px;

    /* Pre-animation state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.experiencia-stats-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;

    /* Pre-animation state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.experiencia-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;

    /* Pre-animation state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Entrance animation triggers */
.experiencia-content.animate-in .experiencia-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.experiencia-content.animate-in .experiencia-stats-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.experiencia-content.animate-in .experiencia-cta-group {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
}

.stat-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 200px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #121214;
    margin-right: -14px;
    object-fit: cover;

    /* Pre-animation scale-in */
    opacity: 0;
    transform: scale(0.6);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
}

/* Staggered entry for avatars */
.experiencia-content.animate-in .avatar-img {
    opacity: 1;
    transform: scale(1);
}

.experiencia-content.animate-in .avatar-img:nth-child(1) {
    transition-delay: 0.65s;
}

.experiencia-content.animate-in .avatar-img:nth-child(2) {
    transition-delay: 0.75s;
}

.experiencia-content.animate-in .avatar-img:nth-child(3) {
    transition-delay: 0.85s;
}

.avatar-img:hover {
    transform: translateY(-4px) scale(1.08) !important;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    transition-delay: 0s !important;
    z-index: 10;
}

.btn-white-cta {
    background-color: var(--text-primary);
    color: var(--bg-dark);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white-cta i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-white-cta:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-white-cta:hover i {
    transform: translate(2px, -2px);
}

.btn-black-cta {
    background-color: #000000;
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-black-cta i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-black-cta:hover {
    background-color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-black-cta:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Story Social Proof Component
   ========================================================================== */
.experiencia-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.story-widget {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 568px;
    /* Standard 9:16 aspect ratio */
    border-radius: 32px;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(40px);
}

.experiencia-right.animate-in-story .story-widget {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Intersection observer fallback if JS doesn't add class */
.experiencia-section.animate-in .experiencia-right .story-widget {
    opacity: 1;
    transform: translateY(0);
}

.story-widget:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.story-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    z-index: 1;
}

/* Nav buttons for story skipping */
.story-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-nav-btn i {
    width: 20px;
    height: 20px;
}

.story-widget:hover .story-nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.story-nav-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Story Header Overlay (dynamic progress and user info) */
.story-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 16px 32px 16px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
}

.story-progress-container {
    display: flex;
    gap: 4px;
    width: 100%;
    margin-bottom: 12px;
}

.story-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    flex-grow: 1;
    border-radius: 10px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    background-color: #FFFFFF;
    width: 0%;
    transition: width 0.1s linear;
    /* Smooth fill */
}

.story-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--text-primary);
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.story-user-info {
    display: flex;
    flex-direction: column;
}

.story-username {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.story-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 400;
}

.story-verified-badge {
    display: flex;
    align-items: center;
    color: #3897f0;
    /* Instagram verified blue badge */
}

.story-verified-badge i {
    width: 14px;
    height: 14px;
    fill: currentColor;
    color: #FFF;
}

/* Video Wrapper */
.story-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.story-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story Footer Overlay */
.story-footer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 24px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
    display: flex;
    justify-content: center;
}

.story-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
    }
}

.story-cta-button i {
    width: 14px;
    height: 14px;
}

.story-card:hover .story-cta-button {
    background: #FFFFFF;
    color: #000000;
    transform: scale(1.05);
}

/* ==========================================================================
   Story Modal Popup
   ========================================================================== */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.story-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.story-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.story-modal-content {
    position: relative;
    width: 90vw;
    max-width: 380px;
    height: 80vh;
    max-height: 680px;
    background-color: #000;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-modal.is-visible .story-modal-content {
    transform: scale(1) translateY(0);
}

.story-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.story-modal-close:hover {
    background: #FFFFFF;
    color: #000;
    transform: scale(1.1) rotate(90deg);
}

.story-modal-close i {
    width: 18px;
    height: 18px;
}

.story-modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 30px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-modal-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--text-primary);
    object-fit: cover;
}

.story-modal-user-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.story-modal-username {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
}

.story-modal-verified {
    display: flex;
    align-items: center;
    color: #3897f0;
}

.story-modal-verified i {
    width: 14px;
    height: 14px;
    fill: currentColor;
    color: #FFF;
}

.story-modal-video-wrapper {
    width: 100%;
    height: 100%;
}

.story-modal-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Infinite Horizontal Marquee Section
   ========================================================================== */
.marquee-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    user-select: none;
    z-index: 10;
    margin-top: auto;
}

.marquee-container {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    flex-shrink: 0;
    animation: scrollMarquee 55s linear infinite;
    gap: 40px;
    padding: 0 20px;
}

/* Pause marquee on hover */
.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.marquee-content span i {
    width: 13px;
    height: 13px;
    color: var(--text-primary);
    opacity: 0.8;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background-color: var(--text-primary);
    opacity: 0.15;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ==========================================================================
   Trajeto Section
   ========================================================================== */
.trajeto-section {
    background-color: #FFFFFF;
    color: #000000;
    padding: 100px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trajeto-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trajeto-content {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.trajeto-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.trajeto-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: #000000;
    margin-bottom: 32px;
}

.highlight-nao {
    display: inline-block;
    color: inherit;
}

.trajeto-content.animate-in .highlight-nao {
    animation: highlightRed 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.8s;
}

@keyframes highlightRed {
    0% {
        color: inherit;
        transform: scale(1);
    }
    50% {
        color: #FF3B30;
        transform: scale(1.15) translateY(-2px);
    }
    100% {
        color: #FF3B30;
        transform: scale(1) translateY(0);
    }
}

.trajeto-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 24px;
    font-weight: 400;
}

.trajeto-map-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.trajeto-map-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.trajeto-map-circle {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #F5F5F7;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.trajeto-map-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.route-path-animated {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}

.trajeto-map-wrapper.animate-in .route-path-animated {
    animation: drawRoute 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
}

@keyframes drawRoute {
    to {
        stroke-dashoffset: 0;
    }
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.trajeto-map-wrapper.animate-in .map-pin {
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.trajeto-map-wrapper.animate-in .pin-start {
    animation-delay: 0.8s;
}

.trajeto-map-wrapper.animate-in .pin-end {
    animation-delay: 2.8s;
}

.pin-icon-wrapper {
    width: 16px;
    height: 16px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
    position: relative;
}

.pin-icon-wrapper.black-bg {
    background-color: #0A0A0A;
}

.pin-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: pulseAnim 2s infinite ease-out;
}

.pin-pulse-black {
    background-color: rgba(10, 10, 10, 0.3);
}

@keyframes pulseAnim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes popIn {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.map-car-icon {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 15;
    opacity: 0;
}

.trajeto-map-wrapper.animate-in .map-car-icon {
    animation: 
        popInCar 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.5s,
        moveCar 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
}

.car-icon-wrapper {
    width: 20px;
    height: 20px;
    background-color: #2463EB;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(36, 99, 235, 0.4);
}

@keyframes popInCar {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes moveCar {
    0% { top: 37.5%; left: 30%; } /* 150/400=37.5%, 120/400=30% */
    25% { top: 50%; left: 40%; } /* 200/400=50%, 160/400=40% */
    50% { top: 45%; left: 55%; } /* 180/400=45%, 220/400=55% */
    75% { top: 62.5%; left: 62.5%; } /* 250/400=62.5%, 250/400=62.5% */
    100% { top: 57.5%; left: 80%; } /* 230/400=57.5%, 320/400=80% */
}

/* ==========================================================================
   Beneficios Section
   ========================================================================== */
.beneficios-section {
    background-color: #FAFAFA;
    padding: 100px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beneficios-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beneficios-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #000000;
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.beneficios-section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #E5E5EA;
    gap: 1px;
    border: 1px solid #E5E5EA;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.beneficios-grid.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.beneficio-card {
    background-color: #FFFFFF;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: background-color 0.3s ease;
}

.beneficio-card:hover {
    background-color: #F9F9F9;
}

.beneficio-card.empty-card {
    background-color: #FAFAFA;
}

.beneficio-card.empty-card:hover {
    background-color: #FAFAFA;
}

.beneficio-icon {
    width: 48px;
    height: 48px;
    background-color: #F0F0F0;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: #000000;
}

.beneficio-icon i {
    width: 24px;
    height: 24px;
}

.beneficio-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.beneficio-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666666;
}

/* ==========================================================================
   Momentos Section
   ========================================================================== */
.momentos-section {
    background-color: #FFFFFF;
    padding: 100px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.momentos-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.momentos-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #000000;
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.momentos-section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.momentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.momentos-grid.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.momento-card {
    display: flex;
    flex-direction: column;
}

.momento-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #F0F0F0;
}

.momento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.momento-card:hover .momento-image {
    transform: scale(1.05);
}

.momento-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.momento-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666666;
}

.momento-image-wrapper.cta-square {
    background-color: #F5F5F7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.cta-square-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-square-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4A4A4A;
}

.cta-button-wrapper {
    display: flex;
    width: 100%;
    margin-top: 4px;
}

.cta-button-wrapper .btn-black-cta {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   Frota Section
   ========================================================================== */
.frota-section {
    background-color: #FFFFFF;
    padding: 120px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frota-container {
    width: 100%;
    max-width: 1200px;
}

.frota-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.frota-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.frota-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.frota-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.frota-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.frota-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.frota-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 48px;
    max-width: 90%;
}

.frota-list {
    margin-bottom: 48px;
}

.frota-list-item {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #E5E5EA;
}

.frota-list-item:last-child {
    border-bottom: 1px solid #E5E5EA;
}

.frota-list-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: #999999;
    margin-right: 32px;
    min-width: 24px;
}

.frota-list-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
}

.frota-image-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
}

.frota-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Passos Section
   ========================================================================== */
.passos-section {
    background-color: #0A0A0A;
    padding: 120px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.passos-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

.passos-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 80px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.passos-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.passos-grid.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.passo-card {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.passos-grid.animate-in .passo-card {
    opacity: 1;
    transform: translateY(0);
}

.passos-grid.animate-in .passo-card:nth-child(1) { transition-delay: 0.15s; }
.passos-grid.animate-in .passo-card:nth-child(2) { transition-delay: 0.3s; }
.passos-grid.animate-in .passo-card:nth-child(3) { transition-delay: 0.45s; }
.passos-grid.animate-in .passo-card:nth-child(4) { transition-delay: 0.6s; }

.passo-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    width: 48px;
    height: 48px;
    background-color: #222222;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.passos-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    width: calc(100% - 48px);
    height: 1px;
    background-color: rgba(255,255,255,0.15);
    z-index: 0;
}

.passos-grid::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    width: 0;
    height: 1px;
    background-color: #FFFFFF;
    z-index: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.4s;
}

.passos-grid.animate-in::after {
    width: calc(100% - 48px);
}

.passo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.passo-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.passos-cta {
    margin-top: 80px;
    display: flex;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.4s;
}

.passos-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Publico Section
   ========================================================================== */
.publico-section {
    background-color: #0A0A0A;
    padding: 0 60px 120px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}

.publico-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 120px;
}

.publico-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.publico-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.publico-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.2s;
}

.publico-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   CTA Final Section
   ========================================================================== */
.cta-final-section {
    background-color: #FAFAFA;
    padding: 140px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-final-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-final-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-final-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.cta-final-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 48px;
    max-width: 600px;
}

.cta-final-btn {
    padding: 20px 48px;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.cta-final-microcopy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999999;
}

.cta-final-microcopy i {
    width: 16px;
    height: 16px;
    color: #2463EB;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background-color: #FAFAFA;
    padding: 0 60px 120px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 24px 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 24px;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.faq-toggle i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer-inner {
    padding-top: 16px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-wrapper {
    background-color: #FAFAFA;
    padding: 0 60px 60px 60px;
    display: flex;
    justify-content: center;
}

.footer-section {
    background-color: #0A0A0A;
    padding: 40px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    border-radius: 24px;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: #FFFFFF;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    opacity: 0.7;
}

.footer-socials i {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --container-padding: 12px;
        --border-radius-main: 24px;
    }

    .nav-initial-container {
        padding: 24px 20px;
    }

    .navbar-sticky-wrapper {
        top: 20px;
        padding: 0 16px;
    }

    .navbar-sticky {
        padding: 8px 12px 8px 20px;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
        height: 18px;
    }

    .navbar-initial .nav-links,
    .navbar-sticky .nav-links {
        display: none;
        /* Hidden on mobile, toggle opens it */
        flex-direction: column;
        position: absolute;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .navbar-initial .nav-links {
        top: 80px;
        left: 20px;
        width: calc(100% - 40px);
    }

    .navbar-sticky .nav-links {
        top: 70px;
        left: 0;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a::after {
        display: none;
    }

    /* Hide the vertical separator bars on mobile */
    .navbar-initial .nav-links li:not(:last-child)::after {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
        /* Hide desktop CTA on mobile to fit navbar */
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .marquee-section {
        padding: 8px 0;
        margin-top: auto;
    }

    .marquee-content {
        animation-duration: 35s;
        gap: 20px;
    }

    .marquee-content span {
        font-size: 0.62rem;
        letter-spacing: 0.06em;
        gap: 6px;
    }

    .marquee-content span i {
        width: 11px;
        height: 11px;
    }

    .marquee-dot {
        width: 3px;
        height: 3px;
    }

    /* Mobile Timeline Layout */
    .hero-timeline {
        padding-left: 30px;
        padding-right: 30px;
        max-width: 100%;
        margin: 40px auto 50px auto;
    }

    .timeline-label {
        display: none !important;
    }

    /* Mobile Experience Layout */
    .experiencia-section {
        padding: 80px 24px;
    }

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

    .experiencia-title {
        margin-bottom: 32px;
    }

    .experiencia-stats-wrapper {
        margin-bottom: 32px;
        gap: 16px;
    }

    .experiencia-cta-group {
        gap: 20px;
        width: 100%;
        max-width: 320px;
    }

    .btn-white-cta,
    .btn-black-cta {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Experience Story Override */
    .experiencia-right {
        order: 2;
        /* Position story widget below text info */
        margin-top: 20px;
    }

    .story-widget {
        max-width: 290px;
        height: 515px;
        /* Scale down slightly for mobile */
    }

    .story-nav-btn {
        display: none !important;
        /* Hide hover skip controls on mobile */
    }

    .story-modal-content {
        height: 75vh;
        max-height: 540px;
        width: 85vw;
        border-radius: 20px;
    }

    /* Trajeto Mobile Adjustments */
    .trajeto-section {
        padding: 60px 24px;
    }

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

    .trajeto-map-wrapper {
        order: -1;
    }

    /* Beneficios Mobile Adjustments */
    .beneficios-section {
        padding: 60px 24px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .beneficio-card.empty-card {
        display: none;
    }

    /* Momentos Mobile Adjustments */
    .momentos-section {
        padding: 60px 24px;
    }

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

    /* Frota Mobile Adjustments */
    .frota-section {
        padding: 60px 24px;
    }

    .frota-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .frota-image-wrapper {
        aspect-ratio: 1/1;
    }

    /* Passos Mobile Adjustments */
    .passos-section {
        padding: 80px 24px;
    }

    .passos-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .passos-grid::before,
    .passos-grid::after {
        display: none;
    }

    .passos-cta {
        margin-top: 60px;
    }

    .passos-cta .btn-white-cta {
        width: 100%;
        justify-content: center;
    }

    /* Publico Mobile Adjustments */
    .publico-section {
        padding: 0 24px 80px 24px;
    }

    .publico-container {
        padding-top: 80px;
    }

    /* CTA Final Mobile Adjustments */
    .cta-final-section {
        padding: 80px 24px;
    }

    .cta-final-btn {
        width: 100%;
        justify-content: center;
    }

    /* FAQ Mobile Adjustments */
    .faq-section {
        padding: 0 24px 80px 24px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    /* Footer Mobile Adjustments */
    .footer-wrapper {
        padding: 0 24px 24px 24px;
    }

    .footer-section {
        padding: 40px 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}