/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-card: rgba(24, 24, 24, 0.65);
    --bg-card-hover: rgba(30, 30, 30, 0.85);
    
    --primary: #C9A96E;
    --primary-glow: rgba(201, 169, 110, 0.4);
    --secondary: #8A6030;
    --secondary-glow: rgba(138, 96, 48, 0.3);
    --accent: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.3);
    
    --danger: #FF334B;
    --danger-glow: rgba(255, 51, 75, 0.2);
    --success: #00E676;
    --success-glow: rgba(0, 230, 118, 0.2);
    
    --text-light: #F0EDE8;
    --text-muted: #6E6C66;
    --border-color: rgba(201, 169, 110, 0.12);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(138, 96, 48, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201, 169, 110, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

/* ==========================================================================
   BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-md {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-darker);
    border: none;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.header-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 10, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.logo-icon {
    font-size: 1.75rem;
    animation: float 3s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    text-align: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, rgba(138, 96, 48, 0.03) 50%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 110, 0.1);
    color: var(--primary);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.05);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight-text {
    background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ==========================================================================
   VIDEO PLAYER SECTION
   ========================================================================== */
.video-section {
    padding: 60px 0 100px 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

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

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

.video-player-container {
    max-width: 860px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(138, 96, 48, 0.1);
    position: relative;
    background-color: var(--bg-darker);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition-slow);
}

.video-player-container:hover .video-thumbnail {
    transform: scale(1.02);
}

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    color: var(--bg-darker);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
    box-shadow: 0 0 25px var(--primary);
    padding-left: 5px; /* Adjusting play icon offset */
}

.play-icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    background: #ffffff;
    box-shadow: 0 0 35px #ffffff;
    color: var(--bg-darker);
}

.video-overlay-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.video-duration, .video-badge {
    background: rgba(8, 10, 16, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.video-badge {
    color: var(--primary);
    border-color: rgba(201, 169, 110, 0.2);
}

/* ==========================================================================
   COMPARATIVO SECTION
   ========================================================================== */
.comparativo-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.comparativo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.comparativo-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.card-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

/* Negative styling */
.card-negative {
    border-left: 4px solid var(--danger);
}
.card-negative .card-icon {
    color: var(--danger);
}
.card-negative .card-badge {
    background: rgba(255, 51, 75, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 51, 75, 0.2);
}

/* Positive styling */
.card-positive {
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-left: 4px solid var(--primary);
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.03) 0%, rgba(24, 24, 24, 0.65) 100%);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.05);
}
.card-positive:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(201, 169, 110, 0.15);
}
.card-positive .card-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}
.card-positive .card-badge {
    background: rgba(201, 169, 110, 0.1);
    color: var(--primary);
    border: 1px solid rgba(201, 169, 110, 0.2);
}
.glow-badge {
    animation: glow-pulse 2s infinite alternate;
}

/* Comparison List */
.comparativo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.comparativo-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.list-icon {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.card-negative .list-icon {
    color: #FFA726;
}

.card-positive .list-icon {
    color: var(--success);
    filter: drop-shadow(0 0 5px var(--success));
}

.comparativo-list li strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.comparativo-list li p {
    font-size: 0.925rem;
    color: var(--text-muted);
}

/* ==========================================================================
   MECANISMO SECTION (3 PASSOS)
   ========================================================================== */
.mecanismo-section {
    padding: 100px 0;
}

.mecanismo-interactive {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.mecanismo-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 20px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.04);
}

.step-item.active {
    background: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: all var(--transition-normal);
}

.step-item.active .step-num {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-darker);
    border-color: transparent;
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: color var(--transition-normal);
}

.step-item.active .step-text h3 {
    color: var(--primary);
}

.step-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Display screen on right */
.mecanismo-display {
    width: 100%;
}

.display-screen {
    background: #0f121d;
    border-radius: 24px;
    padding: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.screen-frame {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-darker);
}

.step-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 1;
}

.step-img.active {
    opacity: 1;
    z-index: 2;
}

/* Draggable Before-After Slider overlay */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none; /* Controlled by JS */
}

