/* ============================================
   MINHA ROTA - STYLE V2 - PREMIUM REDESIGN
   ============================================ */

/* === IMPORTS === */

/* === DESIGN TOKENS === */
:root {
    /* Cores Primárias */
    --primary:       #1a6bdb;
    --primary-light: #3d87f5;
    --primary-dark:  #0f4fa8;
    --primary-glow:  rgba(26, 107, 219, 0.25);

    /* Cores de Superfície */
    --surface-0:   #ffffff;
    --surface-1:   #f7f8fc;
    --surface-2:   #eef1f8;
    --surface-3:   #e2e8f2;

    /* Cores Escuras */
    --dark-0:  #07080f;
    --dark-1:  #0d1120;
    --dark-2:  #131929;
    --dark-3:  #1c2540;

    /* Texto */
    --text-primary:   #0d1120;
    --text-secondary: #4a5572;
    --text-muted:     #8091b5;
    --text-white:     #ffffff;
    --text-white-80:  rgba(255,255,255,0.80);
    --text-white-50:  rgba(255,255,255,0.50);

    /* Gradientes */
    --gradient-hero:   linear-gradient(135deg, #07080f 0%, #0f2448 50%, #0a1a35 100%);
    --gradient-accent: linear-gradient(135deg, #1a6bdb, #4facfe);
    --gradient-cta:    linear-gradient(135deg, #1a6bdb 0%, #0f4fa8 100%);
    --gradient-card:   linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));

    /* Sombras */
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
    --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 20px 48px rgba(0,0,0,0.16);
    --shadow-xl:  0 32px 64px rgba(0,0,0,0.22);
    --shadow-blue: 0 8px 32px rgba(26, 107, 219, 0.30);

    /* Bordas */
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --radius-full: 9999px;

    /* Tipografia (PrimeNG Style) */
    --font-base:    'Inter', system-ui, sans-serif;
    --font-display: 'Inter', system-ui, sans-serif;

    /* Transições */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
    --transition:    all 0.3s var(--ease-in-out);
}

@supports (font-variation-settings: normal) {
    :root {
        --font-base:    'Inter var', system-ui, sans-serif;
        --font-display: 'Inter var', system-ui, sans-serif;
    }
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-base);
    color: var(--text-primary);
    background: var(--surface-0);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 1.01rem;
    letter-spacing: 0.01em;
}

img, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* === UTILITÁRIOS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-spacing { padding: 100px 0; }
.section-spacing--lg { padding: 140px 0; }
.text-center { text-align: center; }
.text-white { color: var(--text-white); }

/* === TIPOGRAFIA === */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

p { margin-bottom: 1rem; line-height: 1.75; font-size: 1rem; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(26, 107, 219, 0.1);
    border: 1px solid rgba(26, 107, 219, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.78;
    margin-bottom: 3rem;
    letter-spacing: 0.005em;
}

/* === INSTAGRAM REEL EMBED === */
.instagram-reel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 52px;
}

.instagram-reel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    padding: 7px 18px;
    border-radius: var(--radius-full);
}

.instagram-reel-label svg {
    opacity: 0.6;
}

/* === BOTÕES === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s ease;
}

.btn:hover::after { background: rgba(255,255,255,0.12); }

.btn-primary {
    background: var(--gradient-cta);
    color: var(--text-white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 107, 219, 0.45);
}

.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.30);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* === HEADER / NAV === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    padding: 0;
}

.main-header.scrolled {
    background: rgba(7, 8, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

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

.logo img {
    height: 54px;
    width: auto;
    display: block;
}

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

.nav-links a {
    color: var(--text-white-80);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--text-white);
    background: rgba(255,255,255,0.08);
}

.nav-links .btn-nav-cta {
    background: var(--gradient-cta);
    color: white;
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-blue);
}

.nav-links .btn-nav-cta:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO SECTION (ESTILO APPLE) === */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    text-align: center;
}

/* Imagem de fundo com overlay */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('hero.jpg') center/cover no-repeat;
    opacity: 0.12;
    transform: scale(1.05);
}

