/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Font Family */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Premium Color Palette */
    --color-primary: #7C3AED;      /* Vibrant Purple */
    --color-secondary: #DB2777;    /* Sleek Magenta */
    --color-success: #10B981;      /* Emerald Green */
    --color-warning: #F59E0B;      /* Amber Yellow */
    --color-info: #3B82F6;         /* Bright Blue */
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
    --grad-primary-hover: linear-gradient(135deg, #6D28D9 0%, #C2185B 100%);
    --grad-bg-glow: radial-gradient(circle at 80% 20%, rgba(219, 39, 119, 0.15) 0%, rgba(124, 58, 237, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    
    /* Neutrals */
    --bg-white: #FFFFFF;
    --bg-section: #F8FAFC;        /* Slate 50 */
    --text-main: #0F172A;         /* Slate 900 */
    --text-muted: #475569;        /* Slate 600 */
    --text-light: #94A3B8;        /* Slate 400 */
    --border-color: #E2E8F0;      /* Slate 200 */
    --border-light: #F1F5F9;      /* Slate 100 */
    
    /* UI Helper Variables */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 35px -5px rgba(0, 0, 0, 0.05), 0 8px 15px -8px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 50px -12px rgba(124, 58, 237, 0.08), 0 15px 30px -15px rgba(219, 39, 119, 0.05);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Containers */
    --container-width: 1200px;
    --container-narrow-width: 600px; /* Centered narrow card width */
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
    background-image: var(--grad-bg-glow);
    background-repeat: no-repeat;
}

body.bg-section-always {
    background-color: var(--bg-section);
    background-image: none;
}

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

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

button, input, select {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.container-narrow {
    max-width: var(--container-narrow-width);
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
}

.btn-primary:hover {
    background: var(--grad-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 39, 119, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--color-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--border-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: rgba(124, 58, 237, 0.03);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.header-container {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo img, .footer-logo img, .logo-img {
    width: 180px !important;
    height: auto !important;
    display: block;
}

.logo-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 48px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background-color: rgba(124, 58, 237, 0.08);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-capture-form {
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    max-width: 580px;
    margin-bottom: 24px;
    background-color: var(--bg-white);
    padding: 8px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.capture-input-wrapper {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 12px;
}

.capture-prefix {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    user-select: none;
    margin-right: 2px;
}

.capture-input-wrapper input {
    width: 100%;
    padding: 10px 4px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.capture-input-wrapper input::placeholder {
    color: var(--text-light);
}

.btn-capture-submit {
    flex-shrink: 0;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    box-shadow: none;
}

.hero-trust-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    padding-left: 4px;
}

.secure-icon {
    flex-shrink: 0;
}

/* ==========================================================================
   SMARTPHONE MOCKUP
   ========================================================================== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background-color: #0F172A;
    border: 12px solid #1E293B;
    border-radius: 40px;
    box-shadow: var(--shadow-lg), 0 30px 70px -10px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-speaker {
    width: 60px;
    height: 4px;
    background-color: #334155;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    flex-grow: 1;
    background-color: #0F172A;
    display: flex;
    flex-direction: column;
    padding: 16px;
    position: relative;
    overflow: hidden;
    color: var(--bg-white);
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 24px;
    margin-top: 4px;
}

.phone-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
}

.app-dashboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.app-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px;
}

.app-avatar-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
}

.app-avatar-glow {
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-full);
    background: var(--grad-primary);
    z-index: 1;
}

.app-avatar {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background-color: #1E293B;
    border: 2px solid #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.avatar-text {
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-profile-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.app-profile-tag {
    font-size: 0.7rem;
    color: var(--text-light);
}

.app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2px;
}

.stat-growth-indicator {
    font-size: 0.65rem;
    font-weight: 600;
}

.stat-growth-indicator.up {
    color: var(--color-success);
}

.app-chart-container {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.chart-title {
    font-size: 0.8rem;
    font-weight: 700;
}

.chart-legend {
    font-size: 0.65rem;
    color: var(--text-light);
}

.chart-svg {
    width: 100%;
    height: 100px;
    margin-top: 4px;
}

.app-toast {
    position: absolute;
    bottom: 24px;
    left: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
    animation: toastSlide 4s infinite ease-in-out;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-content strong {
    font-size: 0.75rem;
    font-weight: 700;
}

.toast-content span {
    font-size: 0.65rem;
    color: var(--text-muted);
}

@keyframes toastSlide {
    0%, 100% {
        transform: translateY(5px);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* ==========================================================================
   BENEFITS GRID & LAYOUT SECTION
   ========================================================================== */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-section);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
}

.benefits-text-side {
    display: flex;
    flex-direction: column;
}

.benefits-intro-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-list-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(124, 58, 237, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-list-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-list-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.benefit-list-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.benefits-mockup-side {
    display: flex;
    justify-content: center;
}

.benefits-phone-widget {
    background-color: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    width: 320px;
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.15);
    color: white;
}

.widget-profile-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.widget-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-primary);
}

.widget-name-box {
    display: flex;
    flex-direction: column;
}

.widget-username {
    font-size: 0.9rem;
    font-weight: 700;
}

.widget-followers-count {
    font-size: 0.75rem;
    color: var(--text-light);
}

.widget-chart-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.widget-bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.bar {
    width: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: height 0.5s ease;
}

.bar.active {
    background: var(--grad-primary);
}

.bar-container span {
    font-size: 0.6rem;
    color: var(--text-light);
}

.widget-growth-metric {
    font-size: 0.75rem;
    color: var(--text-light);
}

.widget-growth-metric strong {
    color: var(--color-success);
}

.growth-arrow {
    color: var(--color-success);
    margin-right: 2px;
}

/* ==========================================================================
   PRICING TABLES SECTION
   ========================================================================== */
.pricing-section {
    padding: 85px 0;
}

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

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.pricing-card.highlighted {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--grad-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.pricing-card.highlighted:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 25px 60px -10px rgba(124, 58, 237, 0.15), 0 20px 40px -15px rgba(219, 39, 119, 0.1);
}

.card-highlight-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(219, 39, 119, 0.2);
}

.pricing-card-header {
    margin-bottom: 24px;
}

.plan-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.plan-connections {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.pricing-card.highlighted .plan-connections {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-height: 48px;
}

.plan-price-block {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-right: 4px;
}

.price-value {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1.5px;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 6px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.check-icon {
    flex-shrink: 0;
}

.pricing-card.highlighted .plan-features li {
    color: var(--text-main);
}

.pricing-card.highlighted .check-icon {
    width: 16px;
    height: 16px;
    padding: 2px;
    border-radius: var(--radius-full);
    background: var(--grad-primary);
}

/* ==========================================================================
   PÁGINA DE CHECKOUT CARD UNIFICADO (Criar Instagram Bundle)
   ========================================================================== */
.checkout-main-content {
    padding-top: 40px;
    padding-bottom: 80px;
}

.checkout-bundle-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 1. Topo: Validação do Perfil do Instagram */
.profile-header-validation {
    background-color: var(--bg-section);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 32px;
}

/* Shimmer Loading State */
.profile-header-loading-shimmer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shimmer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(90deg, #F1F5F9 25%, #E2E8F0 50%, #F1F5F9 75%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s infinite;
}

.shimmer-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.shimmer-line-title {
    width: 140px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, #F1F5F9 25%, #E2E8F0 50%, #F1F5F9 75%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s infinite;
}

.shimmer-line-sub {
    width: 220px;
    height: 10px;
    border-radius: 4px;
    background: linear-gradient(90deg, #F1F5F9 25%, #E2E8F0 50%, #F1F5F9 75%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Real Profile info */
.profile-header-real-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.profile-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-header-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.2);
    text-transform: uppercase;
}

.profile-header-info {
    display: flex;
    flex-direction: column;
}

#header-profile-username {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.profile-header-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-change-profile {
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-change-profile:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: rgba(124, 58, 237, 0.03);
}

/* 2. Pílulas de Serviços */
.services-toggle-bar {
    padding: 24px 32px 0 32px;
}

.toggle-bar-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    display: block;
}

.services-tabs-container {
    background-color: var(--border-light);
    padding: 4px;
    border-radius: var(--radius-full);
    display: flex;
    gap: 4px;
    border: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.tab-btn:hover:not(:disabled) {
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--grad-primary);
    color: var(--bg-white);
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.2);
}

.tab-btn:disabled {
    cursor: default;
}

/* Container de Bloco de Serviços do Bundle */
.bundle-blocks-container {
    padding: 0 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.bundle-block-item {
    position: relative;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
}

.bundle-block-item.active {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: var(--shadow-sm);
}

.bundle-block-item.hidden {
    display: none;
}

.bundle-block-item.collapsed {
    padding: 12px 20px;
    background-color: var(--bg-section);
    border-color: var(--border-color);
}
.bundle-block-item.collapsed .bundle-block-desc,
.bundle-block-item.collapsed .bundle-slider-wrapper {
    display: none !important;
}
.bundle-block-item.collapsed .bundle-block-qty-indicator {
    margin-top: 0;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Botão Fechar Cross no Bloco Dinâmico */
.btn-remove-block {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #dc3545;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.btn-remove-block:hover {
    background-color: #bd2130;
    opacity: 0.9;
    transform: scale(1.08);
}

.bundle-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-right: 20px; /* Evita sobreposição do botão X */
}

.bundle-block-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bundle-block-title-group h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
}

.bundle-block-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.bundle-block-badge.purple { background-color: rgba(124, 58, 237, 0.08); color: var(--color-primary); }
.bundle-block-badge.magenta { background-color: rgba(219, 39, 119, 0.08); color: var(--color-secondary); }
.bundle-block-badge.blue { background-color: rgba(59, 130, 246, 0.08); color: var(--color-info); }

.bundle-block-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
}

