@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --teal: #3a8a8c;
  --teal-dark: #2a6a6c;
  --teal-light: #4eadb0;
  --teal-pale: #e8f4f5;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-light: #f0f0ee;
  --gray-mid: #c8c8c4;
  --gray-text: #6b6b68;
  --dark: #1a2a2b;
  --gold: #c9a84c;
  --shadow: 0 4px 24px rgba(58, 138, 140, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 42, 43, 0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(58, 138, 140, 0.1);
  transition: box-shadow 0.3s;
}

header.scrolled { box-shadow: var(--shadow); }

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-circle {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--teal);
}

nav { display: flex; align-items: center; gap: 2rem; }

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-text);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width 0.3s;
}

nav a:hover { color: var(--teal); }
nav a:hover::after { width: 100%; }

.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: white;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-whatsapp-header:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a3b 50%, var(--teal-dark) 100%);
  padding: 0 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,42,43,0.85) 0%, rgba(58,138,140,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 1s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 300;
  line-height: 1.1;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--teal);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,138,140,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { opacity: 0.5; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }

.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.section-title em { font-style: italic; color: var(--teal); }

.section-subtitle {
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ── SOBRE ── */
#sobre { background: var(--off-white); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.sobre-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.sobre-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border: 2px solid var(--teal);
  border-radius: 2px;
  z-index: -1;
}

.sobre-img::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  background: var(--teal-pale);
  border-radius: 2px;
  z-index: -1;
}

.sobre-text p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat {
  padding: 1.25rem;
  background: var(--gray-light);
  border-radius: 4px;
  border-left: 3px solid var(--teal);
}

.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--teal);
  font-weight: 700;
}

.stat span {
  font-size: 0.85rem;
  color: var(--gray-text);
  letter-spacing: 0.05em;
}

/* ── DESTINOS ── */
#destinos { background: var(--dark); }

#destinos .section-title { color: white; }
#destinos .section-label { color: var(--teal-light); }
#destinos .section-subtitle { color: rgba(255,255,255,0.6); }

.destinos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.destino-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.destino-card:first-child {
  grid-row: span 2;
}

.destino-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.destino-card:first-child img { height: 100%; min-height: 460px; }

.destino-card:hover img { transform: scale(1.05); }

.destino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,42,43,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.destino-overlay h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.destino-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.destino-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── SERVIÇOS ── */
#servicos { background: var(--off-white); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.servico-card {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--teal);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: bottom;
}

.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.servico-card:hover::before { transform: scaleY(1); }

.servico-icon {
  width: 52px; height: 52px;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
}

.servico-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.servico-card p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── DEPOIMENTOS ── */
#depoimentos { background: var(--teal-pale); }

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.depo-card {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
  position: relative;
}

.depo-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.15;
  position: absolute;
  top: -0.5rem; left: 1rem;
  line-height: 1;
}

.depo-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
  padding-top: 1rem;
}

.depo-autor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.depo-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.depo-autor strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
}

.depo-autor span {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.25rem; }

/* ── CONTATO ── */
#contato { background: var(--dark); }

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

#contato .section-title { color: white; }
#contato .section-label { color: var(--teal-light); }
#contato .section-subtitle { color: rgba(255,255,255,0.6); }

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.contato-icon {
  width: 44px; height: 44px;
  background: rgba(58,138,140,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
}

.contato-cta-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
}

.contato-cta-box h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contato-cta-box p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-whatsapp-big {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp-big:hover {
  background: #1fbd59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-align: left;
}

.consent-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal);
}

.consent-check label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  cursor: pointer;
}

.consent-check label a {
  color: var(--teal-light);
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: #0f1e1f;
  padding: 3rem 2rem 1.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.875rem;
}

.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
}

.footer-legal strong { color: rgba(255,255,255,0.5); }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: all 0.25s;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { color: white; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: white;
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.3s;
  position: relative;
}

.modal-overlay.active .modal { transform: translateY(0); }

.modal h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.modal p {
  color: var(--gray-text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  background: var(--teal-pale);
  padding: 1rem;
  border-radius: 6px;
}

.modal-consent input { accent-color: var(--teal); margin-top: 2px; }

.modal-consent label {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.5;
  cursor: pointer;
}

.modal-consent label a { color: var(--teal); }

.modal-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-cancel {
  flex: 1;
  padding: 0.8rem;
  background: var(--gray-light);
  color: var(--gray-text);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn-cancel:hover { background: var(--gray-mid); }

.btn-confirm {
  flex: 2;
  padding: 0.8rem;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.5;
  pointer-events: none;
}

.btn-confirm.enabled {
  opacity: 1;
  pointer-events: all;
}

.btn-confirm.enabled:hover {
  background: #1fbd59;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--off-white);
    padding: 1.5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
    gap: 1.25rem;
    z-index: 99;
  }

  .hamburger { display: flex; }
  .btn-whatsapp-header { display: none; }

  .sobre-grid, .contato-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-img::before, .sobre-img::after { display: none; }
  .sobre-img img { height: 280px; }

  .destinos-grid { grid-template-columns: 1fr; }
  .destino-card:first-child { grid-row: span 1; }
  .destino-card:first-child img { min-height: 240px; }

  .servicos-grid { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }

  section { padding: 4rem 1.25rem; }
  header { padding: 0 1.25rem; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .destinos-grid { grid-template-columns: repeat(2, 1fr); }
  .destino-card:first-child { grid-row: span 1; }
}
