/* Variáveis de Cores - PADRÃO ORIGINAL RESTAURADO */
:root {
    --primary-color: #00ff0d; /* Rosa Pink Original */
    --primary-hover: #00bd09;
    --bg-teal: #bdbdbd;       /* Verde Água Claro Original */
    --bg-dark-teal: #747474;
    --bg-black: #050505;
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fcfcfc;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Botões */
.btn {
    display: inline-block;
    color: green;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 20px 0;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

/* Backgrounds Úteis */
.bg-teal { background-color: var(--bg-teal); color: var(--text-dark); }
.bg-black { background-color: var(--bg-black); color: var(--text-light); }

/* SEÇÃO 1: Hero Dark */
.hero-dark {
    background-color: var(--bg-black);
    color: var(--text-light);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text .logo {
    margin-bottom: 30px;
    max-width: 120px;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #cccccc;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* SEÇÃO 2 & 6: Depoimentos (Quotes) */
.quote-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.quote-section p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 20px;
}

/* SEÇÃO 3: Benefícios */
.benefits-section h2 {
    margin-bottom: 40px;
    font-size: 24px;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.benefits-list i {
    color: #aaa;
    margin-top: 5px;
}

/* SEÇÃO 4: Para quem é (Cards) */
.target-audience h2 {
    margin-bottom: 40px;
    font-size: 24px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.card i {
    font-size: 30px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.card p {
    font-size: 14px;
}

/* SEÇÃO 5: Oferta e Preço */
.offer-section {
    background: linear-gradient(to bottom, #ffffff 30%, var(--bg-teal) 60%);
}

.offer-section h2 {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 22px;
}

.pricing-box {
    background-color: #ffffff;
    max-width: 500px;
    margin: 50px auto 0px auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-box img {
    max-width: 300px;
    margin-bottom: -10px;
}

.pricing-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.check-list {
    list-style: none;
    text-align: center;
    margin-bottom: 0px;
    font-size: 14px;
    align-content: center;
    align-items: center;
    align-self: center;
}

.check-list li {
    margin-bottom: 10px;
    align-content: center;
    align-items: center;
}

.price-container {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.promo-text {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

.new-price-label {
    font-size: 14px;
    font-weight: bold;
}

.new-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.installments {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* SEÇÃO 7: Autores */
.authors-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.author-image img {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.author-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.author-text p {
    margin-bottom: 15px;
    font-size: 15px;
}

/* SEÇÃO 8: Banner Faixa Preta */
.black-banner {
    background-color: var(--bg-black);
    color: var(--text-light);
    padding: 40px 20px;
}

.black-banner h2 {
    font-size: 20px;
    font-weight: 400;
}

/* SEÇÃO 9: Presente */
.gift-section p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 15px;
}

.gift-section h2 {
    margin-bottom: 30px;
}

/* SEÇÃO 10: Footer */
footer {
    background-color: var(--bg-black);
    color: #aaa;
    font-size: 13px;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-col a:hover {
    color: #fff;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero-content, 
    .authors-content {
        flex-direction: column;
        text-align: center;
    }

    .author-text {
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .offer-section {
        background: var(--bg-teal); 
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 28px;
    }
}