/* ==========================================================================
   Base & Variables (Gourmet Premium Theme)
   ========================================================================== */
:root {
    /* Colors */
    --clr-primary: #FAF6F2; /* Creme Suave para títulos */
    --clr-secondary: #C5A880; /* Ouro Suave para acentos */
    --clr-bg-main: #160f0c; /* Chocolate Escuro Profundo */
    --clr-bg-light: #1c1410; /* Chocolate ligeiramente mais claro */
    --clr-white: #FAF6F2;
    --clr-text: #E3DACF; /* Latte Suave */
    --clr-text-light: #b3a79a; /* Café com Leite suave */
    
    /* Cards */
    --clr-card-bg: rgba(255, 255, 255, 0.02);
    --clr-card-border: rgba(197, 168, 128, 0.12); /* Borda com toque dourado */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

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

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.bg-light {
    background-color: var(--clr-bg-light);
}

/* ==========================================================================
   Background Blobs
   ========================================================================== */
/* Hide default cursor on desktop only for pages with custom cursor markup */
@media (hover: hover) {
    body.has-custom-cursor,
    body.has-custom-cursor a,
    body.has-custom-cursor button,
    body.has-custom-cursor .btn,
    body.has-custom-cursor input,
    body.has-custom-cursor select,
    body.has-custom-cursor textarea {
        cursor: none !important;
    }
}

#custom-cursor {
    display: none;
}

@media (hover: hover) {
    #custom-cursor {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
    }
    .cursor-dot {
        position: fixed;
        width: 8px;
        height: 8px;
        background-color: var(--clr-secondary);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
        z-index: 10000;
    }
    .cursor-ring {
        position: fixed;
        width: 36px;
        height: 36px;
        border: 1.5px solid var(--clr-secondary);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), height 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background-color 0.3s;
        z-index: 9999;
    }
    
    .cursor-active .cursor-ring {
        width: 54px;
        height: 54px;
        border-color: var(--clr-primary);
        background-color: rgba(197, 168, 128, 0.08);
    }
    .cursor-active .cursor-dot {
        width: 4px;
        height: 4px;
        background-color: var(--clr-primary);
    }
}

.blur-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(140px);
    opacity: 0.08;
    transform-style: preserve-3d;
}

@keyframes fluid-blob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -90px) scale(1.15); }
    66% { transform: translate(-40px, 50px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

.blob-1 {
    background-color: var(--clr-secondary);
    top: 5%;
    right: -10%;
    animation: fluid-blob 15s infinite alternate ease-in-out;
}

.blob-2 {
    background-color: #a78bfa; /* Lilás suave para confeitaria */
    bottom: 25%;
    left: -10%;
    animation: fluid-blob 20s infinite alternate-reverse ease-in-out;
}

#cursor-spotlight {
    position: fixed;
    top: -400px; /* Hidden initially */
    left: -400px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2; /* Sits above normal section background, but below content */
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #c5a880 0%, #e2c9a1 100%);
    color: #160f0c !important;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e2c9a1 0%, #c5a880 100%);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
    transform: translateY(-2px);
}

/* ==========================================================================
   Layout Grids
   ========================================================================== */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--clr-text-light);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(22, 15, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--clr-card-border);
    transition: var(--transition-base);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: -0.5px;
}

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

