/* =========================================================================
   AURA VISUAL IDENTITY VARIABLES - LUXURY, SOFT & PEARLESCENT
   ========================================================================= */
:root {
    /* Palette straight from the style guide image */
    --color-white: #FFFFFF;
    --color-offwhite: #F9FAFB;
    --color-lightgray: #EAEAEA;
    --color-gray: #DCDDCC;
    --color-accent-soft: #E0E5EE;
    /* Light blue/gray from gradient */

    /* Typography colors - Softened significantly */
    --color-text-dark: #5c5c63;
    /* Very soft dark gray for headings */
    --color-text-light: #7c7c85;
    /* Light taupe/gray for body */

    /* Golden Divider / Accents - VERY SUBTLE */
    --color-gold: #c3b8a9;
    /* Subdued, muted champagne/bronze */
    --color-gold-light: #e6e2db;

    /* Multicolored Highlights */
    --gradient-multicolor: linear-gradient(135deg, #a8b8cc 40%, #c8d3e0 100%);

    /* Buttons - Horizontal Blue to Silver Metallic Gradient */
    --gradient-btn: linear-gradient(90deg, #94b16f, #c3ceb3 100%, #94b16f 100%);
    --gradient-btn-hover: linear-gradient(90deg, #9bb0c9 0%, #e2e8f0 100%);

    /* Shadows & Glass - Ultra light for the pure bright feel */
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.02);
    --shadow-deep: 0 12px 40px rgba(160, 170, 180, 0.08);
    /* Light blueish shadow */
    --shadow-btn: 0 8px 16px rgba(184, 203, 225, 0.3);

    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: 1px solid rgba(255, 255, 255, 0.9);

    /* Fonts */
    --font-heading: 'Roboto Slab', serif;
    --font-body: 'Inter', sans-serif;
}

/* =========================================================================
   GLOBAL STYLES & RESETS
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.light-theme {
    background-color: var(--color-offwhite);
    background-image: radial-gradient(circle at top left, #FFFFFF 0%, #F9FAFB 50%, #eff2f5 100%);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* =========================================================================
   UTILITIES
   ========================================================================= */
.text-center {
    text-align: center;
}

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

.text-white {
    color: var(--color-white);
}

.text-gold {
    color: var(--color-gold);
}

.text-huge {
    font-size: 2.5rem;
    line-height: 1;
}

.text-sm {
    font-size: 0.85rem;
}

.font-weight-500 {
    font-weight: 500;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-70 {
    opacity: 0.7;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.p-0 {
    padding: 0;
}

.p-40 {
    padding: 40px;
}

.p-50 {
    padding: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-80 {
    margin-top: 80px;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bg-white {
    background-color: var(--color-white);
}

.bg-offwhite {
    background-color: var(--color-offwhite);
}

.bg-light {
    background-color: var(--color-lightgray);
}

.border-radius-large {
    border-radius: 20px;
}

.box-shadow {
    box-shadow: var(--shadow-soft);
}

.box-shadow-deep {
    box-shadow: var(--shadow-deep);
}

.border-gold {
    border: 1px solid var(--color-gold-light);
}

.border-top-gold {
    border-top: 1px solid var(--color-gold-light);
}

.border-bottom-gold {
    border-bottom: 1px solid var(--color-gold-light);
}

.border-right {
    border-right: 1px solid var(--color-lightgray);
}

.border-bottom-light {
    border-bottom: 1px solid var(--color-lightgray);
}

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

.abs-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-img {
    transform: translateY(0);
    transition: transform 3s ease-in-out;
}

.floating-img:hover {
    transform: translateY(-10px);
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass-panel {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.huge-panel {
    border-radius: 24px;
}

/* Subtle Gold Divider from the Visual Identity Image */
.divisoria-dourada {
    width: 200px;
    height: 1px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 100%);
    margin: 0 auto;
    position: relative;
}

.divisoria-dourada::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background: var(--color-gold);
}

.divisoria-dourada.left {
    margin: 0 0 20px 0;
    background: linear-gradient(to right, var(--color-gold) 0%, transparent 100%);
}

.divisoria-dourada.left::after {
    left: 10px;
    transform: translate(0, -50%) rotate(45deg);
}

.highlight-gradient {
    color: var(--color-text-dark);
    /* Fallback */
    /* The brand text looks like a dark subtle gray with a tiny iridescent shine in some parts, or metallic */
    background: var(--gradient-multicolor);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.highlight-gradient-bg {
    background: var(--gradient-multicolor);
    color: var(--color-text-dark);
}

/* Badges and Check-lists softened */
.badge {
    background: rgba(195, 184, 169, 0.15);
    /* Soft gold transparent */
    color: var(--color-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid var(--color-gold-light);
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.check-list .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: bold;
    background: var(--color-white);
    color: var(--color-gold);
    border: 1px solid var(--color-gold-light);
}

/* =========================================================================
   BUTTONS (Subtle Metallic Blue/White gradient)
   ========================================================================= */
.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-btn);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.125rem;
    border-radius: 50px;
    border: 2px solid #ffffff;
    box-shadow: var(--shadow-btn);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(184, 203, 225, 0.5);
    background: var(--gradient-btn-hover);
}

.btn-primary-sm {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gradient-btn);
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 50px;
    border: 1px solid #ffffff;
}

.btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid var(--color-gray);
    color: var(--color-text-dark);
    font-weight: 500;
    border-radius: 50px;
    background: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-text-dark);
}

.pulse-anim {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 203, 225, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(184, 203, 225, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184, 203, 225, 0);
    }
}

/* =========================================================================
   LAYOUT GRIDS (FLEX & CSS GRID)
   ========================================================================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.row-mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.row-mobile-stack.no-gap {
    gap: 0;
}

.row-mobile-stack.reverse-mobile {
    flex-direction: column-reverse;
}

.col-6 {
    width: 100%;
    flex: 1;
}

.col-5 {
    width: 100%;
}

.col-7 {
    width: 100%;
}

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

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .row-mobile-stack {
        flex-direction: row;
    }

    .row-mobile-stack.reverse-mobile {
        flex-direction: row;
    }

    .col-5 {
        width: 41.666%;
    }

    .col-6 {
        width: 50%;
    }

    .col-7 {
        width: 58.333%;
    }

    .hidden-mobile {
        display: block;
    }

    .border-radius-large-right {
        border-radius: 0 24px 24px 0;
    }
}

/* =========================================================================
   HEADER (EXACT REFERENCE MATCH)
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.015) 10px, rgba(0, 0, 0, 0.015) 11px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-lightgray);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    transition: padding 0.3s ease;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1.8rem;
    color: #92a7ca;
    /* Soft blue */
}

.logo-divider {
    width: 1px;
    height: 28px;
    background-color: #d1d5db;
    margin: 0 15px;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    line-height: 1.3;
    color: #9cba9c;
    /* Soft green */
    font-weight: 500;
    text-transform: uppercase;
}

.btn-video-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #c8d3e0;
    border-radius: 6px;
    background: var(--color-white);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-video-nav:hover {
    border-color: #92a7ca;
    background: #f8f9fa;
}

.btn-video-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    background: #aabcea;
    color: var(--color-white);
    border-radius: 4px;
    font-size: 0.6rem;
    box-shadow: 0 2px 4px rgba(170, 188, 234, 0.4);
}


