﻿/* ==========================================================================
   CLOVER SITES — PREMIUM WEBSITE STYLESHEET (style.css)
   ========================================================================== */

/* --- Custom Variables & Reset --- */
:root {
    /* Color Palette */
    --color-offwhite-warm: #FAF9F6;
    --color-creme-mineral: #F5F2EB;
    --color-areia: #E6DFD3;
    --color-verde-floresta: #0F2E1B;
    --color-verde-musgo: #2A3A2B;
    --color-verde-oliva: #3D4A3E;
    --color-grafite: #222222;
    --color-preto-suave: #121212;
    --color-cinza-mineral: #4E534F;
    
    /* Active Themes Colors (Toggled on scroll/sections) */
    --bg-current: var(--color-preto-suave);
    --text-current: var(--color-offwhite-warm);
    --border-current: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Syne', sans-serif;
    
    /* Layout Constants */
    --header-height: 80px;
    --container-width: 1200px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-micro: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-current);
    color: var(--text-current);
    overflow-x: clip;
    transition: background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1.6;
}

/* --- Theme Classes (Global for Header/Body) --- */
.theme-dark {
    --bg-current: var(--color-preto-suave);
    --text-current: var(--color-offwhite-warm);
    --border-current: rgba(255, 255, 255, 0.08);
}

.theme-light {
    --bg-current: var(--color-offwhite-warm);
    --text-current: var(--color-grafite);
    --border-current: rgba(0, 0, 0, 0.08);
}

.theme-natural {
    --bg-current: var(--color-verde-floresta);
    --text-current: var(--color-creme-mineral);
    --border-current: rgba(245, 242, 235, 0.12);
}

/* --- Section Local Themes (Fix for contrast bugs) --- */
.dark-bg {
    background-color: var(--color-preto-suave);
    color: var(--color-offwhite-warm);
    --bg-current: var(--color-preto-suave);
    --text-current: var(--color-offwhite-warm);
    --border-current: rgba(255, 255, 255, 0.08);
}

.light-bg {
    background-color: var(--color-offwhite-warm);
    color: var(--color-grafite);
    --bg-current: var(--color-offwhite-warm);
    --text-current: var(--color-grafite);
    --border-current: rgba(0, 0, 0, 0.08);
}

.natural-bg {
    background-color: var(--color-verde-floresta);
    color: var(--color-creme-mineral);
    --bg-current: var(--color-verde-floresta);
    --text-current: var(--color-creme-mineral);
    --border-current: rgba(245, 242, 235, 0.12);
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
}

/* --- Layout Elements --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
    padding: 120px 0;
    width: 100%;
}

/* --- Navigation Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo handling */
.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.4s ease, height 0.3s ease;
}

/* Toggle Logo Green / Logo White */
body.theme-light .main-header .logo-white {
    display: none;
}
body.theme-light .main-header .logo-green {
    display: block;
}
body.theme-dark .main-header .logo-white,
body.theme-natural .main-header .logo-white {
    display: block;
}
body.theme-dark .main-header .logo-green,
body.theme-natural .main-header .logo-green {
    display: none;
}

/* Nav Menu */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    transition: var(--transition-micro);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: var(--transition-micro);
}

.nav-item:hover, .nav-item.active {
    opacity: 1;
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

/* Actions & Instagram Handle */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition-micro);
}

.instagram-link:hover {
    opacity: 1;
}

.social-icon {
    width: 18px;
    height: 18px;
}

/* Sticky Header States */
.main-header.scrolled {
    height: 70px;
    background-color: rgba(var(--bg-current-rgb, 18, 18, 18), 0.7);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--border-current);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

body.theme-light .main-header.scrolled {
    background-color: rgba(250, 249, 246, 0.8);
}
body.theme-dark .main-header.scrolled {
    background-color: rgba(18, 18, 18, 0.8);
}
body.theme-natural .main-header.scrolled {
    background-color: rgba(15, 46, 27, 0.8);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-micro);
    cursor: pointer;
}

.btn-premium-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 30px;
    background-color: var(--text-current);
    color: var(--bg-current);
    border: 1px solid transparent;
}

.btn-premium-sm:hover {
    background-color: transparent;
    color: var(--text-current);
    border-color: var(--text-current);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--color-offwhite-warm);
    color: var(--color-preto-suave);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-offwhite-warm);
    border-color: var(--color-offwhite-warm);
    transform: translateY(-2px);
}

