:root {
  --brand: #3acbc7;
  --color1: #03a9f4;
  --color1-hover: #2ebcfc;
  --color2: #ff9800;
  --color2-hover: #ffad33;
  --heading: #26343d;
  --text: #40464d;
  --text-muted: #5c6d76;
  --text-faint: #8a9aa2;
  --border: #e7eff3;
  --bg-light: #f5fafd;
  --dark-bg: #222222;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Mulish", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  margin-top: 0;
  color: var(--heading);
}

h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  color: inherit;
}

.eyebrow {
  letter-spacing: 2px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  margin: 6px 10px 6px 0;
  transition: opacity 0.2s;
}

.button:hover {
  opacity: 0.88;
}

.button.color1 {
  background: var(--color1);
  color: #fff;
}

.button.color1:hover {
  background: var(--color1-hover);
}

.button.color2 {
  background: var(--color2);
  color: #fff;
}

.button.color2:hover {
  background: var(--color2-hover);
}

.button.outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* Top utility bar */
.topbar {
  background: var(--dark-bg);
  color: #fff;
  font-size: 13px;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 26px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar i {
  opacity: 0.9;
}

.topbar .socials {
  margin-left: auto;
  display: flex;
  gap: 14px;
}

.topbar .socials a {
  color: #fff;
  opacity: 0.92;
  font-size: 15px;
}

/* Header / Nav */
header.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 18px rgba(20, 60, 70, 0.08);
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
  gap: 16px 30px;
}

.navbar img.logo {
  height: 46px;
  width: auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--heading);
  cursor: pointer;
  padding: 6px 10px;
}

nav.main-menu ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
}

nav.main-menu a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  padding: 8px 12px;
  display: block;
}

nav.main-menu a:hover {
  color: var(--brand);
}

nav.main-menu .has-dropdown {
  position: relative;
}

nav.main-menu .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

nav.main-menu .dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  min-width: 230px;
  box-shadow: 0 12px 34px rgba(20, 60, 70, 0.16);
  border-radius: 8px;
  font-weight: 500;
  display: none;
}

nav.main-menu .has-dropdown:hover .dropdown {
  display: block;
}

nav.main-menu .dropdown a {
  color: #3f5560;
  padding: 9px 18px;
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(1, 15, 15, 0.767), rgba(0, 241, 241, 0.274)),
    url("../img/3.jpg") center/cover;
  color: #fff;
  text-align: center;
  padding: 250px 20px 150px;
}

.hero h1 {
  font-size: 2.6rem;
  max-width: 1050px;
  margin: 0 auto 20px;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 30px;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 45px;
  overflow: hidden;
  z-index: 45;
  transform: rotate(180deg);
}

.hero-wave img {
  display: block;
  width: 100%;
  height: 59px;
}

.hero-arrow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  z-index: 50;
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(9px);
  }
}

/* Historia */
#historia {
  background: var(--bg-light);
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.historia-callout {
  color: var(--heading);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.55;
}

.historia-images {
  position: relative;
  min-height: 320px;
}

.historia-images .image-card {
  position: absolute;
  border-radius: 8px;
}

.historia-images .image-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 22px 50px rgba(20, 60, 70, 0.22);
}

/* Borda flutuante */
.historia-images .image-card::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid var(--bg-light);
  border-radius: 10px;
  z-index: 1;
  box-shadow: 0 18px 35px rgba(20, 60, 70, 0.18);
}

/* Imagem principal */
.historia-images .img-1 {
  width: 65%;
  top: 0;
  right: 0;
}

/* Imagem secundária */
.historia-images .img-2 {
  width: 55%;
  bottom: 0;
  left: 0;
}

/* Variação: borda da segunda imagem mais destacada */
.historia-images .img-2::before {
  inset: 14px -14px -14px 14px;
  border-width: 3px;
}

/* Espaço cards */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.card .icon {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color2);
  background: transparent;
  color: var(--color2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card h3 {
  color: var(--color2);
  margin: 0 0 8px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Localização */
.loc-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.loc-images img {
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(20, 60, 70, 0.28);
  height: 240px;
  width: 100%;
  object-fit: cover;
}

/* Galeria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 40px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.08);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

/* Destaque */
.destaque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.destaque-grid .img-col {
  background-size: cover;
  background-position: center;
  min-height: 380px;
  border-radius: 10px;
  box-shadow: 0 24px 54px rgba(20, 60, 70, 0.3);
}

.destaque-grid .quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--heading);
  margin: 0 0 34px;
}

