.contatos-section {
    min-height: 100vh;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.contatos-container { max-width: 970px; margin: 0 auto; }

.contatos-title {
    margin-bottom: 15px;
    color: #1e3a5f;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.contatos-subtitle {
    margin-bottom: 50px;
    color: #666;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
}

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

.contato-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.contato-header {
    padding: 30px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    border-bottom: 4px solid #2196f3;
    color: #fff;
    text-align: center;
}

.contato-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contato-nome {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.contato-content { flex-grow: 1; padding: 25px 20px; }
.contato-info { margin-bottom: 20px; color: #333; font-size: 16px; text-align: center; }
.contato-detalhe { margin: 8px 0; color: #666; font-size: 14px; line-height: 1.6; }
.contato-detalhe strong { color: #1e3a5f; }
.contato-footer { padding: 20px; background: #f9f9f9; border-top: 1px solid #e0e0e0; }

.btn-contato {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: #2c5aa0;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-contato:hover { background: #1e4070; transform: scale(1.02); }
.btn-contato.whatsapp { background: #25d366; }
.btn-contato.whatsapp:hover { background: #20ba5d; }
.btn-contato.phone { background: #2196f3; }
.btn-contato.phone:hover { background: #1976d2; }

.localizacao-info {
    padding: 40px 30px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.localizacao-title {
    margin-bottom: 30px;
    color: #1e3a5f;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

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

.local-item { padding: 20px; background: #f9f9f9; border-left: 4px solid #2c5aa0; border-radius: 8px; }
.local-item h3 { margin: 0 0 10px; color: #1e3a5f; font-size: 18px; }
.local-item p { margin: 5px 0; color: #666; font-size: 14px; line-height: 1.6; }

.contatos-footer-info {
    padding: 30px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.04), rgba(44, 90, 160, 0.04));
    border-radius: 8px;
    text-align: center;
}

.contatos-footer-info h2 { margin-bottom: 15px; color: #1e3a5f; font-size: 22px; }
.contatos-footer-info p { margin: 8px 0; color: #666; font-size: 16px; line-height: 1.8; }

@media (max-width: 768px) {
    .contatos-section { padding: 40px 15px; }
    .contatos-title { margin-bottom: 10px; font-size: 32px; }
    .contatos-subtitle { margin-bottom: 35px; font-size: 16px; }
    .contatos-grid { gap: 20px; }
    .localizacao-grid { grid-template-columns: 1fr; gap: 20px; }
    .localizacao-info { padding: 30px 20px; }
    .contatos-footer-info { padding: 25px 20px; }
}

@media (max-width: 480px) {
    .contatos-title { font-size: 26px; }
    .contatos-subtitle { margin-bottom: 25px; font-size: 14px; }
    .contato-nome { font-size: 20px; }
    .localizacao-title { font-size: 22px; }
}
