/* CSS Variables for Theme */
:root {
    --primary: #1a5c2e;    /* Verde escuro */
    --primary-light: #2c8c48;
    --primary-dark: #0f3a1c;
    
    --accent: #c4621a;     /* Laranja/terra */
    --accent-hover: #e8721c;
    --accent-dark: #9e4e13;
    
    --btn-green: #22c55e;
    --btn-green-hover: #16a34a;
    
    --bg-main: #faf8f3;    /* Creme */
    --bg-alt: #1a5c2e;     /* Fundo alternativo verde */
    
    --text-main: #2b2b2b;
    --text-light: #ffffff;
    --text-muted: #555555;
    
    --border-color: #e5e0d3;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.15);
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 12px;
}

/* Reset and Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--text-muted);
}

.text-light {
    color: var(--text-light) !important;
}

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

/* Button & Animations */
.cta-button {
    display: inline-block;
    background-color: var(--btn-green);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
    width: 100%;
    max-width: 400px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--btn-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* BLOCK 1: Hero */
.hero {
    text-align: center;
    padding: 60px 0 80px;
    background: radial-gradient(circle at top center, #ffffff 0%, var(--bg-main) 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-weight: 500;
}

.video-placeholder {
    max-width: 320px;
    height: 568px; /* Vertical / Mobile aspect ratio */
    background-color: #d1d5db;
    margin: 0 auto 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    background-image: linear-gradient(135deg, #e5e7eb, #9ca3af);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding-left: 6px; /* Visual center adjustment */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s;
}

.play-button:hover {
    transform: scale(1.1);
}

/* BLOCK 2: Dor */
.pain {
    background-color: #ffffff;
}

.pain-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.pain-list li {
    font-size: 1.15rem;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background-color: var(--bg-main);
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.cross {
    color: #ef4444;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* BLOCK 3: Como Funciona */
.highlight-box {
    background-color: rgba(26, 92, 46, 0.05);
    border: 1px solid rgba(26, 92, 46, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-dark);
    max-width: 800px;
    margin: 0 auto 40px;
    border-left: 4px solid var(--primary);
}

.gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.mockup-img {
    width: 200px;
    height: 250px;
    background-color: #e5e7eb;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
    font-weight: 500;
}

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

.category-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent);
}

.category-card h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.category-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* BLOCK 4: Como Usar */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    position: relative;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-card h4 {
    color: #fff;
    margin-bottom: 12px;
}

.step-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* BLOCK 5: Organização Inteligente */
.organization {
    background-color: #fff;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-card {
    background: var(--bg-main);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.2s;
}

.filter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.filter-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.filter-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* BLOCK 6: Bônus */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
}

.bonus-img {
    height: 230px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bonus-card h4 {
    color: #fff;
    margin-bottom: 8px;
}

.strike {
    text-decoration: line-through;
    color: #ff8a8a;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.bonus-card p:not(.strike) {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.bonus-total {
    text-align: center;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: var(--radius);
    color: var(--accent);
}

.bonus-total strong {
    color: #fff;
}

/* BLOCK 7: Oferta Especial */
.offer {
    background-color: var(--bg-main);
}

.countdown {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ef4444;
    margin-bottom: 40px;
    font-family: monospace;
}

.countdown small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.pricing-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.pricing-card.focus {
    border: 3px solid var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.plan-name {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.prices {
    text-align: center;
    margin-bottom: 30px;
}

.price-strike {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price-current {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin: 10px 0;
}

.price-savings {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
}

.plan-btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 20px;
}

.installments {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    font-weight: 500;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius);
}

.stars {
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.9);
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    color: #fff;
    font-family: var(--font-heading);
}

.author span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

/* Media Queries para Mobile-first aprimoramentos */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-card.focus {
        transform: none;
    }
    
    .guarantees {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