.destaque-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.destaque-benefits h3 {
  color: var(--heading);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.destaque-benefits p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA */
.cta {
  background: var(--dark-bg);
  color: #fff;
  padding: 56px 0;
}

.cta h2 {
  color: #fff;
}

/* Contato */
#contato {
  background:
    linear-gradient(rgba(3, 105, 180, 0.85), rgba(3, 105, 180, 0.85)),
    url("../img/em_atendimento.jpg") center/cover;
  color: #fff;
}

#contato .lead {
  color: #fff;
  margin: 0 auto 10px;
  opacity: 0.95;
}

.contact-form {
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 38px;
  max-width: 600px;
  margin: 30px auto 0;
  text-align: left;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #3f5560;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border: 1px solid #d5dfe4;
  border-radius: 6px;
  font: inherit;
}

.contact-form button {
  background: var(--color1);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* Investimento */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  text-align: center;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 26px;
}

.price-card .fa-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--color1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 22px;
}

.price-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card p.price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 22px;
}

.price-card p.price span {
  font-size: 0.85rem;
  color: var(--text-faint);
  font-weight: 600;
}

/* Página legal (Política de Privacidade / Termos de Serviço) */
.legal-content {
  max-width: 820px;
}

.legal-content h3 {
  margin-top: 2.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--text);
}

.legal-content ul {
  padding-left: 1.3rem;
}

.legal-content .updated-at {
  color: var(--text-faint);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: #c7d4d8;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

footer .footer-main {
  padding: 56px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

footer .footer-col {
  flex: 1 1 240px;
}

footer .footer-col h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin: 0 0 18px;
}

footer .footer-col p {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: #9fb0b6;
}

footer .footer-col .ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c7d4d8;
  margin-bottom: 16px;
}

footer .footer-col .ig-link i {
  font-size: 1.4rem;
}

footer .footer-col .follow-btn {
  display: inline-block;
  border: 1px solid #3a565f;
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
}

footer .footer-brand {
  background: var(--color2);
  color: #fff;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

footer .footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2.3rem;
  margin: 0;
  color: #fff;
}

footer .footer-brand .copyright {
  margin: 0;
  font-size: 0.84rem;
  opacity: 0.92;
}

footer .footer-brand .social-icons {
  display: flex;
  gap: 16px;
  font-size: 1.25rem;
  margin-top: 4px;
}

footer .footer-brand .social-icons a {
  color: #fff;
}

footer .footer-legal {
  text-align: center;
  padding: 14px 0 30px;
  font-size: 0.8rem;
  color: #8ea0a6;
}

footer .footer-legal a {
  color: #c7d4d8;
  text-decoration: underline;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* Cookie consent (LGPD) */
.cookie-consent {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  padding: 22px 26px;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-consent.open {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.cookie-consent p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1 1 320px;
  color: var(--text-muted);
}

.cookie-consent p a {
  color: var(--color1);
  text-decoration: underline;
}

.cookie-consent .cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-consent button {
  border: none;
  border-radius: 40px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.cookie-consent .cookie-accept {
  background: var(--color1);
  color: #fff;
}

.cookie-consent .cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .historia-grid,
  .destaque-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .loc-images,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar .socials {
    margin-left: 0;
  }

  .topbar-address {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  nav.main-menu {
    display: none;
    flex-basis: 100%;
    order: 3;
  }

  nav.main-menu.open {
    display: block;
  }

  nav.main-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  nav.main-menu li {
    width: 100%;
  }

  nav.main-menu a {
    padding: 12px 6px;
    border-top: 1px solid var(--border);
  }

  nav.main-menu .has-dropdown > a {
    justify-content: space-between;
  }

  nav.main-menu .dropdown {
    position: static;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 0 16px;
  }

  nav.main-menu .has-dropdown.open .dropdown {
    display: block;
  }
}

@media (max-width: 480px) {
  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }

  .cookie-consent .cookie-actions {
    width: 100%;
  }

  .cookie-consent .cookie-actions button {
    flex: 1 1 auto;
  }
}
