:root {
    /* PALETA "NATURAL ELEGANTE" - ATUALIZADA */

    /* Cores Base */
    --bg-color: #FDF8F3;
    /* Fundo principal claro */
    --surface-color: #FFFFFF;
    --text-color: #3C3C3B;
    /* Texto principal */
    --text-muted: #7A5C44;
    /* Texto secundário - marrom escuro suave para melhor contraste */

    /* Fundo alternativo para blocos */
    --bg-alternate: #DDE8DD;
    /* Blocos de respiro */

    /* Botões CTA - CORES ESTRATÉGICAS */
    --primary-color: #B75234;
    /* Laranja queimado vibrante */
    --primary-hover: #9B2C2C;
    /* Vermelho queimado */
    --primary-light: #F5EDE3;
    /* Versão clara do primário */

    /* Detalhes e destaques */
    --accent-color: #DA6A49;
    /* Terracota suave - usar pontualmente */
    --accent-light: #FDEEE9;
    /* Versão clara do accent */

    /* Cores Estratégicas Adicionais */
    --cta-gold: #BFA173;
    /* Dourado para hover e detalhes */
    --chef-bg: #475E4A;
    /* Verde oliva profundo para seção Chef IA */
    --guarantee-border: #BFA173;
    /* Dourado para borda da garantia */
    --guarantee-title: #4D3928;
    /* Marrom escuro para títulos */
    --urgency-bg: #9B2C2C;
    /* Vermelho queimado para urgência */
    --urgency-badge: #BFA173;
    /* Dourado para badge de urgência */

    /* Outras cores funcionais */
    --border-color: #E8DED3;
    /* Bordas suaves */
    --error-color: #DA6A49;
    /* Usando o terracota para erros */
    --success-color: #7C9A7C;
    /* Verde suave derivado do bg-alternate */

    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Sombras suaves (reduzidas para estética clean) */
    --shadow-sm: 0 1px 2px rgba(60, 60, 59, 0.05);
    --shadow-md: 0 2px 4px rgba(60, 60, 59, 0.08);
    --shadow-lg: 0 4px 8px rgba(60, 60, 59, 0.1);
    --shadow-xl: 0 8px 16px rgba(60, 60, 59, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.label {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2.8rem;
    /* Aumentado para mais presença */
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-heading);
    border: none;
    font-size: 1.25rem;
    /* Aumentado */
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(183, 82, 52, 0.25);
    /* Sombra mais pronunciada */
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(155, 44, 44, 0.3);
}

.btn-primary::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(4px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    background-color: var(--text-color);
    color: white;
}

.btn-sm:hover {
    background-color: var(--primary-color);
}

.btn-large {
    padding: 1.75rem 4rem;
    /* Aumentado significativamente */
    font-size: 1.6rem;
    /* Aumentado */
    width: 100%;
    max-width: 600px;
    box-shadow: 0 6px 16px rgba(183, 82, 52, 0.3);
}

.btn-hero {
    padding: 1.5rem 3.5rem;
    /* Aumentado */
    font-size: 1.4rem;
    /* Aumentado */
}

/* Pulse Animation for CTA */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(183, 82, 52, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(183, 82, 52, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Header */
.top-banner {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

header.scrolled {
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--primary-color);
    letter-spacing: -0.03em;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(200, 155, 108, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(218, 106, 73, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(60,60,59,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    font-size: 4.25rem;
    /* Aumentado */
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-weight: 800;
    /* Peso aumentado */
}

.highlight-underline {
    color: var(--primary-color);
    /* Laranja queimado vibrante */
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
    /* Tracking nas palavras de destaque */
    font-weight: 900;
    /* Peso extra nas palavras destacadas */
}

.highlight-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 14px;
    /* Altura aumentada */
    background: linear-gradient(90deg, rgba(183, 82, 52, 0.2) 0%, rgba(183, 82, 52, 0.1) 100%);
    z-index: -1;
    animation: underlineExpand 1s ease-out 0.5s both;
}

@keyframes underlineExpand {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.hero-sub {
    font-size: 1.375rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    /* Aumentado para mais respiro */
    max-width: 550px;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    /* Aumentado */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
    /* Aumentado */
}

.guarantee-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.guarantee-text i {
    width: 18px;
    height: 18px;
    color: var(--success-color);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-img-container {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #F5F5F4 0%, #E7E5E4 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

.hero-img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-img-container:hover .hero-img-real {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-badge i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: var(--bg-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.benefit-icon i {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* GPT Section */
.gpt-section {
    padding: var(--spacing-xl) 0;
    background: var(--chef-bg);
    /* Verde oliva profundo */
    position: relative;
}

.gpt-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.gpt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.gpt-mockup {
    position: relative;
}

.mockup-window {
    background: #1C1917;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    /* Sombra mais pronunciada */
}

.window-header {
    background: #292524;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-dots {
    display: flex;
    gap: 0.5rem;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #57534E;
}

.window-dots span:nth-child(1) {
    background: #EF4444;
}

.window-dots span:nth-child(2) {
    background: #F59E0B;
}

.window-dots span:nth-child(3) {
    background: #10B981;
}

.window-title {
    color: #A8A29E;
    font-size: 0.875rem;
    font-weight: 500;
}

.chat-content {
    padding: 1.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    max-width: 85%;
    animation: messageSlide 0.5s ease-out;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.user {
    background: #2563EB;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chat-message.assistant {
    background: #292524;
    color: #E7E5E4;
    align-self: flex-start;
    display: flex;
    gap: 0.75rem;
}

.chat-message .avatar {
    width: 32px;
    height: 32px;
    background: var(--cta-gold);
    /* Dourado */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-message .avatar i {
    width: 18px;
    height: 18px;
    color: var(--guarantee-title);
    /* Marrom escuro */
}

.chat-message p {
    margin: 0;
    line-height: 1.5;
}

.gpt-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: #FFFFFF;
    /* Texto branco */
}

.gpt-text p {
    color: #F2EFE9;
    /* Bege claro */
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #FFFFFF;
    /* Texto branco */
}

.feature-list i {
    color: var(--cta-gold);
    /* Dourado */
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Promise Section */
.promise {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #065F46 100%);
    color: white;
}

.promise h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.promise-sub {
    font-size: 1.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #1C1917;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.demo-video {
    display: block;
    width: 100%;
    height: 100%;
}

/* Testimonials Carousel */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-alternate);
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: var(--spacing-lg) auto 0;
    padding: 0 80px;
}

.carousel-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    /* Garante que não quebre linha */
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    /* Espaço fixo entre as imagens */
}

.carousel-slide {
    /* Força a largura para ser exatamente metade menos o espaçamento */
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 10px);
    position: relative;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    /* Mostra a imagem completa sem cortar */
    display: block;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: #f5f5f5;
    /* Fundo para preencher espaços vazios */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* Bonuses Section */
.bonuses-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-alternate);
}

/* Video Section */
.video-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.video-header {
    margin-bottom: var(--spacing-md);
}

.video-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
}

.video-features {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.feature-pills li {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.feature-pills i {
    width: 16px;
    height: 16px;
}

/* Urgency Section */
.urgency-section {
    background: var(--urgency-bg);
    /* Vermelho queimado forte */
    padding: var(--spacing-lg) 0;
    border-top: 3px solid rgba(191, 161, 115, 0.3);
    border-bottom: 3px solid rgba(191, 161, 115, 0.3);
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.urgency-box::before {
    content: '⚠️ OFERTA LIMITADA';
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--urgency-badge);
    /* Dourado */
    color: var(--guarantee-title);
    /* Marrom escuro */
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.urgency-box h3 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.urgency-date {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--urgency-badge);
    /* Dourado */
    margin: 1rem 0;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.urgency-note {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 500;
}

.urgency-spots {
    display: inline-block;
    background: var(--urgency-badge);
    /* Dourado */
    color: var(--guarantee-title);
    /* Marrom escuro */
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Bonus Total */
.bonus-total {
    margin-top: var(--spacing-lg);
    background: #F0FDF4;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--primary-color);
}

.bonus-total-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bonus-free-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
}

/* Offer List */
.offer-list {
    margin: 1.5rem 0;
    text-align: left;
    display: inline-block;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.offer-list i {
    color: var(--success-color);
    width: 20px;
    height: 20px;
}

.trust-text {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Final CTA */
.final-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
    color: white;
}

.final-cta h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.final-cta-features {
    margin-bottom: var(--spacing-md);
}

.final-cta-features ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.final-cta-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #E7E5E4;
}

.final-cta-features i {
    color: var(--success-color);
}

.final-cta-price {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.final-cta-price strong {
    color: var(--success-color);
    font-size: 2rem;
}

.final-cta-footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer Trust */
.footer-trust-section {
    background: #F5F5F4;
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

.trust-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.payment-methods,
.security-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.security-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-pills {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-features ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.bonus-card {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 2px solid var(--accent-color);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(217, 119, 6, 0.3);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.bonus-icon {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-md) auto var(--spacing-sm);
    box-shadow: var(--shadow-md);
}

.bonus-icon i {
    color: var(--accent-color);
    width: 36px;
    height: 36px;
}

.bonus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.bonus-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.bonus-value {
    display: block;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.125rem;
}

/* Offer Section */
.offer {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.offer-box {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: visible;
}

.offer-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #B45309 100%);
    color: white;
    padding: 0.625rem 1.75rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.offer-image {
    max-width: 400px;
    margin: 0 auto var(--spacing-md);
}

.offer-img-real {
    width: 100%;
    height: auto;
}

.offer-box h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.offer-includes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-color);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    text-align: left;
    border: 1px solid var(--border-color);
}

.include-item i {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.include-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.include-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.total-value {
    margin: var(--spacing-md) 0 var(--spacing-sm);
    font-size: 1.125rem;
}

.total-value .strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 600;
}

.price-section {
    margin: var(--spacing-md) 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: var(--spacing-sm) 0;
}

.currency {
    font-size: 2.5rem;
    vertical-align: super;
}

.cents {
    font-size: 2.5rem;
}

.payment-info {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--success-color);
    width: 18px;
    height: 18px;
}

/* Guarantee */
.guarantee {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
    background: #FFFFFF;
    /* Branco puro */
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 3px solid var(--guarantee-border);
    /* Borda dourada */
    box-shadow: 0 8px 24px rgba(77, 57, 40, 0.12);
}

.guarantee-seal {
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.guarantee-icon {
    width: 120px;
    /* Ícone maior */
    height: 120px;
    color: var(--guarantee-border);
    /* Dourado */
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(191, 161, 115, 0.3));
}

.guarantee-days {
    display: block;
    font-weight: 800;
    font-size: 1.75rem;
    /* Maior */
    color: var(--guarantee-title);
    /* Marrom escuro */
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.guarantee-content h3 {
    font-size: 2rem;
    /* Maior */
    margin-bottom: 1rem;
    color: var(--guarantee-title);
    /* Marrom escuro */
    letter-spacing: -0.01em;
}

.guarantee-content p {
    color: var(--text-muted);
    /* Marrom escuro suave */
    font-size: 1.125rem;
    /* Maior */
    line-height: 1.8;
    font-weight: 500;
}

/* FAQ */
.faq {
    padding: var(--spacing-xl) 0;
    background: white;
}

.accordion {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.accordion-item {
    border-bottom: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.75rem 0;
    background: none;
    border: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-color);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
    padding-bottom: 1.75rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

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

/* Final CTA */
.final-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: var(--text-color);
    /* Enforce dark text base */
}

.final-cta h2 {
    margin-bottom: var(--spacing-md);
    font-size: 2.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
    /* Dark green for heading */
}

.final-cta-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.final-cta-features {
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    text-align: left;
}

.final-cta-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.final-cta-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.final-cta-features i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.final-cta-price {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.final-cta-price strong {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

/* Footer */
footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: #A8A29E;
    font-size: 0.95rem;
}

.payment-label {
    font-size: 0.875rem;
    color: #A8A29E;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.payment-icons i {
    width: 32px;
    height: 32px;
    color: #A8A29E;
}

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

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #A8A29E;
}

.security-badge i {
    width: 18px;
    height: 18px;
    color: var(--success-color);
}

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

.footer-bottom p {
    color: #A8A29E;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #78716C;
}

/* Notifications */
.notification-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-toast {
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-color);
    pointer-events: auto;
    min-width: 300px;
    max-width: 350px;
}

.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-icon {
    color: var(--primary-color);
    background: var(--primary-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.notification-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

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

    .gpt-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .testimonial-grid,
    .bonus-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .offer-includes {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }

    /* Correção do preço para mobile */
    .current-price {
        font-size: 3.5rem;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 0.25rem;
    }

    .currency {
        font-size: 1.75rem;
        margin-top: 0.25rem;
    }

    .amount {
        font-size: 3.5rem;
        line-height: 1;
    }

    .cents {
        font-size: 1.75rem;
        margin-top: 0.25rem;
    }

    /* Carrossel mobile - mostrar 1 imagem por vez */
    .testimonials-carousel {
        padding: 0 50px;
    }

    .carousel-slide {
        flex: 0 0 100%;
        width: 100%;
    }

    .carousel-slide img {
        height: 500px;
    }

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

    .carousel-btn i {
        width: 20px;
        height: 20px;
    }

    /* Ajustes gerais de espaçamento */
    .btn-hero {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
    }

    .hero-img-container {
        height: 400px;
    }

    /* Ajuste do header mobile */
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* Media query adicional para telas muito pequenas */
@media (max-width: 480px) {
    .current-price {
        font-size: 3rem;
    }

    .amount {
        font-size: 3rem;
    }

    .currency,
    .cents {
        font-size: 1.5rem;
    }

    .carousel-slide img {
        height: 450px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}