         :root {
         --laranja: #ec8e17;
         --amarelo: #ffd12f;
         --bege: #FFF7ce;
         --azul: #002e45;
         --branco: #ffffff;
         }
         body {
         margin: 0;
         font-family: 'Poppins', Arial, sans-serif;
         /* igual ao primeiro */
         background-color: #f5f7fa;
         /* igual ao primeiro */
         color: var(--azul);
         line-height: 1.6;
         /* igual ao primeiro */
         overflow-x: hidden;
         } 
         body, html {
         max-width: 100%;
         overflow-x: hidden; /* Impede scroll horizontal */
         }
         /* ===== HEADER (EXATAMENTE IGUAL AO PRIMEIRO) ===== */
         header {
         background: linear-gradient(135deg, var(--azul), #001b2a);
         color: var(--branco);
         padding: 18px 40px;
         border-bottom: 3px solid var(--amarelo);
         position: sticky;
         top: 0;
         z-index: 1000;
         }
         header img {
         border-radius: 50%;
         border: 2px solid var(--amarelo);
         box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
         }
         header a {
         color: var(--branco);
         text-decoration: none;
         font-weight: 500;
         padding: 8px 14px;
         border-radius: 6px;
         transition: background 0.3s, color 0.3s;
         }
         header a:hover {
         background-color: rgba(255, 255, 255, 0.1);
         color: var(--amarelo);
         }
         header .btn-warning {
         background: var(--amarelo);
         color: var(--azul);
         font-weight: 600;
         padding: 10px 20px;
         border-radius: 6px;
         transition: transform 0.2s ease, background 0.3s ease;
         }
         header .btn-warning:hover {
         background: #ffd12f;
         transform: translateY(-2px);
         }
         header h1 {
         font-size: 2.2rem;
         font-weight: 800;
         margin: 0;
         }
         /* ===== FIM DO HEADER IGUAL ===== */
         .highlight-box {
         border-top: 5px solid var(--laranja);
         border-radius: 12px;
         padding: 25px;
         background: #fff;
         box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
         transition: transform 0.25s ease, box-shadow 0.25s ease;
         }
         .highlight-box:hover {
         transform: translateY(-6px);
         box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
         }
         .highlight-box h3 {
         color: var(--laranja);
         font-size: 1.8rem;
         margin-bottom: 15px;
         position: relative;
         }
         .highlight-box h3::after {
         content: "";
         position: absolute;
         left: 0;
         bottom: -5px;
         width: 50px;
         height: 4px;
         background: var(--amarelo);
         border-radius: 2px;
         }
         #highlights img {
         transition: opacity 0.4s ease, filter 0.4s ease;
         cursor: pointer;
         }
         #highlights img:hover {
         opacity: 0.25;
         filter: blur(2px);
         }
         #highlights {
         margin: 80px 0;
         }
         /* MAIN */
         main {
         padding: 40px 0;
         width: 100%;
         margin: 0;
         }
         h2 {
         color: var(--laranja);
         font-size: 2rem;
         margin-bottom: 30px;
         text-align: center;
         }
         /* ==== Estilos Passeios Interativos ==== */
         /* ==== Passeios Estilo Equipe ==== */
         .titulo-card {
         background-color: var(--branco);
         border-radius: 20px;
         overflow: hidden;
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
         transition: transform 0.3s ease, box-shadow 0.3s ease;
         cursor: pointer;
         position: relative;
         display: flex;
         flex-direction: column;
         height: 100%;
         }
         .titulo-card:hover {
         transform: scale(1.03);
         box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
         }
         .titulo-card-img {
         position: relative;
         overflow: hidden;
         }
         .titulo-card-img img {
         width: 100%;
         height: 250px;
         object-fit: cover;
         transition: transform 0.5s ease;
         }
         .titulo-card:hover img {
         transform: scale(1.05) rotate(1deg);
         }
         .titulo-card .overlay {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(236, 142, 23, 0.3);
         opacity: 0;
         transition: opacity 0.4s ease;
         }
         .titulo-card:hover .overlay {
         opacity: 1;
         }
         .titulo-card-content {
         padding: 20px;
         text-align: left;
         }
         .titulo-card-content h3 {
         color: var(--laranja);
         font-size: 1.8rem;
         margin-bottom: 10px;
         }
         .titulo-card-content p {
         color: #555;
         font-size: 1rem;
         line-height: 1.6;
         }
         .btn-toggle {
         margin-top: 15px;
         background: var(--laranja);
         border: none;
         color: #fff;
         font-weight: 600;
         padding: 10px 15px;
         border-radius: 8px;
         transition: background 0.3s, transform 0.3s;
         }
         .btn-toggle:hover {
         background: #ffd12f;
         transform: translateY(-2px);
         }
         .btn-toggle,
         .btn-toggle2 {
         background: linear-gradient(135deg, var(--laranja), #ff5c3f);
         color: var(--branco);
         font-weight: 600;
         padding: 12px 28px;
         border-radius: 25px;
         transition: all 0.3s ease;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
         border: none;
         cursor: pointer;
         }
         .btn-toggle2:hover {
         background: linear-gradient(135deg, var(--branco), var(--bege));
         transform: translateY(-3px) scale(1.05);
         box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
         color: var(--laranja);
         }
         .btn-toggle:hover {
         background: var(--amarelo);
         color: var(--azul);
         transform: translateY(-4px) scale(1.05);
         box-shadow: 0 0 15px var(--amarelo), 0 8px 20px rgba(0, 0, 0, 0.2);
         }
         .detalhes {
         display: none;
         background: #f5f5f5;
         padding: 15px 20px;
         border-radius: 12px;
         margin-top: 15px;
         color: #333;
         animation: fadeIn 0.4s ease;
         }
         @keyframes fadeIn {
         from {
         opacity: 0;
         transform: translateY(10px)
         }
         to {
         opacity: 1;
         transform: translateY(0)
         }
         }
         @media (max-width: 768px) {
         .titulo-card-img img {
         height: 200px;
         }
         .titulo-card-content h3 {
         font-size: 1.5rem;
         }
         }
         /* BOTÃO VOLTAR */
         .btn-custom {
         display: inline-block;
         margin-top: 30px;
         padding: 14px 30px;
         font-weight: 700;
         border-radius: 50px;
         text-decoration: none;
         color: var(--branco);
         background: linear-gradient(135deg, var(--laranja), #ff5c3f);
         transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
         }
         .btn-custom:hover {
         background: linear-gradient(135deg, var(--azul), #004b70);
         transform: translateY(-3px);
         box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
         }
         /* FOOTER */
         footer {
         background: #001b2a;
         color: var(--branco);
         text-align: center;
         padding: 20px;
         font-size: 0.95rem;
         border-top: 4px solid var(--amarelo);
         }
         /* ANIMAÇÃO SCROLL */
         .fade-in {
         opacity: 0;
         transform: translateY(20px);
         transition: opacity 0.8s ease-out, transform 0.8s ease-out;
         }
         .fade-in.visible {
         opacity: 1;
         transform: translateY(0);
         }
         @media (max-width: 768px) {
         header h1 {
         font-size: 1.8rem;
         /* igual ao primeiro */
         }
         }
         /* Formulário de Reserva */
         .reserva-form {
         background: #fff;
         border: 3px solid var(--laranja);
         border-radius: 15px;
         padding: 20px;
         box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
         display: none;
         /* escondido por padrão */
         animation: fadeIn 0.4s ease;
         }
         .reserva-form label {
         display: block;
         font-weight: 600;
         margin-top: 10px;
         color: var(--azul);
         }
         .reserva-form input {
         width: 100%;
         padding: 10px 12px;
         margin-top: 5px;
         border-radius: 10px;
         border: 1px solid #ccc;
         font-size: 1rem;
         transition: border 0.3s, box-shadow 0.3s;
         }
         .reserva-form input:focus {
         outline: none;
         border-color: var(--laranja);
         box-shadow: 0 0 10px rgba(236, 142, 23, 0.3);
         }
         .reserva-form .btn-toggle2 {
         width: 100%;
         margin-top: 15px;
         padding: 12px 0;
         font-weight: 700;
         font-size: 1rem;
         border-radius: 25px;
         text-align: center;
         background: linear-gradient(135deg, var(--laranja), #ff5c3f);
         color: var(--branco);
         transition: all 0.3s ease;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
         }
         .reserva-form .btn-toggle2:hover {
         background: linear-gradient(135deg, var(--amarelo), #ffd12f);
         color: var(--azul);
         transform: translateY(-3px) scale(1.03);
         box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
         }
         /* Animação do fade-in */
         @keyframes fadeIn {
         from {
         opacity: 0;
         transform: translateY(10px);
         }
         to {
         opacity: 1;
         transform: translateY(0);
         }
         }
         /* MODAL LOGIN */
         .modal-overlay {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         backdrop-filter: blur(12px);
         background: rgba(0, 0, 0, 0.8);
         display: none;
         align-items: center;
         justify-content: center;
         z-index: 2000;
         }
         .modal-overlay.active {
         display: flex;
         }
         .modal-content {
         background: transparent;
         padding: 40px 30px;
         border-radius: 15px;
         text-align: center;
         position: relative;
         animation: fadeIn 0.5s ease;
         }
         .graffiti-text {
         font-family: 'Sedgwick Ave Display', cursive;
         font-size: 4rem;
         line-height: 1.1;
         background: linear-gradient(90deg, #ff005e, #ff9f1c, #ffe600, #00f5d4, #00bbf9, #aa00f9, #ff005e);
         background-size: 200% auto;
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         animation: shine 6s linear infinite;
         text-shadow: 
         3px 3px 0 #ff9f1c,              /* contorno preto */
         -2px -2px 8px rgba(0,0,0,0.2), /* glow leve atrás */
         4px 4px 10px rgba(0,0,0,0.4);  /* sombra mais pesada */
         letter-spacing: 2px;
         position: relative;
         display: inline-block;
         transform: rotate(-1deg);
         }
         /* Efeito animado no gradiente */
         @keyframes shine {
         0% { background-position: 0% center; }
         100% { background-position: 200% center; }
         }
         /* Respingo de tinta */
         .paint-splat, .paint-splat.second {
         position: absolute;
         border-radius: 50%;
         background: radial-gradient(circle, #ff005c 0%, transparent 70%);
         width: 120px;
         height: 120px;
         top: -40px;
         left: -60px;
         transform: rotate(-20deg);
         opacity: 0.7;
         }
         .paint-splat.second {
         top: 120px;
         left: 80%;
         width: 100px;
         height: 100px;
         background: radial-gradient(circle, #00ffea 0%, transparent 70%);
         }
         .close-btn {
         position: absolute;
         top: -10px;
         right: 50px;         font-size: 2rem;
         color: #ffae00;
         cursor: pointer;
         text-shadow: 1px 1px 3px #000;
         }
         @keyframes fadeIn {
         from {opacity: 0; transform: scale(0.8);}
         to {opacity: 1; transform: scale(1);}
         }
         /* ======= AJUSTES RESPONSIVOS ======= */
         @media (max-width: 768px) {
         /* HEADER */
         header {
         padding: 10px 18px;
         }
         header img {
         width: 50px;
         height: 50px;
         }
         header h1 {
         font-size: 1.2rem;
         }
         header nav {
         gap: 6px;
         }
         header a {
         font-size: 0.8rem;
         padding: 4px 8px;
         }
         header .btn-warning {
         padding: 6px 12px;
         font-size: 0.8rem;
         }
         /* INTRO */
         .intro {
         height: 240px;
         }
         .intro-content h2 {
         font-size: 1.3rem;
         }
         .intro-content p {
         font-size: 0.85rem;
         }
         .btn-hero-outline {
         padding: 8px 18px;
         font-size: 0.8rem;
         }
         /* SEÇÃO HIGHLIGHTS */
         #highlights {
         margin: 40px 0;
         }
         #highlights h2 {
         font-size: 1.5rem;
         }
         #highlights .card {
         padding: 14px;
         font-size: 0.85rem;
         }
         #highlights h3 {
         font-size: 1.2rem;
         }
         #highlights img {
         max-width: 160px;
         }
         /* FOOTER */
         footer {
         padding: 15px;
         font-size: 0.8rem;
         }
         footer h5 {
         font-size: 0.95rem;
         }
         footer p, 
         footer li, 
         footer a {
         font-size: 0.8rem;
         }
         footer .bi {
         font-size: 1.1rem;
         }
         .graffiti-text {
         font-size: 2rem;
         line-height: 1.2;
         }
         .modal-content {
         padding: 20px 15px;
         }
         }
         /* BREAKPOINT EXTRA PARA TELAS MUITO PEQUENAS (até 480px) */
         @media (max-width: 480px) {
         header h1 {
         font-size: 1rem;
         }
         .intro-content h2 {
         font-size: 1.1rem;
         }
         .intro-content p {
         font-size: 0.75rem;
         }
         #highlights h2 {
         font-size: 1.3rem;
         }
         #highlights h3 {
         font-size: 1rem;
         }
         footer {
         font-size: 0.75rem;
         }
         }
/* Nova estrutura do menu mobile com animação */
.mobile-menu {
    display: flex; /* Mantemos flex, mas controlamos a visibilidade */
    flex-direction: column;
    background-color: #001b2a;
    padding: 0 20px; /* Padding vertical será animado */
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    border-bottom: 3px solid var(--amarelo);
    
    /* Estado inicial (escondido) */
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estado ativo (visível) */
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    max-height: 300px; /* Valor alto o suficiente para o conteúdo */
    padding: 10px 20px;
    transform: translateY(0);
}

.mobile-menu a {
    color: var(--branco);
    padding: 12px 0;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Pequeno delay na entrada dos links */
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateX(0);
}

/* Delay progressivo para cada link */
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }

