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

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

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

/* Header */
.header {
    background: linear-gradient(135deg, #87CEEB, #98E4FF);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
}

.logo i {
    color: #FF6B6B;
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.header-badge {
    background: linear-gradient(45deg, #FFE4B5, #FFD700);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    color: #8B4513;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    to { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4f8 100%);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #90EE90, #98FB98);
    color: #2E8B57;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(144, 238, 144, 0.3);
}

.hero-badge i {
    margin-right: 0.5rem;
    color: #FFD700;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #FF6B6B;
    text-shadow: 2px 2px 4px rgba(255, 107, 107, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
}

.feature-item i {
    color: #87CEEB;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.hero-cta {
    text-align: center;
}

.cta-button {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

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

.guarantee-text {
    margin-top: 1rem;
    color: #5a6c7d;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-text i {
    color: #90EE90;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #87CEEB, #98E4FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
    z-index: 5;
}

.floating-item.puzzle {
    top: 10%;
    left: 10%;
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    animation-delay: 0s;
}

.floating-item.star {
    top: 20%;
    right: 15%;
    background: linear-gradient(45deg, #FFE4B5, #FFD700);
    animation-delay: 1s;
}

.floating-item.heart {
    bottom: 15%;
    left: 20%;
    background: linear-gradient(45deg, #90EE90, #98FB98);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.apostilas-stack {
    position: relative;
    width: 300px;
    height: 200px;
}

.apostila-card {
    position: absolute;
    width: 200px;
    height: 280px;
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 3px solid #87CEEB;
}

.card-1 {
    transform: rotate(-15deg) translateY(20px);
    z-index: 1;
    background: linear-gradient(145deg, #FFE4B5, #FFF8DC);
    border-color: #FFD700;
}

.card-2 {
    transform: rotate(0deg);
    z-index: 2;
    background: linear-gradient(145deg, #E6F3FF, #F0F8FF);
    border-color: #87CEEB;
}

.card-3 {
    transform: rotate(15deg) translateY(20px);
    z-index: 1;
    background: linear-gradient(145deg, #F0FFF0, #F5FFFA);
    border-color: #90EE90;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB, #FFE4B5, #90EE90, #FF6B6B);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: #87CEEB;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #87CEEB, #98E4FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(45deg, #FFE4B5, #FFD700);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(45deg, #90EE90, #98FB98);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
}

.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(45deg, #DDA0DD, #E6E6FA);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Offer Section */
.offer {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    position: relative;
}

.offer-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    border: 3px solid #87CEEB;
}

.offer-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: bounce 2s infinite;
    z-index: 10;
    white-space: nowrap;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1rem;
}

.offer-visual {
    text-align: center;
}

.pdf-stack {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.pdf-stack i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.pdf-count {
    font-size: 1.2rem;
    font-weight: 700;
}

.instant-delivery {
    background: linear-gradient(45deg, #90EE90, #98FB98);
    color: #2E8B57;
    padding: 1rem;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.offer-details h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.price-section {
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: #FF6B6B;
    font-weight: 800;
}

.savings {
    color: #90EE90;
    font-weight: 700;
    font-size: 1.1rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.offer-features i {
    color: #90EE90;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.offer-cta-button {
    width: 100%;
    background: linear-gradient(45deg, #90EE90, #98FB98);
    color: #2E8B57;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 6px 20px rgba(144, 238, 144, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.offer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(144, 238, 144, 0.6);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge i {
    color: #87CEEB;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #87CEEB;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.testimonial-card:nth-child(2) {
    border-left-color: #FFD700;
}

.testimonial-card:nth-child(3) {
    border-left-color: #90EE90;
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #87CEEB;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    color: #2c3e50;
    font-weight: 700;
}

.author-info span {
    color: #5a6c7d;
    font-size: 0.9rem;
}

/* What You Get Section */
.what-you-get {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
}

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

.content-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.content-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: #87CEEB;
}

.content-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #87CEEB, #98E4FF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.content-item:nth-child(2) .content-icon {
    background: linear-gradient(45deg, #FFE4B5, #FFD700);
}

.content-item:nth-child(3) .content-icon {
    background: linear-gradient(45deg, #90EE90, #98FB98);
}

.content-item:nth-child(4) .content-icon {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
}

.content-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.content-details p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #87CEEB;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(135, 206, 235, 0.05);
}

.faq-question h3 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: #87CEEB;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer.active {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #87CEEB 0%, #98E4FF 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.urgency-text i {
    color: #FFD700;
    animation: pulse 1.5s infinite;
}

.final-cta-button {
    background: linear-gradient(45deg, #90EE90, #98FB98);
    color: #2E8B57;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(144, 238, 144, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(144, 238, 144, 0.7);
}

.final-guarantees {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.guarantee-item i {
    color: #FFD700;
}

/* Footer */
.footer {
    background: #2c3e50;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #87CEEB;
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #87CEEB;
}

/* AOS Animation Styles */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .offer-badge {
        top: -6px;
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
        padding: 0 10px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-features {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .feature-item {
        font-size: 0.8rem;
        text-align: center;
        flex: 1;
    }
    
    .offer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer {
        padding: 3rem 0;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .offer-details h2 {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .price-section {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .current-price {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials {
        padding: 3rem 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .what-you-get {
        padding: 3rem 0;
    }
    
    .content-item {
        flex-direction: column;
        text-align: center;
    }
    
    .faq {
        padding: 3rem 0;
    }
    
    .final-cta {
        padding: 3rem 0;
    }
    
    .security-badges {
        justify-content: center;
        gap: 1rem;
    }
    
    .badge {
        font-size: 0.8rem;
    }
    
    .final-guarantees {
        justify-content: center;
        gap: 1rem;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .header-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .apostilas-stack {
        width: 250px;
        height: 180px;
    }
    
    .apostila-card {
        width: 150px;
        height: 220px;
    }
    
    .hero-visual {
        min-height: 250px;
        position: relative;
        overflow: visible;
    }
    
    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 10;
        overflow: visible;
    }
    
    .floating-item {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        z-index: 15;
        opacity: 0.9;
    }
    
    .floating-item.puzzle {
        top: 5%;
        left: 5%;
    }
    
    .floating-item.star {
        top: 10%;
        right: 5%;
    }
    
    .floating-item.heart {
        bottom: 5%;
        left: 10%;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .content-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .cta-text h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .cta-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .urgency-text {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-visual {
        min-height: 200px;
        position: relative;
        overflow: visible;
    }
    
    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 10;
        overflow: visible;
    }
    
    .floating-item {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        z-index: 15;
        opacity: 0.8;
    }
    
    .floating-item.puzzle {
        top: 2%;
        left: 2%;
    }
    
    .floating-item.star {
        top: 8%;
        right: 2%;
    }
    
    .floating-item.heart {
        bottom: 2%;
        left: 8%;
    }
    
    .offer-badge {
        top: -5px;
        padding: 0.25rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 15px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 90%;
        text-align: center;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.4;
        text-align: center;
        padding: 0 5px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: center;
        padding: 0 5px;
    }
    
    .hero-features {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding: 0 5px;
        flex-wrap: nowrap;
    }
    
    .feature-item {
        font-size: 0.7rem;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .feature-item i {
        font-size: 1rem;
        margin-right: 0;
        margin-bottom: 0.2rem;
    }
    
    .cta-button,
    .offer-cta-button,
    .final-cta-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
    }
    
    .offer-card {
        padding: 1.5rem 1rem;
    }
    
    .offer-details h2 {
        font-size: 1.4rem;
    }
    
    .current-price .amount {
        font-size: 2.5rem;
    }
    
    .offer-features {
        margin-bottom: 1.5rem;
    }
    
    .offer-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .benefit-card,
    .content-item,
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-answer.active {
        padding: 0 1.2rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .cta-text h2 {
        font-size: 1.4rem;
    }
    
    .cta-text p {
        font-size: 0.9rem;
    }
    
    .urgency-text {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .final-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .apostilas-stack {
        width: 200px;
        height: 150px;
        margin: 0 auto;
    }
    
    .apostila-card {
        width: 120px;
        height: 180px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .content-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}