/* Partículas / Orbes luminosos */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orb-float 8s ease-in-out infinite;
}

.hero-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26,107,219,0.35) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,172,254,0.20) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
}

.hero-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26,107,219,0.15) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: 6s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 15px) scale(0.95); }
}

/* Linha de grade sutil */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.04em;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-headline .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-white-80);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

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

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-white-50);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    display: block;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-white-50);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scroll-bounce 2.5s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    opacity: 0.5;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* === FEATURES / FUNCIONALIDADES === */
.features-section {
    background: var(--surface-1);
    padding: 100px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header .section-subtitle {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--surface-0);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 107, 219, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(26, 107, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    filter: invert(28%) sepia(89%) saturate(1200%) hue-rotate(200deg) brightness(90%);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

/* === WHATSAPP BADGE === */
.whatsapp-banner {
    background: linear-gradient(135deg, #dcffa6 0%, #b6f7b6 100%);
    border: 2px solid #5cb85c;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 48px auto;
    max-width: 780px;
}

.whatsapp-banner img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.whatsapp-banner h3 {
    font-size: 1.1rem;
    color: #1a4a1a;
    margin-bottom: 6px;
}

.whatsapp-banner p {
    color: #2c6e2c;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.whatsapp-banner .zap-cta {
    font-size: 0.9rem;
    font-weight: 700;
    color: #155a15;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 8px;
    display: block;
}

/* === APP MOCKUP SECTION === */
.app-section {
    background: var(--dark-1);
    padding: 120px 0;
    overflow: hidden;
}

.app-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.app-text h2 {
    color: white;
    margin-bottom: 20px;
}

.app-text p {
    color: var(--text-white-80);
    font-size: 1.05rem;
}

.app-features-list {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.app-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-white-80);
    font-size: 1rem;
}

.app-features-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2360a5fa'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 24px;
    color: var(--text-white-80);
    font-size: 1.05rem;
    line-height: 1.6;
}

.highlight-box strong { color: white; }

/* Mockup Phone */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    min-height: 600px;
}

.phone-mockup {
    position: relative;
    will-change: transform, opacity;
    transition: transform 0.08s linear, opacity 0.08s linear;
}

.phone-device {
    position: relative;
    width: 280px;
    height: 580px;
    background: #1a1a2e;
    border-radius: 42px;
    border: 10px solid #2d2d4a;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 40px 80px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(255,255,255,0.04);
    overflow: visible;
}

.phone-btn-power {
    position: absolute;
    right: -13px;
    top: 120px;
    width: 3px;
    height: 50px;
    background: #2d2d4a;
    border-radius: 2px;
}

.phone-btn-vol-1, .phone-btn-vol-2 {
    position: absolute;
    left: -13px;
    width: 3px;
    background: #2d2d4a;
    border-radius: 2px;
}

.phone-btn-vol-1 { top: 100px; height: 36px; }
.phone-btn-vol-2 { top: 150px; height: 36px; }

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: #000;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: #000;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.phone-notch-cam {
    width: 8px;
    height: 8px;
    background: #1c2c3c;
    border-radius: 50%;
}

.phone-notch-speaker {
    width: 44px;
    height: 5px;
    background: #1c2c3c;
    border-radius: 3px;
}

/* Carrossel de telas */
.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s var(--ease-out-expo);
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* === VÍDEOS === */
.videos-section {
    background: var(--surface-1);
    padding: 100px 0;
}

.videos-header {
    text-align: center;
    margin-bottom: 64px;
}

.videos-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.video-item {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--surface-0);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-item.reverse { flex-direction: row-reverse; }

.video-text { flex: 1; }

.video-text h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.video-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

.video-frame {
    flex: 1;
    display: flex;
    justify-content: center;
}

