/* =========================
   CONTACT PAGE CSS
   ========================= */

/* =========================
   BODY PAGE IDENTIFIER
   ========================= */
body.page-contact {
    /* Pode adicionar ajustes gerais se precisar */
}

/* =========================
   CONTACT SECTION / HERO
   ========================= */
.contact-section {
    position: relative;
    background-image: url('/images/seja-bem-vindo-a-recife.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    box-sizing: border-box;
}

.contact-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    z-index: 1;
}

/* =========================
   CONTACT CONTAINER
   ========================= */
.contact-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
    box-sizing: border-box;
}

/* Contact info / form */
.contact-info, .contact-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    padding: 25px;
    border-radius: 10px;
    flex: 1 1 350px;
    min-width: 300px;
    box-sizing: border-box;
}

.contact-info h2, .contact-form h2,
.contact-info h3 {
    color: #fff;
    margin-bottom: 15px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li img {
    width: 56px;
    height: 56px;
    transition: transform 0.1s ease-in-out;
}

.contact-info li:hover img {
    transform: scale(1.05);
}

.contact-info p a.linky {
    display: inline-block;
    width: 100%;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.contact-info p a.linky:hover {
    color: #E2A200;
}

.whatslink {
    display: inline-block !important;
    color: #FFFFFF !important;
    font-size: 1em !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: none;
}

.whatslink i {
    margin-right: 6px;
}

/* Contact form inputs/buttons */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.85);
    box-sizing: border-box;
}

.contact-form button {
    background: #103c6a;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #14518d;
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-section {
        background-attachment: scroll;
        min-height: auto;
        padding: 140px 20px 100px;
    }

    .contact-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .contact-info, .contact-form {
        width: 100%;
        flex: none;
        min-width: 0;
    }
}

/* =========================
   NAVBAR – HERDA ESTILO GLOBAL
   ========================= */

/* Navbar transparente sobre imagem na página de contato */
.page-contact .navbar {
    background-color: rgba(0,0,0,0); /* transparente sobre imagem */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* Hamburger menu mobile */
@media (max-width: 768px) {

    /* Menu items mobile e header com azul padrão quando aberto */
    body#top.page-contact.menu-open header,
    body#top.page-contact.menu-open .navbar,
    body#top.page-contact.menu-open .menu-items,
    .menu-items.active,
    body .navbar,
    body header {
        background-color: #103c6a !important; /* azul padrão, sem transparência */
    }

    /* Logo dentro do menu hamburger */
    .page-contact .menu-items .menu-logo {
        display: block;
        padding: 21px 0;
    }

    .page-contact .menu-items .menu-logo img {
        width: auto;
        max-width: 140px; /* mesmo tamanho do site */
        margin: 0 auto;
        height: auto;
    }

    /* Itens do menu mobile igual ao global */
    .page-contact .menu-items a {
        padding: 14px;
        font-size: 1rem; /* mantém mesma fonte do site */
        color: white;
        text-align: center;
        transition: color 0.3s ease;
    }
}

/* Logo navbar em mobile mantém tamanho global */
@media (max-width: 480px) {
    .page-contact .navbar .logo img,
    .page-contact .navbar-interna .logo img {
        max-width: 120px;
    }

    .page-contact .menu-items .menu-logo img {
        max-width: 140px;
    }
}


/* =========================
   GOOGLE MAP
   ========================= */
.google-map {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 5px;
}

.map-wrapper .content {
    max-width: 100% !important;
    width: 100%;
    padding: 0;
    margin: 0;
}

iframe.google-map {
    height: 550px;
}

/* =========================
   ICONE HOVER / IMAGENS
   ========================= */
.icone-hover {
    transition: transform 0.3s ease;
}

.icone-hover:hover {
    transform: scale(1.2);
}

.imagens-contatos {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.imagens-contatos img {
    margin: 0 10px;
}

/* Logo Brasil Tours */
.brasiltours-logo {
    display: flex;
    justify-content: center;
    margin: 30px 0 0 0;
}
