/* Estilos Gerais */
:root {
    --primary-color: #4ECDC4; /* Verde-água */
    --secondary-color: #1A535C; /* Azul-petróleo */
    --accent-color: #FFE66D; /* Amarelo-âmbar */
    --text-color: #292F36; /* Cinza-escuro */
    --bg-color: #F7FFF7; /* Branco-gelo */
    --danger-color: #FF6B6B; /* Vermelho para alertas */
    --light-color: #f4f4f4;
    --dark-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

.section-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.highlight {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1em;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 0 rgba(26, 83, 92, 0.2);
}

.btn-primary:hover {
    background-color: #FFD23F;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(26, 83, 92, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header / Hero */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-color);
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero h1 {
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    transform: rotate(15deg);
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.main-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Problem Section */
.problem {
    background-color: white;
    padding: 5rem 0;
}

.problem h2 {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--secondary-color);
}

.problem-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.problem-text {
    flex: 1;
}

.problem-image {
    flex: 1;
}

.comparison-image {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Risks Section */
.risks {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.risks h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.risk-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.risk-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.risk-alert {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.risk-alert p:last-child {
    margin-bottom: 0;
}

/* Solution Section */
.solution {
    background-color: white;
    padding: 5rem 0;
}

.solution-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.solution-image {
    flex: 1;
    text-align: center;
}

.solution-features {
    flex: 1;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    margin-bottom: 0.5rem;
}

.ebook-mockup {
    max-width: 80%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Chapters Section */
.chapters {
    background-color: white;
    padding: 5rem 0;
}

.chapters h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.chapters-content {
    display: flex;
    gap: 3rem;
}

.chapters-list {
    flex: 2;
}

.chapters-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapter {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.chapter:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.chapter-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.chapter-content h3 {
    margin-bottom: 0.3rem;
}

.rounded-image {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 1rem;
}

.testimonial-content {
    position: relative;
}

.quote {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--secondary-color);
}

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

.testimonial-controls button {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-controls button:hover {
    background-color: var(--secondary-color);
}

/* Comparison Section */
.comparison {
    background-color: white;
    padding: 5rem 0;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-column {
    flex: 1;
    background-color: white;
}

.comparison-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.highlight-column {
    background-color: var(--primary-color);
    color: white;
}

.highlight-column .comparison-header {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.comparison-price {
    padding: 3rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.price-text {
    font-size: 1.2rem;
}

/* Bonus Section */
.bonus {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.bonus-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: flex;
}

.bonus-number {
    width: 60px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.bonus-content {
    padding: 1.5rem;
    flex: 1;
}

.bonus-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.bonus-value {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.bonus-total {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
}

.bonus-total span {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Guarantee Section */
.guarantee {
    background-color: white;
    padding: 5rem 0;
}

.guarantee-content {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 3rem;
}

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

.guarantee-seal {
    width: 180px;
    height: 180px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--secondary-color);
}

.guarantee-seal-days {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    line-height: 1;
}

.guarantee-seal-text {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    text-align: center;
}

.guarantee-text {
    flex: 2;
}

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

.offer-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.offer-content {
    max-width: 700px;
    margin: 0 auto;
}

.offer-box {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    text-align: center;
}

.offer-value {
    margin-bottom: 2rem;
}

.offer-original {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.offer-original span {
    text-decoration: line-through;
    color: #999;
}

.offer-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 0.3rem;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 700;
}

.offer-payment {
    font-size: 1rem;
    color: #666;
}

.offer-includes {
    margin-bottom: 2rem;
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.offer-includes li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.offer-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.offer-cta {
    margin-bottom: 1rem;
}

.offer-secure {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.secure-payment-icon {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.secure-payment-icon::before {
    content: '🔒';
    margin-right: 0.5rem;
}

/* FAQ Section */
.faq {
    background-color: white;
    padding: 5rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Final CTA Section */
.final-cta {
    background-color: var(--bg-color);
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1.5rem;
}

.final-cta p {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.final-cta-button {
    margin-bottom: 2rem;
}

.final-alert {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--accent-color);
    border-radius: var(--border-radius);
    color: var(--secondary-color);
    font-weight: 500;
}

.final-alert p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: white;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Icons */
.icon-stain::before {
    content: '💧';
}

.icon-hair::before {
    content: '💇';
}

.icon-crack::before {
    content: '⚠️';
}

.icon-color::before {
    content: '🎨';
}

.icon-storage::before {
    content: '📦';
}

.icon-organized::before {
    content: '📋';
}

.icon-practical::before {
    content: '🛠️';
}

.icon-prevention::before {
    content: '🛡️';
}

.icon-handling::before {
    content: '👐';
}

.icon-cleaning::before {
    content: '🧼';
}

.icon-hair-care::before {
    content: '💆';
}

.icon-clothing::before {
    content: '👕';
}

.icon-products::before {
    content: '🧴';
}

.icon-storage-care::before {
    content: '📥';
}

.icon-maintenance::before {
    content: '🔧';
}

.icon-checklist::before {
    content: '✅';
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-badge {
        top: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }
    
    .problem-content,
    .solution-content,
    .chapters-content,
    .guarantee-content {
        flex-direction: column;
    }
    
    .comparison-table {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .benefits-grid,
    .risks-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-box {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
