/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fef3c7 0%, #d1fae5 100%);
    background-image: url('/assets/img/sabonetes.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 20px; 
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-text .highlight {
    color: #4ade80;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #e5e7eb;
}

.cta-button {
    background: #22c55e;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 261px;   
    height: 348px;  
    background: #000;
    border-radius: 20px;
    padding: 10px;          
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    border: 4px solid #333;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.445) 0%,
        rgba(255, 255, 255, 0.06) 40%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 2;
}

.phone-content {
    background: url('/assets/img/sabonetes-phone.png');
    width: 100%;
    height: 100%;
    border-radius: 15px;
    padding: 10px;          
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;       
}

.phone-content * {
    max-width: 100%;
    max-height: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0;
    padding: 0;
}

.phone-content .title-wrapper {
    width: 100%;
    padding: 0 5px;        
}

.phone-content .title-wrapper h3 {
    font-size: clamp(0.5rem, 3.5vw, 1rem);
    line-height: 1.1;
    margin-bottom: 4px;
}

.phone-content .title-wrapper h2 {
    font-size: clamp(0.75rem, 5vw, 1.5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 12px;
}

.phone-content p {
    font-size: clamp(0.6rem, 3vw, 0.875rem);
    line-height: 1.2;
    margin-bottom: 12px;
    padding: 0 5px;        
}

.phone-content span {
    font-weight: 600;
    font-size: clamp(0.6rem, 3vw, 0.875rem);
    line-height: 1.2;
}


.green-section {
    background: #166534;
    color: white;
    padding: 80px 0;
}

.green-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.green-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: #bbf7d0;
}

.green-section .description {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.green-section .highlight-text {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.testimonials {
    background: #f9fafb;
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1f2937;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px dashed #d1d5db;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #4b5563;
}

.author {
    font-weight: 600;
    color: #1f2937;
}


.benefits {
    padding: 80px 0;
    background: #166534;
}

.benefits h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f0fdf412;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #ffffff;
}

.check {
    color: #00ff5e;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    font-size: 1.125rem;
    color: #ffffff;
}


.faq {
    background: #f9fafb;
    padding: 80px 0;
}

.faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1f2937;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.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: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b7280;
    line-height: 1.6;
}


.social-proof {
    background: #166534;
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    color: #bbf7d0;
}


.pricing {
    padding: 80px 0;
    background: #f9fafb;
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #22c55e;
    text-align: center;
}

.limited-offer {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #9ca3af;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: #16a34a;
}

.discount-badge {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    font-weight: 600;
}

.cta-button-full {
    width: 100%;
    background: #16a34a;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
}

.cta-button-full:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(22, 163, 74, 0.4);
}

.guarantee {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.final-cta {
    background: #14532d;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    background: #22c55e;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 24px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
}

.cta-button-large:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
}

.security {
    font-size: 0.875rem;
    color: #bbf7d0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 32px 0;
    text-align: center;
}


@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1.125rem;
    }
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    .phone-mockup {
        width: 218px;   
        height: 290px;  
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 12px 24px;
    }
    .phone-mockup {
        width: 174px;   
        height: 232px;  
    }
}

@media (max-width: 768px) {
    .green-section h2 {
        font-size: 2rem;
    }
    .green-section h3 {
        font-size: 1.25rem;
    }
    .green-section .description,
    .green-section .highlight-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .green-section h2 {
        font-size: 1.5rem;
    }
    .green-section h3 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits h2 {
        font-size: 2rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 7680px) {
    .faq h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 32px;
    }
    .old-price {
        font-size: 1.25rem;
    }
    .new-price {
        font-size: 2.5rem;
    }
    .discount-badge {
        font-size: 0.875rem;
        padding: 6px 12px;
    }
    .cta-button-full {
        font-size: 1.125rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 24px;
    }
    .new-price {
        font-size: 2rem;
    }
    .cta-button-full {
        font-size: 1rem;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2rem;
    }
    .final-cta p {
        font-size: 1.125rem;
    }
    .cta-button-large {
        font-size: 1.25rem;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .final-cta h2 {
        font-size: 1.5rem;
    }
    .final-cta p {
        font-size: 1rem;
    }
    .cta-button-large {
        font-size: 1rem;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .footer {
        font-size: 0.875rem;
        padding: 24px 0;
    }
}