.nav a {
    font-weight: 500;
    color: var(--clr-text-light);
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--clr-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding-top: 160px;
    padding-bottom: var(--spacing-xl);
    background: radial-gradient(circle at top right, #2a1e19 0%, var(--clr-bg-main) 100%);
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1.2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--clr-secondary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--clr-white);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* ==========================================================================
   Hero 3D Scene
   ========================================================================== */
.hero-scene-3d {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 400px;
    transform-style: preserve-3d;
}

.card-3d {
    position: absolute;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.scene-card-instagram {
    width: 250px;
    background: rgba(22, 15, 12, 0.85);
    padding: 1.25rem;
    top: 5%;
    left: 0;
    transform: translate3d(0, 0, 40px) rotateY(18deg) rotateX(4deg);
    z-index: 3;
    animation: float-insta 6s infinite ease-in-out;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.insta-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f59e0b, #ec4899);
    border: 1.5px solid var(--clr-bg-main);
}

.insta-meta h5 {
    color: var(--clr-white);
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.insta-meta span {
    color: var(--clr-text-light);
    font-size: 0.7rem;
}

.insta-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--clr-text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.insta-stats strong {
    color: var(--clr-white);
}

.insta-badge {
    display: inline-block;
    background-color: var(--clr-secondary);
    color: var(--clr-bg-main);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Card 2: WhatsApp Message (Bottom right, top layers) */
.scene-card-whatsapp {
    width: 240px;
    background: rgba(15, 10, 8, 0.9);
    padding: 0.85rem;
    bottom: 5%;
    right: 0;
    transform: translate3d(0, 0, 100px) rotateY(-12deg) rotateX(-4deg);
    z-index: 5;
    animation: float-wa 5s infinite ease-in-out;
}

.wa-bubble {
    background: rgba(197, 168, 128, 0.08);
    border-left: 3px solid var(--clr-secondary);
    padding: 0.6rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) var(--radius-sm);
}

.wa-name {
    display: block;
    font-size: 0.7rem;
    color: var(--clr-secondary);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.wa-bubble p {
    font-size: 0.75rem;
    color: var(--clr-text-light);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.wa-time {
    display: block;
    font-size: 0.6rem;
    color: var(--clr-text-muted);
    text-align: right;
}

/* Card 3: Digital Menu Preview (Center right, float high) */
.scene-card-menu {
    width: 220px;
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.15) 0%, rgba(197, 168, 128, 0.02) 100%);
    border: 1.5px solid rgba(197, 168, 128, 0.35);
    padding: 1rem;
    top: 22%;
    right: 15%;
    transform: translate3d(0, 0, 70px) rotateY(-6deg) rotateX(8deg);
    z-index: 4;
    animation: float-menu 7s infinite ease-in-out;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.menu-item-preview {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 1rem;
}

.menu-item-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: url('../assets/hero_gourmet.png') no-repeat center center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item-info h6 {
    color: var(--clr-white);
    font-size: 0.75rem;
    margin-bottom: 0.1rem;
    font-weight: 500;
}

.menu-item-info p {
    color: var(--clr-secondary);
    font-size: 0.7rem;
    font-weight: 600;
}

.menu-footer {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-main);
    text-align: center;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-text-light);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--clr-text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--clr-secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 8px); }
}

/* ==========================================================================
   Trust Platforms
   ========================================================================== */
.trust-platforms {
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--clr-card-border);
    border-bottom: 1px solid var(--clr-card-border);
    background-color: rgba(22, 15, 12, 0.5);
}

.trust-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--clr-text-light);
    font-size: 1rem;
    font-weight: 500;
}

.platform-item i {
    font-size: 1.5rem;
    color: var(--clr-secondary);
}

/* ==========================================================================
   Cards (Diferenciais & Publico)
   ========================================================================== */
.card {
    background-color: var(--clr-card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    border: 1px solid var(--clr-card-border);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
}

.card:hover {
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15), 0 0 15px rgba(197, 168, 128, 0.1);
    border-color: rgba(197, 168, 128, 0.4) !important;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clr-secondary);
    font-size: 1.8rem;
    border: 1px solid var(--clr-card-border);
}

.card-diferencial h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.card-diferencial p, .card-publico p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.card-publico {
    text-align: center;
    padding: 2rem 1.5rem;
}

.card-publico i {
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
    display: inline-block;
}

.card-publico h4 {
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Como Funciona (Automação Flow)
   ========================================================================== */
.automation-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.flow-step {
    flex: 1;
    position: relative;
}

.step-num {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 32px;
    height: 32px;
    background-color: var(--clr-secondary);
    color: var(--clr-bg-main);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    z-index: 2;
}

.step-card {
    background-color: var(--clr-card-bg);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.step-card i {
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
    display: inline-block;
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.step-card.highlight {
    border-color: var(--clr-secondary);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.15);
    background-color: rgba(197, 168, 128, 0.03);
}

.flow-connector {
    color: var(--clr-secondary);
    font-size: 2rem;
}

/* ==========================================================================
   Serviços
   ========================================================================== */
.servicos-list {
    row-gap: 3rem;
}

.servico-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.servico-item i {
    font-size: 2rem;
    color: var(--clr-secondary);
    flex-shrink: 0;
}

.servico-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.servico-item p {
    color: var(--clr-text-light);
}

/* ==========================================================================
   Ebook Section
   ========================================================================== */
.ebook-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.ebook-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.ebook-details {
    flex: 1.2;
}

/* 3D Book styling */
.book-3d {
    width: 250px;
    height: 350px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-20deg) rotateX(10deg);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.6);
    border-radius: 4px 12px 12px 4px;
    transition: transform 0.5s ease;
}