.slider-overlay.active {
    display: block;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-background, .img-foreground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.img-foreground {
    width: 50%; /* Changed by JS */
    border-right: 0px solid transparent;
}

/* Slider Controls */
.slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    z-index: 30;
    cursor: ew-resize;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    background: transparent;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%; /* Changed by JS */
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 0 10px var(--primary);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%; /* Changed by JS */
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 25;
    pointer-events: none;
    box-shadow: 0 0 15px var(--primary-glow);
    transition: background-color var(--transition-fast);
}

.slider:hover ~ .slider-button {
    background-color: var(--primary);
    color: var(--bg-darker);
    box-shadow: 0 0 20px var(--primary);
}

.slider-tags {
    position: absolute;
    bottom: 20px; top: auto;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 15;
    pointer-events: none;
}

.tag-before, .tag-after {
    background: rgba(8, 10, 16, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-after {
    color: var(--primary);
    border-color: rgba(201, 169, 110, 0.3);
}

/* ==========================================================================
   ROI CALCULATOR SECTION
   ========================================================================== */
.roi-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.roi-glow-effect {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 96, 48, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.roi-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
    margin-top: 3rem;
}

.roi-controls {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.roi-controls h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slider-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-info label {
    font-weight: 600;
    font-size: 1.05rem;
}

.slider-val-display {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

/* Custom Input Range styles */
.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: rgba(201, 169, 110, 0.12);
    outline: none;
    transition: background var(--transition-fast);
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: transform var(--transition-fast);
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Calculation Result Card */
.roi-result-card {
    background: linear-gradient(180deg, rgba(255, 51, 75, 0.04) 0%, rgba(17, 22, 37, 0.8) 100%);
    border: 1px solid rgba(255, 51, 75, 0.15);
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    position: relative;
    transition: all var(--transition-normal);
}

.roi-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--danger);
    border-radius: 24px 24px 0 0;
}

.result-header {
    text-align: center;
    margin-bottom: 2rem;
}

.result-header h4 {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.loss-total-display {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--danger);
    text-shadow: 0 0 20px var(--danger-glow);
    line-height: 1.2;
}

.result-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.result-row span {
    color: var(--text-muted);
}

.result-row strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
}

.result-divider {
    border: none;
    height: 1px;
    background: rgba(201, 169, 110, 0.12);
}

/* Calculator Highlight CTA Box */
.result-cta-highlight {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-cta-highlight h5 {
    color: var(--success);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.result-cta-highlight p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.recovered-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.recovered-highlight span {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.recovered-highlight strong {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--success);
    text-shadow: 0 0 10px var(--success-glow);
}

.roi-multiplier {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent) !important;
}

/* ==========================================================================
   LEAD FORM SECTION (CTA FINAL)
   ========================================================================== */
.lead-form-section {
    padding: 100px 0;
    background-image: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.form-info h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.benefit-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.benefit-point i {
    color: var(--primary);
    font-size: 1.25rem;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

/* Form Box card */
.form-container-box {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 25px rgba(201, 169, 110, 0.05);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group label i {
    color: var(--primary);
    opacity: 0.7;
}

.input-group input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    background: rgba(0, 0, 0, 0.3);
}

/* Success Form msg */
.form-success-message {
    text-align: center;
    padding: 2rem 0;
    animation: scale-up 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success-message i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--success-glow));
}

.form-success-message h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    text-align: right;
}

.footer-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   VIDEO STORYBOARD INTERACTIVE MODAL (SIMULADOR)
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 6, 10, 0.9);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fade-in 0.3s ease-out;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 1000px;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201, 169, 110, 0.1);
    animation: slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2.25rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

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

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header h3 i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Storyboard Slideshow Video-Player Simulator */
.storyboard-carousel {
    position: relative;
    min-height: 400px;
}

.storyboard-slide {
    display: none;
}

.storyboard-slide.active {
    display: block;
    animation: fade-in 0.5s ease-out;
}

.slide-timeline-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.bg-negative {
    background: rgba(255, 51, 75, 0.15);
    color: var(--danger);
    border: 1px solid rgba(255, 51, 75, 0.3);
}