body.theme-light .btn-primary {
    background-color: var(--color-verde-floresta);
    color: var(--color-offwhite-warm);
}
body.theme-light .btn-primary:hover {
    background-color: transparent;
    color: var(--color-verde-floresta);
    border-color: var(--color-verde-floresta);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-current);
    border: 1px solid var(--border-current);
}

.btn-secondary:hover {
    background-color: var(--text-current);
    color: var(--bg-current);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-current);
    border: 1px solid var(--text-current);
}

.btn-outline:hover {
    background-color: var(--text-current);
    color: var(--bg-current);
}

.btn-white {
    background-color: var(--color-creme-mineral);
    color: var(--color-verde-floresta);
    border: 1px solid transparent;
}

.btn-white:hover {
    background-color: transparent;
    color: var(--color-creme-mineral);
    border-color: var(--color-creme-mineral);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
}

.background-atmosphere {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.ambient-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(15, 46, 27, 0.4) 0%, rgba(18, 18, 18, 0) 70%);
    filter: blur(80px);
}

.organic-blob {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(42, 58, 43, 0.25) 0%, rgba(18, 18, 18, 0) 80%);
    border-radius: 50%;
    filter: blur(60px);
    animation: slow-drift 20s infinite alternate ease-in-out;
}

@keyframes slow-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, -5%) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-symbol-wrapper {
    margin-bottom: 32px;
}

.hero-symbol {
    width: 64px;
    height: auto;
    opacity: 0.95;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 40px auto;
    opacity: 0.85;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background-color: var(--border-current);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--text-current);
    animation: scroll-drop 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scroll-drop {
    0% { top: -30%; }
    100% { top: 100%; }
}

/* --- Editorial "Mais do que um site" --- */
.editorial-section {
    overflow: hidden;
    min-height: 70dvh;
    display: flex;
    align-items: center;
}

.parallax-text-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
}

.parallax-text {
    font-family: var(--font-serif);
    font-size: 28vw;
    font-weight: 700;
    white-space: nowrap;
    will-change: transform;
    transform: translateX(0);
}

.editorial-container {
    position: relative;
    z-index: 2;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.editorial-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-verde-floresta);
    display: block;
    margin-bottom: 16px;
}

.editorial-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
}

.editorial-paragraph {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 24px;
}

.editorial-paragraph.lead {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-verde-floresta);
    line-height: 1.5;
}

/* --- Pilares Section --- */
.section-header {
    margin-bottom: 80px;
}

.section-header.text-center {
    text-align: center;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-verde-oliva);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 16px auto 0 auto;
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pilar-item {
    position: relative;
    padding-top: 32px;
    transition: var(--transition-smooth);
}

.pilar-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-current);
}

.pilar-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.3;
    display: block;
    margin-bottom: 16px;
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.pilar-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.5;
    transition: opacity 0.5s ease, color 0.5s ease;
}

.pilar-text {
    font-size: 1rem;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

/* Pilar Active State */
.pilar-item.pilar-active .pilar-number {
    opacity: 1;
    transform: scale(1.03);
    color: var(--color-verde-floresta);
}

body.theme-natural .pilar-item.pilar-active .pilar-number {
    color: var(--color-creme-mineral);
}

.pilar-item.pilar-active .pilar-title {
    opacity: 1;
    color: var(--color-verde-floresta);
}

body.theme-natural .pilar-item.pilar-active .pilar-title {
    color: var(--color-creme-mineral);
}

.pilar-item.pilar-active .pilar-text {
    opacity: 0.95;
}

/* Pilar Passed State */
.pilar-item.pilar-passed .pilar-number {
    opacity: 0.6;
}

.pilar-item.pilar-passed .pilar-title {
    opacity: 0.75;
}

.pilar-item.pilar-passed .pilar-text {
    opacity: 0.75;
}

/* --- Experiências (Site Essencial vs Site Experience) --- */
.experiencias-section {
    background-color: var(--color-verde-floresta);
}

.experiencias-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 60px;
    align-items: stretch;
}

.exp-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.exp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.exp-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    display: block;
    margin-bottom: 12px;
}

.exp-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.exp-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.price-container {
    margin-top: 24px;
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 500;
    vertical-align: super;
}

.price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-value.highlight {
    color: var(--color-creme-mineral);
}

.price-details {
    display: block;
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 4px;
}

.price-secondary {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 8px;
}

.exp-divider {
    height: 1px;
    background-color: rgba(245, 242, 235, 0.12);
    margin: 32px 0;
}

