/* =========================================================
   RESET / BASE
   ========================================================= */

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  background-color: #f8f8f8;
  line-height: 1.6;
}

/* =========================================================
   CONTAINER
   ========================================================= */

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

/* =========================================================
   LINKS
   ========================================================= */

a {
  color: #0b7285;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================================================
   HEADER / MENU
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0e5f63;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #c9a24d,
    #f0d58a,
    #c9a24d
  );
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.logo-extra img {
  height: 40px;
}

/* Menu desktop */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f0d58a;
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Botão menu mobile */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* =========================================================
   MENU MOBILE (ESTILO PREMIUM)
   ========================================================= */

.mobile-nav {
  display: none;
  background: #ffffff;
  border-top: 1px solid #eee;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 16px;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 8px;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #0e5f63;
  transition: all 0.25s ease;
}

.mobile-nav a:hover {
  background: rgba(14, 95, 99, 0.08);
  padding-left: 22px;
}

/* CTA no mobile */
.mobile-nav li:last-child a {
  background: linear-gradient(135deg, #c9a24d, #9e7c2f);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

.mobile-nav li:last-child a:hover {
  background: linear-gradient(135deg, #b8943f, #8b6a22);
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  background: linear-gradient(
    120deg,
    #e7f5ff 0%,
    #f8f9fa 55%,
    #ffffff 100%
  );
  padding: 80px 0 64px;
}

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

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   HERO FOTO
   ========================================================= */

.hero-photo-frame {
  width: 260px;
  height: 410px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   CARDS
   ========================================================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.card-image img {
  width: 100%;
  display: block;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background-color: #212529;
  color: #dee2e6;
  padding: 28px 0;
  font-size: 0.85rem;
  text-align: center;
}

/* =========================================================
   WHATSAPP (FLOAT REAL)
   ========================================================= */

.whatsapp-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #22c55e;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 200;
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-photo-frame {
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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


.instagram-floating{
  position: fixed;
  right: 18px;
  bottom: 90px; /* deixa acima do WhatsApp, se tiver */
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}

.instagram-floating:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.instagram-floating:active{
  transform: translateY(0);
}

@media (max-width: 480px){
  .instagram-floating{
    right: 14px;
    bottom: 84px;
    width: 50px;
    height: 50px;
  }
}



<!-- link more -->

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 15px;
  font-weight: 600;
  color: #0b5d5a;
  text-decoration: none;

  padding-bottom: 2px;
  border-bottom: 2px solid transparent;

  transition: color 0.25s ease, border-color 0.25s ease;
}

.link-more:hover {
  color: #084845;
  border-bottom-color: #084845;
}

<!-- info-box -->/* ============================
   INFO-BOX – DIFERENCIAIS
   ============================ */

.info-box {
  position: relative;
  margin-top: 48px;
  padding: 32px 36px;
  border-radius: 18px;

  /* fundo mais escuro para contraste */
  background: linear-gradient(
    135deg,
    #0b2a29 0%,
    #0f3f3d 50%,
    #155e5b 100%
  );

  color: #eafdfb;
  overflow: hidden;

  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* brilho sutil (não estoura o texto) */
.info-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.12),
    transparent 65%
  );
  pointer-events: none;
}

/* ============================
   TÍTULO
   ============================ */

.info-box h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.4px;

  /* título legível */
  color: green;
}

/* ============================
   LISTA
   ============================ */

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 16px;
}

/* itens */
.info-box li {
  position: relative;
  padding-left: 36px;

  font-size: 1rem;
  line-height: 1.6;

  /* texto com contraste real */
  color: black
}

/* marcador futurista */
.info-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;

  width: 14px;
  height: 14px;
  border-radius: 50%;

  background: radial-gradient(
    circle,
    #3fffe0 50%,
    #green 70%
  );

  box-shadow:
    0 0 6px rgba(63, 255, 224, 0.8),
    0 0 12px rgba(18, 203, 179, 0.5);
}

/* hover discreto */
.info-box li:hover {
  transform: translateX(4px);
  transition: transform 0.25s ease;
}

/* ============================
   RESPONSIVO
   ============================ */

@media (max-width: 768px) {
  .info-box {
    padding: 28px 24px;
  }

  .info-box h3 {
    font-size: 1.3rem;
  }

  .info-box li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .info-box {
    padding: 24px 20px;
  }

  .info-box h3 {
    font-size: 1.2rem;
  }
}
.footer-agency {
  margin-top: 24px;
  text-align: center;
}

.footer-agency a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13px;
  color: #c9a227;
}

.footer-agency-logo {
  height: 24px;       /* controle absoluto */
  width: auto;
  display: block;     /* evita sobreposição */
  pointer-events: none; /* imagem não “rouba” o clique */
}