.shorts-container {
    position: relative;
    width: 315px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.shorts-container iframe {
    display: block;
    border: none;
    border-radius: var(--radius-lg);
}

/* === SOBRE === */
.sobre-section {
    background: var(--dark-1);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sobre-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('imagens/fundog.webp') center/cover no-repeat;
    opacity: 0.06;
}

.sobre-section .container { position: relative; z-index: 1; }

.sobre-section h2 { color: white; margin-bottom: 20px; }
.sobre-section p { color: var(--text-white-80); font-size: 1.05rem; }

.sobre-highlight {
    color: #fbbf24;
    font-weight: 700;
}

/* === DEPOIMENTOS === */
.testimonials-section {
    background: linear-gradient(135deg, #0f2448, #1a3a6e);
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-section h2 { color: white; margin-bottom: 60px; }

.testimonial-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: all 0.7s var(--ease-out-expo);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    text-align: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    margin: 0 auto 20px;
    display: block;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    position: relative;
    top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.testimonial-dot.active {
    background: white;
    transform: scale(1.3);
}

/* === PARCEIROS === */
.partners-section {
    background: var(--surface-1);
    padding: 80px 0;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 48px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

/* Fade nas bordas */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--surface-1), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--surface-1), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 32px;
}

.move-left  { animation: scrollLeft  40s linear infinite; }
.move-right { animation: scrollRight 40s linear infinite; }

.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

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

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

.parceiro {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 90px;
    background: var(--surface-0);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.parceiro:hover {
    border-color: rgba(26, 107, 219, 0.3);
    box-shadow: var(--shadow-sm);
}

.parceiro img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
    padding: 8px;
}

.parceiro:hover img {
    filter: grayscale(0%) opacity(1);
}

/* === CONTATO === */
.contato-section {
    background: var(--dark-0);
    padding: 100px 0;
}

.contato-section h2 { color: white; }
.contato-section .section-subtitle { color: var(--text-white-80); margin: 0 auto 48px; }

.contato-iframe-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
}

.contato-iframe-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
}

/* === FOOTER === */
.site-footer {
    background: var(--dark-1);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 40px;
}

.footer-brand img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-white-50);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 240px;
    margin: 0;
}

.footer-info {
    text-align: center;
    color: var(--text-white-50);
    font-size: 0.85rem;
    line-height: 1.9;
}

.footer-info p { margin: 0; }

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-social-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white-50);
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.footer-social-links img {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    color: var(--text-white-50);
    font-size: 0.82rem;
}

/* === WHATSAPP FIXO === */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.whatsapp-fab:hover { transform: scale(1.1); }

.whatsapp-fab img { width: 52px; height: 52px; display: block; }

/* === INSTAGRAM EMBED === */
.instagram-embed-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}

/* === SCROLL ANIMATIONS === */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

[data-reveal="fade-up"]   { transform: translateY(40px); }
[data-reveal="fade-left"]  { transform: translateX(-40px); }
[data-reveal="fade-right"] { transform: translateX(40px); }
[data-reveal="zoom-in"]    { transform: scale(0.92); }

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* Delay helpers */
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }
[data-delay="600"] { transition-delay: 0.60s; }

/* === RESPONSIVIDADE === */
@media (max-width: 1024px) {
    .app-section-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .app-text { order: 1; }
    .phone-mockup-wrapper { order: 2; }

    .app-features-list { align-items: flex-start; max-width: 480px; margin: 32px auto; }
}

@media (max-width: 768px) {
    .section-spacing { padding: 70px 0; }
    .section-spacing--lg { padding: 80px 0; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(7,8,15,0.97);
        backdrop-filter: blur(20px);
        padding: 20px 0 28px;
        gap: 4px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

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

    .nav-links a {
        padding: 12px 24px;
        border-radius: 0;
        font-size: 1rem;
    }

    .hamburger { display: flex; }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat-value { font-size: 1.6rem; }

    .video-item,
    .video-item.reverse {
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand { align-items: center; display: flex; flex-direction: column; }
    .footer-brand p { text-align: center; }

    .footer-social { align-items: center; }

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

    .whatsapp-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn { justify-content: center; }

    .hero-stats {
        gap: 20px;
    }

    .phone-device {
        width: 240px;
        height: 500px;
    }

    .shorts-container {
        width: 100%;
        max-width: 315px;
    }
}