.exp-concept {
    font-size: 0.95rem;
}

.flow-chart {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    border-radius: 12px;
    margin: 12px 0;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow-x: auto;
}

.flow-arrow {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.concept-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 8px;
}

.features-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-areia);
    flex-shrink: 0;
    margin-top: 2px;
}

.sparkles-icon {
    width: 18px;
    height: 18px;
    color: #ffd700;
    flex-shrink: 0;
}

/* Featured Card styling (Site Experience) */
.featured-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 242, 235, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.featured-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 0%, rgba(245, 242, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.featured-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--color-creme-mineral);
    color: var(--color-verde-floresta);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-footer-btn {
    margin-top: 60px;
}

/* --- Case Section (No Spetto) --- */
.case-section {
    padding-bottom: 140px;
}

.case-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-bottom: 48px;
}

.case-badge-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

.case-project-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.case-project-type {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--border-current);
    padding: 4px 10px;
    border-radius: 12px;
}

.case-description {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.case-quote {
    font-family: var(--font-serif);
    font-style: italic;
    opacity: 0.6;
    font-size: 1.1rem;
    border-left: 2px solid var(--color-verde-oliva);
    padding-left: 16px;
}

/* --- Browser Mockup & Embedded Simulator --- */
.case-preview-wrapper {
    background-color: var(--color-creme-mineral);
    border-radius: 16px;
    border: 1px solid var(--border-current);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

.mockup-header {
    background-color: rgba(0, 0, 0, 0.04);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-current);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-dots .red { background-color: #ff5f56; }
.mockup-dots .yellow { background-color: #ffbd2e; }
.mockup-dots .green { background-color: #27c93f; }

.mockup-url {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 6px 40px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-cinza-mineral);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.visit-btn {
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--color-verde-floresta);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.visit-btn:hover {
    opacity: 0.8;
}

.icon-inline {
    width: 14px;
    height: 14px;
}

/* Simulated Viewport inside Clover */
.mockup-viewport {
    background-color: #fff;
    min-height: 550px;
    position: relative;
    overflow-y: auto;
    max-height: 700px;
}

/* Spetto Simulator Layout (styled based on the restaurant identity: charcoal/gold/rust-red) */
.spetto-simulator {
    background-color: #0c0b0a;
    color: #ebd7c8;
    font-family: var(--font-sans);
    padding: 0;
}

.sim-header {
    background-color: rgba(12, 11, 10, 0.95);
    border-bottom: 1px solid rgba(235, 215, 200, 0.1);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand-spetto {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    color: #d65a31;
    letter-spacing: 1px;
}

.sim-hours {
    font-size: 0.75rem;
    color: #ff5f56;
}

.sim-btn-reservar {
    background-color: #d65a31;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

/* Simulator Hero */
.sim-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 60px 48px;
    align-items: center;
    border-bottom: 1px solid rgba(235, 215, 200, 0.08);
}

.sim-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #d65a31;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.sim-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.sim-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 24px;
}

.sim-ctas {
    display: flex;
    gap: 12px;
}

.sim-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.sim-btn-primary {
    background-color: #d65a31;
    color: #fff;
}

.sim-btn-outline {
    background-color: transparent;
    color: #ebd7c8;
    border: 1px solid rgba(235, 215, 200, 0.3);
}

.sim-hero-img-box {
    display: flex;
    justify-content: center;
}

.sim-hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 250px;
}

/* Simulator Interactivity UI */
.sim-interactive-section {
    padding: 60px 48px;
    background-color: #121110;
}

.sim-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.sim-section-header h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #ffffff;
}

.sim-section-header p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 8px;
}

.sim-flow-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.sim-flow-card {
    background-color: #1c1a18;
    border: 1px solid rgba(235, 215, 200, 0.1);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.sim-flow-card:hover, .sim-flow-card.active {
    border-color: #d65a31;
    background-color: rgba(214, 90, 49, 0.05);
}

.sim-flow-card-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #d65a31;
}

.sim-flow-card h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.sim-flow-card p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.sim-interactive-form-box {
    background-color: #1a1817;
    border: 1px solid rgba(235, 215, 200, 0.08);
    border-radius: 8px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto;
    animation: fade-in 0.4s ease;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-title {
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(235, 215, 200, 0.1);
    padding-bottom: 8px;
}

.sim-input-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.sim-input {
    background-color: #121110;
    border: 1px solid rgba(235, 215, 200, 0.15);
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 100%;
}

.sim-input:focus {
    outline: none;
    border-color: #d65a31;
}

.sim-products-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.sim-product-item {
    background-color: #121110;
    border: 1px solid rgba(235, 215, 200, 0.1);
    padding: 16px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}

.sim-product-item:hover {
    border-color: rgba(235, 215, 200, 0.3);
}

.sim-product-item.selected {
    border-color: #d65a31;
    background-color: rgba(214, 90, 49, 0.05);
}

.sim-product-item .item-name {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.sim-product-item .item-price {
    font-size: 0.85rem;
    color: #d65a31;
}

.sim-product-item .add-indicator {
    opacity: 0.5;
    transition: 0.2s;
}

.sim-product-item.selected .add-indicator {
    color: #d65a31;
    opacity: 1;
    transform: rotate(45deg);
}

.sim-selected-summary {
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.sim-btn-send-whatsapp {
    width: 100%;
    background-color: #25d366;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* --- Strategic Flow Section --- */
.jornada-section {
    padding: 140px 0;
}

.jornada-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0 100px 0;
}

.j-pillar {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 24px;
}

.j-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-creme-mineral);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.j-text {
    font-size: 0.95rem;
    opacity: 0.75;
}

/* Jornada Flow Steps visual flow */
.jornada-flow-container {
    max-width: 600px;
    margin: 0 auto;
}

.flow-header {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 48px;
    font-weight: 400;
}

.jornada-flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.j-flow-step {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    transition: var(--transition-smooth);
}

.j-flow-step.active, .j-flow-step:hover {
    border-color: var(--color-areia);
    background-color: rgba(255, 255, 255, 0.05);
}

.step-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    opacity: 0.4;
    font-style: italic;
}

.step-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-creme-mineral);
    min-width: 120px;
}

.step-desc {
    font-size: 0.95rem;
    opacity: 0.7;
}

.step-arrow-line {
    font-size: 1.2rem;
    opacity: 0.3;
    line-height: 1;
}

.experience-showcase-box {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(15, 46, 27, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.experience-showcase-box h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.experience-showcase-box p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Filosofia Section --- */
.filosofia-section {
    padding: 160px 0;
}

.filosofia-container {
    display: flex;
    justify-content: center;
}

.filosofia-content {
    max-width: 700px;
    text-align: center;
}

.filosofia-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-verde-oliva);
    display: block;
    margin-bottom: 24px;
}

.filosofia-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 32px;
}