.bg-primary {
    background: rgba(201, 169, 110, 0.15);
    color: var(--primary);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.bg-success {
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.bg-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.slide-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.slide-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

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

.grayscale-sepia {
    filter: grayscale(0.8) contrast(1.1);
}

.caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 6, 10, 0.95) 100%);
    padding: 1.5rem;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.caption-overlay .actor {
    color: var(--primary);
    font-weight: 700;
    font-style: normal;
    margin-right: 5px;
}

.slide-text h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.slide-text p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.slide-fact {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.slide-fact i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.slide-cta-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 2rem;
    gap: 1.5rem;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, rgba(17, 22, 37, 0.8) 100%);
}

.slide-cta-banner h3 {
    font-size: 1.6rem;
    line-height: 1.3;
}

.glow-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modal Nav Controls */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.nav-arrow:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary);
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Simulated Video Playback Progress Bar */
.modal-video-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.modal-video-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%; /* Dynamic */
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 0 8px var(--primary);
    transition: width 0.1s linear;
}

.playback-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(0,0,0,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.play-pause-modal-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
}

.play-pause-modal-btn:hover {
    color: #ffffff;
}

.voice-narration-btn {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    margin-left: auto;
    font-family: var(--font-heading);
}

.voice-narration-btn:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.2);
}

.voice-narration-btn.active {
    background: var(--primary);
    color: #0d0f12;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.4);
}

.voice-narration-btn.active i {
    animation: voice-pulse 1s infinite alternate;
}

@keyframes voice-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.18); }
}

.time-counter {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.chapter-indicators {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0 5px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1.4); opacity: 0; }
}

@keyframes glow-pulse {
    from {
        box-shadow: 0 0 10px rgba(201, 169, 110, 0.05);
    }
    to {
        box-shadow: 0 0 25px rgba(201, 169, 110, 0.25);
    }
}

@keyframes animate-pulse {
    0% { opacity: 0.95; }
    50% { opacity: 0.75; }
    100% { opacity: 0.95; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-up {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scale-up {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* AI scanline animation */
.ai-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 10px var(--primary);
    z-index: 10;
    animation: scan 4s linear infinite;
    pointer-events: none;
    opacity: 0;
}

.step-img-active-scan .ai-scanline {
    opacity: 1;
}

@keyframes scan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .mecanismo-interactive {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .mecanismo-display {
        order: -1;
        max-width: 550px;
        margin: 0 auto;
    }
    .roi-container-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .slide-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .slide-visual {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .nav-menu {
        display: none; /* Can build burger/hide on mobile */
    }
    .nav-cta {
        display: block;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .video-section {
        padding: 40px 0 60px 0;
    }
    .comparativo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .comparativo-card {
        padding: 2rem;
    }
    .roi-controls, .roi-result-card, .form-container-box {
        padding: 2rem;
    }
    .loss-total-display {
        font-size: 2.5rem;
    }
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-info {
        align-items: center;
        text-align: center;
    }
    .modal-content {
        padding: 2rem 1.5rem;
    }
    .modal-header h3 {
        font-size: 1.4rem;
    }
    .carousel-nav {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    /* Mobile optimization for clinical cases slider selector */
    .case-selector-container {
        padding: 8px 10px;
        margin-bottom: 10px;
        gap: 6px;
    }
    .case-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
        scrollbar-width: none;
    }
    .case-tabs::-webkit-scrollbar {
        display: none;
    }
    .case-tab {
        white-space: nowrap;
        padding: 6px 12px;
        font-size: 0.72rem;
    }
    .playback-controls {
        padding: 0.6rem 1rem;
        gap: 1rem;
    }
    .voice-narration-btn {
        padding: 0.5rem;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
        margin-left: auto;
    }
    .voice-narration-btn .btn-text {
        display: none;
    }
}


/* ==========================================================================
   CASE SELECTOR TABS FOR BEFORE-AFTER SLIDER
   ========================================================================== */
.case-selector-container {
    position: relative;
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.case-selector-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.case-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.case-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.case-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
}

.case-tab.active {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.1);
}

/* ==========================================================================
   MINIMAL COMPARATIVO & NEW LOGO STYLES (100/100 HIGH PERFORMANCE COPY)
   ========================================================================== */
.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}
.logo-main {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.03em;
}
.logo-sub {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1px;
}
.comparativo-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}
.comparativo-bullet {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}
.comparativo-bullet:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.05);
}
.comparativo-bullet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.comparativo-bullet:hover::before {
    opacity: 1;
}
.bullet-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
}
.bullet-bad {
    color: var(--danger);
}
.bullet-arrow {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 0.95rem;
}
.bullet-good {
    color: var(--success);
    filter: drop-shadow(0 0 4px var(--success-glow));
}
.bullet-text h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    letter-spacing: -0.01em;
}
.bullet-text p {
    font-family: var(--font-body);
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .comparativo-minimal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   URGENCY TOP BAR
   ========================================================================== */
.urgency-bar {
    background: linear-gradient(90deg, #1A1208, #050505, #1A1208);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1001;
    position: relative;
}

.urgency-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.urgency-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: urgency-pulse 1.5s infinite;
}

.highlight-urgency {
    color: var(--primary);
    font-weight: 700;
}

@keyframes urgency-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ==========================================================================
   GATED OFFER REVEAL CONTAINER
   ========================================================================== */
.offer-reveal-container {
    animation: fadeInSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reveal-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reveal-header h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.reveal-sub {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.price-display-wrapper {
    background: rgba(201, 169, 110, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.75rem;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.15);
}

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

.price-anchor-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.plan-details-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.75rem;
    text-align: left;
}

.plan-details-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.plan-details-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-left: 0;
}

.plan-details-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.plan-details-card li i {
    color: var(--success);
    font-size: 0.9rem;
}

.plan-terms-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.reveal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.75rem;
}