.book-3d:hover {
    transform: rotateY(-10deg) rotateX(5deg);
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a1a12 0%, #150d0a 100%);
    border-left: 8px solid var(--clr-secondary);
    border-radius: 4px 12px 12px 4px;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.book-title {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.book-subtitle {
    color: var(--clr-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.book-author {
    color: var(--clr-text-light);
    font-size: 0.9rem;
}

.book-pages {
    position: absolute;
    width: 240px;
    height: 340px;
    background: #f1ebd9;
    top: 5px;
    right: -8px;
    z-index: 4;
    border-radius: 0 8px 8px 0;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.form-title-small {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--clr-primary);
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.form-group-inline input {
    flex: 1.5;
    min-width: 200px;
    height: 52px;
    padding: 0 1.25rem;
    border: 1.5px solid rgba(197, 168, 128, 0.35);
    border-radius: 50px;
    background-color: #ffffff;
    color: var(--clr-primary);
    font-family: inherit;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: var(--transition-fast);
}

.form-group-inline input:focus {
    outline: none;
    border-color: var(--clr-secondary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

.form-group-inline .btn {
    height: 52px;
    padding: 0 1.75rem;
    border-radius: 50px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.success-message {
    margin-top: 1rem;
    color: var(--clr-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.hidden {
    display: none;
}

/* ==========================================================================
   Ofertas
   ========================================================================== */
.card-oferta {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-oferta.destaque {
    border: 1.5px solid var(--clr-secondary);
    position: relative;
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.04);
}

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

.badge-destaque {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--clr-secondary);
    color: var(--clr-bg-main);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.oferta-header {
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-card-border);
}

.oferta-desc {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.oferta-features {
    list-style: none;
    margin-bottom: 2rem;
}

.oferta-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.oferta-features i {
    color: var(--clr-secondary);
    font-weight: bold;
}

/* ==========================================================================
   Prova Social (Carrossel)
   ========================================================================== */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.depoimento-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-card-border);
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: '“';
    position: absolute;
    top: 5px;
    left: 30px;
    font-size: 11rem;
    color: var(--clr-secondary);
    opacity: 0.06;
    font-family: var(--font-heading);
    line-height: 1;
    pointer-events: none;
}

.depoimento-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.depoimento-metric {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(197, 168, 128, 0.04);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 168, 128, 0.15);
    text-align: center;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.depoimento-metric h3 {
    font-size: 3rem;
    color: var(--clr-secondary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.depoimento-metric span {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--clr-text-light);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.depoimento-quote {
    flex: 1.3;
}

.rating {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.depoimento-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.depoimento-author-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.avatar-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #c5a880 0%, #e2c9a1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--clr-secondary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.avatar-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.avatar-placeholder {
    color: #160f0c;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
    font-family: var(--font-heading);
}

.depoimento-author {
    font-weight: 600;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    margin-bottom: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--clr-card-border);
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--clr-primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.carousel-btn:hover {
    background-color: var(--clr-primary);
    color: var(--clr-bg-main);
}

/* ==========================================================================
   Contato / Formulário
   ========================================================================== */
.contato {
    padding: var(--spacing-xl) 0;
}

.contato-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contato-info {
    flex: 1;
}

.contato-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contato-info p {
    font-size: 1.125rem;
    color: var(--clr-text-light);
    margin-bottom: 2rem;
}

.contato-form {
    flex: 1;
    background-color: var(--clr-card-bg);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-card-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-white);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-secondary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background-color: var(--clr-bg-main);
    color: var(--clr-white);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--clr-text-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400 !important;
}

.checkbox-label input {
    width: auto;
    margin-top: 4px;
}

.checkbox-label span {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.accordion-item {
    background-color: var(--clr-card-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--clr-card-border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--clr-secondary);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    color: var(--clr-text-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #0f0a08; /* Mais escuro que o bg-main */
    color: var(--clr-text-light);
    padding: var(--spacing-lg) 0 2rem;
    border-top: 1px solid var(--clr-card-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--clr-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--clr-text-light);
    max-width: 320px;
}

.footer h4 {
    color: var(--clr-white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--clr-text-light);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.social-icons a:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-main);
    border-color: var(--clr-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-text-light);
    font-size: 0.875rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container, .contato-container, .ebook-container {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-scene-3d {
        transform: scale(0.85) rotateX(0deg) rotateY(0deg) !important;
        transform-origin: center center;
        height: 360px;
        margin: 2rem auto 0;
    }
}

@keyframes float-menu {
    0% { transform: translate3d(0, 0, 70px) rotateY(-6deg) rotateX(8deg) translateY(0); }
    50% { transform: translate3d(0, -6px, 70px) rotateY(-8deg) rotateX(6deg) translateY(-3px); }
    100% { transform: translate3d(0, 0, 70px) rotateY(-6deg) rotateX(8deg) translateY(0); }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .header .btn-small {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 3rem;
        min-height: auto;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 1rem;
        gap: 1.5rem;
        width: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-content .badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem;
        white-space: normal;
        max-width: 100%;
        line-height: 1.4;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        justify-content: center;
        margin-top: 1rem;
        width: 100%;
        overflow: hidden;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .automation-flow {
        flex-direction: column;
        gap: 2rem;
    }
    
    .flow-connector {
        transform: rotate(90deg);
    }
    
    .ebook-container {
        flex-direction: column;
        text-align: center;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
    
    .card-oferta.destaque {
        transform: scale(1);
    }
    .card-oferta.destaque:hover {
        transform: translateY(-5px);
    }
    
    .contato-container {
        flex-direction: column;
    }
    
    .hero-scene-3d {
        margin: 1rem auto 0;
        transform: scale(0.72) rotateX(0deg) rotateY(0deg) !important;
        transform-origin: center center;
        height: 300px;
        max-width: 320px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .depoimento-grid {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .depoimento-metric {
        width: 100%;
        padding: 1.5rem;
    }
    
    .depoimento-author-info {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 105px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-scene-3d {
        transform: scale(0.62) rotateX(0deg) rotateY(0deg) !important;
        transform-origin: center center;
        height: 250px;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Scroll Reveal & Mask Animations (Estilo Seesaw)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: scale(0.96) translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Mask Reveal para Títulos */
.reveal h1, .reveal h2, .reveal h3 {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transform: translateY(30px);
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active h1, .reveal.active h2, .reveal.active h3 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateY(0);
}

/* Hero Mask Reveal on Load */
.hero-content h1, 
.hero-content p,
.hero-content .badge,
.hero-content .hero-cta {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transform: translateY(30px);
    animation: load-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 {
    animation-delay: 0.1s;
}

.hero-content p {
    animation-delay: 0.2s;
}

.hero-content .hero-cta {
    animation-delay: 0.3s;
}

@keyframes load-reveal {
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        transform: translateY(0);
    }
}

/* ==========================================================================
   Scroll Progress Bar
   ========================================================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-secondary) 0%, #e2c9a1 100%);
    width: 0%;
    z-index: 10001;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   Alternating Themes (Cream and Dark Chocolate)
   ========================================================================== */
.bg-cream {
    background-color: #FAF6F2 !important;
    color: #160f0c !important;
}

.bg-cream h1, .bg-cream h2, .bg-cream h3, .bg-cream h4, .bg-cream h5, .bg-cream h6 {
    color: #160f0c !important;
}

.bg-cream p, .bg-cream span, .bg-cream li, .bg-cream a:not(.btn) {
    color: #3d2b24 !important;
}

.bg-cream .card {
    background-color: #ffffff !important;
    border: 1px solid rgba(22, 15, 12, 0.08) !important;
    box-shadow: 0 10px 30px rgba(22, 15, 12, 0.04) !important;
}

.bg-cream .card:hover {
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.2), 0 0 15px rgba(197, 168, 128, 0.1) !important;
    border-color: rgba(197, 168, 128, 0.5) !important;
}

.bg-cream .card h3, .bg-cream .card h4, .bg-cream .card h5 {
    color: #160f0c !important;
}

.bg-cream .card p, .bg-cream .card li {
    color: #5c4337 !important;
}

.bg-cream .icon-wrapper {
    background-color: rgba(197, 168, 128, 0.12) !important;
    color: var(--clr-secondary) !important;
}

.bg-cream .accordion-item {
    border-bottom: 1px solid rgba(22, 15, 12, 0.1) !important;
}

.bg-cream .accordion-header {
    color: #160f0c !important;
}

.bg-cream .accordion-header:hover {
    color: var(--clr-secondary) !important;
}

.bg-cream .accordion-content p {
    color: #5c4337 !important;
}

.bg-cream input {
    color: #160f0c !important;
    background-color: #ffffff !important;
    border: 1px solid rgba(22, 15, 12, 0.15) !important;
}

.bg-cream input::placeholder {
    color: rgba(22, 15, 12, 0.4) !important;
}

.bg-cream input:focus {
    border-color: var(--clr-secondary) !important;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15) !important;
    background-color: #ffffff !important;
}

.bg-chocolate-light {
    background-color: #1f1512 !important;
}

/* ==========================================================================
   Floating Animations for Hero 3D Mockups (Mobile Fallback)
   ========================================================================== */
@keyframes float-insta {
    0% { transform: translate3d(0, 0, 40px) rotateY(18deg) rotateX(4deg) translateY(0); }
    50% { transform: translate3d(0, -8px, 40px) rotateY(20deg) rotateX(2deg) translateY(-4px); }
    100% { transform: translate3d(0, 0, 40px) rotateY(18deg) rotateX(4deg) translateY(0); }
}

@keyframes float-wa {
    0% { transform: translate3d(0, 0, 100px) rotateY(-12deg) rotateX(-4deg) translateY(0); }
    50% { transform: translate3d(0, 8px, 100px) rotateY(-10deg) rotateX(-6deg) translateY(4px); }
    100% { transform: translate3d(0, 0, 100px) rotateY(-12deg) rotateX(-4deg) translateY(0); }
}

@keyframes float-menu {
    0% { transform: translate3d(0, 0, 70px) rotateY(-6deg) rotateX(8deg) translateY(0); }
    50% { transform: translate3d(0, -6px, 70px) rotateY(-8deg) rotateX(6deg) translateY(-3px); }
    100% { transform: translate3d(0, 0, 70px) rotateY(-6deg) rotateX(8deg) translateY(0); }
}

/* ==========================================================================
   CTA Pulse & Bounce Animation (Efeito de salto e aura solicitado)
   ========================================================================== */
@keyframes cta-pulse-bounce {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3), 0 0 0 0 rgba(197, 168, 128, 0.5);
    }
    40% {
        transform: scale(1.04) translateY(-3px);
        box-shadow: 0 8px 25px rgba(197, 168, 128, 0.6), 0 0 0 14px rgba(197, 168, 128, 0);
    }
    60% {
        transform: scale(1.02) translateY(0);
        box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4), 0 0 0 0 rgba(197, 168, 128, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3), 0 0 0 0 rgba(197, 168, 128, 0);
    }
}

.btn-pulse {
    animation: cta-pulse-bounce 1.4s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-pulse-fast {
    animation: cta-pulse-bounce 1.0s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes border-glow-pulse {
    0% {
        border-color: rgba(197, 168, 128, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 168, 128, 0.1);
    }
    50% {
        border-color: rgba(197, 168, 128, 0.9);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 168, 128, 0.3);
    }
    100% {
        border-color: rgba(197, 168, 128, 0.4);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 168, 128, 0.1);
    }
}

@keyframes badge-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* ==========================================================================
   WhatsApp Floating Action Button (FAB)
   ========================================================================== */
.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fab-bounce 3s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

@keyframes fab-bounce {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}