.filosofia-text {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 24px;
}

.filosofia-highlight {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-verde-floresta);
}

/* --- Sobre Clover Section --- */
.sobre-section {
    padding: 140px 0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.sobre-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    color: #ffffff;
}

.sobre-paragraph {
    font-size: 1.05rem;
    opacity: 0.75;
    margin-bottom: 24px;
}

.sobre-paragraph.lead {
    font-size: 1.3rem;
    color: var(--color-creme-mineral);
    line-height: 1.5;
}

.sobre-qualities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-areia);
}

/* --- Como funciona Timeline --- */
.fluxo-vertical-container {
    position: relative;
    max-width: 800px;
    margin: 80px auto 0 auto;
}

.fluxo-linha-progresso {
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background-color: var(--border-current);
    z-index: 1;
}

.fluxo-linha-preenchimento {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--color-verde-oliva);
    transition: height 0.1s linear;
}

.fluxo-passos {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.fluxo-passo {
    display: flex;
    gap: 32px;
    position: relative;
}

.fluxo-indicador {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.indicador-circulo {
    width: 10px;
    height: 10px;
    background-color: var(--text-current);
    border-radius: 50%;
    border: 2px solid var(--bg-current);
    box-shadow: 0 0 0 8px var(--bg-current);
    transition: var(--transition-micro);
}

.fluxo-passo.active .indicador-circulo {
    background-color: var(--color-verde-floresta);
    transform: scale(1.4);
    box-shadow: 0 0 0 10px var(--bg-current), 0 0 15px rgba(15, 46, 27, 0.4);
}

.fluxo-info {
    padding-top: 6px;
}

.fluxo-numero {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    opacity: 0.4;
    font-style: italic;
    display: block;
    margin-bottom: 6px;
}

.fluxo-titulo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.fluxo-desc {
    font-size: 0.95rem;
    opacity: 0.75;
}

/* --- Budget Multistep Form Section --- */
.orcamento-section {
    background-color: var(--color-verde-floresta);
    padding: 140px 0;
}

.orcamento-container {
    max-width: 800px;
}

.orcamento-header {
    margin-bottom: 60px;
}

.multi-step-form-wrapper {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Progress bar UI */
.form-progress-bar {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 40px;
    position: relative;
}

.form-progress-fill {
    height: 100%;
    background-color: var(--color-areia);
    width: 11%;
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-step-number {
    position: absolute;
    right: 0;
    top: -24px;
    font-size: 0.8rem;
    opacity: 0.6;
    font-weight: 500;
}

/* Form transition states */
.form-step {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Inputs styling */
.step-label {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.step-label-span {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.step-input, .step-textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.4rem;
    padding: 12px 0;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s ease;
}

.step-input:focus, .step-textarea:focus {
    border-color: var(--color-areia);
}

.step-textarea {
    min-height: 150px;
    resize: none;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 16px;
    border-radius: 8px;
}

.step-error-msg {
    color: #ff5f56;
    font-size: 0.85rem;
    margin-top: 8px;
    display: none;
}

/* Budget options card layout */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.option-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-micro);
    position: relative;
    user-select: none;
}

.option-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.04);
}

.option-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom indicator UI for radios/checkboxes */
.option-check-ui {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition-micro);
}

.option-card input:checked ~ .option-check-ui {
    border-color: var(--color-areia);
}

.option-card input:checked ~ .option-check-ui::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--color-areia);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-check-ui.checkbox-ui {
    border-radius: 4px;
}