/* =========================================================================
   HERO 
   ========================================================================= */
.hero {
    padding: 140px 0 60px 0;
    overflow: hidden;
    position: relative;
}

.bg-gradient-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(234, 243, 250, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 16px auto 20px auto;
    z-index: 10;
}

.video-glass {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 20px;
    z-index: -1;
    box-shadow: var(--shadow-deep);
}

@media (max-width: 768px) {
    .hl-line-1 {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .hl-line-2 {
        font-size: 1.4rem;
    }
}

/* =========================================================================
   TICKER (INFINITE MARQUEE)
   ========================================================================= */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-offwhite);
    border-top: 1px solid var(--color-lightgray);
    border-bottom: 1px solid var(--color-lightgray);
    color: var(--color-text-light);
    padding: 12px 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 0.85rem;
}

.ticker span {
    padding-right: 50px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================================
   VIDEO CARDS (DEPOIMENTOS)
   ========================================================================= */
.section-title {
    font-size: 2rem;
}

.huge-title {
    font-size: 3rem;
    margin-bottom: 0;
    color: var(--color-text-dark);
}

.vid-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    background: var(--color-lightgray);
}

.vid-card img {
    width: 100%;
    display: block;
    opacity: 0.9;
}

.vid-card:hover {
    transform: translateY(-5px);
}

