@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;
}

/* ═══════════════════════════════════════════════════════════════════════
   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;
}

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

/* Desktop video visible by default, mobile hidden */
.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

.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: -1;
    pointer-events: none;
}

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

.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-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: flex-start;
    flex-wrap: wrap;
}

.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;
}

/* ═══════════════════════════════════════════════════════════════════════
   VSL SECTION (VIDEO DE VENDAS)
═══════════════════════════════════════════════════════════════════════ */
.vsl-section {
    background: var(--bg-light);
}

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

.vsl-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(192, 155, 114, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.vsl-placeholder:hover {
    box-shadow: 0 30px 60px rgba(192, 155, 114, 0.15);
}

.vsl-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.8s ease;
}

.vsl-placeholder:hover img {
    opacity: 0.5;
    transform: scale(1.03);
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.play-button:hover {
    background: white;
    transform: scale(1.15);
    border-color: white;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.play-button svg {
    fill: white;
    stroke: white;
    transition: all 0.3s ease;
    margin-left: 5px;
    /* Visual centering */
}

.play-button:hover svg {
    fill: var(--primary);
    stroke: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════════════
   PROTECTION SECTION
═══════════════════════════════════════════════════════════════════════ */
.protection-section {
    background: white;
}

.protection-box {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(to bottom right, #ffffff, #fcfcfc);
}

.protection-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(192, 155, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.protection-box:hover .protection-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: white;
}

.protection-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--secondary);
    border: 1px solid rgba(192, 155, 114, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

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

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

.testimonial-card {
    padding: 35px;
    text-align: left;
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}

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

.testimonial-text {
    font-size: 1.1rem;
    font-family: var(--font-accent);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════
   PORTFOLIO SECTION
═══════════════════════════════════════════════════════════════════════ */
.portfolio-section {
    background: white;
}

.video-container {
    position: relative;
    padding: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(192, 155, 114, 0.2);
}

.video-container:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-container video {
    border-radius: calc(var(--radius) - 10px);
    display: block;
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════
   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;
}

/* Force 4 columns when exactly 4 cards */
.pricing-grid:has(.price-card:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

/* Force 3 columns when exactly 3 cards */
.pricing-grid:has(.price-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {

    .pricing-grid,
    .pricing-grid:has(.price-card:nth-child(3):last-child),
    .pricing-grid:has(.price-card:nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .pricing-grid,
    .pricing-grid:has(.price-card:nth-child(3):last-child),
    .pricing-grid:has(.price-card:nth-child(4):last-child) {
        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;
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.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;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.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;
    padding: 60px 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
}

.cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 15px;
    color: var(--secondary);
}

.cta-box>p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-urgency {
    background: var(--bg-light);
    padding: 15px 25px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--secondary);
    display: inline-block;
}

.vacancy-number {
    color: var(--primary);
}

.cta-micro {
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER MINIMAL
═══════════════════════════════════════════════════════════════════════ */
.footer-minimal {
    background: var(--secondary);
    padding: 40px 5%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
    opacity: 0.7;
}

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

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

/* ═══════════════════════════════════════════════════════════════════════
   PROBLEM SECTION - SVG Icons
═══════════════════════════════════════════════════════════════════════ */
.problem-icon {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.problem-icon svg {
    width: 48px;
    height: 48px;
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIAL FEATURED
═══════════════════════════════════════════════════════════════════════ */
.testimonial-featured {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
}

.testimonial-featured blockquote {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-featured p {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-family: var(--font-accent);
    font-style: italic;
    color: white;
    line-height: 1.5;
    margin-bottom: 20px;
}

.testimonial-featured cite {
    font-style: normal;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

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

.manifesto-section .video-container {
    max-width: 800px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   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;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0 30px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    flex: 0 0 calc((100% - 90px) / 6);
    min-width: 160px;
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4ccc4;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.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);
}

@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc((100% - 30px) / 3);
        min-width: calc((100% - 30px) / 3);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 calc((100% - 15px) / 2);
        min-width: calc((100% - 15px) / 2);
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   VIDEOS SECTION
═══════════════════════════════════════════════════════════════════════ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.video-thumb {
    overflow: hidden;
    transition: var(--transition);
}

.video-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumb video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #e8e0d8 0%, #d4c8bc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #888;
}

/* ═══════════════════════════════════════════════════════════════════════
   PROTECTION SECTION (Eixo A - Vulnerabilidade)
═══════════════════════════════════════════════════════════════════════ */
.protection-section {
    background: linear-gradient(135deg, #fdfaf6 0%, #f8f0e6 100%);
}

.protection-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
    background: white;
}

.protection-icon {
    color: var(--primary);
    margin-bottom: 20px;
}

.protection-box h3 {
    font-size: 1.8rem;
    font-family: var(--font-accent);
    margin-bottom: 15px;
    color: var(--text-dark);
}

.protection-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* ═══════════════════════════════════════════════════════════════════════
   5 MOTIVOS SECTION
═══════════════════════════════════════════════════════════════════════ */
.motivos-section {
    background: var(--secondary);
    color: white;
}

.motivos-section .section-title h2 {
    color: white;
}

.motivos-list {
    max-width: 700px;
    margin: 0 auto;
}

.motivo-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.motivo-item:last-child {
    border-bottom: none;
}

.motivo-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 50px;
}

.motivo-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.motivo-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ═══════════════════════════════════════════════════════════════════════
   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);
}

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

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

    body {
        overflow-x: hidden;
    }

    /* Hero section mobile */
    .hero {
        padding: 40px 15px;
    }

    /* Trocar vídeo desktop por mobile */
    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero h1 span {
        font-size: 1.4rem;
    }

    .hero-sub {
        font-size: 1rem;
        padding: 0 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    }

    .hero-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-micro {
        font-size: 0.75rem;
        padding: 0 10px;
    }

    /* Grids para coluna única */
    .pricing-grid,
    .diff-grid,
    .testimonial-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }

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

    .price-card.featured {
        transform: scale(1);
    }

    .guide-content {
        flex-direction: column-reverse;
    }

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

    .guide-stat {
        padding: 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-main {
        padding: 15px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Textos gerais mobile */
    .section-title h2 {
        font-size: 1.4rem;
        padding: 0 10px;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .section-title p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* Problem section */
    .problem-card {
        padding: 30px 20px;
    }

    .problem-card h3 {
        font-size: 1rem;
    }

    .problem-card p {
        font-size: 0.9rem;
    }

    /* Agitation section */
    .agitation-text {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .agitation-sub {
        font-size: 0.95rem;
    }

    /* Guide section */
    .guide-intro h2 {
        font-size: 1.4rem;
        padding: 0 10px;
    }

    .guide-intro p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .guide-text p {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonial-featured {
        padding: 30px 20px;
    }

    .testimonial-featured p {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    /* Customization section */
    .customization-section .section-title h2 {
        font-size: 1.3rem;
    }

    .customization-section .section-title p {
        font-size: 0.9rem;
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-card h4 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    /* Protection box */
    .protection-box {
        padding: 35px 20px;
    }

    .protection-box h3 {
        font-size: 1.3rem;
    }

    .protection-box p {
        font-size: 0.95rem;
    }

    /* Motivos section */
    .motivo-item {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }

    .motivo-number {
        font-size: 1.5rem;
    }

    .motivo-content h4 {
        font-size: 1.1rem;
    }

    .motivo-content p {
        font-size: 0.9rem;
    }

    /* Price cards */
    .price-card {
        padding: 35px 20px;
    }

    .price {
        font-size: 1.8rem;
    }

    .price-cash {
        font-size: 0.85rem;
    }

    

    /* FAQ */
    .faq-item {
        padding: 20px 15px;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    /* Final CTA */
    

    

    .cta-urgency {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    /* Gallery section */
    .gallery-cta {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    /* Galeria maior em mobile */
    .gallery-section {
        padding: 50px 3%;
    }

    .gallery-section .section-title h2 {
        font-size: 1.1rem;
        padding: 0 5px;
    }

    .carousel-container {
        margin: 25px 0 20px;
        gap: 10px;
    }

    .carousel-slide {
        min-width: calc(50% - 7.5px);
    }

    .carousel-slide img {
        border-radius: 8px;
    }

    /* Manifesto section - letra mais harmônica */
    .manifesto-section {
        padding: 50px 4%;
    }

    .manifesto-section .section-title h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .manifesto-section .section-title p {
        font-size: 0.9rem;
    }

    /* Videos section - melhor espaçamento */
    .videos-section {
        padding: 50px 4%;
    }

    .videos-section .section-title {
        margin-bottom: 25px;
    }

    .videos-section .section-title h2 {
        font-size: 1.2rem;
    }

    .video-main {
        border-radius: 12px;
    }

    /* Motivos section - remover barra branca */
    .motivos-section {
        padding: 50px 5%;
    }

    .motivos-section .container {
        padding: 0 10px;
    }

    .motivos-list {
        max-width: 100%;
    }

    .motivo-item {
        padding: 20px 5px;
    }

    /* Emotional banner video */
    .emotional-banner {
        height: 150px !important;
        margin: 30px 0 0 0 !important;
    }

    /* Fix all buttons width */
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Footer mobile */
    .footer-minimal {
        padding: 30px 15px;
    }

    .footer-minimal p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .footer-logo {
        height: 35px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   EXTRA SMALL SCREENS (480px and below)
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero h1 span {
        font-size: 1.2rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    }

    .section-title h2 {
        font-size: 1.2rem;
    }

    .agitation-text {
        font-size: 1rem;
    }

    .testimonial-featured p {
        font-size: 1rem;
    }

    .guide-intro h2 {
        font-size: 1.2rem;
    }

    .protection-box h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.1rem;
    }

    .gallery-cta {
        font-size: 1rem;
    }

    /* Carousel mobile extra small - mostra 1 foto por vez */
    .carousel-slide {
        flex: 0 0 calc(100% - 10px);
        min-width: calc(100% - 10px);
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }

    /* Gallery compacta */
    .gallery-section {
        padding: 40px 3%;
    }

    .gallery-section .section-title h2 {
        font-size: 1rem;
    }

    /* Manifesto mais compacto */
    .manifesto-section {
        padding: 40px 4%;
    }

    .manifesto-section .section-title h2 {
        font-size: 1.1rem;
    }

    /* Videos section compacto */
    .videos-section {
        padding: 40px 4%;
    }

    .videos-section .section-title h2 {
        font-size: 1.1rem;
    }

    /* Motivos mais compacto */
    .motivos-section {
        padding: 40px 4%;
    }

    .motivo-item {
        padding: 15px 0;
    }

    /* Emotional banner fininho */
    .emotional-banner {
        height: 120px !important;
    }

    /* Footer extra compacto */
    .footer-minimal {
        padding: 25px 10px;
    }

    .footer-minimal p {
        font-size: 0.75rem;
    }

    .footer-logo {
        height: 30px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   CUSTOMIZATION / PRIVACY SECTION (StoryBrand Plan)
═══════════════════════════════════════════════════════════════════════ */
.customization-section {
    background: white;
}

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

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

.step-card {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid rgba(192, 155, 114, 0.1);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary);
    font-family: var(--font-heading);
}

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

/* Connecting line for desktop (optional polish) */
@media (min-width: 900px) {
    .steps-grid {
        position: relative;
    }

    .steps-grid::before {
        content: '';
        position: absolute;
        top: 65px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(192, 155, 114, 0.3), transparent);
        z-index: 0;
        display: none;
        /* Hidden for now to keep it clean */
    }
}
/* ─── 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) {
    
}

/* ─── 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;
    }
}