.option-card input:checked ~ .option-check-ui.checkbox-ui::after {
    border-radius: 1px;
}

.option-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

/* Navigation buttons inside Form */
.form-nav-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

/* Success state styles */
.form-success-message {
    text-align: center;
    padding: 40px 0;
    animation: fade-in 0.5s ease;
}

.success-icon-box {
    margin-bottom: 24px;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #25d366;
}

.form-success-message h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.form-success-message p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.success-details-note {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-top: 16px;
}

/* --- CTA Final --- */
.cta-final-section {
    padding: 160px 0;
    min-height: 90dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-blob {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(15, 46, 27, 0.45) 0%, rgba(18, 18, 18, 0) 70%);
}

.cta-symbol-box {
    margin-bottom: 40px;
}

.cta-symbol {
    width: 80px;
    height: auto;
    animation: slow-spin 60s linear infinite;
}

@keyframes slow-spin {
    100% { transform: rotate(360deg); }
}

.cta-final-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-final-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-family: var(--font-serif);
    font-style: italic;
    opacity: 0.9;
    color: var(--color-areia);
    margin-bottom: 48px;
}

.cta-final-btn {
    margin-bottom: 80px;
}

.insta-callout {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.callout-tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

.callout-handle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-micro);
}

.callout-handle:hover {
    color: var(--color-areia);
}

.btn-outline-sm {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition-micro);
}

.btn-outline-sm:hover {
    background-color: #ffffff;
    color: var(--color-preto-suave);
}

/* --- Footer Glassmorphism --- */
.footer-glass {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 0 40px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    height: 38px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.5;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition-micro);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-social-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-micro);
}

