/* Estilos responsivos para dispositivos móveis */

/* Estilos gerais para melhorar a experiência mobile */
@media (max-width: 768px) {
    /* Ajustes de fonte para melhor legibilidade */
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    /* Ajustes de padding e margens */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    /* Ajustes para o menu de navegação */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
    
    /* Ajustes para a seção hero */
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-image {
        width: 100%;
        margin-top: 20px;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ajustes para os botões */
    .btn {
        width: 100%;
        margin: 10px 0;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    /* Ajustes para os cards de benefícios */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        margin-bottom: 20px;
    }
    
    /* Ajustes para a seção de depoimentos */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    /* Ajustes para a seção de planos */
    .pricing-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
    
    /* Ajustes para o footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

/* Ajustes específicos para smartphones */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    /* Ajustes para o dashboard na seção hero */
    .hero-image img {
        border-radius: 8px;
    }
    
    /* Aumentar área de toque para elementos interativos */
    .nav-menu a, 
    .btn,
    .pricing-toggle label,
    .footer-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Ajustes para o menu mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Animações para melhorar a experiência mobile */
@media (max-width: 768px) {
    .animate-fadeInUp {
        animation-duration: 0.5s;
    }
    
    .delay-100 {
        animation-delay: 0.1s;
    }
    
    .delay-200 {
        animation-delay: 0.15s;
    }
    
    .delay-300 {
        animation-delay: 0.2s;
    }
    
    .delay-400 {
        animation-delay: 0.25s;
    }
}
