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

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

/* Fonte padrão */
html, body {
    font-family: "Poppins", sans-serif;
}

/* Forçar Poppins nos títulos do site */
h1, h2, h3, h4, h5, h6, .heading {
    font-family: "Poppins", sans-serif;
}


/* Importa Love Ya Like A Sister */
@font-face {
    font-family: 'Love Ya Like A Sister';
    src: url('../styles/LoveYaLikeASister-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Hero */
.hero-title {
    font-family: 'Love Ya Like A Sister', cursive;
}

#pageintro .heading {
  color: #FAE82C;
}

.sectiontitle h3 {
  margin-bottom: 25px; 
}

/* =========================================================
   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;
}

.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;
}

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

    .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;
        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;
}

.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'); }
}

/* Container social */
.social-section .group .one_third {
    text-align: center;
}

/* Ícones sociais */
.social-section .social-icon {
    display: inline-block;
    overflow: hidden;
    border-radius: 50%; /* opcional, deixa redondinho */
}

.social-section .social-icon img {
    width: 65px;             /* tamanho inicial */
    height: 65px;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover nos ícones */
.social-section .social-icon:hover img {
    transform: scale(1.3);    /* aumenta 30% */
    filter: brightness(1.3);  /* deixa mais claro */
}



/* 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;
}

.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; }

.faq details > summary {
    list-style: none;
}

.faq details > summary::-webkit-details-marker {
    display: none;
}

.faq details > summary {
    display: inline-block;
    background: #103c6a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
}

.faq details[open] > summary {
    margin-bottom: 10px;
}


/* SCROLLBAR */
::-webkit-scrollbar { width: 0; height: 0; }

/* ICON BRASIL TOURS */
.icon-brasiltours {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.icon-brasiltours img {
  width: 55px !important;
  height: 55px !important;
  display: block;
  object-fit: contain;
}

.wrapper.row3 section {    
    padding-bottom: 0 !important;
}

.whatsapp-fixo {
  position: fixed;
  top: 50%;             /* verticalmente no meio */
  right: 20px;           /* distância da direita */
  transform: translateY(-50%); /* centraliza exatamente no meio */
  z-index: 999;
}

.whatsapp-fixo .whatsapp {
  width: 60px;
  height: 60px;
  transition: transform 0.2s;
}

.whatsapp-fixo .whatsapp:hover {
  transform: scale(1.1);
}

/* ======================
   COOKIE BANNER TOP
====================== */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  justify-content: center;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__box {
  max-width: 880px;
  width: 100%;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.cookie-banner__content {
  padding: 24px;
}

.cookie-banner__content h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #111827;
  font-weight: 700;
}

.cookie-banner__content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

/* BOTÕES */
.cookie-banner__actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.cookie-btn--primary {
  background: #0a5bd3;
  color: #fff;
}

.cookie-btn--primary:hover {
  background: #0848a8;
}

.cookie-btn--secondary {
  background: #f3f4f6;
  color: #111827;
}

.cookie-btn--ghost {
  background: transparent;
  border: 1px solid #d1d5db;
}

/* LINKS */
.cookie-banner__links {
  margin-top: 12px;
  font-size: 13px;
}

.cookie-banner__links a {
  color: #0a5bd3;
  text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
h2 {
  font-size: 18px;
  margin-top: 25px;
  color: #103c6a;
  font-weight: 700;
}

p {
  line-height: 1.6;
}

ul {
  margin-left: 20px;
}

.privacy-list li,
.privacy-list li:hover {
  background: transparent !important;
  color: #374151 !important;
  transform: none !important;
  cursor: default !important;
}

.privacy-list li {
  margin-bottom: 6px;
  transition: none !important;
}

/* GRID PRINCIPAL */
.sitemap-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr 1.7fr 0.8fr !important;
  gap: 30px;
  margin-top: 20px;
}

/* RESPONSIVO */
@media(max-width:900px) {
  .sitemap-layout {
    grid-template-columns: 1fr;
  }
}

/* COLUNA */
.sitemap-card {
  border-right: 1px solid #e5e7eb;
  padding: 10px 15px;
}

/* REMOVE BORDA DA ÚLTIMA */
.sitemap-card:last-child {
  border-right: none;
}

/* TITULOS */
.sitemap-card h3 {
  text-align: center;
  color: #0a5bd3;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}

/* LISTA */
.sitemap-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ESPAÇAMENTO */
.sitemap-card li {
  margin-bottom: 10px;
}

/* LINKS */
.sitemap-card a,
.sitemap-card a:visited {
  color: #374151 !important;
  text-decoration: none;
  font-size: 14px;
}

/* HOVER PROFISSIONAL */
.sitemap-card a:hover {
  color: #0a5bd3 !important;
  text-decoration: underline;
}

/* PASSEIOS (melhor leitura) */
.sitemap-links a {
  display: block;
  line-height: 1.6;
}

/* HEADER */
.page-header {
  text-align: center;
  margin-bottom: 30px;
}

.page-header img {
  width: 70px;
  margin-bottom: 10px;
}

.page-header h1 {
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header h2 {
  color: #0a5bd3;
  font-size: 18px;
}