:root {
    /* Colors - Light Premium Theme */
    --bg-main: #FAFAFB;
    --bg-surface: #FFFFFF;

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;

    --primary: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #818CF8;

    --accent: #10B981;
    --danger: #EF4444;

    --gradient-1: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --gradient-2: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    --gradient-red: linear-gradient(135deg, #EF4444 0%, #F97316 100%);

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Typography */
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'General Sans', sans-serif;

    /* Spacing */
    --sp-1: 0.5rem;
    --sp-2: 1rem;
    --sp-3: 1.5rem;
    --sp-4: 2rem;
    --sp-5: 3rem;
    --sp-6: 4rem;
    --sp-8: 6rem;
    --sp-10: 8rem;

    /* Fluid Typography Variables */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(2rem, 1.7rem + 1.5vw, 2.5rem);
    --text-4xl: clamp(2.5rem, 2.1rem + 2vw, 3.5rem);
    --text-5xl: clamp(3rem, 2.3rem + 3.5vw, 4.5rem);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

li {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--sp-4);
}

/* Utils */
.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-red {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-5);
    border-radius: 100px;
    font-weight: 600;
    font-size: var(--text-base);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.35);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.btn-price {
    font-weight: 400;
    opacity: 0.9;
    font-size: 0.9em;
}

.btn i {
    font-size: 1.25em;
    transition: transform 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--sp-8) 0;
    overflow: hidden;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.6;
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(79, 70, 229, 0.15);
}

.orb-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.1);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--sp-6);
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: 100px;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: var(--text-sm);
    margin-bottom: var(--sp-4);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(79, 70, 229, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.headline {
    font-size: var(--text-5xl);
    margin-bottom: var(--sp-4);
    font-weight: 600;
}

.subheadline {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--sp-6);
    line-height: 1.7;
}

.hero-actions {
    margin-bottom: var(--sp-4);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

.avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 2px solid var(--bg-main);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.floating-cards-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: var(--sp-4);
    box-shadow: var(--glass-shadow);
    width: 320px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animacao de float pos-carregamento */
@keyframes float {

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

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

@keyframes floatReverse {

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

    50% {
        transform: translateY(15px);
    }
}

.card-top {
    top: 10%;
    right: 5%;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.card-middle {
    top: 35%;
    left: 0;
    z-index: 3;
    animation: floatReverse 7s ease-in-out infinite;
}

.card-bottom {
    bottom: 15%;
    right: 15%;
    z-index: 1;
    animation: float 8s ease-in-out infinite 1s;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.icon-box.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

.icon-box.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.glass-card h4 {
    font-size: var(--text-base);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.glass-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E2E8F0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: var(--sp-2);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 4px;
    animation: progressLoad 2s ease-out forwards;
}

@keyframes progressLoad {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
    margin-top: var(--sp-3);
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.metric .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.metric .value {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

/* Problem Section */
.problem {
    padding: var(--sp-10) 0;
    background: var(--bg-surface);
    position: relative;
    z-index: 1;
}

.problem-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: var(--sp-6);
}

.problem .section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--sp-4);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    margin: 0 auto;
    border-radius: 2px;
}

.problem-content {
    text-align: center;
    max-width: 800px;
    margin-bottom: var(--sp-8);
}

.problem-text {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--sp-4);
}

.problem-highlight {
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

/* Bento Box Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
    width: 100%;
    max-width: 1000px;
}

.glass-panel {
    background: var(--bg-main);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(79, 70, 229, 0.2);
}

.glass-panel i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: var(--sp-3);
    opacity: 0.8;
}

.glass-panel h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--sp-1);
}

.glass-panel .cost {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    font-family: var(--font-heading);
    font-weight: 500;
}

.glass-panel.danger {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.1);
}

.glass-panel.danger i {
    color: var(--danger);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

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

    .hero-visual {
        margin-top: var(--sp-6);
        height: 500px;
    }

    .card-top {
        top: 0;
        right: 10%;
    }

    .card-middle {
        top: 40%;
        left: 10%;
    }

    .card-bottom {
        bottom: 0;
        right: 20%;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .glass-card {
        width: 280px;
    }

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

    .card-top {
        right: 5%;
    }

    .card-middle {
        left: 5%;
    }
}

/* --- Utils de Texto --- */
.text-light {
    color: #F8FAFC;
}

.text-light-muted {
    color: #CBD5E1;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
}

/* --- Seção 3: A Solução --- */
.solution {
    position: relative;
    background-color: #111827;
    padding: var(--sp-8) 0;
    overflow: hidden;
    z-index: 1;
}

.solution-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center top, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.solution-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: var(--sp-6);
}

.solution .section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--sp-4);
}

