/* --------------------
   CONTACT US PAGE STYLES
   -------------------- */
#page-header {
    background-image: url('../img/contact.jpg'); /* Adicione sua imagem aqui */
    min-height: 40vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 90px;
}

#page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay escuro */
}

#page-header .container {
    position: relative;
    z-index: 2;
}

#page-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.contact-box, .contact-info-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box h2 {
    color: var(--color-blue-dark);
}

.contact-info-box li {
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-info-box .fa {
    font-size: 1.25rem;
    min-width: 30px;
}

.social-icons a {
    color: var(--color-blue-dark);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-blue-light);
}

/* Map Section */
.map-responsive {
    overflow: hidden;
    padding-bottom: 500px; /* Set height for the map container */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}