/* pagina contatos */
.contato-page {
    padding: 80px 20px;
    background: #0f172a;
}

.titulo-contato {
    text-align: center;
    margin-bottom: 60px;
}

.titulo-contato h1 {
    font-size: 38px;
    font-weight: 700;
    color: #e2e8f0;
}

.titulo-contato p {
    color: #e2e8f0;
    margin-top: 10px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #e2e8f0;
}

.info-item i {
    font-size: 26px;
    color: #0d6efd;
    margin-top: 3px;
}

.info-item h5 {
    margin: 0;
    font-weight: 600;
}

.info-item p {
    margin: 5px 0 0;
    color: #e2e8f0;
}

.mapa-container {
    position: relative;
}

.mapa-container iframe {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.btn-mapa {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.btn-mapa:hover {
    background: #0b5ed7;
}