/* Variables de color */
:root {
    --primary-bg: #000000; /* Fondo negro */
    --secondary-color: #6FD26F; /* Verde principal */
    --text-color: #F0F0F0; /* Blanco suave para texto general */
    --heading-color: #FFFFFF; /* Blanco puro para títulos */
    --accent-color: #BFBFBF ; /* Amarillo para acentos y precios */
    --button-bg: #6FD26F;
    --button-text: #000000;
    --border-color: #333333; /* Gris oscuro para bordes y separadores */
    --light-grey: #A0A0A0; /* Gris claro para subtítulos y texto secundario */
}

/* Base */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

b, strong {
    color: var(--secondary-color); /* Hace que las palabras en negrita resalten */
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

span {
    color: var(--secondary-color)
}

a:hover {
    color: var(--accent-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(111, 210, 111, 0.4);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 215, 0, 0.6);
}

hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 4rem 0;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Header/Hero Section */

.bambu-trader-logo {
    max-width: 120px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a1a1a 100%);
    padding: 0 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--heading-color);
    text-shadow: 0 0 10px rgba(111, 210, 111, 0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--light-grey);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.4;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.ebook-image {
    max-width: 400px;
    height: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.price-launch {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.5);
}

.limited-offer {
    font-size: 1.1rem;
    color: var(--light-grey);
    font-style: italic;
    margin-top: 1rem;
}

/* Problem Solution Section */
.problem-solution {
    background-color: var(--primary-bg);
}

.problem-solution h2 {
    color: var(--heading-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.problem-item {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
    background-color: #2a2a2a;
}

.problem-item .icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.problem-item h3 {
    color: var(--heading-color);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.problem-item p {
    color: var(--light-grey);
    font-size: 1rem;
}

.problem-solution .call-to-action {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 4rem;
    line-height: 1.5;
}

/* Statistics Section */
.statistics {
    background-color: #0d0d0d;
}

.statistics h2 {
    color: var(--heading-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stat-item {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.02);
}

.stat-item .icon-stat {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.stat-item h3 {
    color: var(--secondary-color);
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.stat-item p {
    color: var(--light-grey);
    font-size: 1.1rem;
}

.statistics .conclusion {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 4rem;
}

.image-container {
    display: flex;
    width: 100%;
    justify-content: center;
}

.image-container > img {
    max-width: 300px;
}

/* Value Proposition Section */
.value-proposition {
    background-color: var(--primary-bg);
}

.value-proposition h2 {
    color: var(--heading-color);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-item:hover {
    background-color: #2a2a2a;
    transform: translateY(-5px);
}

.value-item .icon-value {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: var(--heading-color);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.value-item p {
    color: var(--light-grey);
    font-size: 1rem;
}

.cta-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--secondary-color);
}

.ebook-small-image {
    max-width: 250px;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.cta-details {
    text-align: center;
}

.price-final {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: -1rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
}

.guarantee {
    font-size: 1.2rem;
    color: var(--light-grey);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.guarantee .fas {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Bonuses Section */
.bonuses {
    background-color: #0d0d0d;
}

.bono-image {
    max-width: 150px;
}

.bonuses h2 {
    color: var(--heading-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.bonus-item {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--secondary-color);
}

.bonus-item h3 {
    color: var(--heading-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.bonus-item .fas {
    color: var(--accent-color);
    font-size: 2rem;
}

.original-price {
    color: var(--light-grey);
    font-size: 1.1rem;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.current-price {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bonus-item p {
    color: var(--light-grey);
    font-size: 1rem;
}

.bonus-value {
    text-align: center;
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-top: 3rem;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background-color: var(--primary-bg);
}

.faq h2 {
    color: var(--heading-color);
}

.faq-item {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 1.8rem 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #2a2a2a;
}

.faq-item h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.faq-item p {
    color: var(--light-grey);
    font-size: 1.05rem;
    margin-top: 1rem;
    display: none; /* Hidden by default */
}

/* Toggle for FAQ answer */
.faq-item.active p {
    display: block;
}

.faq-item h3::after {
    content: '\2b'; /* Plus sign */
    font-family: "Font Awesome 5 Free"; /* Ensure Font Awesome is loaded */
    font-weight: 900;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(180deg);
}


/* Footer */
footer {
    background-color: #0d0d0d;
    color: var(--light-grey);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero .subtitle {
        font-size: 1.3rem;
    }
    .hero-content {
        flex-direction: column;
    }
    .ebook-image {
        max-width: 350px;
    }
    .price {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 1.6rem;
    }
    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1.2rem;
    }
    .cta-bottom {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .bambu-trader-logo {
        width: 90px;
    }

    .container {
        padding: 1.5rem 1rem;
    }
    .hero {
        padding: 1rem 0 2rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero .subtitle {
        font-size: 1.1rem;
    }
    .ebook-image {
        max-width: 300px;
    }
    .price {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    .problem-grid, .stats-grid, .value-grid, .bonus-grid {
        grid-template-columns: 1fr;
    }
    .problem-item, .stat-item, .value-item, .bonus-item {
        padding: 1.5rem;
    }
    .cta-bottom {
        padding: 2rem;
    }
    .ebook-small-image {
        max-width: 200px;
    }
    .price-final {
        font-size: 3.5rem;
    }
    .guarantee {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero .subtitle {
        font-size: 1rem;
    }
    .ebook-image {
        max-width: 250px;
    }
    .price {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    .price-final {
        font-size: 3rem;
    }
    .guarantee {
        font-size: 1rem;
    }
}