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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.hero {
    background: linear-gradient(135deg, #008C2F 0%, #006622 100%);
    color: white;
    padding: 60px 10px 140px; /* Reduzi topo, aumentei base para proteger a onda */
    text-align: center;
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px; /* Reduzido */
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-yellow {
    color: #FFD600;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.hero-seals-bottom {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px; /* Reduzido de 25px para 10px para ficar mais próximo do botão */
    flex-wrap: wrap;
}

.seal-badge-bottom {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD600;
    padding: 6px 14px; /* Leve redução para mobile */
    border-radius: 20px;
    font-size: 0.85rem; /* Leve redução para mobile */
    font-weight: 700;
    border: 1px solid rgba(255, 214, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px; /* Reduzido */
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0fff4;
}

.hero-target span {
    background: #FFD600;
    color: #006622;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

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

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

.hero-bullets {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 25px 0; /* Reduzido */
    font-weight: 500;
    font-size: 1.2rem;
}

.hero-seals {
    margin-top: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.mockup-compact {
    width: 550px !important;
    margin-bottom: 10px !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .mockup-compact {
        width: 100% !important;
        max-width: 400px !important;
    }
    .hero-bullets {
        font-size: 1rem;
    }
}

.hero-alert {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #333;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    animation: pulse-alert 2s infinite;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-alert {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 30px rgba(255, 215, 0, 0.7);
    }
}

.alert-icon {
    font-size: 1.3rem;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.alert-text {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.highlight-text {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
    text-shadow: none;
}

.brand-logo {
    margin: 15px 0 10px;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.2;
}

.brand-sementes {
    color: #90EE90;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-cristo {
    color: #FFA500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-bible {
    font-size: 2rem;
}

.promo-badge {
    background: #90EE90;
    color: #006622;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

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

.books-showcase {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.books-image {
    max-width: 100%;
    width: 750px; /* Aumentado de 650px para 750px (~15% mais) */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.books-image:hover {
    transform: scale(1.05);
}

.price-box {
    margin: 0;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.cta-button {
    background: #FFD600;
    color: #006622;
    border: none;
    padding: 18px 60px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    margin: 3px 0 15px;
    white-space: nowrap;
}

.cta-button:hover {
    background: #E6C000;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cta-button.large {
    font-size: 1.8rem;
    padding: 25px 65px;
}

.cta-button.green {
    background: #008C2F;
    color: white;
}

.cta-button.green:hover {
    background: #006622;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.badge-icon {
    font-size: 2.2rem;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.wave-bottom {
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 0;
    line-height: 0;
}

.wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}


.audience-list {
    max-width: 800px;
    margin: 0 auto;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #f8f8f8;
}

.audience-item.positive {
    border-left: 4px solid #008C2F;
    background: #f0fff4;
}

.audience-item.negative {
    border-left: 4px solid #C44569;
    background: #fff5f5;
}

.audience-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.audience-item p {
    font-size: 1.1rem;
    color: #333;
}

.testimonials {
    background: white;
    padding: 0 20px 60px;
    position: relative;
    text-align: center;
}

.testimonials .section-title, 
.testimonials .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.wave-top {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
}

.wave-top svg {
    display: block;
    width: 100%;
    height: 60px;
    margin-bottom: 40px;
}

.testimonial-carousel-container {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-image {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .testimonial-image {
        max-height: 400px;
    }
}

.whatsapp-card {
    padding: 20px;
    background: #E5DDD5;
}

.whatsapp-testimonials {
    background: white;
    padding: 0 20px 80px;
    position: relative;
}

.wave-top-green {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
}

.wave-top-green svg {
    display: block;
    width: 100%;
    height: 60px;
    margin-bottom: 30px;
}

.whatsapp-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #008C2F;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
}

.whatsapp-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.whatsapp-logo {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 20px 35px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 140, 47, 0.12);
    border: 2px solid #90EE90;
    max-width: 600px;
}

.brand-name-whatsapp {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.whatsapp-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.whatsapp-subtitle-below {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    text-align: center;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.whatsapp-notice {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #006622;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 40px;
    border: 1px solid #90EE90;
}

.whatsapp-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.whatsapp-screenshot {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.whatsapp-screenshot:hover {
    transform: translateY(-5px);
}

.whatsapp-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.grass-decoration {
    display: none;
}

.whatsapp-message {
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.whatsapp-message.received {
    background: white;
}

.whatsapp-message p {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: #333;
}

.whatsapp-message .time {
    font-size: 0.7rem;
    color: #999;
    float: right;
}

.benefits {
    background: white;
    padding: 60px 20px;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f0fff4;
    border-radius: 10px;
    border-left: 3px solid #008C2F;
}

.benefit-item .bullet {
    color: #008C2F;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #333;
}

.offer {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 60px 20px;
}

.offer-header {
    text-align: center;
    margin-bottom: 40px;
}

.offer-badge-top {
    background: linear-gradient(135deg, #FF4444 0%, #FF6B6B 100%);
    color: white;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-badge 2s infinite;
}

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

.offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.offer-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8e8e8;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.highlighted {
    border: 3px solid #00A9E0;
    box-shadow: 0 10px 40px rgba(0, 169, 224, 0.2);
    transform: scale(1.02);
}

.pricing-card.highlighted:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFA500 0%, #FFB733 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.plan-icon {
    font-size: 1.5rem;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.card-price {
    margin-bottom: 5px;
}

.old-price-card {
    font-size: 1rem;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.old-price-card s {
    text-decoration: line-through;
    color: #C44569;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #008C2F;
}

.price-value.highlight {
    color: #00A9E0;
}

.price-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 20px 0;
}

.savings-text {
    color: #008C2F;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 20px 0;
    background: #f0fff4;
    padding: 10px 15px;
    border-radius: 8px;
}

.quick-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px;
    background: linear-gradient(135deg, #f0fff4 0%, #e8f9f5 100%);
    border-left: 4px solid #008C2F;
    border-radius: 6px;
}

.quick-benefit-item {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.complete-bonus-highlight {
    background: linear-gradient(135deg, #fef9e7 0%, #fdf6de 100%);
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

.bonus-highlight-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FF8C00;
    margin: 0 0 12px 0;
    text-align: center;
}

.bonus-highlight-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-highlight-item {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
}

.bonus-highlight-item:before {
    content: "✨";
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.card-benefits {
    margin-bottom: 25px;
}

.card-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #333;
    text-align: left;
}

.card-benefit:last-child {
    margin-bottom: 0;
}

.benefit-check {
    color: #008C2F;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card.highlighted .benefit-check {
    color: #00A9E0;
}

/* Top Timer Banner */
.top-timer-banner {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #FF4444, #CC0000);
    color: white;
    padding: 10px 0;
    text-align: center;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: 800;
}

.timer-text {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#timer-display {
    font-family: monospace;
    background: rgba(0,0,0,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1.3rem;
    color: #FFD700;
}

@media (max-width: 768px) {
    .timer-text {
        font-size: 0.9rem;
    }
    #timer-display {
        font-size: 1.1rem;
    }
}

.pricing-card.basic {
    order: -1; 
    margin-bottom: 30px;
}

.pricing-card.complete {
    order: 1;
}

.card-benefit.bonus {
    background: linear-gradient(90deg, rgba(0, 169, 224, 0.08) 0%, transparent 100%);
    padding: 8px 10px;
    border-radius: 8px;
    margin-left: -10px;
    margin-right: -10px;
}

.bonus-tag {
    color: #FF4444;
    font-size: 0.85rem;
    font-style: normal;
}

.card-cta {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.basic-cta {
    background: white;
    color: #008C2F;
    border: 2px solid #008C2F;
}

.basic-cta:hover {
    background: #008C2F;
    color: white;
}

.complete-cta {
    background: linear-gradient(135deg, #00A9E0 0%, #0095C8 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 169, 224, 0.35);
}

.complete-cta:hover {
    background: linear-gradient(135deg, #0095C8 0%, #007BA8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 169, 224, 0.45);
}

.payment-info {
    text-align: center;
    margin-top: 40px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.payment-icon {
    font-size: 2rem;
}

.security-text {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
}

.faq {
    background: #f5f5f5;
    padding: 60px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #006622;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #008C2F;
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.footer {
    background: #006622;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #FFD600;
}

.separator {
    margin: 0 10px;
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.8;
}

.footer-copyright {
    font-size: 0.9rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero {
        padding: 25px 10px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-bible {
        font-size: 1.6rem;
    }
    
    .books-showcase {
        margin: 15px 0;
    }
    
    .books-image {
        width: 100%;
        max-width: 380px;
    }
    
    .price {
        font-size: 3.2rem;
    }
    
    .price-box {
        margin: 10px 0 12px;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 16px 40px;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .trust-badges {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .wave-bottom svg {
        height: 50px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .pricing-card.highlighted {
        transform: none;
        order: -1;
    }
    
    .pricing-card.highlighted:hover {
        transform: translateY(-5px);
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .whatsapp-notice {
        font-size: 0.85rem;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 12px 8px 0;
    }
    
    .hero-alert {
        padding: 6px 12px;
        margin-bottom: 8px;
        gap: 6px;
        border-radius: 30px;
    }
    
    .alert-icon {
        font-size: 0.9rem;
    }
    
    .alert-text {
        font-size: 0.6rem;
        letter-spacing: 0;
    }
    
    .hero-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .highlight-text {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .books-showcase {
        margin: 8px 0;
    }
    
    .books-image {
        max-width: 220px;
        border-radius: 8px;
    }
    
    .brand-logo {
        margin: 6px 0 4px;
    }
    
    .brand-name {
        font-size: 1.4rem;
        gap: 5px;
    }
    
    .brand-bible {
        font-size: 1.2rem;
    }
    
    .promo-badge {
        padding: 5px 12px;
        font-size: 0.7rem;
        margin-bottom: 10px;
    }
    
    .price-box {
        margin: 0;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .cta-button {
        font-size: 0.8rem;
        padding: 10px 25px;
        margin-top: 5px;
    }
    
    .cta-button.large {
        font-size: 1rem;
        padding: 14px 30px;
    }
    
    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }
    
    .trust-badges {
        gap: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .badge {
        gap: 3px;
    }
    
    .wave-bottom svg {
        height: 40px;
    }
    
    .offer {
        padding: 20px 15px;
    }
    
    .offer-header {
        margin-bottom: 20px;
    }
    
    .offer-title {
        font-size: 1.6rem;
    }
    
    .offer-badge-top {
        font-size: 0.75rem;
        padding: 8px 15px;
        margin-bottom: 15px;
    }
    
    .pricing-cards {
        gap: 15px;
    }
    
    .card-benefits {
        display: none;
    }
    
    .pricing-card {
        padding: 20px 15px;
        min-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .pricing-card.basic.highlighted {
        margin-bottom: 15px !important;
    }
    
    .card-header {
        margin-bottom: 10px;
    }
    
    .price-value {
        font-size: 2.2rem;
    }
    
    .plan-name {
        font-size: 1.2rem;
    }
    
    .card-cta {
        padding: 18px 20px;
        font-size: 1rem;
        font-weight: 800;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        width: 100%;
        margin-top: 10px;
    }
    
    .basic-cta {
        background: linear-gradient(135deg, #00A9E0 0%, #0077b6 100%);
    }

    .complete-cta {
        background: linear-gradient(135deg, #FF8C00 0%, #e67e00 100%);
    }
    
    .card-benefit {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .savings-text, .quick-benefits, .complete-bonus-highlight {
        margin-bottom: 15px;
        padding: 10px;
    }
    
    .target-audience, .benefits, .activities-carousel, .testimonials, .whatsapp-testimonials {
        padding: 30px 15px;
    }

    .wave-top svg, .wave-bottom svg, .wave-top-green svg {
        height: 30px;
    }
}

.activities-carousel {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    text-align: center;
}

.activities-carousel .section-title {
    color: #008C2F;
    font-size: 2rem;
    margin-bottom: 10px;
}

.activities-carousel .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    background: white;
    padding: 20px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.slide-caption {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #008C2F;
}

.carousel-btn {
    background: #008C2F;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 140, 47, 0.3);
}

.carousel-btn:hover {
    background: #006622;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #008C2F;
    transform: scale(1.2);
}

.dot:hover {
    background: #008C2F;
}

@media (max-width: 768px) {
    .activities-carousel {
        padding: 40px 15px;
    }
    
    .activities-carousel .section-title {
        font-size: 1.5rem;
    }
    
    .carousel-wrapper {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-container {
        max-width: 300px;
    }
    
    .carousel-slide img {
        max-height: 350px;
    }
    
    .slide-caption {
        font-size: 0.95rem;
    }
}

/* ========================================
   OTO MODAL (One-Time Offer)
======================================== */

.oto-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.oto-overlay.active {
    display: flex;
}

.oto-modal {
    background: linear-gradient(135deg, #008C2F 0%, #006622 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 30px 25px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.oto-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.oto-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.oto-header {
    text-align: center;
    margin-bottom: 20px;
}

.oto-alert {
    display: inline-block;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #333;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    animation: pulse-alert 2s infinite;
}

.oto-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.oto-content {
    text-align: center;
}

.oto-description {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.oto-comparison {
    margin-bottom: 25px;
}

.oto-price-box {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.oto-old-price {
    color: #666;
    font-size: 1rem;
}

.oto-new-price {
    color: #008C2F;
    font-size: 2.5rem;
    font-weight: 800;
}

.oto-savings {
    color: #C44569;
    font-weight: 600;
    font-size: 1rem;
}

.oto-benefits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.oto-benefits-title {
    color: #FFD600;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.oto-benefit {
    color: white;
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.oto-benefit:last-child {
    border-bottom: none;
}

.oto-cta-yes {
    display: block;
    background: linear-gradient(90deg, #FFD600, #FFA500);
    color: #333;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    animation: pulse-alert 2s infinite;
}

.oto-cta-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.4);
}

.oto-cta-no {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 10px;
    font-family: inherit;
    transition: color 0.3s ease;
}

.oto-cta-no:hover {
    color: white;
}

@media (max-width: 480px) {
    .oto-modal {
        padding: 25px 20px;
    }
    
    .oto-title {
        font-size: 1.3rem;
    }
    
    .oto-new-price {
        font-size: 2rem;
    }
    
    .oto-cta-yes {
        font-size: 1rem;
        padding: 15px 25px;
    }
}
