/* =========================================================
   FONTE E VARIÁVEIS
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800;900&display=swap');

:root {
  --green: #47b05a;
  --green-dark: #3aa44a;
  --yellow: #f2c200;
  --text: #1d2320;
  --muted: #6b726e;
  --bg: #eef7ef;
  --white: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
  --radius-card: 26px;
  --radius-btn: 16px;
  --radius-pill: 50px;
  --radius-full: 999px;
  --shadow-card: 0 20px 50px rgba(14, 32, 20, 0.14);
  --shadow-soft: 0 14px 28px rgba(14, 32, 20, 0.10);
  --max: 1300px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t: 240ms;
}

/* =========================================================
   RESET E CLASSES GERAIS
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0; min-height: 100vh; overflow-x: hidden; display: flex; flex-direction: column;
  background: var(--bg); color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
body.is-ready { opacity: 1; }
main { flex: 1 0 auto; width: 100%; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; background: transparent !important; border: none !important; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* Posições Fixas e Relativas */
.progress, .gigiFab, .gigiBox, .side-badge, .lightbox, .modal-overlay { position: fixed; }
.hero, .pageHead, .card, .jack-block, .modal-content, .capi { position: relative; }

/* Animações e Ondas */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

.hero::after, .pageHead::after, .footer::before {
  content: ""; position: absolute; left: 0; width: 100%; background-size: 100% 100%; background-repeat: no-repeat; pointer-events: none;
}
.hero::after, .pageHead::after {
  bottom: -1px; height: 70px; z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 C360,150 1080,-50 1440,50 L1440,100 L0,100 Z' fill='%23eef7ef' /%3E%3C/svg%3E");
}

.progress {
  top: 0; left: 0; z-index: 2000; width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow)); transition: width 80ms linear;
}

/* =========================================================
   CABEÇALHO E NAVEGAÇÃO
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 999; border-bottom: 1px solid var(--line); backdrop-filter: blur(10px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
}
.header.is-scrolled { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06); }

.header__inner {
  min-height: 90px;
  padding: 10px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: nowrap;
}

.brand { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }
.brand__logo { width: 58px; height: 58px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; justify-content: center; }
.brand__text small { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #2c7e55; }
.brand__text strong { font-size: 22px; font-weight: 900; color: #1f5f88; white-space: nowrap; line-height: 1.1; }
.brand__text strong span { color: var(--green-dark); }

/* PÍLULA CENTRAL */
.navWrap { 
  flex: 1; 
  max-width: 720px; 
  margin: 0 auto; 
  padding: 10px 24px; 
  border: 1px solid rgba(71, 176, 90, 0.15); 
  border-radius: var(--radius-full); 
  background: rgba(71, 176, 90, 0.04); 
  display: flex; 
  justify-content: center; 
}
.nav { 
  display: flex; 
  justify-content: space-between; 
  width: 100%; 
  gap: 10px; 
  font-size: 15px; 
  font-weight: 800; 
  white-space: nowrap; 
}
.nav a { position: relative; padding: 8px 14px; font-weight: 900; border-radius: 100px; transition: all var(--t); }
.nav a:hover { color: var(--green-dark); }
.nav a[aria-current="page"] { background-color: rgba(71, 176, 90, 0.15) !important; color: var(--green) !important; }

/* AÇÕES DO LADO DIREITO */
.header__actions { flex: 0 0 auto; display: flex; align-items: center; justify-content: flex-end; gap: 14px; }

/* Ícones Gerais */
.social-icon, .card__icon, .capi__ring, .modal-close { display: flex; align-items: center; justify-content: center; }
.social-links { display: flex; align-items: center; gap: 8px; }

.social-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(71, 176, 90, 0.1); color: var(--green); transition: all 0.3s var(--ease); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.social-icon:hover { background: var(--green); color: #fff; transform: translateY(-4px) scale(1.1) rotate(5deg); box-shadow: 0 8px 16px rgba(71, 176, 90, 0.3); }

/* Grid 2x2 no Header */
.header__actions .social-links {
  display: grid;
  grid-template-columns: repeat(2, 26px);
  grid-template-rows: repeat(2, 26px);
  gap: 6px;
  margin-right: 5px;
}
.header__actions .social-icon { 
  width: 100%; 
  height: 100%; 
  background: rgba(71, 176, 90, 0.12); 
}
.header__actions .social-icon svg { width: 12px; height: 12px; }

/* Select de Idioma */
.lang-switcher, .gigiForm input, .gigiForm textarea { font-family: inherit; outline: none; }
.lang-switcher {
  height: 44px; padding: 0 12px; border: 1px solid rgba(0, 0, 0, 0.10); border-radius: var(--radius-btn);
  background: #fff; color: var(--text); font-size: 14px; font-weight: 800; cursor: pointer; transition: all var(--t);
}
.lang-switcher:hover { border-color: var(--green); box-shadow: 0 4px 12px rgba(71, 176, 90, 0.15); }

/* =========================================================
   BOTÕES E EFEITOS
   ========================================================= */
.btn, .hero__actions a, .gigiFab__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 20px; font-size: 14px; font-weight: 900; border-radius: var(--radius-pill);
  transition: all var(--t) var(--ease); border: none; cursor: pointer; white-space: nowrap;
}

