/* =========================================================
   THEME.CSS - UNIFICADO
   ========================================================= */

/* Reset e ajustes básicos */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: "Poppins", sans-serif;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
header, .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    z-index: 2;
    background-color: #103c6a;
    height: 90px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    height: 90%;
    padding-left: 10px;
}

.navbar .logo img {
    width: 140px;
    height: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 480px) {
    .navbar .logo img {
        width: 120px;
    }
}

/* Menu items */
.menu-items {
    display: flex;
    gap: 10px;
    z-index: 9998;
}

.menu-items a {
    text-decoration: none;
    color: white;
    padding: 14px 20px;
    text-align: center;
    transition: color 0.3s ease;
}

/* Hover menu items: apenas cor, sem underline */
.menu-items a:hover {
    text-decoration: none;
    color: #F6E708;
}

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 32px;
    color: white;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 25px;
        right: 20px;
        transform: none;
    }

    .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #103c6a;
        position: absolute;
        top: 90px;
        left: 0;
        z-index: 3;
        transition: all 0.3s ease;
        text-align: center;
    }

    .menu-items.active {
        display: flex;
    }

    .menu-items a {
        padding: 12px;
        text-align: center;
        color: white;
    }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-search,
.btn-search2 {
    display: inline-block;
    text-align: center;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-search {
    background-color: #F6E708;
    color: #103c6a;
}

.btn-search:hover {
    background-color: #F3A71E;
    color: #103c6a;
}

.btn-search2 {
    background-color: #F3A71E;
    color: #103c6a;
}

.btn-search2:hover {
    background-color: #F6E708;
    color: #103c6a;
}

/* =========================================================
   LAYOUT FLEX / CONTAINERS
   ========================================================= */
.one_quarter,
.one_quarter2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .one_quarter,
    .one_quarter2 {
        width: 100%;
        justify-content: center;
    }
}

/* =========================
   WhatsApp
   ========================= */
.whatsapp {
    width: 55px !important;
    height: 55px !important;
    display: block;
}

/* =========================================================
   IFRAME / CONTENT
   ========================================================= */
.content {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

iframe {
    width: 100%;
    height: 800px;
    border: none;
    overflow: auto;
}

.ios-scroll-wrapper {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    height: 800px;
}

.ios-scroll-wrapper iframe {
    width: 100%;
    min-width: 300px;
    max-width: 100%;
    height: 100%;
    border: none;
    padding: 1px;
    box-sizing: border-box;
}

/* =========================================================
   IMAGES
   ========================================================= */
img {
    max-width: 100%;
    height: auto;
}

.image-container {
    background-image: url('/images/seja-bem-vindo-a-recife.webp');
}

@media (max-width: 1024px) {
    .image-container {
        background-image: url('/images/seja-bem-vindo-a-recife.webp');
    }
}
@media (max-width: 768px) {
    .image-container {
        background-image: url('/images/seja-bem-vindo-a-recife.webp');
    }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    background-color: #002a4d;
    color: #fff;
    padding: 5px;
    font-size: 15px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-column a:hover {
    text-decoration: none;
    color: yellow;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #1a4f73;
    padding-top: 10px;
}

/* =========================================================
   BREADCRUMBS
   ========================================================= */
.breadcrumbs {
    font-size: 1rem;
    color: #1d1f1d;
    margin: 0.5rem 0 0 55px;
    text-transform: none;
}

.breadcrumbs a {
    color: #1d1f1d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #003b95;
}

.breadcrumbs span {
    color: #1d1f1d;
}

@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 0.875rem;
        margin: 0.5rem 0 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        font-size: 0.75rem;
        margin: 0.25rem 0 0 10px;
    }
}

/* =========================================================
   FAQ / DETALHES
   ========================================================= */
.faq details {
    margin-bottom: 12px;
    border-left: 3px solid #103c6a;
    padding: 10px 12px;
    background: #fff;
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.faq p {
    margin: 8px 0 0 0;
}

/* =========================================================
   MEDIA QUERIES ADICIONAIS
   ========================================================= */
@media (max-width: 600px) {
    header, .navbar {
        padding: 30px;
    }

    iframe {
        height: 600px;
    }
}

@media (max-width: 480px) {
    #pageintro .heading {
        font-size: 64px;
    }
}

/* =========================
   TRUQUE FINAL PARA REMOVER SCROLL HORIZONTAL
   ========================= */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

/* =========================================================
   ICON BRASIL TOURS
   ========================================================= */
.icon-brasiltours {
  display: flex;
  justify-content: center; /* centraliza na horizontal */
  align-items: center;     /* centraliza na vertical */
  padding-bottom: 20px; /* espaço interno abaixo */
}
.icon-brasiltours img {
  width: 55px !important;
  height: 55px !important;
  display: block;
  object-fit: contain; /* mantém proporção */   
}