.footer-social-link:hover {
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

.credits-link {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

.credits-link:hover {
    text-decoration: underline;
}

/* --- Project Explorer Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: #0c0b0a;
    width: 90vw;
    height: 85dvh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-header {
    background-color: #121110;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title-info h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
}

.modal-title-info span {
    font-size: 0.75rem;
    opacity: 0.5;
}

.modal-close-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-micro);
}

.modal-close-btn:hover {
    opacity: 1;
}

.modal-body {
    flex: 1;
    width: 100%;
    height: 100%;
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #0c0b0a;
}

/* --- Reveal on Scroll Animations --- */
.reveal-item, .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed, .reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.slide-from-left, .slide-from-right {
    opacity: 0;
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-from-left {
    transform: translateX(-48px);
}

.slide-from-right {
    transform: translateX(48px);
}

.slide-from-left.revealed, .slide-from-right.revealed {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-item, .reveal-on-scroll, .pilar-item, .exp-card, .organic-blob, .scroll-line::after, .cta-symbol, .slide-from-left, .slide-from-right {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
    }
    .parallax-text {
        transform: none !important;
    }
}


/* --- MOBILE MENU DEFAULTS (HIDDEN ON DESKTOP) --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-current);
    transition: var(--transition-micro);
}

.mobile-menu-btn.active .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active .burger-bar:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-current);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.nav-mobile {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.nav-mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    margin: 0;
}
.mobile-nav-item {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-micro);
}
.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 40px;
    font-size: 0.9rem;
}
.mobile-social-link {
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-only { display: inline; }

/* =======================================================
   SISTEMA PROGRESSIVO DE RESPONSIVIDADE
   ======================================================= */

/* GLOBAL FIXES PARA OVERFLOW */
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}
* {
    box-sizing: border-box;
}

/* =======================================================
   MUITO PEQUENO (320px - 479px) E CELULARES (Até 767px)
   ======================================================= */
@media (max-width: 767px) {
    :root {
        --header-height: 60px;
    }
    
    .desktop-only { display: none !important; }

    /* AJUSTES DE FONTES GRANDES */
    .cta-final-title, .editorial-headline { font-size: 1.8rem; }

    /* HEADER & MENU */
    .header-logo {
        height: 30px;
    }
    .nav-desktop, .header-actions .btn {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex; /* Mostra o burger apenas no mobile */
    }

    /* HERO */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 80px;
        min-height: auto;
    }
    .hero-content {
        padding-bottom: 80px; /* space for indicator */
    }
    .hero-headline { font-size: 1.8rem; word-break: break-word; }
    .hero-subheadline {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 40px auto 0;
        width: max-content;
    }

    /* CONTAINERS & GERAL */
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
    }
    section {
        padding: 60px 0;
    }
    
    .organic-blob {
        display: none; /* blob causes extreme overflow */
    }

    /* EDITORIAL & PARALLAX */
    .parallax-text-container {
        overflow: hidden;
        width: 100%;
        height: 100px;
    }
    .parallax-text {
        font-size: 15vw;
        line-height: 100px;
    }
    
    .editorial-grid, .pilares-grid, .experiencias-comparison, .sobre-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* CARDS */
    .exp-card {
        padding: 24px 20px;
        width: 100%;
        max-width: 100vw;
    }
    .price-value { font-size: 2.2rem; } .exp-title { font-size: 1.5rem; }
    
    /* FLOW CHARTS (Entra -> Conhece etc) */
    .flow-chart {
        flex-direction: column;
        align-items: stretch;
        white-space: normal;
        gap: 12px;
    }
    .flow-chart .arrow {
        transform: rotate(90deg);
        margin: 4px auto;
    }
    .flow-step {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    /* CASE NO SPETTO */
    .sim-hero {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .sim-hero h2 {
        font-size: 1.8rem;
    }
    .sim-ctas {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
    .sim-ctas .btn {
        width: 100%;
        justify-content: center;
    }
    .sim-hero-img-box {
        margin-top: 24px;
        width: 100%;
        max-width: 100%;
    }

    /* JORNADA */
    .jornada-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .j-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        width: 100%;
    }
    .j-flow-step {
        width: 100%;
        flex: 1 1 auto;
        padding: 16px;
    }
    .j-flow-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    /* FORMS */
    .multi-step-form-wrapper {
        padding: 24px 20px;
        width: 100%;
    }
    .options-grid {
        grid-template-columns: 1fr;
    }
    .form-nav-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .form-nav-buttons button {
        width: 100%;
    }

    /* MODAL */
    .modal-content {
        width: calc(100vw - 24px);
        max-width: 100%;
        height: calc(100dvh - 32px);
        padding: 16px;
    }
    .iframe-wrapper {
        height: calc(100% - 40px);
    }
    .close-modal {
        top: 12px;
        right: 12px;
    }

    /* FOOTER */
    .footer-top, .footer-links, .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        align-items: center;
    }
}

/* =======================================================
   TABLET (768px - 1023px)
   ======================================================= */
@media (min-width: 768px) and (max-width: 1023px) {
    :root {
        --header-height: 70px;
    }
    
    .header-logo {
        height: 38px;
    }

    /* Menu mobile ativado no tablet */
    .nav-desktop, .header-actions .btn {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex;
    }

    /* grids */
    .editorial-grid, .sobre-grid, .experiencias-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pilares-grid, .jornada-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sim-hero {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
    }
    .sim-ctas {
        justify-content: center;
    }
    .sim-hero-img-box {
        margin-top: 30px;
    }

    .flow-chart {
        flex-wrap: wrap;
        white-space: normal;
        justify-content: center;
    }
    
    .j-flow {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal-content {
        width: 90vw;
        height: 80dvh;
    }
}

/* =======================================================
   NOTEBOOK & DESKTOP (1024px+)
   ======================================================= */
@media (min-width: 1024px) {
    .jornada-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}







