/* ==========================================================================
   RESET & VARIABLES
   ========================================================================== */
   :root {
    --bg-main: #f7f7f7;
    --bg-dark: #121212;
    --bg-card: #ffffff;
    --text-main: #2d2d2d;
    --text-light: #f7f7f7;
    --primary: #27ae60;
    --primary-hover: #219653;
    --accent: #f1c40f;
    --accent-text: #d4ac0d;
    --spacing-section: 10px;
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 {
    text-transform: capitalize;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    color: var(--text-main);
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.highlight-text {
    font-weight: 800;
    color: var(--accent-text);
    font-size: 1.2rem;
    margin: 20px 0;
}

.highlight-yellow {
    color: var(--accent);
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.1rem;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.text-muted {
    color: #6c757d;
}

.uppercase-muted {
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-section) 20px;
    text-align: center;
}

.dark-bg {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg p.subtitle {
    color: var(--text-light);
}

.dark-bg .highlight-text {
    color: var(--accent);
}

/* ==========================================================================
   IMAGES & MEDIA
   ========================================================================== */
img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: var(--border-radius);
    display: block;
}

.hero-img {
    max-width: 90%;
    margin-bottom: 30px;
}

/* ==========================================================================
   LISTS & CHECKMARKS
   ========================================================================== */
ul {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 20px 0;
    padding-left: 0;
}

ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Custom Green Checkmark styled lists */
.check-styled li {
    position: relative;
    padding-left: 35px;
}

.check-styled li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    /* This SVG creates the green circle with a check inside, as requested */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M8 12l3 3 5-6'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    max-width: 380px;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   BONUS SECTION CARDS
   ========================================================================== */
.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.bonus-card {
    background-color: var(--bg-card);
    border: 2px solid #eaeaea;
    border-top: 5px solid var(--primary);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.15);
    border-color: #dcdcdc;
}

.bonus-card h3 {
    color: var(--text-main);
    margin-top: 15px;
    font-size: 1.4rem;
}

.bonus-card img {
    max-width: 220px;
    margin: 0 auto 20px auto;
}

.bonus-features {
    margin: 15px 0;
}

.bonus-features li {
    font-weight: 400;
    margin-bottom: 10px;
}

.bonus-price {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eaeaea;
    text-align: center;
}

.bonus-price .strikethrough {
    color: #e74c3c;
    margin-right: 8px;
}

.bonus-price strong {
    color: var(--primary);
    font-size: 1.4rem;
}

/* ==========================================================================
   OFERTA & PRICE
   ========================================================================== */
.oferta-card {
    background-color: var(--bg-card);
    border: 3px solid var(--primary);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.15);
    margin: 20px auto;
    position: relative;
    max-width: 600px;
}

.oferta-title {
    color: var(--primary);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    color: var(--text-main);
    margin: 5px 0;
    font-weight: 800;
}

.price .usd {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a4a4a;
}

.oferta-image-box {
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 5px;
    margin: 15px -10px 25px -10px;
}

.oferta-image-box img {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
}

.oferta-details {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.oferta-bonus-title {
    margin-top: 20px;
    font-weight: bold;
    color: var(--primary);
}

.warning-text {
    color: #e74c3c;
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 20px;
    line-height: 1.4;
}

.urgency-sub {
    font-weight: 600;
    margin-top: 10px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 600;
    text-align: left;
    border-left: 4px solid var(--accent);
}

.testimonial p {
    margin-bottom: 0;
}

.quote-icon {
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 5px;
}

.testimonial-author {
    margin-top: 10px;
    font-weight: 800;
    color: var(--accent);
    text-align: right;
    font-style: normal;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-item summary {
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 800;
    padding: 20px;
    cursor: pointer;
    list-style: none; /* remove default triangle */
    position: relative;
    outline: none;
    transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background-color: #fcfcfc;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid #eee;
}

.faq-content {
    padding: 20px;
    animation: slideDown 0.3s ease-out;
}

.faq-content p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #555;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ANIMATIONS (SCROLL)
   ========================================================================== */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: #050505;
    color: #777;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

/* ==========================================================================
   MEDIA QUERIES (DESKTOP)
   ========================================================================== */
@media (min-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }
    
    p, ul li {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1.3rem;
        padding: 22px 35px;
        max-width: 450px;
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}