.bundle-block-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 16px;
}

.bundle-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 8px;
}

.bundle-range-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--border-color);
    outline: none;
    margin-bottom: 8px;
}

.bundle-range-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    border-radius: var(--radius-full);
}

.bundle-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--bg-white);
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(124, 58, 237, 0.3);
    margin-top: -7px;
    transition: transform 0.15s ease;
}

.bundle-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.bundle-ticks {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
}

.bundle-ticks span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    user-select: none;
}

.bundle-block-qty-indicator {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.bundle-block-qty-indicator strong {
    color: var(--color-primary);
}

/* Grade de Posts Condicional por Bloco */
.block-posts-grid-wrapper {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.posts-grid-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    display: block;
}

.posts-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.posts-grid::-webkit-scrollbar {
    height: 6px;
}

.posts-grid::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: var(--radius-full);
}

.posts-grid::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: var(--radius-full);
}

.post-item {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    background-color: var(--border-light);
    scroll-snap-align: start;
}

.post-item:hover {
    transform: scale(1.05);
}

.post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-item.selected {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.15);
}

.post-item.selected::after {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--color-secondary);
    color: var(--bg-white);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.post-item.is-video::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 6px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid var(--bg-white);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
    z-index: 2;
}

/* 6. Footer de Pagamento Seguro */
.bundle-checkout-action-footer {
    background-color: var(--bg-section);
    border-top: 1px solid var(--border-color);
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.bundle-total-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
}

