/* Premium Aggressive Redesign */
:root {
    --bg-black: #000000;
    --bg-white: #ffffff;
    --brand-yellow: #ffff00;
    --brand-green: #00e600;
    --brand-orange: #ff3300;
    --text-black: #000000;
    --text-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.4;
    overflow-x: hidden;
    padding-top: 45px;
    /* Added to push content below the fixed bar */
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Aggressive Urgency Bar */
.urgency-bar {
    background-color: var(--brand-orange);
    color: var(--text-white);
    text-align: center;
    padding: 12px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: fixed;
    /* Changed to fixed for guaranteed visibility */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
    padding: 60px 0;
}

.section-black {
    background-color: var(--bg-black);
    color: var(--text-white);
}

.section-yellow {
    background-color: var(--brand-yellow);
    color: var(--text-black);
}

/* Premium Headlines */
.headline-main {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-yellow);
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow:
        3px 3px 0px rgba(255, 0, 0, 0.7),
        -3px -3px 0px rgba(0, 0, 255, 0.7),
        0 0 20px rgba(255, 255, 0, 0.3);
    margin-bottom: 30px;
    padding: 0 10px;
}

.headline-accent {
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.5;
    display: block;
    margin-top: 25px;
    padding: 0 15px;
    opacity: 0.9;
}

/* Responsive Scaling for Headlines */
@media (max-width: 480px) {
    .headline-main {
        font-size: 1.8rem;
        padding: 0 5px;
    }

    .headline-accent {
        font-size: 0.95rem;
    }
}

/* Sleek Premium CTA Button */
.btn-cta {
    background: linear-gradient(180deg, #00ff00 0%, #008000 100%);
    color: #fff;
    padding: 16px 20px;
    display: table;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.15rem;
    border-radius: 8px;
    text-transform: uppercase;
    margin: 30px auto;
    width: 90%;
    max-width: 420px;
    border: none;
    border-bottom: 4px solid #004d00;
    box-shadow: 0 8px 15px rgba(0, 230, 0, 0.3);
    transition: all 0.2s ease;
    cursor: pointer;
    line-height: 1.2;
}

.btn-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #1aff1a 0%, #009900 100%);
    box-shadow: 0 12px 25px rgba(0, 255, 0, 0.4);
}

.btn-cta:active {
    transform: translateY(2px);
    border-bottom-width: 1px;
}

@media (max-width: 480px) {
    .btn-cta {
        font-size: 0.95rem;
        padding: 14px 15px;
        margin: 25px auto;
    }
}

/* Boxed Headers (As seen in Images) */
.boxed-header {
    background-color: var(--bg-black);
    color: var(--brand-yellow);
    padding: 25px 15px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.yellow-highlight-box {
    background-color: var(--brand-yellow);
    border: 3px solid var(--bg-black);
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.3rem;
    line-height: 1.3;
}

/* Video Testimonials Grid */
.video-testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.video-testimonial-card {
    position: relative;
    padding-bottom: 177.78%;
    /* 9:16 Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: 3px solid var(--brand-yellow);
    background: #000;
}

.video-testimonial-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 480px) {
    .video-testimonials {
        gap: 10px;
    }
}

/* Facebook-Style Testimonials */
.fb-comments {
    padding: 20px 0;
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
}

.fb-comment {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    padding: 0 10px;
}

.fb-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.fb-content {
    flex-grow: 1;
}

.fb-bubble {
    background-color: #f1f2f6;
    padding: 10px 15px;
    border-radius: 20px;
    display: inline-block;
    max-width: 100%;
}

.fb-name {
    font-weight: 700;
    color: #385898;
    font-size: 0.9rem;
    margin-bottom: 2px;
    display: block;
}

.fb-text {
    font-size: 0.9rem;
    color: #1c1e21;
    line-height: 1.3;
}

.fb-footer {
    font-size: 0.75rem;
    color: #606770;
    margin-top: 5px;
    padding-left: 5px;
}

.fb-footer span {
    margin-right: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* Modern Premium Pricing Section */
#oferta {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    color: var(--text-white);
}

.price-section {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.price-section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 0, 0.3), transparent);
    z-index: -1;
    border-radius: 32px;
    opacity: 0.5;
}

.price-de {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.price-por {
    font-size: 1rem;
    color: var(--brand-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.price-main {
    font-size: 9rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 20px 0;
    background: linear-gradient(180deg, #ffffff 30%, #aaaaaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-currency {
    font-size: 3rem;
    margin-top: 15px;
    margin-right: 10px;
    font-weight: 700;
    color: var(--brand-yellow);
    -webkit-text-fill-color: var(--brand-yellow);
    /* Reset gradient for currency */
}

.action-urgency {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    border: 1px solid rgba(255, 51, 0, 0.3);
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
}

@media (max-width: 480px) {
    .price-section {
        padding: 40px 20px;
        width: 95%;
    }

    .price-main {
        font-size: 6.5rem;
    }

    .price-currency {
        font-size: 2.2rem;
    }
}

/* Numbered List (Image 5 style) */
.numbered-section {
    text-align: center;
}

.big-number {
    font-size: 7rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 10px;
}

.number-desc {
    font-size: 1.2rem;
    color: var(--text-white);
    max-width: 80%;
    margin: 0 auto 50px;
    line-height: 1.4;
}

/* Module Items (Image 3 style) */
.module-list {
    padding: 30px 0;
}

.module-card {
    text-align: center;
    margin-bottom: 60px;
}

.module-check-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.module-title-number {
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.module-description {
    font-size: 1.1rem;
    color: var(--text-black);
    max-width: 90%;
    margin: 0 auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: 0.3s transform;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* VSL Box */
.vsl-box {
    background-color: #000;
    padding: 20px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* default desktop */
    height: 0;
}

@media (max-width: 768px) {
    .video-wrapper {
        padding-bottom: 177.78%;
        /* Proporção 9:16 para Mobile */
        max-width: 350px;
        margin: 20px auto;
    }
}

.video-wrapper>vturb-smartplayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Main Action Button (Image 4 style) */
.btn-cta {
    background-color: var(--brand-green);
    color: #fff;
    padding: 25px 20px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 15px;
    text-transform: uppercase;
    margin: 40px auto;
    max-width: 90%;
    box-shadow: 0 5px 20px rgba(0, 230, 0, 0.4);
    transition: 0.3s transform;
}

.btn-cta:hover {
    transform: translateY(-3px);
}

/* General Layout Utils */
.text-yellow {
    color: var(--brand-yellow);
}

.text-green {
    color: var(--brand-green);
}

.text-orange {
    color: var(--brand-orange);
}

.font-bold {
    font-weight: 900;
}

.uppercase {
    text-transform: uppercase;
}