/* Animação do ícone do hambúrguer */
#menuIcon {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

/* Quando o menu estiver ativo, o ícone gira 180 graus */
.menu-open #menuIcon {
    transform: rotate(180deg);
    color: var(--amarelo); /* Opcional: muda a cor quando aberto */
}
/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Conteúdo principal */
.popup-content {
  background: #fff;
  width: 95%;
  height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: popupIn 0.4s ease;
}

/* Cabeçalho */
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: linear-gradient(135deg, #ffd12f, #ec8e17);
  color: #fff;
}

.popup-header h2 {
  margin: 0;
  font-weight: 800;
}

.btn-close-popup {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Corpo com scroll */
.popup-body {
  padding: 30px;
  overflow-y: auto;
}

/* Sessões */
.popup-section {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  align-items: center;
}

.popup-section.reverse {
  flex-direction: row-reverse;
}

.popup-section img {
  width: 45%;
  border-radius: 20px;
  object-fit: cover;
}

.popup-text {
  width: 55%;
}

.popup-text h3 {
  font-size: 2rem;
  color: #ec8e17;
  font-weight: 800;
}

/* Animação */
@keyframes popupIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .popup-section,
  .popup-section.reverse {
    flex-direction: column;
  }

  .popup-section img,
  .popup-text {
    width: 100%;
  }
}

/* ======= AJUSTES ESPECÍFICOS PARA O NOME ======= */

@media (max-width: 768px) {
  header h1 {
    /* Ajuste para tablets e celulares em paisagem */
    font-size: 1.2rem !important; 
    letter-spacing: 1px;
    white-space: nowrap; /* Evita que o nome quebre em duas linhas */
  }
}

@media (max-width: 480px) {
  header h1 {
    /* Ajuste para celulares pequenos */
    font-size: 0.95rem !important; 
    letter-spacing: 0.5px;
  }
  
  /* Reduz um pouco o espaçamento lateral para o texto caber */
  .ms-2 {
    margin-left: 0.4rem !important;
  }
}
@media (max-width: 768px) {
  /* Diminui o logo proporcionalmente */
  header img {
    width: 45px !important;
    height: 45px !important;
  }
  
  header h1 {
    font-size: 1.1rem !important;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  /* Ajuste para telas muito pequenas (iPhone SE, etc) */
  header img {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important; /* Arredondamento menor para logos menores */
  }
  
  header h1 {
    font-size: 0.9rem !important;
    letter-spacing: 0;
  }

  /* Ajusta o padding do header para ganhar espaço lateral */
  header {
    padding: 10px 12px !important;
  }
}