#bundle-total-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bundle-trust-tagline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================================================
   MODAL DE CADASTRO E RESUMO DO PAGAMENTO
   ========================================================================== */
.modal-billing-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
    text-align: left;
}

.order-bill-summary {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bill-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
}

.bill-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bill-items-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.item-price {
    font-weight: 700;
    color: var(--text-main);
}

.bill-total-row {
    border-top: 1px dashed var(--border-color);
    padding-top: 8px;
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-main);
}

.modal-trust {
    margin-top: 8px;
    border-top: none;
    padding-top: 0;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 85px 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    color: var(--color-primary);
}

.faq-icon-indicator {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
    content: '';
    position: absolute;
    background-color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-icon-indicator::before {
    top: 9px;
    left: 4px;
    width: 12px;
    height: 2px;
}

.faq-icon-indicator::after {
    top: 4px;
    left: 9px;
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-icon-indicator {
    transform: rotate(135deg);
}

.faq-item.active .faq-icon-indicator::before,
.faq-item.active .faq-icon-indicator::after {
    background-color: var(--color-primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--text-main);
    color: var(--bg-white);
    padding-top: 72px;
    border-top: 1px solid #1E293B;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid #1E293B;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-logo .logo-text {
    background: linear-gradient(135deg, #FFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-slogan {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 380px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.links-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

.links-column a {
    font-size: 0.9rem;
    color: #94A3B8;
    transition: var(--transition-smooth);
}

.links-column a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    padding: 32px 0;
    background-color: #0B0F19;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.copyright {
    font-weight: 500;
}

.disclaimer {
    line-height: 1.5;
    opacity: 0.75;
}

/* ==========================================================================
   MODAL OVERLAY & SIMULATED PAY DIALOGS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: var(--transition-smooth);
    padding: 24px;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-card::-webkit-scrollbar {
    width: 6px;
}
.modal-card::-webkit-scrollbar-thumb {
    background-color: var(--text-light);
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-main);
}

.modal-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-body.hidden {
    display: none;
}

.modal-icon-success {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 380px;
}

/* Pix Flow */
.pix-flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}

.pix-qr-wrapper {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    background-color: #FFF;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}

.pix-badge-overlay {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #32B1A4;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.pix-timer-container {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pix-timer-container strong {
    color: var(--color-secondary);
}

.pix-code-copy-box {
    display: flex;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-inset);
}

.pix-code-copy-box input {
    flex-grow: 1;
    background-color: var(--bg-section);
    padding: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: none;
    font-family: monospace;
}

.pix-code-copy-box button {
    flex-shrink: 0;
    border-radius: 0;
    border: none;
    background: var(--grad-primary);
    color: white;
    font-size: 0.85rem;
    padding: 0 16px;
    font-weight: 700;
}

.pix-code-copy-box button:hover {
    background: var(--grad-primary-hover);
}

.modal-instructions {
    text-align: left;
    width: 100%;
    margin-bottom: 24px;
    background-color: rgba(124, 58, 237, 0.02);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-light);
}

.modal-instructions ol {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-instructions li strong {
    color: var(--text-main);
}

.modal-security-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    font-size: 0.75rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    width: 100%;
}

/* Stripe style inside Modal */
.modal-billing-form .form-group input {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-inset);
    width: 100%;
}

