/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Botões CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #e55a2b, #e8841a);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #12012d, #2d1b69);
    color: white;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #1a0240, #3d2580);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(18, 1, 45, 0.4);
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-headline .highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.trust-badges i {
    color: #ffd700;
}

/* Produto Hero - MELHORADO */
.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-product-img {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: float 3s ease-in-out infinite;
}

.hero-results {
    display: flex;
    gap: 20px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.result-item span {
    color: white;
    font-weight: 600;
}

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

/* Seção Problemas */
.problems {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #12012d;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ff6b35;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-icon i {
    font-size: 2rem;
    color: white;
}

.problem-card h3 {
    font-size: 1.4rem;
    color: #12012d;
    margin-bottom: 15px;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
}

.problems-conclusion {
    text-align: center;
    font-size: 1.2rem;
    color: #12012d;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Estilos específicos para problemas focados em cabelo */
.featured-problem {
    border-top: 4px solid #dc3545;
}

.featured-problem .problem-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.bonus-problem {
    border-top: 4px solid #28a745;
    opacity: 0.9;
}

.bonus-problem .problem-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

/* Estilos para benefícios primários e bônus */
.primary-benefit {
    border-left: 4px solid #dc3545;
}

.primary-benefit i {
    color: #dc3545;
}

.bonus-benefit {
    border-left: 4px solid #28a745;
    opacity: 0.9;
}

.bonus-benefit i {
    color: #28a745;
}

/* Seção Benefícios */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-content {
    display: block;
}

.benefits-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
}

.benefit-item:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.2);
}

.benefit-item i {
    color: #28a745;
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-product-img {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(40, 167, 69, 0.3));
    animation: float 3s ease-in-out infinite;
}

/* Seção Bônus */
.bonus {
    padding: 100px 0;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.bonus .section-title {
    color: white;
}

.bonus-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.bonus-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.bonus-list {
    margin: 2rem 0;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #12012d, #2d1b69);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bonus-item:hover {
    background: linear-gradient(135deg, #1a0240, #3d2580);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(18, 1, 45, 0.4);
}

.bonus-item i {
    color: #ffd700;
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.bonus-item span {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

.bonus-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-product-img {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(255, 215, 0, 0.4));
    animation: float 3s ease-in-out infinite;
}

/* Seção Depoimentos */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #ff6b35;
    font-family: serif;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #12012d, #2d1b69);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: #12012d;
}

/* Seção Ciência */
.science {
    padding: 100px 0;
    background: white;
}

.science-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.ingredient-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ingredient-card:hover {
    background: white;
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #12012d, #2d1b69);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ingredient-icon i {
    font-size: 2rem;
    color: white;
}

.ingredient-card h3 {
    font-size: 1.3rem;
    color: #12012d;
    margin-bottom: 15px;
}

.ingredient-card p {
    color: #666;
    line-height: 1.6;
}

/* Seção Ofertas */
.offers {
    padding: 100px 0;
    background: linear-gradient(135deg, #12012d, #2d1b69);
    color: white;
}

.offers .section-title {
    color: white;
}

.offers-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.kit-card {
    background: white;
    color: #333;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.kit-card:hover {
    transform: translateY(-10px);
}

.kit-card.featured {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.kit-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.kit-card h3 {
    font-size: 1.5rem;
    color: #12012d;
    margin: 20px 0 10px;
}

.kit-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.kit-description {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-section {
    margin: 25px 0;
}

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

.installments {
    font-size: 2rem;
    font-weight: 800;
    color: #12012d;
    margin-bottom: 5px;
}

.cash-price {
    font-size: 1.2rem;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 10px;
}

.daily-cost {
    font-size: 0.95rem;
    color: #666;
}

.free-shipping {
    background: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin: 20px 0;
    display: inline-block;
}

.payment-methods {
    text-align: center;
    margin-top: 3rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2.5rem;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icons i:hover {
    opacity: 1;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffd700;
    font-weight: 600;
}

/* Seção Garantia */
.guarantee {
    padding: 100px 0;
    background: #f8f9fa;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.guarantee-seal {
    display: flex;
    justify-content: center;
}

.seal {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #12012d;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    position: relative;
    animation: pulse 2s infinite;
}

.seal::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #ffd700;
    border-radius: 50%;
    opacity: 0.5;
}

.seal i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.seal-text {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

.seal-subtext {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

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

.guarantee-text h2 {
    color: #12012d;
    margin-bottom: 1.5rem;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Seção FAQ */
.faq {
    padding: 100px 0;
    background: white;
}

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

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #12012d;
    transition: background 0.3s ease;
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: #ff6b35;
}

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

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

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

.faq-answer p {
    padding: 25px 30px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Seção Urgência */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
}

.alert-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.alert-box i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.alert-box p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.whatsapp-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.whatsapp-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25d366;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #20b954;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #12012d;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-logo h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #ffd700;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-security {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-security .payment-icons {
    margin: 0;
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #28a745;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .product-image {
        width: 250px;
        height: 250px;
    }
    
    .product-icon {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content,
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-results {
        justify-content: center;
    }
    
    .hero-product-img,
    .benefits-product-img,
    .bonus-product-img {
        width: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .kits-grid {
        grid-template-columns: 1fr;
    }
    
    .kit-card.featured {
        transform: none;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-security {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .installments {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .product-image {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .problem-card,
    .testimonial-card,
    .ingredient-card,
    .kit-card {
        padding: 25px 20px;
    }
    
    .seal {
        width: 200px;
        height: 200px;
    }
    
    .seal i {
        font-size: 2rem;
    }
    
    .seal-text {
        font-size: 0.9rem;
    }
    
    .whatsapp-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave para âncoras */
html {
    scroll-padding-top: 20px;
}

/* Melhorias de acessibilidade */
.cta-button:focus,
.faq-question:focus,
.whatsapp-button:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Loading states */
.cta-button:active {
    transform: scale(0.98);
}

/* Otimizações de performance */
.hero::before,
.product-container,
.seal {
    will-change: transform;
}

/* Print styles */
@media print {
    .hero,
    .cta-button,
    .whatsapp-button {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
    }
}
