:root {
    --primary-red: #E02020;
    --primary-green: #2ECC71;
    --primary-orange: #FFA500;
    --primary-purple: #6f42c1;
    --text-dark: #333333;
    --bg-white: #FFFFFF;
    --font-main: 'Roboto', 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.5;
    padding: 20px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Headline Section */
.headline-section {
    margin-bottom: 30px;
}

.headline-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: #FF0000 !important; /* Vermelho puro e forçado */
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-red {
    color: var(--primary-red);
    text-decoration: underline;
}

.sub-headline {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Video Section */
.video-section {
    margin-bottom: 50px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    background: #000;
    border-bottom: 8px solid var(--primary-red);
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    display: block;
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.1);
}

.play-button {
    width: 100px;
    height: 100px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(224, 32, 32, 0.5);
    transition: transform 0.3s ease;
}

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

.play-triangle {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 35px solid white;
    margin-left: 10px;
}

/* Offer Section */
.offer-section {
    padding: 40px 0;
    background-color: #fff;
}

.offer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

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

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

.price-only {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    font-style: italic;
    margin-bottom: -10px;
}

.price-value {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.cta-button {
    background-color: var(--primary-orange);
    color: #002D5B; /* Azul escuro */
    border: none;
    padding: 20px 40px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

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

.cta-button:active {
    transform: translateY(0);
}

.button-text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.button-icon {
    font-size: 24px;
    margin-bottom: 5px;
    background: #002D5B; /* Azul escuro */
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

/* Flex row for button text and icon */
.cta-button .text-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.button-subtext {
    font-size: 14px;
    font-weight: 700;
    opacity: 1;
}

.cta-link {
    display: block;
    margin-top: 15px;
    color: var(--primary-purple);
    font-size: 18px;
    text-decoration: underline;
    font-weight: 700;
}

/* Bonus Section */
.bonus-section {
    margin-top: 60px;
    text-align: left;
}

.guarantee-badge-top {
    text-align: right;
    margin-bottom: 20px;
}

.bonus-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.gift-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.gift-image {
    flex: 0 0 250px;
}

.gift-image img {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gift-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.gift-text p {
    font-size: 18px;
    color: #333;
}

/* Guarantee Section */
.guarantee-section {
    margin-top: 80px;
    text-align: center;
}

.guarantee-badge-large img {
    max-width: 250px;
    margin-bottom: 30px;
}

.guarantee-text h3 {
    font-size: 32px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.bundle-large-image img {
    max-width: 100%;
}

/* Final CTA Section */
.final-cta {
    margin-top: 80px;
    padding-bottom: 100px;
}

.final-cta h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.final-price {
    font-size: 54px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.guarantee-badge-bottom {
    margin-top: 40px;
}

/* Image Placeholders */
.image-placeholder {
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #999;
    padding: 20px;
    margin: 0 auto;
}

.placeholder-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.placeholder-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-bundle-placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
}

.badge-placeholder {
    width: 100px;
    height: 100px;
}

.badge-large-placeholder {
    width: 200px;
    height: 150px;
}

.gift-placeholder {
    width: 100%;
    height: 350px;
}

.full-bundle-placeholder {
    width: 100%;
    max-width: 800px;
    height: 400px;
}

/* Responsive */
@media (max-width: 768px) {
    .gift-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .offer-content {
        flex-direction: column;
    }
    
    .headline-section h1 {
        font-size: 26px;
    }
    
    .price-value {
        font-size: 48px;
    }

    .gift-placeholder {
        max-width: 250px;
    }
}

/* Legal Footer */
.legal-footer {
    padding: 40px 0;
    text-align: center;
    font-family: var(--font-main);
    color: #666;
    font-size: 13px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-footer hr {
    border: 0;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.legal-links {
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.legal-links a {
    color: #0000EE;
    text-decoration: underline;
    margin: 0 5px;
}

.legal-footer p {
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

/* Founder Section */
.founder-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.founder-image img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .founder-image img {
        width: 180px;
        height: 180px;
    }
    
    .founder-text p {
        font-size: 18px;
    }
}

/* Delay Class */
.hide-delay {
    display: none !important;
}
