/* ================================
   VARIÁVEIS E RESET
   ================================ */

:root {
    /* Paleta de cores rosa */
    --color-primary: #f8b4d9;
    --color-secondary: #e89ac7;
    --color-tertiary: #d77fb5;
    --color-accent: #c45fa3;
    --color-dark: #a14086;
    --color-light: #fde8f4;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #fde8f4 0%, #f8b4d9 50%, #e89ac7 100%);
    --gradient-secondary: linear-gradient(135deg, #f8b4d9 0%, #d77fb5 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(248, 180, 217, 0.9) 0%, rgba(232, 154, 199, 0.9) 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(196, 95, 163, 0.1);
    --shadow-md: 0 4px 16px rgba(196, 95, 163, 0.15);
    --shadow-lg: 0 8px 32px rgba(196, 95, 163, 0.2);
    
    /* Transições */
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Sora', sans-serif;
    color: var(--color-text);
    line-height: 1.7;
    background: var(--gradient-primary);
    background-attachment: fixed;
}

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

/* ================================
   TIPOGRAFIA
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
}

.headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    text-align: center;
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-dark);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(253, 232, 244, 0.95) 0%, rgba(248, 180, 217, 0.95) 100%);
}

.hero-content {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.video-cta {
    margin-top: 2rem;
}

.video-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.video-container {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-placeholder {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--color-light);
    border-radius: 12px;
}

.benefits-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefits-list i {
    color: var(--color-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* ================================
   BOTÕES CTA
   ================================ */

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-dark) 100%);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 95, 163, 0.3);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

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

/* ================================
   SEÇÕES GERAIS
   ================================ */

section {
    padding: 4rem 0;
}

.learning-section,
.target-audience,
.product-details,
.testimonials,
.about-author,
.comparison,
.faq {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    margin: 2rem 0;
    border-radius: 20px;
}

.learning-section .container,
.target-audience .container,
.product-details .container,
.testimonials .container,
.about-author .container,
.comparison .container,
.faq .container {
    padding: 3rem 2rem;
}

