/* =========================================================
   Tucuna Turismo Fishing — folha de estilos principal
   Paleta extraída do logotipo (verde-escuro, laranja, azul,
   verde-oliva do tucunaré).
   ========================================================= */

:root {
  --dark-green: #0f4d2e;
  --dark-green-2: #0a3a22;
  --orange: #f2a71b;
  --orange-2: #d98e0c;
  --sky-blue: #4fb8dc;
  --sky-blue-2: #2f95b8;
  --olive: #a8b400;
  --cream: #faf6ef;
  --white: #ffffff;
  --ink: #1c2b22;
  --ink-soft: #4a564c;
  --border: #e4ddcd;
  --shadow: 0 10px 30px rgba(15, 77, 46, 0.12);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dark-green);
  margin: 0 0 .5em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--dark {
  background: linear-gradient(160deg, var(--dark-green-2), var(--dark-green));
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.82); }

.section-head { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-2);
  font-weight: 700;
  margin-bottom: 10px;
}
.section--dark .eyebrow { color: var(--orange); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn--orange { background: var(--orange); color: var(--dark-green-2); }
.btn--orange:hover { background: var(--orange-2); transform: translateY(-2px); }
.btn--outline { border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--green { background: var(--dark-green); color: var(--white); }
.btn--green:hover { background: var(--dark-green-2); transform: translateY(-2px); }
.btn--whats { background: #25D366; color: #06331b; }
.btn--whats:hover { background: #1ebc59; transform: translateY(-2px); }
.btn--small { padding: 9px 18px; font-size: .85rem; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { height: 52px; width: auto; }
.logo-link--header img { height: 42px; width: auto; }

.lang-switch-group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 999px;
  line-height: 0;
}
.lang-pill.active {
  background: var(--dark-green);
  box-shadow: 0 0 0 2px var(--dark-green);
  cursor: default;
}
a.lang-pill:hover { background: rgba(15,77,46,.1); }
.lang-pill svg { width: 24px; height: 17px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.15); flex: none; display: block; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.main-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--dark-green);
}
.main-nav a:hover,
.main-nav a.active { background: var(--cream); color: var(--orange-2); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark-green);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; padding: 10px 0; }
  .nav-wrap { flex-wrap: wrap; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(10,58,34,.55), rgba(10,58,34,.78)), var(--dark-green);
  background-size: cover;
  background-position: center;
}
.hero--compact { min-height: 46vh; }
.hero-content { max-width: 680px; }
.hero .eyebrow { color: var(--orange); }
.hero h1 { color: var(--white); }
.hero p { color: rgba(255,255,255,.9); font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* ---------- cards ---------- */
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease;
}
.card:hover { transform: translateY(-4px); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { margin: 0; }
.card-tag {
  align-self: flex-start;
  background: var(--cream);
  color: var(--dark-green);
  border: 1px solid var(--border);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* cards de serviço (Home) */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ---------- galeria de fotos (placeholder) ---------- */
.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: repeating-linear-gradient(135deg, #2f8a56, #2f8a56 14px, #26794a 14px, #26794a 28px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  padding: 12px;
  border-radius: inherit;
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(135deg, #2f8a56, #2f8a56 18px, #26794a 18px, #26794a 36px);
}

/* ---------- carrossel de fotos ---------- */
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
}
.carousel-track {
  display: flex;
  transition: transform .4s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 16/10;
}
.carousel-slide .photo-placeholder { min-height: 0; height: 100%; border-radius: 0; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(15,77,46,.75);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.carousel-btn:hover { background: var(--dark-green-2); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.carousel-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: var(--white); }

/* ---------- listras / faixa CTA ---------- */
.cta-strip {
  background: var(--orange);
  color: var(--dark-green-2);
  padding: 46px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--dark-green-2); }
.cta-strip .btn--green { background: var(--dark-green-2); }

/* ---------- breadcrumb ---------- */
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}
.breadcrumb a { text-decoration: underline; }

/* ---------- formulários ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: .88rem; color: var(--dark-green); }
input, select, textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sky-blue-2);
  background: var(--white);
}
textarea { resize: vertical; min-height: 110px; }
.file-drop {
  border: 2px dashed var(--sky-blue-2);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  background: rgba(79,184,220,.08);
  color: var(--ink-soft);
  font-size: .88rem;
}
.file-drop strong { color: var(--dark-green); }
#lista-arquivos-seguro { margin-top: 20px; font-size: .82rem; color: var(--ink-soft); }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }
.form-msg { display: none; margin-top: 16px; padding: 12px 16px; border-radius: 10px; font-size: .9rem; }
.form-msg.ok { display: block; background: #e4f7ea; color: #146c34; }
.form-msg.err { display: block; background: #fdeaea; color: #a3231c; }

/* ---------- info list (Contato / Sobre) ---------- */
.info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ico {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--dark-green-2);
  color: rgba(255,255,255,.85);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 34px;
}
.footer-grid--3col { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer a:hover { color: var(--orange); }
.site-footer .logo-link img { height: 46px; }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 10px; }
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-list .ico {
  flex: none;
  width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 1px;
}
.footer-contact-list .ico svg { width: 16px; height: 16px; fill: var(--orange); }
.footer-contact-list a { color: rgba(255,255,255,.85); }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s, box-shadow .15s;
}
.social-icon:hover { background: var(--orange); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; fill: #fff; }
/* Destaque nas redes sociais do rodapé: ícones com as cores oficiais de
   cada marca + sombra + leve elevação/brilho no hover, para chamar mais
   atenção do que os círculos neutros usados no restante do site. */
.social-icons--brand { margin-top: 6px; gap: 12px; flex-wrap: wrap; }
.social-icons--brand .social-icon {
  width: 42px; height: 42px;
  box-shadow: 0 4px 12px rgba(0,0,0,.28);
}
.social-icons--brand .social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.12);
}
.social-icon--whatsapp { background: #25D366; }
.social-icon--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icon--facebook { background: #1877F2; }
.social-icon--tiktok { background: #010101; }
.social-icon--youtube { background: #FF0000; }
.social-icon--linkedin { background: #0A66C2; }
/* especificidade maior que .social-icon:hover para manter a cor da marca
   ao passar o mouse (só eleva e clareia, não troca para laranja). */
.social-icons--brand .social-icon--whatsapp:hover { background: #25D366; }
.social-icons--brand .social-icon--instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icons--brand .social-icon--facebook:hover { background: #1877F2; }
.social-icons--brand .social-icon--tiktok:hover { background: #010101; }
.social-icons--brand .social-icon--youtube:hover { background: #FF0000; }
.social-icons--brand .social-icon--linkedin:hover { background: #0A66C2; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: .92rem; }
.footer-cta-title { color: var(--orange); font-size: 1rem; margin: 0 0 10px; }
.footer-pix, .footer-holder {
  font-size: .85rem;
  margin: 0 0 6px;
  color: rgba(255,255,255,.85);
}
.footer-pix a { color: var(--white); font-weight: 600; }
.footer-payment-more { margin: 10px 0 20px; font-size: .85rem; }
.footer-payment-more a { color: var(--orange); font-weight: 600; }
.footer-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-badge-img { max-height: 34px; width: auto; }
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  text-align: center;
}
.footer-bottom a { text-decoration: underline; }
.footer-cta-link { color: var(--orange); text-decoration: none; font-weight: 600; }
.footer-cta-link:hover { text-decoration: underline; }
.footer-cta-domain { text-decoration: underline; }
@media (max-width: 480px) {
  /* dá espaço extra embaixo pra linha de direitos autorais não ficar
     escondida atrás do botão flutuante do WhatsApp no celular. */
  .footer-bottom { padding-bottom: 76px; }
}

/* ---------- botão flutuante WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- diversos ---------- */
.two-col {
  display: grid;
  gap: 44px;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
}
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; } }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--dark-green);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.lang-note { font-size: .78rem; color: var(--ink-soft); }

.pending-text {
  border: 2px dashed var(--sky-blue-2);
  background: rgba(79,184,220,.08);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: .9rem;
  color: var(--ink-soft);
}
.pending-text strong { color: var(--dark-green); }

/* ---------- pacotes de expedição (preços + checkout Mercado Pago) ---------- */
.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pricing-card .card-tag { margin: 0 auto; }
.pricing-card .pricing-days { font-size: 1.2rem; font-weight: 700; color: var(--dark-green); margin-top: 6px; }
.pricing-card .pricing-price { font-family: Georgia, serif; font-size: 2rem; color: var(--dark-green-2); }
.pricing-card .pricing-note { font-size: .8rem; color: var(--ink-soft); margin-top: -8px; }
.pricing-card .pricing-price-2026 {
  font-size: .78rem;
  color: var(--ink-soft);
  border-top: 1px dashed var(--border);
  padding-top: 8px;
  margin-top: 2px;
  width: 100%;
}
.pricing-card .btn { width: 100%; margin-top: 10px; }
.btn--pending {
  background: transparent;
  border: 1.5px dashed var(--border);
  color: var(--ink-soft);
  cursor: default;
  pointer-events: none;
}

/* ---------- chamada em destaque para vídeo ---------- */
.video-cta {
  background: linear-gradient(160deg, var(--dark-green-2), var(--dark-green));
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
}
.video-cta .play-ico {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--dark-green-2);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.video-cta h2 { color: var(--white); }
.video-cta p { color: rgba(255,255,255,.82); max-width: 520px; margin: 0 auto 20px; }

/* ---------- incluso / não incluso ---------- */
.inclusions-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.inclusions-group h3 { font-size: 1.05rem; margin-bottom: 14px; }
.exclusions-box {
  max-width: 780px;
  margin: 40px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.exclusions-box h3 { font-size: 1rem; color: var(--ink-soft); }
.exclusions-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.exclusions-list li { font-size: .88rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.exclusions-list li::before { content: "\2715"; color: #a3231c; font-size: .78rem; }
