/* Estilos adicionais para melhorar a responsividade */
@media (max-width: 992px) {
    .banner h1 {
        font-size: 36px;
    }
    
    .produto-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .calculadora-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 5px;
        border-radius: 4px !important;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    nav.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    nav.active ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav.active ul li {
        margin: 0 0 15px 0;
    }
    
    .menu-mobile.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-mobile.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-mobile.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    section {
        padding: 60px 0;
    }
    
    .form-group label {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .banner {
        padding: 100px 0 60px;
    }
    
    .banner h1 {
        font-size: 26px;
    }
    
    .banner p {
        font-size: 16px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .produto-info h3 {
        font-size: 18px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .footer-content {
        gap: 20px;
    }
}

/* Melhorias na acessibilidade */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Melhorias na performance de imagens */
.produto-image img,
.quem-somos-image img {
    will-change: transform;
}

/* Animações suaves */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.resultado {
    animation: fadeIn 0.5s ease forwards;
}