.section-image {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================
   CARDS E GRID
   ================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.card p {
    color: var(--color-text-light);
}

/* ================================
   PRODUCT DETAILS
   ================================ */

.product-description {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.intro-text-center {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-detailed {
    list-style: none;
    padding: 0;
}

.benefits-detailed li {
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-light);
    list-style-position: inside;
    list-style-type: disc;
}

.benefits-detailed li:last-child {
    border-bottom: none;
}

/* ================================
   TARGET AUDIENCE
   ================================ */

.audience-content {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--color-light);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist i {
    color: var(--color-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* ================================
   OFERTA
   ================================ */

.offer-section {
    padding: 4rem 0;
}

.offer-box {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--color-primary);
}

.price-container {
    margin: 2rem 0;
}

.old-price {
    font-size: 1.2rem;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.old-price span {
    font-weight: 600;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-top: 0.5rem;
}

.current-price span {
    color: var(--color-dark);
}

.guarantee {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.guarantee i {
    font-size: 2rem;
    color: var(--color-accent);
}

.guarantee p {
    margin: 0;
    font-size: 1.1rem;
}

/* ================================
   DEPOIMENTOS
   ================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================
   BLOCO DE GARANTIA
   ================================ */

.guarantee-block {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-dark) 100%);
}

.guarantee-content {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.guarantee-icon {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.guarantee-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.guarantee-text-main {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.options-block {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.options-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.option-card {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: left;
}

.option-number {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.option-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.option-bad {
    background: #fff5f5;
    border: 2px solid #ff6b6b;
}

.option-good {
    background: #f0fff4;
    border: 2px solid var(--color-accent);
}

.guarantee-final {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.8;
    margin: 2rem 0 1.5rem;
}

/* ================================
   SOBRE A AUTORA
   ================================ */

.author-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.author-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.author-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.credentials {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.author-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ================================
   COMPARATIVO
   ================================ */

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-col {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.comparison-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.with-guide {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light) 100%);
    border: 2px solid var(--color-accent);
}

.with-guide h3 {
    color: var(--color-accent);
}

.with-guide i {
    color: var(--color-accent);
}

.without-guide {
    background: var(--color-white);
    border: 2px solid #ddd;
}

.without-guide h3 {
    color: var(--color-text-light);
}

.without-guide i {
    color: #999;
}

.comparison-col ul {
    list-style: none;
}

.comparison-col li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.05rem;
}

.comparison-col li:last-child {
    border-bottom: none;
}

/* ================================
   FAQ
   ================================ */

.faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: var(--color-white);
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: 'Sora', sans-serif;
    color: var(--color-dark);
}

.faq-question:hover {
    background: var(--color-light);
}

.faq-question i {
    transition: var(--transition);
    color: var(--color-accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-light);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ================================
   CTA FINAL
   ================================ */

.final-cta {
    padding: 4rem 0;
}

.final-cta-box {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-dark) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: var(--color-white);
}

.final-cta-box h2 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.final-cta-box .cta-button {
    background: var(--color-white);
    color: var(--color-accent);
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    margin: 2rem 0;
}

.final-cta-box .cta-button:hover {
    background: var(--color-light);
}

.price-reminder {
    margin: 1.5rem 0;
}

.price-reminder .old-price,
.price-reminder .current-price {
    color: var(--color-white);
}

.price-reminder .old-price span,
.price-reminder .current-price span {
    color: var(--color-white);
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.guarantee-text i {
    margin-right: 0.5rem;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: rgba(161, 64, 134, 0.95);
    color: var(--color-white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: var(--color-white);
    text-decoration: underline;
}

.disclaimer {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ================================
   BACK TO TOP
   ================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-secondary);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ================================
   ANIMAÇÕES
   ================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ================================
   RESPONSIVIDADE
   ================================ */

@media (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.65;
    }
    
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .learning-section .container,
    .target-audience .container,
    .product-details .container,
    .testimonials .container,
    .about-author .container,
    .comparison .container,
    .faq .container {
        padding: 2rem 1.5rem;
    }
    
    .section-image {
        max-width: 100%;
        margin-bottom: 2rem;
        border-radius: 12px;
    }
    
    .headline {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        line-height: 1.35;
    }
    
    .subheadline {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        line-height: 1.35;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 2rem 1.2rem;
    }
    
    .video-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .video-placeholder p {
        font-size: 1rem;
    }
    
    .video-intro {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .benefits-list {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    
    .benefits-list li {
        padding: 0.8rem 0;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .benefits-list i {
        font-size: 1.2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .cards-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .product-description {
        padding: 1.8rem 1.2rem;
        margin: 0 0.5rem;
    }
    
    .intro-text-center {
        font-size: 1.05rem;
        margin-bottom: 1.3rem;
        line-height: 1.6;
    }
    
    .benefits-detailed li {
        padding: 0.9rem 0;
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    .audience-content {
        padding: 1.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .checklist li {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .checklist i {
        font-size: 1.2rem;
    }
    
    .cta-center {
        margin-top: 1.5rem;
    }
    
    .offer-box {
        padding: 2rem 1.5rem;
    }
    
    .old-price {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 2rem;
        margin-top: 0.3rem;
    }
    
    .guarantee {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee i {
        font-size: 1.8rem;
    }
    
    .guarantee p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .comparison-col {
        padding: 1.5rem;
    }
    
    .comparison-col h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .comparison-col li {
        padding: 0.7rem 0;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .guarantee-block {
        padding: 2.5rem 0;
    }
    
    .guarantee-content {
        padding: 2rem 1.5rem;
    }
    
    .guarantee-icon {
        font-size: 3rem;
    }
    
    .guarantee-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .guarantee-text-main {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .options-block {
        padding: 1.5rem;
    }
    
    .options-title {
        font-size: 1.1rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .option-card {
        padding: 1.5rem;
    }
    
    .option-number {
        font-size: 1.5rem;
    }
    
    .option-card p {
        font-size: 0.95rem;
    }
    
    .guarantee-final {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .author-text h3 {
        font-size: 1.5rem;
    }
    
    .credentials {
        font-size: 0.95rem;
    }
    
    .author-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .faq-answer p {
        padding: 1.2rem;
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .final-cta {
        padding: 2.5rem 0;
    }
    
    .final-cta-box {
        padding: 2rem 1.5rem;
    }
    
    .final-cta-box h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .final-cta-box .cta-button {
        font-size: 1.1rem;
        padding: 1.1rem 2rem;
        width: 100%;
    }
    
    .price-reminder {
        margin: 1.2rem 0;
    }
    
    .price-reminder .old-price {
        font-size: 0.9rem;
    }
    
    .price-reminder .current-price {
        font-size: 1.8rem;
    }
    
    .guarantee-text {
        font-size: 0.95rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 14px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .learning-section .container,
    .target-audience .container,
    .product-details .container,
    .testimonials .container,
    .about-author .container,
    .comparison .container,
    .faq .container {
        padding: 1.5rem 1rem;
    }
    
    .headline {
        font-size: 1.4rem;
        line-height: 1.35;
    }
    
    .subheadline {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .video-placeholder {
        padding: 2.5rem 1rem;
    }
    
    .video-intro {
        font-size: 0.9rem;
    }
    
    .benefits-list {
        padding: 1.2rem 0.8rem;
    }
    
    .benefits-list li {
        font-size: 0.85rem;
        padding: 0.7rem 0;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 0.95rem 1.5rem;
    }
    
    .card,
    .audience-content,
    .comparison-col {
        padding: 1.2rem;
    }
    
    .product-description {
        padding: 1.5rem 1rem;
        margin: 0 0.3rem;
    }
    
    .intro-text-center {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .benefits-detailed li {
        font-size: 0.85rem;
        padding: 0.8rem 0;
        line-height: 1.65;
    }
    
    .guarantee-content {
        padding: 1.5rem 1rem;
    }
    
    .guarantee-title {
        font-size: 1.3rem;
    }
    
    .guarantee-text-main {
        font-size: 0.9rem;
    }
    
    .options-block {
        padding: 1.2rem;
    }
    
    .options-title {
        font-size: 1rem;
    }
    
    .option-card {
        padding: 1.2rem;
    }
    
    .option-card p {
        font-size: 0.85rem;
    }
    
    .guarantee-final {
        font-size: 1rem;
    }
    
    .offer-box {
        padding: 1.5rem 1rem;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .final-cta-box {
        padding: 1.5rem 1rem;
    }
    
    .final-cta-box h2 {
        font-size: 1.15rem;
    }
    
    .final-cta-box .cta-button {
        font-size: 1rem;
        padding: 1rem 1.8rem;
    }
}