/* ========================================
   PROPOSTA MEGA ELETRÔNICOS — STYLE
   Design: Google Light + Futuristic accents
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --bg-white: #ffffff;
    --bg-surface: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f3f4;
    --border-subtle: #e0e0e0;
    --border-light: #dadce0;
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-muted: #80868b;
    --accent: #1a73e8;
    --accent-light: #e8f0fe;
    --accent-glow: rgba(26, 115, 232, 0.15);
    --accent-2: #8ab4f8;
    --accent-3: #34a853;
    --accent-red: #ea4335;
    --accent-yellow: #fbbc04;
    --accent-green: #34a853;
    --gradient-main: linear-gradient(135deg, #1a73e8 0%, #8ab4f8 100%);
    --gradient-google: linear-gradient(135deg, #4285f4, #34a853, #fbbc04, #ea4335);
    --shadow-sm: 0 1px 3px rgba(60, 64, 67, 0.08), 0 1px 2px rgba(60, 64, 67, 0.04);
    --shadow-md: 0 2px 6px rgba(60, 64, 67, 0.1), 0 2px 4px rgba(60, 64, 67, 0.06);
    --shadow-lg: 0 8px 24px rgba(60, 64, 67, 0.12), 0 4px 8px rgba(60, 64, 67, 0.06);
    --shadow-xl: 0 16px 48px rgba(60, 64, 67, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---------- Scroll Animations ---------- */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Gradient Text ---------- */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Section Labels & Headers ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 24px;
}

/* =================================================
   FLOATING NAVIGATION
   ================================================= */
.floating-nav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 32px);
    max-width: 960px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: var(--bg-surface);
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #1557b0 !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* =================================================
   CONTAINER 1: HERO (Dark with animations)
   ================================================= */
.container-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0f;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.35;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #1a73e8 0%, transparent 70%);
    top: -180px;
    right: -80px;
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8ab4f8 0%, transparent 70%);
    bottom: -120px;
    left: -100px;
    animation: orbFloat 12s ease-in-out infinite reverse;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #34a853 0%, transparent 70%);
    top: 50%;
    left: 45%;
    opacity: 0.15;
    animation: orbFloat 14s ease-in-out infinite 2s;
}

@keyframes orbFloat {

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

    33% {
        transform: translate(30px, -25px);
    }

    66% {
        transform: translate(-20px, 15px);
    }
}

/* Hero Split Layout */
.hero-split {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 120px 24px 60px;
}

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

.hero-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #8ab4f8;
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(138, 180, 248, 0.25);
    border-radius: 50px;
    background: rgba(26, 115, 232, 0.08);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}

.hero-stat strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #8ab4f8;
}

.hero-stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.35);
}

.hero-cta:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 115, 232, 0.45);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.2) 0%, transparent 70%);
    border-radius: 24px;
    z-index: 0;
    animation: imageGlow 4s ease-in-out infinite;
}

@keyframes imageGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(26, 115, 232, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #8ab4f8;
    border-bottom: 2px solid #8ab4f8;
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: rotate(45deg) translate(4px, 4px);
        opacity: 1;
    }
}

/* Particle override for dark hero */
.container-hero .particle {
    background: #8ab4f8 !important;
}

/* =================================================
   CONTAINER 2: ALCANCE E DIVULGAÇÃO
   ================================================= */
.container-alcance {
    background: var(--bg-surface);
}

.alcance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.alcance-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.alcance-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.alcance-card h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.alcance-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.alcance-info {
    text-align: center;
}

.info-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.info-highlight p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-highlight strong {
    color: var(--text-primary);
}

.alcance-info blockquote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent);
    line-height: 1.6;
    padding: 28px 32px;
    border-left: 4px solid var(--accent);
    background: var(--accent-light);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.alcance-info blockquote strong {
    color: #1557b0;
}

/* =================================================
   CONTAINER 3: EXIBIÇÃO + IMPACTO
   ================================================= */
.container-exibicao {
    background: var(--bg-white);
}

