@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Mulish:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Brand Colors */
    --primary: #8E6F51;
    --primary-dark: #7A5E44;
    --secondary: #3D2E1E;
    --bg-light: #F5F0EB;
    --bg-dark: #1a1a1a;
    --text-dark: #3D2E1E;
    --text-light: #6B5D50;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Mulish', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Radius */
    --radius: 20px;

    /* Spacing */
    --section-padding: 100px 5%;
    --container-width: 900px;
    --container-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Sales Page: Container mais estreito para leitura */
.sales-page .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

/* ─── NAVIGATION ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(245, 240, 235, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(61, 46, 30, 0.05);
}

.navbar .container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar:not(.scrolled) .nav-logo {
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--secondary);
}

.nav-links a.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 240px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(61, 46, 30, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 16px !important;
    color: var(--text-dark) !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.nav-dropdown-menu a svg {
    width: 18px !important;
    height: 18px !important;
    stroke: var(--primary);
    stroke-width: 1.5;
    flex-shrink: 0;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary) !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   SYMMETRICAL GALLERY GRID
═══════════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════════
   FLUID MARQUEE GALLERY
═══════════════════════════════════════════════════════════════════════ */
.gallery-section {
    overflow: hidden;
    /* Hide overflow for marquee */
    padding: 80px 0;
    /* Full width feeling */
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 auto;
    width: 300px;
    /* Fixed width for consistency */
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves half the width (original set) */
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: 240px;
        height: 320px;
    }

    .marquee-track {
        animation-duration: 30s;
        /* Faster on mobile */
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   VIDEO SHOWCASE
═══════════════════════════════════════════════════════════════════════ */
.video-showcase-section {
    background: var(--secondary);
    color: white;
}

.video-showcase-container {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ═══════════════════════════════════════════════════════════════════════
   PRICING V2 (Base + Addons)
═══════════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════════
   PRICING V2 (CARD GRID) - STYLES PORTED FROM ILUMINAR
═══════════════════════════════════════════════════════════════════════ */
.pricing-v2-container {
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    padding: 45px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    background: white;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    z-index: 10;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-card h3 {
    font-size: 1.3rem;
    /* Slightly larger than Iluminar 1.3rem? Keeping 1.3rem */
    margin-bottom: 5px;
    color: var(--secondary);
}

.subtitle {
    font-style: italic;
    font-family: var(--font-accent);
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.price-cash {
    font-size: 0.9rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.discount-tag {
    background-color: #edf7ed;
    color: #1b5e20;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

/* List Styles for Cards */

.price-card .cta-button {
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO SECTION — Sales Page Style
═══════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: brightness(0.6);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 0 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 3;
}

.hero-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.8;
    font-family: var(--font-body);
    font-style: normal !important;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
    font-family: var(--font-heading);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: var(--primary);
    display: block;
    font-style: italic;
    font-family: var(--font-accent);
}

.hero-sub {
    font-size: 1.3rem;
    font-family: var(--font-accent);
    font-style: italic;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-micro {
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.7;
    font-style: normal !important;
}

.cta-main {
    padding: 18px 45px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(192, 155, 114, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(192, 155, 114, 0);
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════════════════════ */
.problem-section {
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    padding: 40px 35px;
    text-align: center;
    background: var(--bg-light);
    border: 1px solid rgba(192, 155, 114, 0.15);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(192, 155, 114, 0.1);
    border-color: rgba(192, 155, 114, 0.4);
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
    color: var(--secondary);
    transition: var(--transition);
}

.problem-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.problem-icon svg {
    margin: 0 auto;
    /* Center SVG */
    display: block;
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.problem-card p {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════
   AGITATION SECTION
═══════════════════════════════════════════════════════════════════════ */
.agitation-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #5e4129 100%);
    padding: 100px 5%;
    text-align: center;
    position: relative;
}

.agitation-box {
    max-width: 700px;
    margin: 0 auto;
}

.agitation-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-family: var(--font-accent);
    color: white;
    line-height: 1.5;
}

.agitation-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════
   GUIDE SECTION
═══════════════════════════════════════════════════════════════════════ */
.guide-section {
    background: var(--bg-light);
}

.guide-intro {
    text-align: center;
    margin-bottom: 60px;
}

.guide-intro h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.guide-intro h2 span {
    color: var(--primary);
}

.guide-intro p {
    font-size: 1.2rem;
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--secondary);
}

.guide-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.guide-text {
    flex: 1;
    min-width: 300px;
}

.guide-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.guide-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(192, 155, 114, 0.3);
}

.guide-stat {
    text-align: center;
    transition: var(--transition);
    padding: 15px;
    border-radius: var(--radius);
}

.guide-stat:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
}

.guide-image {
    flex: 0.6;
    min-width: 250px;
    margin-top: 10px;
}

.guide-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 20px 20px 0 rgba(192, 155, 114, 0.2);
    transition: var(--transition);
}

.guide-image img:hover {
    transform: translateY(-5px);
    box-shadow: 25px 25px 0 rgba(192, 155, 114, 0.3);
}

.placeholder-image {
    height: 400px;
    background: linear-gradient(135deg, #e8e0d8 0%, #d4c8bc 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #888;
    border: 2px dashed var(--primary);
}

/* ═══════════════════════════════════════════════════════════════════════
   DIFFERENTIALS SECTION
═══════════════════════════════════════════════════════════════════════ */
.differentials-section {
    background: white;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.diff-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.diff-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(192, 155, 114, 0.15);
    font-family: var(--font-heading);
    position: absolute;
    top: 15px;
    left: 25px;
}

.diff-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.diff-card p {
    font-size: 0.95rem;
    color: #555;
}

/* ═══════════════════════════════════════════════════════════════════════
   PLAN SECTION (STORYBRAND)
═══════════════════════════════════════════════════════════════════════ */
.plan-section {
    background: var(--bg-light);
}

.plan-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    gap: 20px;
}

.plan-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    box-shadow: 0 10px 25px rgba(192, 155, 114, 0.4);
    position: relative;
    z-index: 2;
}

.plan-step h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.plan-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    flex: 0.5;
    height: 2px;
    background: rgba(192, 155, 114, 0.3);
    margin-top: 30px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid rgba(192, 155, 114, 0.3);
}

@media (max-width: 768px) {
    .plan-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════════════════ */
.pricing-section {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    padding: 45px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    background: white;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    z-index: 10;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge.green {
    background: #1b5e20;
    /* Dark Green matching discount tag text */
    /* Or maybe match the discount tag bg? No, badge needs contrast. */
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.subtitle {
    font-style: italic;
    font-family: var(--font-accent);
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.price-cash {
    font-size: 0.9rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.discount-tag {
    background-color: #edf7ed;
    color: #1b5e20;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════════════════ */
.faq-section {
    background: white;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 25px 30px;
    border-left: 4px solid var(--primary);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.faq-item p {
    font-size: 0.95rem;
    color: #555;
}

/* ═══════════════════════════════════════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════════════════════════════════════ */


\\ .cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   GALLERY SECTION - CAROUSEL
═══════════════════════════════════════════════════════════════════════ */
.gallery-section {
    background: #faf8f5;
    padding: 80px 5%;
}

.gallery-section .container {
    max-width: var(--container-wide);
}

.gallery-section .section-title h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    text-align: center;
    line-height: 1.5;
    font-family: var(--font-accent);
    font-weight: 400;
    font-style: italic;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-section .section-title h2 span {
    font-weight: 700;
    font-style: normal;
    display: block;
}

.gallery-cta {
    text-align: center;
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.gallery-section .cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: var(--secondary);
}

/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════════ */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 155, 114, 0.35);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTIONS GENERIC
═══════════════════════════════════════════════════════════════════════ */
.section-padding {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-title p {
    color: var(--secondary);
    font-style: italic;
    font-family: var(--font-accent);
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════════════ */
.text-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.text-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER MINIMAL
═══════════════════════════════════════════════════════════════════════ */
.footer-minimal {
    background: var(--bg-light);
    padding: 60px 5%;
    text-align: center;
    color: var(--secondary);
    border-top: 1px solid rgba(192, 155, 114, 0.2);
}

.footer-logo {
    height: 120px;
    margin-bottom: 25px;
    opacity: 1;
}

.footer-minimal p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-minimal .container {
    max-width: 400px;
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--bg-light);
}

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

.testimonial-card {
    padding: 40px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(192, 155, 114, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-text::before {
    content: "“";
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.testimonial-author span {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 5%;
    }

    /* Container e overflow geral */
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }

    /* Grids para coluna única */
    .pricing-grid,
    .diff-grid,
    .testimonials-grid,
    .problem-grid,
    .guide-content {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

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

    .guide-content {
        flex-direction: column;
        align-items: center;
        /* Imagem acima no mobile ou abaixo dependendo do design */
    }

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

    .guide-stats {
        flex-wrap: wrap;
        justify-content: center;
    }


}

/* ─── PADRONIZACAO LISTAS PRICE CARD (TIPO PARTOS) ─── */

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    flex-grow: 1;
}

.price-card li,
.price-card ul li {
    padding: 10px 0 10px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    position: relative;
    margin-bottom: 0;
}

.price-card li::before,
.price-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.price-card li strong,
.price-card ul li strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    \

}

@media (max-width: 768px) {}


/* ─── CTA FINAL BOX: RESPIRO PADRONIZADO ─── */
.final-cta-section {
    background: white;
    padding: 100px 5%;
}

.final-cta-section .cta-box {
    background: white;
    border-radius: 30px;
    border: 1px solid rgba(142, 111, 81, 0.15);
    box-shadow: 0 10px 40px rgba(61, 46, 30, 0.04);
    padding: 80px 60px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-section h2 {
    color: var(--primary);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.final-cta-section p {
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.final-cta-section .cta-urgency {
    background: transparent;
    border: none;
    color: var(--secondary);
    font-size: 1rem;
    margin: 30px 0;
    font-weight: 500;
}

.final-cta-section .cta-button {
    margin-top: 15px;
    margin-bottom: 20px;
}

.final-cta-section .cta-micro {
    font-size: 0.85rem;
    color: var(--secondary);
    opacity: 0.6;
    margin-top: 15px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 5%;
    }

    .final-cta-section .cta-box {
        padding: 50px 25px;
    }

    .final-cta-section h2 {
        font-size: 1.3rem;
    }
}