.solution-text {
    font-size: var(--text-lg);
    line-height: 1.6;
}

.solution-text strong {
    color: #F8FAFC;
    font-weight: 600;
}

.solution-player-wrapper {
    width: 100%;
    max-width: 900px;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.video-mockup {
    background: #1E293B;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

.mockup-header {
    padding: 12px 20px;
    background: #0F172A;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
    margin-right: var(--sp-3);
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
}

.mockup-dots span:nth-child(1) {
    background: #EF4444;
}

.mockup-dots span:nth-child(2) {
    background: #F59E0B;
}

.mockup-dots span:nth-child(3) {
    background: #10B981;
}

.mockup-title {
    color: #94A3B8;
    font-size: var(--text-xs);
    font-family: var(--font-body);
}

.mockup-body {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-mockup:hover .mockup-img {
    opacity: 0.6;
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-mockup:hover .play-btn {
    transform: scale(1.1);
    background: rgba(79, 70, 229, 0.8);
    border-color: var(--primary-light);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.5);
}

@media (max-width: 768px) {
    .solution-player-wrapper {
        margin-top: var(--sp-4);
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* --- Utils de Alinhamento --- */
.text-center {
    text-align: center;
}

/* --- Seção 4: Para Quem É --- */
.target-audience {
    padding: var(--sp-10) 0;
    background-color: var(--bg-main);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.target-header {
    margin-bottom: var(--sp-8);
}

.target-header .section-title {
    font-size: var(--text-4xl);
}

.target-grid {
    display: flex;
    justify-content: space-between;
    gap: var(--sp-4);
    align-items: stretch;
}

.target-item {
    flex: 1;
    position: relative;
    padding: 0 var(--sp-2);
}

.target-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.target-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: var(--sp-3);
    position: relative;
    transition: transform 0.4s ease;
}

.target-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.05);
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.target-item:hover .target-icon-wrapper {
    transform: rotate(10deg);
}

.target-item:hover .target-icon-wrapper::after {
    opacity: 1;
    transform: scale(1);
}

.target-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .target-grid {
        flex-direction: column;
        gap: var(--sp-6);
        max-width: 600px;
        margin: 0 auto;
    }

    .target-item {
        display: flex;
        align-items: flex-start;
        gap: var(--sp-4);
        padding: 0;
    }

    .target-item:not(:last-child)::after {
        display: none;
    }

    .target-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* --- Utils de Cor --- */
.text-primary-dark {
    color: var(--primary-dark);
}

/* --- Seção 5: O Que Você Vai Aprender --- */
.learn {
    position: relative;
    padding: var(--sp-10) 0;
    background-color: var(--bg-surface);
}

.learn-container {
    display: flex;
    gap: var(--sp-6);
    position: relative;
    align-items: flex-start;
}

.learn-sticky-header {
    width: 35%;
    position: sticky;
    top: 120px;
    padding-right: var(--sp-4);
}

.learn-sticky-header .section-title {
    font-size: var(--text-4xl);
    line-height: 1.2;
}

.learn-content {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
    margin-top: var(--sp-5);
}

.learn-card {
    position: relative;
    background: var(--bg-surface);
    border-radius: var(--border-radius-lg);
    padding: var(--sp-6);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.4s ease;
}

.learn-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    opacity: 0.2;
    transition: opacity 0.4s ease;
}

.learn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 50px -15px rgba(0, 0, 0, 0.08);
}

.learn-card:hover::before {
    opacity: 1;
}

.learn-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 15rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    color: #E2E8F0;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.learn-card-inner {
    position: relative;
    z-index: 1;
}

.learn-card-title {
    font-size: var(--text-2xl);
    color: var(--primary-dark);
    margin-bottom: var(--sp-3);
}

.learn-card-text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
}

@media (max-width: 992px) {
    .learn-container {
        flex-direction: column;
        gap: var(--sp-6);
    }

    .learn-sticky-header {
        position: relative;
        width: 100%;
        top: 0;
        padding-right: 0;
        margin-bottom: var(--sp-2);
        text-align: center;
    }

    .learn-content {
        width: 100%;
        gap: var(--sp-4);
        margin-top: 0;
    }

    .learn-card {
        padding: var(--sp-4);
    }

    .learn-number {
        font-size: 8rem;
        top: -10px;
        right: -10px;
    }
}

/* --- Seção 6: Autoridade --- */
.authority {
    padding: var(--sp-10) 0;
    background-color: var(--bg-main);
}

.authority-container {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}

