:root {
  --bg: #f6fafc;
  --bg-alt: #e7f0f4;
  --ink: #25333b;
  --muted: #6a7d86;
  --brand: #2f7f9e;
  --brand-dark: #1f5d75;
  --brand-light: #9fcfe0;
  --accent: #6bbcd8;
  --gold: #e0a84d;
  --card: #ffffff;
  --line: #d8e6ec;
  --shadow: 0 18px 40px -20px rgba(31, 93, 117, 0.35);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 300;
}

h1, h2, h3 {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.3px;
}

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

img, iframe { max-width: 100%; }

/* Ícones (SVG inline estilo Lucide/Feather) */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.2em;
  flex: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.center { text-align: center; margin-top: 2rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.8rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--brand);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px -12px rgba(31, 93, 117, 0.55);
}
.btn:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn-ghost { background: transparent; color: var(--brand); border: 1.5px solid var(--brand-light); box-shadow: none; }
.btn-ghost:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-block { width: 100%; margin-top: 1.2rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 243, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-name {
  display: flex;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--brand);
}
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  font-size: 0.95rem;
  position: relative;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 4% 1.2rem;
}
.mobile-menu a { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 0.6rem; border: none; }
.mobile-menu.open { display: flex; }

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(107, 188, 216, 0.28), transparent),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  padding: 4.5rem 0 5rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}
.hero-content h1 em { color: var(--brand); font-style: italic; font-weight: 400; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 36rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.hero-rating strong { color: var(--ink); font-size: 1.1rem; }
.stars { color: var(--gold); letter-spacing: 2px; }

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-card-top { margin-bottom: 1rem; }
.badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.hero-card h3 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.quick-info { list-style: none; margin-top: 1.4rem; }
.quick-info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.quick-info li:last-child { border-bottom: none; }
.quick-info span { color: var(--muted); }
.quick-info a, .quick-info strong { color: var(--brand); font-weight: 500; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.8rem; }
.section-head h2::after {
  content: "";
  display: block;
  width: 56px; height: 3px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}
.section h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.section p { margin-bottom: 1rem; }

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

.stats { display: flex; gap: 2.2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat strong {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--brand);
  line-height: 1;
}
.stat span { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.about-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
}
.about-blob {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 300px; height: 300px;
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%;
  animation: morph 9s ease-in-out infinite;
  opacity: 0.85;
}
.about-icon { position: relative; color: #fff; line-height: 0; }
.about-icon .icon { width: 130px; height: 130px; filter: drop-shadow(0 8px 16px rgba(31, 93, 117, 0.35)); }
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%; }
  50% { border-radius: 60% 40% 33% 67% / 58% 62% 38% 42%; }
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card, .review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-alt), #fff);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 1.2rem;
  color: var(--brand);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.card-icon .icon { width: 28px; height: 28px; }
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  border-color: transparent;
  transform: rotate(-6deg) scale(1.06);
}
.card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.note { text-align: center; margin-top: 2.5rem; font-size: 0.9rem; }
.note a { color: var(--brand); }

/* Reviews */
.rating-big {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.rating-big .stars { font-size: 1.4rem; }
.rating-big strong { font-size: 1.6rem; font-family: "Jost", sans-serif; font-weight: 500; }
.review { position: relative; }
.review::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem; right: 1.4rem;
  font-family: "Jost", sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--brand-light);
  opacity: 0.6;
}
.review p { font-style: italic; color: var(--ink); margin: 0.8rem 0; }
.review-author { color: var(--muted); font-size: 0.9rem; font-weight: 500; }

/* Contato */
.contato { align-items: start; }
.contact-list { list-style: none; margin: 1.5rem 0 2rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.contact-list .ci {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--bg-alt);
  color: var(--brand);
  border-radius: 12px;
}
.contact-list .ci .icon { width: 22px; height: 22px; }
.contact-list strong { display: block; margin-bottom: 0.2rem; }
.contact-list p { margin: 0; color: var(--muted); }
.contact-list a { color: var(--brand); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
  height: 100%;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Footer */
.footer {
  background: var(--ink);
  color: #efe6dd;
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer .brand-name { color: #fff; }
.footer .muted { color: #b6a89c; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: #efe6dd; font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer .small { width: 100%; text-align: center; margin-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }

/* FAB */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 60;
  transition: transform 0.2s ease, background 0.2s ease;
  animation: pulse 2.4s infinite;
}
.fab .icon { width: 26px; height: 26px; }
.fab:hover { transform: scale(1.08); background: var(--brand-dark); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 127, 158, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(47, 127, 158, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 127, 158, 0); }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav .btn-sm { display: none; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 3.5rem; }
  .section { padding: 3.5rem 0; }
  .stats { gap: 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