.exibicao-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.exibicao-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 18px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.exibicao-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
}

.info-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.exibicao-info-card small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Charts */
.charts-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.chart-card:hover {
    box-shadow: var(--shadow-md);
}

.chart-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.chart-card canvas {
    width: 100% !important;
    max-height: 210px;
    margin-bottom: 16px;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* CPM Highlight */
.cpm-highlight {
    text-align: center;
}

.cpm-box {
    display: inline-block;
    background: var(--accent-light);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 36px 56px;
    box-shadow: 0 4px 24px rgba(26, 115, 232, 0.1);
    transition: var(--transition);
}

.cpm-box:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.18);
    transform: translateY(-2px);
}

.cpm-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.cpm-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cpm-prefix {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.cpm-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =================================================
   CONTAINER 4: SPECS + VÍDEOS
   ================================================= */
.container-specs {
    background: var(--bg-surface);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.spec-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 18px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.spec-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.spec-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.spec-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Video Section */
.video-section {
    text-align: center;
}

.video-section h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.video-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

/* =================================================
   CONTAINER 6: BÔNUS
   ================================================= */
.container-bonus {
    background: var(--bg-white);
}

.bonus-title-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    padding: 12px 28px;
    background: var(--gradient-main);
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3);
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.bonus-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.bonus-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.bonus-text strong {
    color: var(--text-primary);
}

.bonus-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.bonus-spec {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
    padding: 14px 18px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.bonus-spec strong {
    color: var(--accent);
}

.bonus-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

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

/* =================================================
   CONTAINER 7: PROPOSTAS / PRICING
   ================================================= */
.container-propostas {
    background: var(--bg-surface);
}

.propostas-logo {
    margin-top: 20px;
}

.propostas-logo img {
    max-width: 220px;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 36px 24px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: transparent;
    background: linear-gradient(145deg, #1a73e8 0%, #0d47a1 100%);
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.3);
    transform: scale(1.04);
    color: #fff;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 16px 48px rgba(26, 115, 232, 0.35);
}

.pricing-card.featured .pricing-badge {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured .pricing-header h3 {
    color: #fff;
}

.pricing-card.featured .pricing-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.pricing-card.featured .pricing-value {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .price-currency {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card.featured .pricing-features li strong {
    color: #fff;
}

.pricing-card.featured .cpm-feature strong {
    color: #fbbc04 !important;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbc04;
    color: #1a1a1a;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 50px;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(251, 188, 4, 0.35);
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.pricing-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-value {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: super;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 4px;
}

.featured .price-amount {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.pricing-features li.cpm-feature {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    color: var(--accent);
    font-weight: 600;
}

.pricing-features li.cpm-feature::before {
    content: '📊';
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-primary);
    transition: var(--transition);
    margin-top: auto;
}

.pricing-btn:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

.pricing-btn.featured-btn {
    background: #fff;
    color: #1a73e8;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-btn.featured-btn:hover {
    background: #f1f3f4;
    color: #0d47a1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

/* =================================================
   CONTAINER 9: GALERIA
   ================================================= */
.container-galeria {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid var(--border-light);
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-grid .gallery-item:nth-child(1) {
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(32, 33, 36, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    background: rgba(26, 115, 232, 0.8);
    padding: 10px 22px;
    border-radius: 50px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(32, 33, 36, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2.2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

/* =================================================
   CONTAINER 8: MAPA
   ================================================= */
.container-mapa {
    background: var(--bg-surface);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
}

/* =================================================
   FOOTER
   ================================================= */
.site-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 48px 24px 28px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.footer-logo span {
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 6px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.88rem;
    text-align: right;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* =================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ================================================= */
@media (max-width: 1024px) {
    .section-wrapper {
        padding: 72px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--border-light);
        border-radius: var(--radius);
        padding: 16px;
        box-shadow: var(--shadow-lg);
    }

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

    .nav-links a {
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: var(--radius-xs);
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 110px 24px 60px;
        gap: 36px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-image img {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-cta {
        margin: 0 auto;
    }

    /* Alcance */
    .alcance-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    /* Exibição */
    .exibicao-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .charts-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Specs */
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    /* Bônus */
    .bonus-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-4px);
    }

    /* Galeria */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-contact p {
        text-align: center;
    }
}

/* =================================================
   RESPONSIVE — SMALL TABLET (max-width: 768px)
   ================================================= */
@media (max-width: 768px) {
    .section-wrapper {
        padding: 60px 18px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    /* Hero */
    .hero-split {
        padding: 100px 18px 50px;
        gap: 28px;
    }

    .hero-content h1 {
        font-size: clamp(1.4rem, 5vw, 2.2rem);
    }

    .hero-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 6px 16px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding: 16px 18px;
    }

    .hero-stat strong {
        font-size: 1.2rem;
    }

    .hero-stat span {
        font-size: 0.7rem;
    }

    .hero-stat {
        padding: 0 16px;
    }

    /* Alcance */
    .alcance-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .alcance-card {
        padding: 28px 20px;
    }

    .card-number {
        font-size: 1.5rem;
    }

    .info-highlight {
        padding: 22px 20px;
    }

    .alcance-info blockquote {
        font-size: 1rem;
        padding: 22px 20px;
    }

    /* Exibição */
    .exibicao-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .exibicao-info-card {
        padding: 22px 14px;
    }

    .info-value {
        font-size: 1.6rem;
    }

    .charts-row {
        margin-bottom: 40px;
    }

    /* Specs */
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .spec-item {
        padding: 22px 14px;
    }

    .spec-value {
        font-size: 1.4rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-embed {
        max-height: 280px;
    }

    .video-section h3 {
        font-size: 1.05rem;
    }

    /* Bônus */
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bonus-text {
        order: 1;
    }

    .bonus-image {
        order: 2;
    }

    .bonus-title-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
        letter-spacing: 1px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    /* Galeria */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    /* CPM */
    .cpm-box {
        padding: 28px 36px;
    }

    .cpm-number {
        font-size: 2.2rem;
    }

    /* Mapa */
    .map-container iframe {
        height: 380px;
    }

    /* Lightbox */
    .lightbox img {
        max-width: 95%;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 14px;
        right: 18px;
        font-size: 2rem;
    }
}

/* =================================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ================================================= */
@media (max-width: 600px) {
    .section-wrapper {
        padding: 48px 16px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: clamp(1.2rem, 5.5vw, 1.7rem);
        margin-bottom: 10px;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Navigation */
    .floating-nav {
        top: 8px;
        width: calc(100% - 20px);
    }

    .nav-inner {
        padding: 8px 16px;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .nav-links {
        padding: 12px;
    }

    .nav-links a {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero-split {
        padding: 90px 16px 40px;
        gap: 24px;
    }

    .hero-content h1 {
        font-size: 1.35rem;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .hero-label {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        padding: 6px 14px;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0;
        padding: 16px;
    }

    .hero-stat {
        padding: 12px 0;
        align-items: center;
    }

    .hero-stat strong {
        font-size: 1.3rem;
    }

    .hero-stat span {
        font-size: 0.72rem;
    }

    .hero-stat-divider {
        width: 60%;
        height: 1px;
        align-self: center;
    }

    .hero-cta {
        padding: 12px 30px;
        font-size: 0.92rem;
        width: 100%;
        text-align: center;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .hero-scroll-indicator span {
        font-size: 0.65rem;
    }

    /* Gradient Orbs — reduce on mobile */
    .orb-1 {
        width: 280px;
        height: 280px;
    }

    .orb-2 {
        width: 220px;
        height: 220px;
    }

    .orb-3 {
        width: 180px;
        height: 180px;
    }

    /* Alcance */
    .alcance-card {
        padding: 24px 16px;
    }

    .card-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .alcance-card h3 {
        font-size: 0.75rem;
    }

    .card-number {
        font-size: 1.4rem;
    }

    .alcance-card p {
        font-size: 0.82rem;
    }

    .info-highlight {
        padding: 20px 16px;
    }

    .info-highlight p {
        font-size: 0.9rem;
    }

    .alcance-info blockquote {
        font-size: 0.92rem;
        padding: 20px 16px;
    }

    /* Exibição */
    .exibicao-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 32px;
    }

    .exibicao-info-card {
        padding: 18px 12px;
    }

    .info-value {
        font-size: 1.4rem;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .exibicao-info-card small {
        font-size: 0.72rem;
    }

    .charts-row {
        margin-bottom: 32px;
    }

    .chart-card {
        padding: 20px 16px;
    }

    .chart-card h3 {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .chart-card canvas {
        max-height: 180px;
    }

    .legend-item {
        font-size: 0.75rem;
    }

    /* CPM */
    .cpm-box {
        padding: 24px 20px;
        width: 100%;
    }

    .cpm-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .cpm-prefix {
        font-size: 0.8rem;
    }

    .cpm-number {
        font-size: 2rem;
    }

    /* Specs */
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 32px;
    }

    .spec-item {
        padding: 20px 12px;
    }

    .spec-label {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
    }

    .spec-value {
        font-size: 1.4rem;
    }

    .spec-desc {
        font-size: 0.78rem;
    }

    .video-grid {
        gap: 12px;
    }

    .video-embed {
        max-height: 200px;
    }

    .video-section h3 {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* Bônus */
    .bonus-title-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        letter-spacing: 0.5px;
    }

    .bonus-text h2 {
        font-size: 1.3rem;
    }

    .bonus-text p {
        font-size: 0.9rem;
    }

    .bonus-spec {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    /* Pricing */
    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card {
        padding: 28px 18px 24px;
    }

    .pricing-header h3 {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 2.4rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }

    .pricing-btn {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .featured-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    /* Galeria */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }

    .gallery-overlay span {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    /* Mapa */
    .map-container iframe {
        height: 280px;
    }

    /* Footer */
    .site-footer {
        padding: 32px 16px 20px;
    }

    .footer-inner {
        margin-bottom: 20px;
        gap: 14px;
    }

    .footer-logo {
        font-size: 1.05rem;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-contact p {
        font-size: 0.82rem;
    }

    .footer-bottom {
        padding-top: 16px;
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }
}

/* =================================================
   RESPONSIVE — SMALL MOBILE (max-width: 400px)
   ================================================= */
@media (max-width: 400px) {
    .section-wrapper {
        padding: 40px 12px;
    }

    .hero-split {
        padding: 84px 12px 36px;
    }

    .hero-content h1 {
        font-size: 1.2rem;
    }

    .hero-label {
        font-size: 0.55rem;
        padding: 5px 12px;
    }

    .hero-stats {
        padding: 12px;
    }

    .hero-stat strong {
        font-size: 1.1rem;
    }

    .exibicao-info-grid {
        grid-template-columns: 1fr;
    }

    .exibicao-info-card {
        padding: 20px 16px;
    }

    .info-value {
        font-size: 1.6rem;
    }

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

    .spec-item {
        padding: 22px 16px;
    }

    .spec-value {
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 24px 14px 20px;
    }

    .price-amount {
        font-size: 2rem;
    }

    .cpm-number {
        font-size: 1.7rem;
    }

    .bonus-text h2 {
        font-size: 1.15rem;
    }

    .chart-card canvas {
        max-height: 160px;
    }

    .map-container iframe {
        height: 240px;
    }

    .video-embed {
        max-height: 180px;
    }
}

/* =================================================
   RESPONSIVE — LANDSCAPE PHONE FIX
   ================================================= */
@media (max-height: 500px) and (orientation: landscape) {
    .container-hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-split {
        grid-template-columns: 1fr 1fr;
        padding: 80px 24px 40px;
    }

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

    .hero-image img {
        max-width: 320px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* ---------- Particle ----------- */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    10% {
        opacity: 0.35;
        transform: scale(1);
    }

    90% {
        opacity: 0.05;
    }

    100% {
        opacity: 0;
        transform: translateY(-400px) scale(0);
    }
}