/* style.css */

/* Variáveis e Reset Básico */
:root {
    --primary-color: #FE2C55; /* Cor do TikTok */
    --secondary-color: #25F4EE; /* Cor de destaque */
    --text-color: #333;
    --background-color: #f8f8f8;
    --white: #ffffff;
    --dark-gray: #444;
}

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

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

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

/* Header e Headlines */
.hero {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.headline {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--secondary-color); /* Destaque na cor secundária */
}

.sub-headline {
    font-size: 1.4em;
    font-weight: 400;
    color: #ccc;
}

/* VSL Section */
.vsl-section {
    padding: 40px 0;
    background-color: var(--white);
}

.vsl-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vsl-cta-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Offer Box (Preço e CTA) */
.offer-box {
    background-color: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
    text-align: center;
}

.offer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.offer-text h3 {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.price-old {
    text-decoration: line-through;
    font-size: 1.2em;
    color: #ccc;
}

.price-new {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 5px;
}

.price-value {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.timer-box {
    margin-top: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

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

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 20px 40px;
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 15px;
    line-height: 1.2;
}

.cta-button:hover {
    background-color: #1ed4d1;
    transform: translateY(-2px);
}

.cta-subtext {
    font-size: 0.9em;
    margin-top: 10px;
    color: #fff;
}

/* Proof Section (Detalhes do Produto) */
.proof-section {
    padding: 60px 0;
    text-align: center;
}

.proof-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.product-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    text-align: left;
}

.ebook-mockup {
    max-width: 300px;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.value-list {
    max-width: 500px;
}

.value-list ul {
    list-style: none;
    padding-left: 0;
}

.value-list li {
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

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

.bonus-item {
    font-weight: 600;
    color: var(--primary-color);
}

.bonus-item::before {
    content: '🎁';
    color: var(--primary-color);
}

/* Objection Section */
.objection-section {
    background-color: #eee;
    padding: 50px 0;
    text-align: center;
}

.objection-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.objection-list {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
}

.objection-list ul {
    list-style: disc;
    padding-left: 40px;
}

.objection-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.guarantee {
    background-color: var(--white);
    padding: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 600;
    font-size: 1.1em;
}

/* Final CTA */
.final-cta {
    padding: 50px 0;
    text-align: center;
    background-color: var(--dark-gray);
    color: var(--white);
}

.final-cta-text {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background-color: #222;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

footer a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .headline {
        font-size: 2em;
    }

    .sub-headline {
        font-size: 1.2em;
    }

    .offer-content {
        flex-direction: column;
    }

    .cta-area {
        margin-top: 20px;
    }

    .product-details {
        flex-direction: column;
    }

    .ebook-mockup {
        margin-bottom: 30px;
    }
}
