/* ============= CONTATOS PAGE ============= */

.contatos-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    min-height: 100vh;
}

.contatos-container {
    max-width: 970px;
    margin: 0 auto;
}

.contatos-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contatos-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Grid de Contatos */
.contatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Card de Contato */
.contato-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Header do Card */
.contato-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    color: #ffffff;
    padding: 30px 20px;
    border-bottom: 4px solid #2196F3;
    text-align: center;
}

.contato-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contato-icon svg {
    color: #ffffff;
}

.contato-nome {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

/* Conteúdo do Card */
.contato-content {
    padding: 25px 20px;
    flex-grow: 1;
}

.contato-info {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.contato-detalhe {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    line-height: 1.6;
}

.contato-detalhe strong {
    color: #1e3a5f;
}

/* Footer do Card */
.contato-footer {
    padding: 20px;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.btn-contato {
    background: #2c5aa0;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.btn-contato:hover {
    background: #1e4070;
    transform: scale(1.02);
}

.btn-contato.whatsapp {
    background: #25D366;
}

.btn-contato.whatsapp:hover {
    background: #20ba5d;
}

.btn-contato.email {
    background: #2c5aa0;
}

.btn-contato.phone {
    background: #2196F3;
}

.btn-contato.phone:hover {
    background: #1976D2;
}

/* Informações de Localização */
.localizacao-info {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.localizacao-title {
    font-size: 26px;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    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-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.local-item h4 {
    font-size: 18px;
    color: #1e3a5f;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.local-item p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    line-height: 1.6;
}

/* Footer Info */
.contatos-footer-info {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.04) 0%, rgba(44, 90, 160, 0.04) 100%);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.contatos-footer-info h3 {
    font-size: 22px;
    color: #1e3a5f;
    margin-bottom: 15px;
    font-weight: 700;
}

.contatos-footer-info p {
    font-size: 16px;
    color: #666;
    margin: 8px 0;
    line-height: 1.8;
}

/* Responsivo */
@media (max-width: 768px) {
    .contatos-section {
        padding: 40px 15px;
    }

    .contatos-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .contatos-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .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 {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .contato-nome {
        font-size: 20px;
    }

    .localizacao-title {
        font-size: 22px;
    }
}