.modal-billing-form .form-group input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.btn-confirm-stripe {
    background-color: #0F172A;
    color: var(--bg-white);
    display: flex;
    gap: 10px;
    border: 1px solid #1E293B;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    margin-top: 12px;
}

.btn-confirm-stripe:hover {
    background-color: #1E293B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.lock-stripe-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

/* ==========================================================================
   FLOATING WHATSAPP BUBBLE
   ========================================================================== */
.whatsapp-bubble {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition-smooth);
}

.whatsapp-bubble:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-bubble svg {
    width: 28px;
    height: 28px;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-capture-form {
        max-width: 100%;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.highlighted {
        transform: scale(1);
    }
    
    .pricing-card.highlighted:hover {
        transform: translateY(-4px);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .header-cta {
        display: none;
    }
    
    .nav {
        gap: 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-capture-form {
        flex-direction: column;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }
    
    .capture-input-wrapper {
        background-color: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        padding-left: 16px;
        box-shadow: var(--shadow-sm);
    }
    
    .btn-capture-submit {
        border-radius: var(--radius-sm);
        width: 100%;
        padding: 16px;
        box-shadow: 0 4px 15px rgba(219, 39, 119, 0.25);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .modal-card {
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 24px 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
    
    .whatsapp-bubble svg {
        width: 24px;
        height: 24px;
    }
    
    .profile-header-validation {
        padding: 12px 16px;
    }
    
    .services-toggle-bar {
        padding: 12px 16px 0 16px;
    }
    
    .bundle-blocks-container {
        padding: 0 16px 16px 16px;
        gap: 12px;
        margin-top: 16px;
    }
    
    .bundle-checkout-action-footer {
        padding: 16px 16px;
    }
    
    .bundle-block-item {
        padding: 16px;
    }
    
    .checkout-main-content {
        padding-top: 16px;
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .nav {
        display: none;
    }
    
    .header-container {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .price-value {
        font-size: 2.75rem;
    }
    
    .bundle-ticks span {
        font-size: 0.65rem;
    }
    
    .services-tabs-container {
        flex-direction: row;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Restructured Sections - Home Page (Competitor Layout & Styling)
   ========================================================================== */

/* Hero Image & Layout */
.hero-main-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* 3. Delivery Section */
.delivery-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.delivery-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 64px;
}

.delivery-text-side {
    display: flex;
    flex-direction: column;
}

.delivery-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.delivery-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.delivery-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.delivery-checklist li .check-svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-success);
    margin-top: 2px;
}

.delivery-checklist li span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.delivery-checklist li span strong {
    color: var(--text-main);
}

.delivery-chart-side {
    display: flex;
    justify-content: center;
}

.dark-widget-card {
    background-color: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    width: 340px;
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.15);
    color: white;
    display: flex;
    flex-direction: column;
}

.widget-dark-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-success);
}

.status-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
}

.widget-dark-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.widget-dark-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.smooth-line-chart {
    width: 100%;
    margin-bottom: 20px;
}

.svg-line {
    width: 100%;
    height: auto;
}

.widget-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.stat-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 2px;
}

.stat-lbl {
    font-size: 0.65rem;
    color: var(--text-light);
}

/* 4. Confidence Section */
.confidence-section {
    padding: 80px 0;
    background-color: var(--bg-section);
    border-top: 1px solid var(--border-color);
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.confidence-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.confidence-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.2);
}