.btn--green, .gigiFab__btn, .gigiSend {
  position: relative; overflow: hidden; background: var(--green); color: #fff; box-shadow: 0 10px 20px rgba(71, 176, 90, 0.25);
}
.btn--green:hover, .gigiSend:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 26px rgba(71, 176, 90, 0.30); }

.header__actions .btn--green {
  height: 44px;
  padding: 0 24px;
  font-size: 15px;
}

.header__actions .btn--green::after, .gigiFab__btn::after, .gigiSend::after {
  content: ""; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); animation: shine 4s infinite;
}
@keyframes shine { 0% { left: -100%; } 20%, 100% { left: 200%; } }

/* =========================================================
   HERO DA HOME
   ========================================================= */
.hero { height: 600px; display: flex; align-items: center; background: #151a17; overflow: hidden; }
.hero__bg, .hero__overlay { position: absolute; inset: 0; }
.hero__bg { background-size: cover; background-position: center; transform: scale(1.05); }
.hero__overlay { background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)); }
.hero__content { position: relative; z-index: 15; width: 100%; padding: 60px 0; text-align: center; color: #fff; }

.pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.92); font-weight: 800;
}
.pill .dot { width: 10px; height: 10px; border-radius: var(--radius-full); background: #ffd400; box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.22); }

.hero h1 { margin: 20px 0 10px; font-size: 60px; font-weight: 900; text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); }
.hero h1 .accent { color: var(--yellow); }
.hero p { max-width: 800px; margin: 0 auto 30px; font-size: 20px; font-weight: 600; text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); }

.hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.hero__actions a:not(.btn--green) { background: #ffffff; color: var(--text); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); }
.hero__actions a:not(.btn--green):hover { color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }
.hero__foot { display: flex; justify-content: center; gap: 10px; margin-top: 18px; color: rgba(255, 255, 255, 0.82); font-weight: 800; }

/* =========================================================
   ESTRUTURAS INTERNAS (Secões e Cabeçalhos)
   ========================================================= */
.section { padding: 50px 0; background: var(--bg); }
.section__title { margin: 0 0 10px; text-align: center; font-size: 48px; font-weight: 900; letter-spacing: -0.02em; color: #2c2f2d; }
.section__subtitle { margin: 0 0 34px; text-align: center; color: var(--muted); font-size: 18px; font-weight: 800; }

.pageHead { padding: 60px 0 70px; background: var(--green); color: #fff; z-index: 10; }
.pageHead h1, .pageHead p { position: relative; z-index: 15; }
.pageHead h1 { margin: 0; font-size: 48px; font-weight: 900; }
.pageHead p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.9); font-size: 18px; font-weight: 700; }

/* =========================================================
   DICA DA CAPI
   ========================================================= */
.tipRow {
  display: flex; align-items: center; justify-content: center; gap: 30px; max-width: 850px;
  margin: 30px auto 40px; padding: 30px 40px; border: 1px solid rgba(71, 176, 90, 0.12); border-radius: 30px;
  background: #fff; box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1); z-index: 100;
}
main .section .tipRow { margin-top: 0 !important; }

.capi__ring { width: 90px; height: 90px; border: 4px solid var(--yellow); border-radius: 50%; background: #fff; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); overflow: hidden; }
.capi__ring img { width: 100%; height: 100%; object-fit: cover; }
.capi__tag {
  position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); padding: 6px 14px; border-radius: 20px;
  background: var(--green); color: #fff; font-size: 11px; font-weight: 900; white-space: nowrap; box-shadow: 0 4px 10px rgba(71, 176, 90, 0.3);
}

.tip { padding: 0; border: none; background: transparent; box-shadow: none; max-width: none; }
.tip p { margin: 0; color: var(--text); font-size: 16px; font-weight: 700; line-height: 1.6; }

/* =========================================================
   CARDS INTELIGENTES (ALINHAMENTO COM CSS GRID)
   ========================================================= */

/* CARDS GENÉRICOS (Garanti 4 colunas cravadas) */
.cards, .cards--4 { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px; 
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.cards > .card, .cards--4 > .card { 
  width: 100%; 
  max-width: none;
}

/* =========================================================
   LAYOUT EXCLUSIVO: BOAS PRÁTICAS E A ILHA (Ajuste de margens)
   ========================================================= */
body[data-page="boas-praticas"] .section,
body[data-page="a-ilha"] .section { padding: 15px 0 !important; }

body[data-page="boas-praticas"] .tipRow,
body[data-page="a-ilha"] .tipRow { margin-bottom: 25px !important; }

body[data-page="boas-praticas"] .container[style*="margin-bottom"],
body[data-page="a-ilha"] .container[style*="margin-bottom"] { margin-bottom: 30px !important; }

/* =========================================================
   LAYOUT EXCLUSIVO: 5 CARDS LADO A LADO
   ========================================================= */
body[data-page="passeios-rotas"] .cards,
body[data-page="passeios-rotas"] .cards--4,
.cards--5 { 
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1300px; 
  margin: 0 auto;
  gap: 16px; 
}

body[data-page="passeios-rotas"] .cards > .card,
body[data-page="passeios-rotas"] .cards--4 > .card,
.cards--5 > .card { 
  width: 100% !important; 
  max-width: none; 
}

body[data-page="passeios-rotas"] .card__img,
.cards--5 .card__img { height: 160px; }

body[data-page="passeios-rotas"] .card__title,
.cards--5 .card__title { margin-bottom: 6px; font-size: 17px; }

body[data-page="passeios-rotas"] .card__desc,
.cards--5 .card__desc { margin-bottom: 12px; font-size: 13px; }

body[data-page="passeios-rotas"] .card__body,
.cards--5 .card__body { padding: 18px 16px 16px; }

/* A ESTRUTURA BLINDADA DO CARD */
.card { 
  display: flex; 
  flex-direction: column; 
  height: auto; 
  border-radius: var(--radius-card); 
  background: var(--white); 
  box-shadow: var(--shadow-card); 
  transition: transform 0.3s; 
  overflow: hidden; 
}
.card:hover { transform: translateY(-8px); }

.card__img { 
  position: relative; 
  height: 210px; 
  overflow: hidden; 
  flex-shrink: 0; 
}
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card__img img { transform: scale(1.1); }

.card__icon { position: absolute; top: 16px; left: 16px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: var(--green); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); }
.card__icon svg { width: 20px; height: 20px; fill: #fff; }

.card__body { 
  display: flex; 
  flex-direction: column; 
  flex-grow: 1; 
  padding: 24px; 
}
.card__title { margin: 0 0 10px; font-size: 22px; font-weight: 900; }

.card__desc { 
  margin: 0 0 15px; 
  color: var(--muted); 
  font-weight: 700; 
  line-height: 1.5; 
}

/* O SEGREDO DO ALINHAMENTO DOS BOTÕES */
.card__link,
.card__body > div:last-child { 
  margin-top: auto !important; 
}

.card__link { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-weight: 900; }
.card__link:hover { text-decoration: underline; }

/* Ocultar Lixo Herdado */
.card__badge, .badge, .pageHead .container div[style*="background: var(--yellow)"],
.card__body hr, .card hr, .card__features, .card__body p[style*="color: var(--green)"], .card__body p[style*="color: #47b05a"] {
  display: none !important;
}

/* =========================================================
   GALERIA E LIGHTBOX
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin: 40px 0; }
.gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-soft); cursor: pointer; transition: all 0.3s var(--ease); }
.gallery img:hover { position: relative; z-index: 2; transform: scale(1.05); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); }

.lightbox { top: 0; left: 0; z-index: 10000; display: none; align-items: center; justify-content: center; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); opacity: 0; transition: opacity 0.3s ease; }
.lightbox.is-active { display: flex; opacity: 1; }
.lightbox__content { max-width: 90%; max-height: 80%; object-fit: contain; border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); transform: scale(0.95); transition: transform 0.3s ease; }
.lightbox.is-active .lightbox__content { transform: scale(1); }

.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; z-index: 10001; color: #fff; font-weight: bold; cursor: pointer; user-select: none; }
.lightbox__close { top: 20px; right: 25px; font-size: 50px; }
.lightbox__prev, .lightbox__next { top: 50%; padding: 16px; margin-top: -50px; font-size: 30px; transition: 0.6s ease; }
.lightbox__prev { left: 0; border-radius: 0 3px 3px 0; }
.lightbox__next { right: 0; border-radius: 3px 0 0 3px; }
.lightbox__prev:hover, .lightbox__next:hover { background-color: rgba(0, 0, 0, 0.8); }

/* =========================================================
   JACK, CONTATO E GIGI (Formulários e Widgets)
   ========================================================= */
.jack-block { display: flex; align-items: center; min-height: 160px; margin-top: 60px; padding: 30px 20px 30px 160px; border: 1px solid rgba(71, 176, 90, 0.2); border-radius: 24px; background: rgba(71, 176, 90, 0.1); }
.jack-img { position: absolute; top: 50%; left: -15px; z-index: 5; width: 170px; transform: translateY(-50%); mix-blend-mode: multiply; filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.2)); pointer-events: none; }