.vid-card:hover img {
    opacity: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-text-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-indent: 4px;
    box-shadow: var(--shadow-deep);
}

/* =========================================================================
   PILARES (CARDS)
   ========================================================================= */
.card {
    padding: 40px 20px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.card-title-highlight {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100% !important;
    min-height: 110px;

    padding: 14px 18px;
    border-radius: 16px;

    background: linear-gradient(135deg, #dfe6f2, #cfd8ea) !important;

    color: #243447 !important;
    font-size: 25px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: center !important;

    font-family: var(--font-body);

    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: #3675a6 !important;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--font-heading);
    background: var(--color-white);
    color: var(--color-text-dark);
    border: 1px solid var(--color-lightgray);
}

/* ===== AJUSTE VISUAL DOS CARDS DO MÉTODO ===== */
.card {
    padding: 34px 28px;
    border-radius: 20px;
}

.card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px auto;
    font-size: 1.7rem;
    font-weight: 500;
    background: linear-gradient(135deg, #a5b9d2 0%, #c8d3e0 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 24px rgba(146, 167, 202, 0.22);
}

.card h3,
.card h4 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1.35;
    font-weight: 500;
    margin: 0 0 14px 0;
    background: linear-gradient(135deg, #7f96bb 0%, #9cba9c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.card p {
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--color-text-light);
    max-width: 30ch;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .card {
        padding: 28px 22px;
    }

    .card h3,
    .card h4 {
        font-size: 1.45rem;
        margin-bottom: 12px;
    }

    .card p {
        font-size: 0.95rem;
        line-height: 1.65;
        max-width: 100%;
    }
}

/* =========================================================================
   PRICING
   ========================================================================= */
.plan {
    position: relative;
    border-radius: 20px;
    background: var(--glass-bg);
    border: var(--glass-border);
}

.plan.featured {
    transform: scale(1.05);
    z-index: 5;
    background: var(--color-white);
    box-shadow: var(--shadow-deep);
}

@media (max-width: 768px) {
    .plan.featured {
        transform: scale(1);
    }
}

.badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: var(--color-text-dark);
    color: var(--color-white);
}