.confidence-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(124, 58, 237, 0.06);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.confidence-icon svg {
    width: 24px;
    height: 24px;
}

.confidence-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.confidence-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 5. Timeline / Steps Section */
.timeline-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.timeline-container-card {
    background: #0B0F19;
    border-radius: 32px;
    padding: 60px 48px;
    box-shadow: var(--shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-white {
    color: white !important;
}

.text-purple {
    color: #A78BFA !important;
}

.opacity-75 {
    opacity: 0.75;
}

.timeline-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.timeline-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.timeline-step p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* 7. Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.guarantee-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
}

.guarantee-left h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.guarantee-left p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.guarantee-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.guarantee-badge-item {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 1.8rem;
}

.badge-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main);
}

/* 8. Testimonials Section (Dark Boxes) */
.testimonials-section {
    padding: 80px 0;
    background-color: #0F172A;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card-dark {
    background-color: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: var(--color-warning);
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    position: relative;
}

.author-circle-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #A78BFA;
    font-size: 0.85rem;
}

.author-meta h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.author-meta span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.quote-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    font-family: serif;
    font-weight: 900;
    user-select: none;
}

/* 9. Algorithm Section */
.algorithm-section {
    padding: 80px 0;
    background-color: var(--bg-section);
    border-top: 1px solid var(--border-color);
}

.algorithm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.algo-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.algo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.15);
}

.algo-icon {
    font-size: 2rem;
    margin-bottom: 18px;
    display: inline-block;
}

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

.algo-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 10. Safety Checklist Section */
.safety-checklist-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.safety-checklist-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
}

.safety-desc-side h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.safety-desc-side p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.safety-card-side {
    display: flex;
    justify-content: center;
}

.dark-checklist-card {
    background-color: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    width: 360px;
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.15);
    color: white;
}

.dark-checklist-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
}

.checklist-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.chk-icon {
    color: var(--color-success);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
}

.checklist-items li span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.checklist-items li span strong {
    color: white;
}

