/* --- FONTES LOCAIS (Self-Hosted) --- */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/poppins-v22-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/poppins-v22-latin-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/poppins-v22-latin-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/roboto-v32-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/roboto-v32-latin-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/roboto-v32-latin-700.woff2') format('woff2');
}

/* --- VARIAVEIS GLOBAIS --- */
:root {
    --primary-color: #5D4037;
    --secondary-color: #795548;
    --accent-color: #FF6D00;
    --btn-color: #4CAF50;
    --btn-hover: #388E3C;           
    --text-color: #4E342E;
    --text-light: #ffffff;
    --bg-light: #FFF8F0;            
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(93,64,55,0.08);
}

/* --- RESET BÁSICO --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- CONTAINERS & UTILITÁRIOS --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

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

.text-white {
    color: white !important;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- BOTÕES --- */
.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-cta:hover {
    background-color: #E65100;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 109, 0, 0.4);
}

.btn-cta-yellow {
    background-color: var(--accent-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4) !important;
}

.btn-cta-yellow:hover {
    background-color: #E65100 !important;
    color: #fff !important;
}

/* --- HERO SECTION --- */
.hero-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
    color: var(--white);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-benefits {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    flex-wrap: wrap;
    color: var(--white);
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-benefits svg {
    width: 18px;
    height: 18px;
    fill: #FFAB91;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    max-width: 100%;
    height: auto;
    display: block; 
}

/* --- GRIDS --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- CARDS COM ÍCONE (DORES) --- */
.card-icon {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.card-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.icon-wrapper {
    margin-bottom: 20px;
    display: inline-block;
}

.icon-svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
}

.card-icon h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* --- CTA SECTION (SOLUÇÃO) --- */
.cta-section {
    background-color: var(--primary-color);
}

.cta-section .subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 20px auto 40px;
}

/* --- CARD SIMPLE (BENEFÍCIOS) --- */
.card-simple {
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(93, 64, 55, 0.15);
    border-color: var(--secondary-color);
}

.icon-wrapper-simple {
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.card-simple:hover .icon-wrapper-simple {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.card-simple:hover .icon-svg-simple {
    fill: var(--white);
}

.icon-svg-simple {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
    transition: fill 0.3s ease;
}

.card-simple h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* --- CHECKLIST DETALHADA --- */
.checklist-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    max-width: 900px;
    margin: 0 auto;
}

.checklist-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: var(--text-color);
}

.checklist-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checklist-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--btn-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- BÔNUS CARDS --- */
.bonus-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 109, 0, 0.2);
    transform: translateY(-8px);
}

.bonus-badge {
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4);
}

.bonus-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bonus-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.bonus-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* --- COMO RECEBE --- */
.receive-card {
    background: var(--white);
    display: inline-block;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    max-width: 600px;
    margin-top: 30px;
}

.icon-receive svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-color);
    margin-bottom: 20px;
}

/* --- GALERIA / CARROSSEL AUTO-SCROLL --- */
.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px 20px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.gallery-scroll img {
    height: 420px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    flex-shrink: 0;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.gallery-scroll img:hover {
    transform: scale(1.02);
}

/* --- OFERTA FINAL --- */
.offer-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

.price-display {
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.price-display .currency {
    font-size: 2rem;
    margin-top: 10px;
}

.price-display .value {
    font-size: 5rem;
}

.price-display .cents {
    font-size: 2rem;
    margin-top: 10px;
}

.price-info {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.offer-list {
    text-align: left;
    margin-bottom: 30px;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.offer-list svg {
    width: 20px;
    fill: var(--btn-color);
    flex-shrink: 0;
}

/* --- FAQ / ACORDEÃO --- */
details {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 1.05rem;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '▼';
    font-size: 1rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

details[open] summary::after {
    content: '▲';
}

details[open] summary {
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
}

details p {
    padding: 20px;
    color: var(--text-color);
    margin: 0;
    background-color: #fff;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    border-top: none;
}

footer h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .offer-box, .checklist-container {
        padding: 30px 20px;
    }
    
    .price-display .value {
        font-size: 4rem;
    }
    
    .gallery-scroll img {
        height: 320px;
    }
}