* {
    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: 30px 10px 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.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: 0;
}

@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: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.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 0;
    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.4rem;
    padding: 20px 50px;
}

.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: relative;
    width: 100%;
    bottom: 0;
    left: 0;
}

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

.target-audience {
    background: white;
    padding: 60px 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #006622;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C44569;
    text-align: center;
    margin: 40px 0 30px;
}

.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;
}

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

.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;
}

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

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

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

.testimonial-card {
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.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 40px 0;
    line-height: 1.5;
}

.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;
}

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

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

.offer {
    background: #006622;
    padding: 60px 20px;
}

.offer-box {
    max-width: 700px;
    margin: 0 auto;
    background: #008C2F;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.offer-badge {
    background: #FF4444;
    color: white;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.old-price {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    color: #FFD600;
}

.offer-price {
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFD600;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.offer-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: white;
    font-size: 1.1rem;
}

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

.offer-benefit .check {
    color: #FFD600;
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

.security-text {
    color: white;
    font-size: 0.95rem;
    margin-top: 20px;
}

.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;
    }
    
    .offer-price {
        font-size: 3.5rem;
    }
    
    .offer-box {
        padding: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 8px 0;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .brand-name {
        font-size: 1.7rem;
        gap: 6px;
    }
    
    .brand-bible {
        font-size: 1.4rem;
    }
    
    .books-image {
        max-width: 320px;
    }
    
    .price {
        font-size: 2.8rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 15px 35px;
    }
    
    .cta-button.large {
        font-size: 1.1rem;
        padding: 16px 35px;
    }
    
    .badge-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .trust-badges {
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .wave-bottom svg {
        height: 40px;
    }
}