.contato-wrapper { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.contato-form { flex: 1 1 400px; }
.contato-img { display: flex; align-items: center; justify-content: center; flex: 1 1 350px; }
.gigi-mesa { width: 100%; max-width: 450px; mix-blend-mode: multiply; filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12)); }

.gigiForm label { display: block; margin-bottom: 5px; color: var(--text); font-size: 13px; font-weight: 900; }
.gigiForm input, .gigiForm textarea { width: 100%; padding: 14px; border: 1px solid rgba(0, 0, 0, 0.10); border-radius: 16px; background: rgba(255, 255, 255, 0.96); font-weight: 800; }
.gigiForm textarea { resize: vertical; }

.gigiFab { right: 20px; bottom: 20px; z-index: 2500; }
.gigiFab__btn { gap: 10px; padding: 15px 20px; color: var(--text); font-size: 16px; }

.gigiBox { right: 20px; bottom: 85px; z-index: 2500; display: flex; flex-direction: column; width: 340px; background: #fff; border-radius: 24px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); }
.gigiBox__top { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; border-radius: 24px 24px 0 0; background: var(--green); color: #fff; }
.gigiBox__title, .gigiCard__text { display: flex; flex-direction: column; }
.gigiBox__close { border: none; background: transparent; color: #fff; font-size: 20px; cursor: pointer; }
.gigiBox__body { padding: 20px; }
.gigiCard { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }

.side-badge { right: 0; top: 50%; z-index: 9999; transform: translateY(-50%); padding: 12px 14px; border: 2px solid #fff; border-right: none; border-radius: 12px 0 0 12px; background: var(--green); color: #fff; text-align: center; font-size: 13px; font-weight: 800; line-height: 1.4; cursor: pointer; box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; }
.side-badge:hover { background: var(--green-dark); padding-right: 20px; }

.modal-overlay { top: 0; left: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.is-active { opacity: 1; visibility: visible; }
.modal-content { width: 90%; max-width: 480px; padding: 40px 30px; border-radius: 24px; background: #fff; transform: translateY(30px) scale(0.95); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.modal-overlay.is-active .modal-content { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 15px; right: 20px; width: 32px; height: 32px; border: none; border-radius: 50%; background: #f0f0f0; color: #555; font-size: 18px; transition: background 0.2s; }
.modal-close:hover { background: #ddd; color: #000; }

/* =========================================================
   RODAPÉ (FOOTER)
   ========================================================= */
.footer { position: relative; margin-top: 80px; padding: 0 0 15px; background-color: var(--green-dark); color: var(--white); text-align: left; }
.footer__wave svg { display: none; }
.footer::before { top: -60px; height: 61px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 C480,130 960,-30 1440,50 L1440,121 L0,121 Z' fill='%233aa44a' /%3E%3C/svg%3E"); }
.footer__content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; max-width: var(--max); margin: 0 auto; padding: 10px 20px 20px; }
.footer__col h2.footer__logo { margin: 0 0 10px; color: #fff; font-size: 24px; font-weight: 900; letter-spacing: -0.5px; }
.footer__col h3 { margin: 0 0 12px; color: var(--yellow); font-size: 15px; font-weight: 800; }
.footer__col p { max-width: 380px; margin-bottom: 15px; color: rgba(255, 255, 255, 0.9); font-size: 14px; font-weight: 600; line-height: 1.5; }
.footer__col ul { margin: 0; padding: 0; list-style: none; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a { color: rgba(255, 255, 255, 0.85); font-size: 14px; font-weight: 600; text-decoration: none; transition: color var(--t); }
.footer__col ul li a:hover { color: #fff; text-decoration: underline; }
.footer__socials_wrapper { margin-top: 15px; }

/* Cor específica para ícones sociais no footer (branco para destacar) */
.footer .social-icon { 
  background: rgba(255, 255, 255, 0.15); 
  color: var(--white); 
}
.footer .social-icon:hover { 
  background: var(--white); 
  color: var(--green-dark); 
}

.footer__bottom { max-width: var(--max); margin: 0 auto; padding: 15px 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.7); text-align: center; font-size: 13px; font-weight: 600; }

/* =========================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================= */
.burger, .mobileNav { display: none; }

@media (max-width: 1100px) { 
  .cards, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  body[data-page="passeios-rotas"] .cards,
  body[data-page="passeios-rotas"] .cards--4,
  .cards--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) { 
  .header__inner { padding: 0 10px; } 
  .navWrap { max-width: auto; margin: 0 10px; }
}

@media (max-width: 960px) {
  .brand__logo { width: 60px; height: 60px; } 
  .brand__text strong { font-size: 20px; }
  .navWrap, .header__actions .social-links, .header__actions .btn--green { display: none; }
  
  .burger { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius-btn); background: #fff; font-size: 20px; }
  .mobileNav { display: block; padding: 15px 0; border-top: 1px solid var(--line); }
  .mobileNav__inner { display: grid; gap: 10px; } .mobileNav a { padding: 10px; font-weight: 900; }
  .mobileNav a[aria-current="page"] { background: rgba(71,176,90,0.15) !important; color: var(--green) !important; border-radius: 100px; text-align: center; }
}

@media (max-width: 768px) {
  .cards, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  body[data-page="passeios-rotas"] .cards,
  body[data-page="passeios-rotas"] .cards--4,
  .cards--5 { grid-template-columns: repeat(2, 1fr); }
  
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; } .gallery img { height: 140px; }
  .lightbox__content { max-width: 100%; max-height: 90%; }
  .footer { margin-top: 60px; } .footer::before { top: -40px; height: 41px; }
  .footer__content { grid-template-columns: 1fr; gap: 20px; padding: 0 20px 20px; text-align: center; }
  .footer__col p { margin: 0 auto 15px; } .footer__socials { justify-content: center; } .footer__col ul li a { display: inline-block; padding: 4px 0; }
}

@media (max-width: 600px) { 
  .cards, .cards--4 { grid-template-columns: 1fr; }
  body[data-page="passeios-rotas"] .cards,
  body[data-page="passeios-rotas"] .cards--4,
  .cards--5 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero { height: auto; min-height: 500px; } .hero__content { padding: 80px 0 100px; } .hero h1 { font-size: 38px; line-height: 1.1; } .hero p { margin-bottom: 20px; font-size: 16px; }
  .section { padding: 40px 0; } .section__title { font-size: 34px; }
  .pageHead { padding: 40px 0 80px; } .pageHead h1 { font-size: 32px; }
  .tipRow { flex-direction: column; gap: 15px; margin-top: 20px; } .capi { margin-right: 0; transform: none; z-index: 20; } .tip { padding: 0; text-align: center; }
  .jack-block { margin-top: 80px; padding: 120px 20px 24px 20px !important; text-align: center; flex-direction: column; justify-content: center; }
  .jack-img { top: -70px !important; left: 50% !important; bottom: auto !important; width: 140px !important; transform: translate(-50%, 0) !important; }
  .gigiBox { width: calc(100% - 40px); bottom: 80px; } .lang-switcher { height: 44px; padding: 0 8px; font-size: 13px; } .side-badge { padding: 10px 12px; font-size: 11px; }
}
/* =========================================================
   AJUSTE ESPECÍFICO: 3 CARDS DA HOME
   ========================================================= */
#homeCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1050px; /* Mantém um tamanho agradável para 3 colunas */
  margin: 0 auto;
}

/* Responsividade específica para os 3 cards da home */
@media (max-width: 960px) {
  #homeCards {
    grid-template-columns: repeat(2, 1fr); /* 2 por linha em tablets */
  }
}

@media (max-width: 600px) {
  #homeCards {
    grid-template-columns: 1fr; /* 1 por linha no celular */
  }
}
/* =========================================================
   AJUSTE ESPECÍFICO: 3 CARDS DA PÁGINA HOSPEDAGEM
   ========================================================= */
body[data-page="hospedagem"] .cards,
body[data-page="hospedagem"] #pageCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1050px; 
  margin: 0 auto;
}

/* Responsividade para Hospedagem */
@media (max-width: 960px) {
  body[data-page="hospedagem"] .cards,
  body[data-page="hospedagem"] #pageCards {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 600px) {
  body[data-page="hospedagem"] .cards,
  body[data-page="hospedagem"] #pageCards {
    grid-template-columns: 1fr; 
  }
}