/* 11. FAQ Accordion Grid */
.faq-accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 12. FAQ Bottom CTA */
.faq-cta-section {
    padding: 60px 0;
    background-color: var(--bg-section);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.faq-cta-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-cta-container h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.faq-cta-container p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Responsive Media Queries for new elements */
@media (max-width: 992px) {
    .benefits-container,
    .delivery-container,
    .guarantee-container,
    .safety-checklist-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .delivery-checklist {
        align-items: center;
        text-align: left;
    }
    
    .timeline-steps-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .timeline-step {
        align-items: center;
        text-align: center;
    }
    
    .step-num {
        margin: 0 auto 16px auto;
    }
    
    .confidence-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid,
    .algorithm-grid,
    .faq-accordion-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-right {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .confidence-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-right {
        grid-template-columns: 1fr;
    }
    
    .timeline-container-card {
        padding: 32px 20px;
    }
}

/* ==========================================================================
   Section Headers & Typography (SEO & Layout Optimization)
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto; /* Generous bottom spacing below descriptions */
}

.section-pretitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    background-color: rgba(124, 58, 237, 0.06);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.section-pretitle.text-purple {
    color: #A78BFA !important;
    background-color: rgba(167, 139, 250, 0.08) !important;
}

.section-pretitle.text-green {
    color: var(--color-success) !important;
    background-color: rgba(16, 185, 129, 0.08) !important;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-title.text-white {
    color: white !important;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.section-subtitle.text-light {
    color: var(--text-light) !important;
}

/* ==========================================================================
   Testimonials Slider Styling (Dynamic Carousel)
   ========================================================================== */
.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 48px;
    padding-bottom: 40px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonials-slider .testimonial-card-dark {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 32px;
}

@media (min-width: 768px) {
    .testimonials-slider .testimonial-card-dark {
        flex: 0 0 calc(50% - 20px);
        margin: 0 10px;
    }
}

@media (min-width: 992px) {
    .testimonials-slider .testimonial-card-dark {
        flex: 0 0 calc(33.333% - 20px);
        margin: 0 10px;
    }
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background-color: var(--color-secondary);
    transform: scale(1.2);
}

/* ==========================================================================
   SENIOR FRONT-END RESPONSIVE & UX CORRECTIONS
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. CORRECT TEXT ALIGNMENT ON MOBILE (EXCEPT PRICING TABLE) */
    /* Force left-align on standard typography and headers */
    body, h1, h2, h3, h4, h5, h6, p, span, li, a, div {
        text-align: left;
    }

    .hero-container,
    .benefits-container,
    .delivery-container,
    .guarantee-container,
    .safety-checklist-container,
    .hero-content,
    .benefits-text-side,
    .delivery-text-side,
    .guarantee-left,
    .safety-desc-side,
    .confidence-card,
    .algo-card,
    .timeline-step,
    .testimonial-card-dark {
        text-align: left !important;
        align-items: flex-start !important;
    }

    /* Set standard body text, paragraphs and descriptions to left-align */
    p,
    .hero-subtitle,
    .benefits-intro-desc,
    .benefit-list-content p,
    .delivery-desc,
    .confidence-card p,
    .algo-card p,
    .timeline-step p,
    .testimonial-desc,
    .faq-content p,
    .faq-cta-container p,
    .checklist-items li {
        text-align: left !important;
    }

    /* EXCEÇÃO ÚNICA: A tabela/seção de Preços (Pricing Table) deve permanecer 100% centralizada */
    .pricing-section,
    .pricing-section * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        align-items: center !important;
    }

    /* Outros elementos que precisam se manter centralizados */
    .slider-pagination {
        display: flex !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 2. BANNER ORDER (TEXT FIRST, IMAGE SECOND) */
    .hero-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
    .hero-content {
        order: 1 !important;
    }
    .hero-visual {
        order: 2 !important;
    }

    /* 3. MOBILE HAMBURGER MENU & SIDEBAR OVERLAY WITH DYNAMIC WIDTH */
    /* Transform default navigation links into a high z-index overlay sidebar */
    .nav {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        height: 100vh !important;
        z-index: 99999 !important;
        background: #FFFFFF !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important;
        
        /* ESTADO INICIAL (FECHADO) */
        width: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        padding: 80px 0px 24px 0px !important; /* Sem padding horizontal para evitar scroll */
        transition: width 0.4s ease, opacity 0.3s ease, padding 0.4s ease !important;
        
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 20px !important;
    }

    /* ESTADO ATIVO (ABERTO) */
    body.menu-active .nav,
    body.menu-open .nav {
        width: 80% !important;
        opacity: 1 !important;
        padding: 80px 24px 24px 24px !important;
    }

    /* Links inside mobile sidebar */
    .nav-link {
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        color: var(--text-main) !important;
        width: 100% !important;
        border-bottom: 1px solid var(--border-light) !important;
        padding: 12px 0 !important;
        white-space: nowrap !important; /* Evita quebra de texto na animação */
    }
    
    .nav-link::after {
        display: none !important; /* Hide desktop hover underline animation */
    }

    /* Ensure header container is aligned space-between even on small mobile viewports */
    .header-container {
        justify-content: space-between !important;
        display: flex !important;
    }

    /* Exiba um ícone de menu hambúrguer perfeitamente posicionado à direita do logo */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 24px !important;
        height: 18px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        cursor: pointer !important;
        z-index: 100000 !important;
        margin-left: auto !important;
        order: 3 !important;
    }
    
    .mobile-menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background-color: var(--text-main) !important;
        border-radius: 3px !important;
        transition: var(--transition-smooth) !important;
    }

    /* Botão de fechar (X) dentro da sidebar */
    .mobile-menu-close {
        display: block !important;
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        font-size: 2.2rem !important;
        line-height: 1 !important;
        color: var(--text-muted) !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 100001 !important;
        transition: var(--transition-smooth) !important;
        padding: 4px 8px !important;
    }
    
    .mobile-menu-close:hover {
        color: var(--text-main) !important;
    }

    /* Bloqueio de scroll principal ao abrir a sidebar */
    body.menu-active,
    body.menu-open {
        overflow: hidden !important;
    }

    /* Esconde o botão hambúrguer quando o menu estiver ativo */
    body.menu-active .mobile-menu-toggle,
    body.menu-open .mobile-menu-toggle {
        display: none !important;
    }

    /* Tipografia responsiva forçada */
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    h2, .section-title {
        font-size: 1.8rem !important;
    }
}