/* 40% Width Image */
.authority-image-col {
    width: 40%;
    position: relative;
}

.authority-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    transition: transform 0.5s ease;
}

.authority-image-wrapper:hover {
    transform: translateY(-8px);
}

.authority-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.duotone-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
    mix-blend-mode: multiply;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.authority-image-wrapper:hover .duotone-overlay {
    opacity: 0.5;
}

.authority-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent 50%);
}

.authority-badge {
    position: absolute;
    bottom: var(--sp-4);
    left: var(--sp-4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: 500;
    z-index: 2;
}

/* 60% Width Text */
.authority-text-col {
    width: 60%;
    position: relative;
}

.authority-quotes {
    font-size: 120px;
    color: var(--primary);
    opacity: 0.05;
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 0;
}

.authority-text-col .section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--sp-4);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.authority-content {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.authority-content p {
    margin-bottom: var(--sp-3);
}

.authority-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .authority-container {
        flex-direction: column;
        text-align: center;
        gap: var(--sp-6);
    }

    .authority-image-col,
    .authority-text-col {
        width: 100%;
    }

    .authority-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .authority-quotes {
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
    }
}

/* --- Utils de Oferta --- */
.btn-lg {
    font-size: var(--text-lg);
    padding: var(--sp-4) var(--sp-6);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-pulse {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

/* --- Seção 7: Ancoragem / Oferta --- */
.offer {
    padding: 120px 0;
    background-color: #030712;
    position: relative;
    z-index: 1;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.offer-container {
    display: flex;
    justify-content: center;
}

.pricing-board {
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    padding: var(--sp-8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: center;
}

.pricing-header {
    margin-bottom: var(--sp-6);
}

.pricing-header .section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--sp-6);
    line-height: 1.2;
}

.pricing-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--text-base);
    color: #CBD5E1;
}

.pricing-features li strong {
    color: #F8FAFC;
    font-weight: 600;
}

.pricing-features li i {
    color: var(--accent);
    font-size: 24px;
    margin-top: 2px;
}

.highlight-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--sp-3);
    border-radius: var(--border-radius-md);
    margin-top: var(--sp-2);
}

.highlight-feature i {
    color: #F59E0B !important;
}

.pricing-value {
    margin-bottom: var(--sp-6);
    padding-top: var(--sp-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-anchor {
    color: #CBD5E1;
    font-size: var(--text-lg);
    margin-bottom: var(--sp-2);
}

.price-main {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.pricing-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
}

@media (max-width: 576px) {
    .pricing-board {
        padding: var(--sp-5);
    }

    .pricing-features li {
        font-size: var(--text-sm);
    }
}

/* --- Seção 8: FAQ --- */
.faq {
    padding: var(--sp-10) 0;
    background-color: var(--bg-surface);
}

.faq-container {
    display: flex;
    gap: var(--sp-8);
    align-items: flex-start;
}

.faq-header-col {
    width: 40%;
    position: sticky;
    top: 120px;
}

.faq-header-col .section-title {
    font-size: var(--text-5xl);
    line-height: 1.1;
}

.faq-list-col {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-main);
    border: 1px solid #E2E8F0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-4);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    color: var(--text-primary);
    padding-right: var(--sp-3);
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body {
    padding: 0 var(--sp-4) var(--sp-4) var(--sp-4);
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.7;
}

/* Estado Aberto */
.faq-item.open {
    background: var(--bg-surface);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.2);
}

.faq-item.open .faq-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.faq-item.open .faq-icon i {
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: var(--sp-6);
    }

    .faq-header-col,
    .faq-list-col {
        width: 100%;
    }

    .faq-header-col {
        position: relative;
        top: 0;
        text-align: center;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* --- Seção 9: Garantia --- */
.guarantee {
    padding: var(--sp-8) 0 var(--sp-10) 0;
    background-color: var(--bg-surface);
}

.guarantee-container {
    display: flex;
    justify-content: center;
}

.guarantee-box {
    max-width: 600px;
    background-color: rgba(79, 70, 229, 0.03);
    border: 2px dashed rgba(79, 70, 229, 0.3);
    border-radius: var(--border-radius-xl);
    padding: var(--sp-6) var(--sp-5);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.guarantee-box:hover {
    background-color: rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.5);
    transform: translateY(-2px);
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto var(--sp-3) auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.1);
}

.guarantee-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--sp-2);
    color: var(--text-primary);
}

.guarantee-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 576px) {
    .guarantee-box {
        padding: var(--sp-5) var(--sp-4);
        border-radius: var(--border-radius-lg);
    }
}