.guarantee-text {
    font-size: 0.85rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 6px;
}

.divider-or {
    display: flex;
    align-items: center;
    width: 100%;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0.5rem 0;
}

.divider-or::before, .divider-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.divider-or span {
    padding: 0 10px;
}

.reveal-footer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.login-redirect-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.login-redirect-link:hover {
    color: var(--primary);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION DETAILS/SUMMARY)
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.05);
}

.faq-question {
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    outline: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    font-size: 1rem;
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 1.5rem;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta-mobile.is-visible {
    display: block;
    transform: translateY(0);
}

@media (max-width: 768px) {
    body.has-sticky-cta {
        padding-bottom: 80px;
        --lp-sticky-h: 72px;
    }
}

/* ==========================================================================
   CHAT WIDGET (landing-chat.js) — produto-d não carrega landing-v2.css
   ========================================================================== */
:root {
    --gold: var(--primary);
    --gold-light: #e8d4a8;
    --lp-sticky-h: 0px;
    --lp-safe-bottom: env(safe-area-inset-bottom, 0px);
    --lp-chat-bottom: calc(var(--lp-sticky-h) + var(--lp-safe-bottom) + 14px);
    --lp-chat-panel-bottom: calc(var(--lp-chat-bottom) + 58px);
}

#fpLandingChat {
    position: fixed; inset: 0; pointer-events: none; z-index: 9000;
}
#fpLandingChat > * { pointer-events: auto; }

.fp-chat-fab {
    position: fixed;
    right: max(14px, env(safe-area-inset-right, 14px));
    bottom: var(--lp-chat-bottom);
    z-index: 9001;
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px; border-radius: 100px; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #0a0a0a; font-weight: 700; font-size: 13px;
    font-family: var(--font-body);
    box-shadow: 0 8px 28px rgba(0,0,0,0.45);
    transition: bottom 0.28s ease, transform 0.2s;
}
.fp-chat-fab:active { transform: scale(0.97); }

.fp-chat-panel {
    position: fixed;
    right: max(14px, env(safe-area-inset-right, 14px));
    bottom: var(--lp-chat-panel-bottom);
    z-index: 9002;
    width: min(360px, calc(100vw - 28px));
    height: min(440px, 62dvh);
    background: #111; border: 1px solid rgba(201,169,110,0.28);
    border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    display: none; flex-direction: column; overflow: hidden;
}
.fp-chat-panel.open { display: flex; }

