/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #7e1e80;
    --primary-light: #d289d6;
    --secondary-color: #800080;
    --accent-green: #25d366;
    --accent-red: #E02B20;
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-cream: #f6ebe5;
    --bg-gray: #afaec9;
    --shadow-color: #636363;

    --font-heading: 'Cinzel', serif;
    --font-heading-decorative: 'Cinzel Decorative', serif;
    --font-body: 'Gabriela', serif;
    --font-accent: 'Commissioner', sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

.red-text,
.red {
    color: var(--accent-red);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: var(--primary-light);
    background-image: url('assets/foto-oficial-fondo-web-renace.webp');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    text-align: center;
}

.quote {
    font-family: var(--font-accent);
    font-size: 27px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.1;
}

/* ===== HEADLINE SECTION ===== */
.headline-section {
    background-color: var(--bg-light);
    padding: 30px 0 40px;
    text-align: center;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline double;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(195, 0, 244, 0);
}

.subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.video-container {
    width: 63%;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(53, 53, 53, 0.1);
    overflow: hidden;
}

.discover-text {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 15px;
}

/* ===== RECOGNIZE SECTION ===== */
.recognize-section {
    background-image: url('assets/foto-oficial-fondo-web-renace.webp');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 43px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.questions-list {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    max-width: 60%;
    margin: 0 auto 30px;
}

.questions-list p {
    margin-bottom: 15px;
}

.transform-question {
    font-family: var(--font-heading-decorative);
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 30px;
}

.invitation-text {
    font-family: var(--font-body);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.invitation-text p {
    margin-bottom: 20px;
}

.course-image {
    width: 56%;
    margin: 0 auto 30px;
    display: block;
}

.power-text {
    font-family: var(--font-body);
    font-size: 25px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.large-text {
    font-size: 1.2em;
}

.moment-text {
    font-size: 1.5em;
    margin-top: 20px;
}

.icon-arrow {
    color: var(--primary-color);
    font-size: 40px;
    margin: 20px 0;
}

/* ===== HOW SECTION ===== */
.how-section {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.how-intro {
    font-family: var(--font-body);
    font-size: 26px;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto 30px;
}

.how-intro span {
    color: var(--text-dark);
}

/* ===== ACCORDION ===== */
.accordion {
    max-width: 900px;
    margin: 0 auto 40px;
}

.accordion-item {
    margin-bottom: 5px;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: var(--primary-light);
}

.accordion-item.active .accordion-header {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    border-bottom: none;
}

.accordion-content {
    background-color: var(--bg-light);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-top: none;
}

.accordion-content p {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: left;
}

.accordion-header i {
    transition: transform 0.3s;
    font-size: 14px;
}

.accordion-item.active .accordion-header i::before {
    content: "\f00d";
}

/* ===== BONUSES ANNOUNCEMENT ===== */
.bonuses-announce {
    text-align: center;
    margin: 40px 0;
    animation: bounce 2s infinite;
}

.big-text {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bonuses-announce .red-text {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 600;
}

.bonuses-announce .red-text span {
    color: var(--accent-red);
}

/* ===== BONUSES SECTION ===== */
.bonuses-section {
    background-color: var(--bg-light);
    padding: 40px 0 60px;
}

.bonus-card {
    display: flex;
    align-items: center;
    gap: 30px;
    border: 3.5px dashed var(--primary-color);
    padding: 20px;
    margin-bottom: 38px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.bonus-image {
    flex: 0 0 40%;
    text-align: center;
}

.bonus-image img {
    width: 70%;
}

.bonus-content {
    flex: 1;
}

.bonus-title {
    font-family: var(--font-heading-decorative);
    font-size: 27px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.bonus-content p {
    font-family: var(--font-body);
    font-size: 21px;
    font-weight: 300;
    line-height: 1.3;
}

/* ===== FREE TODAY ===== */
.free-today {
    text-align: center;
    margin: 40px 0;
}

.red-underline {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--accent-red);
    text-decoration: underline;
    margin-bottom: 10px;
}

.free-today .emoji {
    color: var(--accent-red);
}

.free-today p:last-child {
    font-family: var(--font-body);
    font-weight: normal;
}

.module-screenshot {
    display: block;
    width: 53%;
    margin: 20px auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--bg-cream);
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offer-image {
    width: 48%;
    margin: 20px auto;
    display: block;
}

.price-image {
    width: 44%;
    margin: 20px auto;
    display: block;
    animation: slide-up 0.5s ease;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--text-light);
    font-family: var(--font-accent);
    font-size: 36px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 12px;
    letter-spacing: 1px;
    margin: 30px 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.cta-button i {
    margin-left: 10px;
}

.guarantee-image {
    width: 48%;
    margin: 20px auto;
    display: block;
}

/* ===== AUTHOR SECTION ===== */
.author-section {
    background-image: url('assets/foto-oficial-fondo-web-renace.webp');
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

.author-quote {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.1;
}

.author-image {
    width: 38%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.author-bio {
    font-family: var(--font-body);
    font-size: 23px;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.1;
}

.author-bio p {
    margin-bottom: 15px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-image: url('assets/foto-oficial-fondo-web-renace.webp');
    background-size: cover;
    padding: 40px 0 60px;
}

.testimonial-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-side-img {
    width: 200px;
}

.testimonial-text {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 29px;
    font-weight: 800;
    line-height: 1.1;
}

.testimonial-text h3 {
    margin-bottom: 10px;
}

/* Video Testimonials */
.video-testimonials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    align-items: flex-start;
}

.video-testimonial {
    width: 50%;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.video-testimonial.vertical {
    width: 20%;
}

/* Image Testimonials */
.image-testimonials {
    margin-top: 40px;
}

.testimonial-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-row img {
    width: 28%;
    border-radius: 5px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

/* ===== IDEAL SECTION ===== */
.ideal-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.ideal-list {
    font-family: var(--font-body);
    font-size: 23px;
    font-weight: 600;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
}

.ideal-list p {
    margin-bottom: 15px;
}

.spirit-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0;
    line-height: 1.1;
}

.spirit-text p:last-child {
    font-size: 1.2em;
    margin-top: 15px;
}

.offer-image-small {
    width: 47%;
    margin: 20px auto;
    display: block;
}

/* Urgency Bar */
.urgency-bar {
    max-width: 600px;
    margin: 30px auto;
    animation: bounce 2s infinite;
}

.urgency-label {
    font-family: var(--font-accent);
    font-size: 27px;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 30px;
}

.progress {
    background-color: var(--accent-red);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    font-family: var(--font-accent);
    font-size: 25px;
    font-weight: 900;
    color: var(--text-light);
}

.price-image-small {
    width: 35%;
    margin: 20px auto;
    display: block;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 50px 0;
}

.benefits-section.purple-bg {
    background-color: var(--primary-color);
}

.benefits-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
}

.benefits-list {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list p {
    margin-bottom: 12px;
}

/* ===== MOMENT SECTION ===== */
.moment-section {
    background-image: url('assets/foto-oficial-fondo-web-renace.webp');
    background-size: cover;
    padding: 60px 0;
    text-align: center;
}

.moment-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.benefits-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.benefit-icon {
    text-align: center;
    max-width: 300px;
}

.benefit-icon img {
    width: 45%;
    margin-bottom: 15px;
}

.benefit-icon p {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px var(--text-light);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--primary-color);
    padding: 60px 0;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border: 4px solid #c6e4fe;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.faq-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 20px;
    color: var(--primary-color);
    transition: background-color 0.3s;
}

.faq-header:hover {
    background-color: #f0f0f0;
}

.faq-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 400px;
    padding: 20px;
}

.faq-content p {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-header i {
    transition: transform 0.3s;
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.final-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.benefits-box {
    border: 4px dashed var(--accent-green);
    padding: 30px;
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
}

.benefits-box p {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.1;
}

.secure-badge {
    width: 300px;
    margin: 30px auto;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #000000;
    color: #969696;
    padding: 30px 0;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.copyright {
    margin-bottom: 5px;
}

.rights {
    font-size: 14px;
    color: #a0a0a0;
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .video-container {
        width: 80%;
    }

    .questions-list {
        max-width: 80%;
    }

    .course-image {
        width: 70%;
    }

    .testimonial-intro {
        flex-direction: column;
    }

    .testimonial-side-img {
        display: none;
    }

    .video-testimonials {
        flex-direction: column;
        align-items: center;
    }

    .video-testimonial {
        width: 80%;
    }

    .video-testimonial.vertical {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    .quote {
        font-size: 23px;
    }

    .main-headline {
        font-size: 21px;
    }

    .subtitle {
        font-size: 19px;
        letter-spacing: 1px;
    }

    .video-container {
        width: 100%;
    }

    .discover-text {
        font-size: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .questions-list {
        max-width: 100%;
        font-size: 19px;
    }

    .transform-question {
        font-size: 23px;
    }

    .invitation-text {
        font-size: 22px;
    }

    .course-image {
        width: 100%;
    }

    .accordion-header {
        font-size: 12px;
    }

    .accordion-content p {
        font-size: 12px;
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
    }

    .bonus-image {
        flex: none;
        width: 100%;
    }

    .bonus-image img {
        width: 50%;
    }

    .bonus-title {
        font-size: 24px;
    }

    .bonus-content p {
        font-size: 18px;
    }

    .module-screenshot {
        width: 100%;
    }

    .cta-button {
        font-size: 27px;
        padding: 12px 30px;
    }

    .offer-image,
    .guarantee-image {
        width: 85%;
    }

    .price-image,
    .price-image-small {
        width: 86%;
    }

    .author-image {
        width: 80%;
    }

    .author-bio {
        font-size: 19px;
    }

    .testimonial-text {
        font-size: 24px;
    }

    .testimonial-row {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-row img {
        width: 80%;
    }

    .video-testimonial.vertical {
        width: 62%;
    }

    .ideal-list {
        font-size: 20px;
    }

    .spirit-text {
        font-size: 22px;
    }

    .offer-image-small {
        width: 84%;
    }

    .urgency-label {
        font-size: 22px;
    }

    .benefits-title {
        font-size: 27px;
    }

    .benefits-icons {
        flex-direction: column;
        align-items: center;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-header {
        font-size: 15px;
    }

    .faq-content p {
        font-size: 17px;
    }

    .final-title {
        font-size: 30px;
    }

    .benefits-box p {
        font-size: 20px;
    }

    .disclaimer {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .quote {
        font-size: 20px;
    }

    .main-headline {
        font-size: 18px;
    }

    .section-title {
        font-size: 22px;
    }

    .cta-button {
        font-size: 22px;
        padding: 10px 25px;
    }

    .urgency-label {
        font-size: 18px;
    }

    .faq-title {
        font-size: 28px;
    }

    .final-title {
        font-size: 24px;
    }
}