/* Tablet Styles */
@media (max-width: 1024px) {
    .page-header {
        padding: 100px 0 50px;
    }
    
    .historia-content,
    .detalhe-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .servico-destaque .detalhe-content {
        flex-direction: column-reverse;
    }
    
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .missao-visao-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .numeros-detalhados .numeros-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .historia-texto h2,
    .servicos-intro h2,
    .contato-form-section h2 {
        font-size: 1.8rem;
    }
    
    .valores-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .numeros-detalhados .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sistemas-lista {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Form error styles */
    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
        border-color: #ff3860;
    }
    
    .error-message {
        color: #ff3860;
        font-size: 0.875rem;
        margin-top: 5px;
        display: block;
    }
    
    /* Alert styles */
    .alert {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 5px;
        font-weight: 500;
    }
    
    .alert-success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    
    .alert-error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .numeros-detalhados .numeros-grid {
        grid-template-columns: 1fr;
    }
    
    .numero {
        font-size: 2.5rem;
    }
    
    .post-image img {
        height: 200px;
    }
    
    .pagination .page-link {
        padding: 8px 12px;
        margin: 0 2px;
    }
    
    .pagination .next {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}