.price {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.divider-light {
    border: 0;
    border-top: 1px solid var(--color-lightgray);
    margin: 20px 0;
}

/* =========================================================================
   MOCKUP WALL (MODULOS)
   ========================================================================= */
.module-wall {
    padding: 40px 0;
}

.floating-badge {
    position: absolute;
    width: 120px;
    height: 120px;
}

.abs-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =========================================================================
   ANIMATIONS & UX - DIRECTIONAL REVEALS (BASED ON VIDEO)
   ========================================================================= */

/* The base state for any animatable element */
.reveal-elem {
    opacity: 0;
    will-change: transform, opacity;
}

/* 1. Slide Up Soft (Used for most cards, text blocks, titles) */
.slide-up {
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* 2. Slide In Right (Used for text next to images like Drieli's section) */
.slide-in-right {
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 3. Slide In Left (Used for images like Drieli entering) */
.slide-in-left {
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 4. Scale Up (Used for Pricing Blocks and the central Module Wall) */
.scale-up {
    transform: scale(0.9);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* If a featured pricing scale is visible, map to 1.05 instead of 1 */
.scale-up.featured.visible {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .scale-up.featured.visible {
        transform: scale(1);
    }
}

/* Stagger Delays (Cascade Effect on Grids) */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* Shine Effect (The light bolt for main checkout button) */
.btn-primary.shine {
    position: relative;
    overflow: hidden;
}

.btn-primary.shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shineLight 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shineLight {

    0%,
    60% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* =========================================================================
   SOCIAL PROOF NOTIFICATION (TOAST - SEEN IN VIDEO)
   ========================================================================= */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-lightgray);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(50px) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 300px;
}

.toast.toast-show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.toast-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef2f7, #e3e9f2);

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    font-size: 13px;
    color: #30858e;

    flex-shrink: 0;
}

.toast-info h5 {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 2px;
}

.toast-info p {
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.2;
}

.toast-icon {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* =========================================================================
   INFINITE TICKER TAPE (FAIXA AZUL)
   ========================================================================= */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #92a7ca 0%, #758bb0 100%);
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 25px;
}

.ticker-big {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}

.ticker-div {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 4px;
    font-weight: 300;
}

.ticker-small {
    font-size: 0.65rem;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    display: flex;
    flex-direction: column;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }

    .hidden-mobile {
        display: none;
    }

    .border-right {
        border-right: none;
        border-bottom: 1px solid var(--color-lightgray);
    }

    .toast-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        width: 90%;
    }

    .toast {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* =========================================================================
   ANIMATED COMMISSIONS TICKER
   ========================================================================= */
.commissions-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-offwhite);
    padding: 15px 0;
    position: relative;
    z-index: 9;
}

.comm-card-wrapper {
    background: linear-gradient(135deg, #d3e8ce 0%, #8ac795 100%);
    /* Borda verde claro gradiente */
    padding: 2px;
    border-radius: 10px;
    display: inline-block;
    margin: 0 8px;
}

.comm-card {
    background: #ffffff;
    border-radius: 9px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comm-icon {
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.comm-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.comm-icon svg {
    width: 16px;
    height: 16px;
}

.comm-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.comm-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 2px;
}

.comm-title {
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
}

.comm-time {
    color: #a0a0a0;
    font-size: 0.6rem;
}

.comm-bottom {
    color: #999;
    font-size: 0.7rem;
}

/* =========================================================================
   WhatsApp MOCKUP (SOCIAL PROOF)
   ========================================================================= */
.whatsapp-mockup {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    background: #efe7dd;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border: 5px solid #ffffff;
    position: relative;
}

.wa-header {
    background: #008069;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-align: left;
    z-index: 2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wa-avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-info {
    display: flex;
    flex-direction: column;
}

.wa-info strong {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.wa-info span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.wa-body {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
    position: relative;
}

.wa-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(239, 231, 221, 0.6);
    z-index: 0;
}

.txt-date {
    background: #e1f3fb;
    color: #5a6870;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 10px;
    margin: 0 auto 10px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    z-index: 1;
    text-transform: uppercase;
}

.wa-msg {
    padding: 8px 12px 10px;
    border-radius: 8px;
    position: relative;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #111;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-align: left;
    z-index: 1;
}

.msg-in {
    background: #ffffff;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.msg-out {
    background: #d9fdd3;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.msg-in::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    border-top: 10px solid #ffffff;
    border-left: 10px solid transparent;
}

.msg-out::before {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    border-top: 10px solid #d9fdd3;
    border-right: 10px solid transparent;
}

.wa-name {
    display: block;
    color: #eb5528;
    font-weight: 500;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.wa-time {
    font-size: 0.65rem;
    color: #667781;
    float: right;
    margin-left: 10px;
    padding-top: 6px;
}

.wa-read {
    color: #53bdeb;
    /* Blue ticks */
    font-weight: bold;
    font-style: normal;
    font-size: 0.75rem;
    margin-left: 2px;
}

.wa-footer {
    background: #f0f2f5;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.wa-input {
    background: #ffffff;
    border-radius: 20px;
    padding: 10px 15px;
    flex: 1;
    color: #888;
    font-size: 0.9rem;
    text-align: left;
}

.wa-mic-container {
    background: #00a884;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.wa-mic {
    color: #fff;
    font-size: 1.1rem;
}

.whatsapp-wrapper {
    max-width: 980px;
    margin: 40px auto 0;
    padding: 28px 20px;
    border-radius: 28px;
    background: linear-gradient(135deg, #eef2f7, #e3e9f2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.whatsapp-proofs-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    align-items: end;
    justify-items: center;
}

.whatsapp-img {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.whatsapp-img-small {
    max-width: 220px;
}

.whatsapp-img-center {
    max-width: 260px;
}

@media (max-width: 768px) {
    .whatsapp-wrapper {
        max-width: 320px;
        padding: 18px 14px;
        border-radius: 22px;
    }

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

    .whatsapp-img,
    .whatsapp-img-small,
    .whatsapp-img-center {
        max-width: 240px;
        width: 100%;
    }
}



/* =========================================================================
   MPS BLUE BOX SECTION
   ========================================================================= */
.mps-blue-box {
    position: relative;
    background: linear-gradient(135deg, #dce5f0 0%, #bacbe2 100%);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(110, 137, 191, 0.25), inset 0 2px 5px rgba(255, 255, 255, 0.5);
    margin-top: 60px;
    margin-bottom: 70px;
    padding: 70px 40px 80px;
    display: flex;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mps-top-badge {
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    /* Darker metallic blue as seen in original image */
    background: linear-gradient(180deg, #8ba2d4 0%, #758bb0 100%);
    padding: 18px 45px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.mps-top-badge h2 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mps-top-badge em {
    font-style: italic;
    font-weight: 600;
}

.mps-box-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.mps-col-left,
.mps-col-right {
    width: 48%;
    color: #4b5f82;
    /* Restored to dark aesthetic for readability against the gif */
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.mps-col-left p,
.mps-col-right p {
    margin-bottom: 22px;
}

.mps-col-left strong,
.mps-col-right strong {
    background: linear-gradient(90deg, #6c9c6c 0%, #8595a8 100%);
    /* Deepened green and silver for white/light background readability */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}

.mps-expert-img {
    position: relative;
    width: 100%;
    max-width: 340px;
    height: auto;
    z-index: 5;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.mps-col-center {
    width: 28%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mps-titulozinho {
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #3b4c6b;
    line-height: 1.4;
}

.mps-bottom-badge {
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: linear-gradient(180deg, #8ba2d4 0%, #758bb0 100%);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 4;
    /* Behind the expert image */
    width: 90%;
}

.mps-acronyms {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mps-acronyms li {
    color: #ffffff;
    font-size: 0.75rem;
    margin-bottom: 6px;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.mps-acronyms li:last-child {
    margin-bottom: 0;
}

/* Responsive Overrides */
@media (max-width: 950px) {
    .mps-box-content {
        flex-direction: column;
        align-items: center;
    }

    .mps-col-left,
    .mps-col-right {
        width: 100%;
        text-align: center;
    }

    .mps-col-center {
        width: 100%;
        height: auto;
        margin: 30px 0;
    }

    .mps-expert-img {
        max-width: 100%;
    }

    .mps-top-badge h2 {
        font-size: 1.2rem;
        white-space: normal;
        text-align: center;
    }

    .mps-top-badge {
        width: 90%;
        top: -30px;
        padding: 12px 20px;
    }

    .mps-bottom-badge {
        width: 95%;
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        margin-top: 30px;
    }

    .mps-blue-box {
        padding: 60px 20px 30px;
        display: block;
    }

    .mps-acronyms li {
        text-align: center;
    }
}

@media (max-width: 768px) {

    .cta-wrapper {
        padding: 0 10px !important;
    }

    .btn-primary {
        display: block !important;
        width: 100% !important;

        padding: 14px 0 !important;
        font-size: 0.95rem !important;

        text-align: center;
    }

}

@media (max-width: 768px) {
    .headline {
        margin-bottom: 10px !important;
    }

    .video-wrapper {
        margin: 10px auto 16px auto !important;
    }
}

/* SUBHEADLINE */
.hero p {
    font-size: 0.95rem !important;
    line-height: 1.4;
}

/* ===== FIX HEADLINE MOBILE (SEM QUEBRAR DESKTOP) ===== */

/* REMOVE comportamento que estava quebrando layout */
.hl-line-2 em {
    white-space: normal !important;
}

/* MOBILE */
@media (max-width: 768px) {

    .hl-block {
        max-width: 310px;
        margin: 0 auto 6px auto;
        line-height: 1.18;
    }

    .hl-line-1,
    .hl-line-2 {
        display: block !important;
        text-align: center;
        white-space: normal !important;
    }

    .hl-line-1 {
        font-size: 1.15rem !important;
        margin-bottom: 2px;
    }

    .hl-line-2 {
        font-size: 1.15rem !important;
    }

    .headline {
        margin-bottom: 10px !important;
    }

    .video-wrapper {
        margin: 10px auto 16px auto !important;
    }

}

@media (max-width: 768px) {
    .cta-subtext {
        font-size: 0.30rem !important;
        white-space: center;
    }
}