@import url('https://fonts.googleapis.com/css2?family=Oregano&family=Poppins:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-green: #27ae60;
    --primary-green-hover: #219150;
    --primary-blue: #1e88e5;
    --dark-slate: #2c3e50;
    --text-dark: #333;
    --text-light: #fff;
    --price-red: #ff0000;
    --price-green: #2ecc71;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oregano', cursive;
    /* As per analysis */
    /* Fallback to Roboto if Oregano is too decorative for everything, but sticking to analysis */
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-green {
    background-color: var(--primary-green);
    color: white;
}

.btn-green:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://pages.greatpages.com.br/www.consultor360.online-checkup/1767743970/imagens/desktop/3471083_1_695c2be15da69.jpeg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.84);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}



.hero-subtitle-top {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    height: 0;
    margin: 0 auto 30px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-vertical {
    max-width: 320px;
    /* Width for vertical video */
    padding-bottom: 568px;
    /* Fixed height approach or aspect ratio */
    height: auto;
}

/* Fallback for responsive iframe if using aspect-ratio */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pain Points Section */
.pain-points {
    padding: 20px 0 40px;
    background-color: #fff;
    text-align: center;
}

.pain-points h2 {
    color: var(--dark-slate);
    margin-bottom: 30px;
    font-size: 2rem;
    line-height: 1.2;
}

.pain-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pain-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #555;
    font-weight: 500;
}

.pain-list li span {
    color: #c0392b;
    /* Dark red for the X */
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 5px;
}

.pain-summary {
    margin-top: 25px;
    font-size: 1rem;
    color: #777;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Explanation Section */
.explanation {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.explanation-card {
    background-color: #2c3e50;
    /* Dark slate */
    border-radius: 20px;
    padding: 50px 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    margin: 0 auto;
}

.explanation-card h2 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 2rem;
}

.explanation-card p {
    color: #ecf0f1;
    font-size: 1rem;
    margin-bottom: 25px;
}

.explanation-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.explanation-list li {
    padding: 5px 0;
    border-bottom: none;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #bdc3c7;
}

.explanation-list li::before {
    content: '→';
    color: #fff;
    margin-right: 8px;
    font-weight: bold;
}

.explanation-footer {
    margin-top: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
}

/* Product Section */
.product {
    padding: 20px 0 40px;
    background-color: #fff;
    text-align: center;
}

.product h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.25;
}

.product-desc {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.features-list li {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
    padding: 0;
    font-size: 1rem;
    color: #444;
}

.features-list li::before {
    content: '✔';
    color: var(--primary-green);
    margin-right: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.product-divider {
    width: 200px;
    height: 3px;
    background-color: #bdc3c7;
    margin: 30px auto;
    border: none;
    border-radius: 2px;
}

.disclaimer-text {
    font-family: 'Oregano', cursive;
    font-size: 1.3rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    padding: 10px;
}

.disclaimer-icon {
    font-size: 1.5rem;
    margin-right: 5px;
    vertical-align: middle;
}

/* Offer Section */
.offer {
    padding: 40px 0 80px;
    background: #fff;
    text-align: center;
}

.offer-card {
    background-color: #2c3e50;
    color: white;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    /* Removed border-top to match screenshot */
}





.offer-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.1;
    font-weight: 700;
}

.price-tag {
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
    color: #ecf0f1;
    font-weight: 500;
}

.price-old {
    font-size: 2rem;
    color: #ff0000;
    /* Pure red as per screenshot */
    text-decoration: line-through;
    margin: 5px 0 15px;
    display: block;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.price-new {
    font-size: 5rem;
    /* Larger */
    font-weight: 800;
    color: #2ecc71;
    /* Bright green */
    line-height: 1;
    display: block;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.offer-desc {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #222;
    color: #777;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .pain-list li,
    .explanation-list li {
        font-size: 1rem;
    }

    .price-new {
        font-size: 3.5rem;
    }

    .offer-card {
        padding: 30px 20px;
        width: 90%;
    }
}

.price-tag {
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
    color: #ecf0f1;
}

.offer-desc {
    font-size: 0.95rem;
    color: #bdc3c7;
    margin-bottom: 30px;
    font-weight: bold;
}

.footer {
    background-color: #222;
    color: #777;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .pain-list li,
    .explanation-list li {
        font-size: 1rem;
    }

    .price-new {
        font-size: 3rem;
    }
}