/* Estilos para páginas de formulários */

.formulario-section {
    padding: 4rem 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.formulario-section h1 {
    text-align: center;
    color: #1e3a5f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitulo {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.formulario-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
    flex: 1;
    padding: 1.5rem;
    background: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #ff6b35;
    border-bottom: 3px solid #ff6b35;
}

.tab-btn:hover {
    background: #f8f9fa;
}

.tab-content {
    display: none;
    padding: 2.5rem;
}

.tab-content.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3a5f;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.btn-enviar {
    width: 100%;
    padding: 1rem;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-enviar:hover {
    background: #e55a2b;
}

.whatsapp-content {
    text-align: center;
    padding: 2rem;
}

.whatsapp-icon {
    margin-bottom: 2rem;
}

.whatsapp-content h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.whatsapp-content p {
    color: #666;
    margin-bottom: 2rem;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #1fb855;
}

.info-contato {
    max-width: 900px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-item h3 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-item p {
    color: #666;
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    
    .info-contato {
        grid-template-columns: 1fr;
    }
    
    .formulario-section h1 {
        font-size: 2rem;
    }
}