/* Esconder os botões do menu mobile no desktop (telas maiores que 768px) */
@media (min-width: 769px) {
    .mobile-menu-toggle,
    .mobile-menu-close {
        display: none !important;
    }
}

/* ==========================================================================
   INSTITUTIONAL PAGES STYLING
   ========================================================================== */
.conteudo-institucional {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left !important;
}

.conteudo-institucional h1 {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--text-main);
    text-align: left !important;
}

.conteudo-institucional h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--text-main);
    text-align: left !important;
}

.conteudo-institucional p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-muted);
    text-align: left !important;
}

.conteudo-institucional ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.conteudo-institucional li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text-muted);
    text-align: left !important;
}

.conteudo-institucional .data-atualizacao {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: -12px;
    margin-bottom: 32px;
}

.conteudo-institucional strong {
    color: var(--text-main);
}

.institucional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 40px;
}

.institucional-card {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.institucional-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.15);
}

.institucional-card h4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

/* Form e Layout de Contato */
.contato-container-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 40px;
    margin-top: 32px;
}

.contact-card, .contact-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.contact-card h3, .contact-form-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.premium-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.premium-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: var(--text-main);
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

@media (max-width: 768px) {
    .conteudo-institucional {
        padding: 40px 16px;
    }
    
    .conteudo-institucional h1 {
        font-size: 2rem !important;
    }
    
    .conteudo-institucional h3 {
        font-size: 1.35rem !important;
    }
    
    .conteudo-institucional p,
    .conteudo-institucional li {
        font-size: 0.95rem !important;
    }

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

    .contato-container-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