.fp-chat-head {
    padding: 14px 16px; background: #0d0d0d;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.fp-chat-head strong { color: var(--gold); font-size: 14px; }
.fp-chat-head span { font-size: 10px; color: #6E6C66; display: block; margin-top: 2px; }
.fp-chat-close {
    background: none; border: none; color: #888; font-size: 22px; cursor: pointer; line-height: 1;
    padding: 4px 8px;
}

.fp-chat-lead {
    flex: 1; overflow-y: auto; padding: 18px 16px;
    display: flex; flex-direction: column; gap: 12px;
}
.fp-chat-lead p { font-size: 14px; color: #b8b4ad; line-height: 1.5; }
.fp-chat-lead label { font-size: 12px; color: #888; display: block; margin-bottom: 4px; }
.fp-chat-lead input,
.fp-chat-form input,
.fp-chat-inline-lead input {
    width: 100%; background: #181818; border: 1px solid #2a2a2a; border-radius: 8px;
    padding: 12px; color: #F2EFEA; font-size: 16px; outline: none; font-family: var(--font-body);
}
.fp-chat-lead .btn-lead {
    width: 100%; padding: 13px; border: none; border-radius: 8px; cursor: pointer;
    background: var(--gold); color: #0a0a0a; font-weight: 700; font-size: 14px;
}
.fp-chat-lead .btn-skip {
    background: none; border: none; color: #666; font-size: 12px; cursor: pointer;
    text-decoration: underline; padding: 6px 0;
}

.fp-chat-msgs {
    flex: 1; overflow-y: auto; padding: 14px; display: none; flex-direction: column; gap: 10px;
}
.fp-chat-msgs.visible { display: flex; }
.fp-chat-msg {
    max-width: 88%; padding: 10px 12px; border-radius: 12px;
    font-size: 14px; line-height: 1.5; word-break: break-word;
}
.fp-chat-msg.user {
    align-self: flex-end; background: rgba(201,169,110,0.2); color: #F2EFEA;
}
.fp-chat-msg.bot {
    align-self: flex-start; background: #1a1a1a; color: #b8b4ad;
    border: 1px solid rgba(255,255,255,0.05);
}
.fp-chat-msg.typing { color: #6E6C66; font-style: italic; }

.fp-chat-inline-lead {
    align-self: stretch; background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.2);
    border-radius: 10px; padding: 12px; display: flex; flex-direction: column; gap: 8px;
}
.fp-chat-inline-lead button {
    padding: 10px; border: none; border-radius: 6px; background: var(--gold);
    color: #0a0a0a; font-weight: 700; font-size: 13px; cursor: pointer;
}

.fp-chat-form {
    display: none; gap: 8px; padding: 12px;
    padding-bottom: calc(12px + var(--lp-safe-bottom));
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #0a0a0a; flex-shrink: 0;
}
.fp-chat-form.visible { display: flex; }
.fp-chat-form input { flex: 1; min-width: 0; }
.fp-chat-form button {
    padding: 12px 14px; border: none; border-radius: 8px; cursor: pointer;
    background: var(--gold); color: #0a0a0a; font-weight: 700; font-size: 13px;
}

body.chat-open .sticky-cta-mobile {
    transform: translateY(100%) !important;
    visibility: hidden;
}
body.chat-open .fp-chat-fab { display: none; }
body.chat-open { overflow: hidden; }

.wa-pre-offer {
    text-align: center; margin-top: 14px; font-size: 13px;
}
.wa-pre-offer a {
    color: var(--success); text-decoration: none; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
}
.wa-pre-offer a:hover { text-decoration: underline; }

@media (max-width: 860px) {
    .fp-chat-panel.open {
        left: 0; right: 0; bottom: 0;
        width: 100%; max-width: 100%;
        height: min(72dvh, 520px);
        border-radius: 18px 18px 0 0;
    }
    .fp-chat-fab { padding: 11px 15px; font-size: 12px; }
}

@media (min-width: 769px) {
    body.has-sticky-cta { --lp-sticky-h: 0px; }
}
