/* ======================================================
   CSS ORGANIZADO — limpo e sem repetições
   ====================================================== */

/* ======================================================
   1. VARIÁVEIS
   ====================================================== */
:root {
  --bg: #F7F9F7;
  --bg-alt: #EEF4F0;
  --navy: #14344A;
  --blue: #2F6690;
  --green: #4F7A5B;
  --green-light: #DCE8DE;
  --gold: #B08D57;
  --gold-soft: #E7DAC2;
  --text: #223034;
  --text-soft: #5A6B6E;
  --white: #FFFFFF;
  --shadow: 0 12px 32px rgba(20, 52, 74, 0.08);
  --radius: 18px;
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

/* ======================================================
   2. RESET E BASE
   ====================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

section {
  padding: 104px 0;
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ======================================================
   3. CABEÇALHOS DE SEÇÃO
   ====================================================== */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-soft);
  font-size: 17px;
}

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

/* ======================================================
   4. BOTÕES
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(20, 52, 74, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 52, 74, 0.3);
}

.btn-whats {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(79, 122, 91, 0.28);
}

.btn-whats:hover {
  transform: translateY(-2px);
  background: #446b50;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(20, 52, 74, 0.22);
}

.btn-ghost:hover {
  background: rgba(20, 52, 74, 0.06);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 13.5px;
}

/* ======================================================
   5. ELEMENTOS DECORATIVOS
   ====================================================== */
.stitch {
  display: block;
  width: 100%;
  height: auto;
}

.stitch path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.stitch-divider {
  padding: 6px 0 0;
  opacity: 0.75;
}

/* ======================================================
   6. HEADER E NAVEGAÇÃO
   ====================================================== */
header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 249, 247, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 52, 74, 0.08);
  transition: background 0.3s ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.logo-image {
  width: 45px;
  height: auto;
  object-fit: contain;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(20, 52, 74, 0.28);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav ul,
.site-header .nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li,
.site-header .nav-list li {
  position: relative;
}

.main-nav a,
.site-header .nav-list a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.main-nav a::after,
.site-header .nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.site-header .nav-list a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Dropdown unificado ---------- */
.dropdown {
  position: relative;
}

.arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  padding: 10px 0;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(20, 52, 74, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
  z-index: 100;
}

.dropdown-menu li {
  list-style: none;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--navy);
}

.dropdown.open .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown.open .arrow,
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

@media (max-width: 960px) {
  .main-nav,
  .site-header .nav-list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid rgba(20, 52, 74, 0.08);
  }

  .main-nav.open,
  .site-header .nav-list.open {
    max-height: 480px;
  }

  .main-nav ul,
  .site-header .nav-list {
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
  }

  .main-nav .dropdown-menu,
  .site-header .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 100%;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 16px;
  }

  .main-nav .dropdown.open .dropdown-menu,
  .site-header .dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ======================================================
   7. HERO
   ====================================================== */
.hero {
  padding: 172px 0 110px;
  background:
    radial-gradient(ellipse at top right, rgba(79, 122, 91, 0.10), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(176, 141, 87, 0.10), transparent 45%),
    var(--bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
}

.hero-stats div span {
  font-size: 13px;
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
}

.photo-frame {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--green-light), var(--bg-alt));
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--navy);
  text-align: center;
  padding: 30px;
}

.photo-placeholder svg {
  width: 74px;
  height: 74px;
  opacity: 0.55;
}

.photo-placeholder span {
  font-size: 13px;
  color: var(--text-soft);
  max-width: 220px;
}

.floating-card {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}

.floating-card .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card .ic svg {
  width: 19px;
  height: 19px;
  stroke: var(--green);
}

.floating-card strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}

.floating-card span {
  font-size: 12px;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-visual {
    order: -1;
    max-width: 380px;
    margin: 0 auto 20px;
  }

  .floating-card {
    left: 12px;
    bottom: -20px;
  }
}

/* ======================================================
   8. DIFERENCIAIS
   ====================================================== */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dif-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid rgba(20, 52, 74, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.dif-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dif-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.dif-ic svg {
  width: 23px;
  height: 23px;
  stroke: var(--green);
  fill: none;
}

.dif-card h3 {
  font-size: 17.5px;
  margin-bottom: 8px;
}

.dif-card p {
  font-size: 14.5px;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .dif-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dif-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   9. SOBRE
   ====================================================== */
.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.sobre-photo {
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--bg-alt), var(--green-light));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.sobre-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  margin-top: 28px;
}

.sobre-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-soft);
  align-items: flex-start;
}

.sobre-list svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.quote-box {
  margin-top: 30px;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: var(--bg-alt);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  font-style: italic;
}

@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .sobre-list {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   10. TRATAMENTOS E ANTES/DEPOIS
   ====================================================== */
.trat-tabs,
.ad-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.trat-tab,
.ad-filter {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  border: 1.4px solid rgba(20, 52, 74, 0.15);
  background: var(--white);
}

.ad-filter.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.trat-grid,
.ad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ---------- Tratamentos ---------- */
.trat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(20, 52, 74, 0.06);
  cursor: pointer;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.trat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.trat-top {
  padding: 26px 26px 0;
}

.trat-top .dif-ic {
  margin-bottom: 14px;
}

.trat-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.trat-card p.desc {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.trat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}

.trat-card.open .trat-body {
  max-height: 520px;
  padding-bottom: 24px;
}

.trat-body dl {
  font-size: 13.5px;
  color: var(--text-soft);
}

.trat-body dt {
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
}

.trat-body dd {
  margin-top: 2px;
}

.trat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  border-top: 1px solid rgba(20, 52, 74, 0.06);
}

.trat-foot .toggle-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trat-foot .toggle-label svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  transition: transform 0.3s ease;
}

.trat-card.open .toggle-label svg {
  transform: rotate(180deg);
}

/* ---------- Antes e depois ---------- */
.ad-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(20, 52, 74, 0.06);
}

.ad-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ad-imgs .ph {
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-imgs .ph:first-child {
  border-right: 1px solid var(--bg);
}

.ad-info {
  padding: 18px 20px;
}

.ad-info h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.ad-info p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.ad-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 11px;
  border-radius: 999px;
}

.ad-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
}

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

@media (max-width: 600px) {
  .trat-grid,
  .ad-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   11. DEPOIMENTOS
   ====================================================== */
.dep-scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.dep-scroller::-webkit-scrollbar {
  height: 6px;
}

.dep-scroller::-webkit-scrollbar-thumb {
  background: var(--gold-soft);
  border-radius: 6px;
}

.dep-card {
  min-width: 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(20, 52, 74, 0.06);
  box-shadow: var(--shadow);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

.dep-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.dep-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
}

.dep-who strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}

.dep-who span {
  font-size: 12px;
  color: var(--text-soft);
}

/* ======================================================
   12. FAQ
   ====================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(20, 52, 74, 0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: 16px;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 220px;
}

.faq-a p {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--text-soft);
  max-width: 640px;
}

/* ======================================================
   13. CONTATO E MAPA
   ====================================================== */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.4px solid rgba(20, 52, 74, 0.15);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  font-size: 12.5px;
  color: var(--text-soft);
  margin-top: 14px;
  text-align: center;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(20, 52, 74, 0.06);
}

.info-item .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item .ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
}

.info-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 3px;
}

.info-item span,
.info-item p {
  font-size: 13.5px;
  color: var(--text-soft);
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 52, 74, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   14. CTA FINAL
   ====================================================== */
.cta-final {
  background: linear-gradient(140deg, var(--navy), var(--blue));
  border-radius: 32px;
  padding: 64px 50px;
  text-align: center;
  color: var(--white);
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-final h2 {
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 14px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto 30px;
}

.cta-final .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-final .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   15. FOOTER
   ====================================================== */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 0;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  font-size: 13.5px;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
}

footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 700;
}

footer ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

footer ul li a:hover {
  color: var(--white);
}

.footer-news input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  margin-bottom: 10px;
  font-size: 13.5px;
  font-family: var(--font-body);
}

.footer-news .btn {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 26px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-bottom-social a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.footer-bottom-social a:hover {
  background: var(--gold);
  color: #000000;
}

.footer-bottom-social svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ======================================================
   16. WHATSAPP FLUTUANTE
   ====================================================== */
.whats-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(79, 122, 91, 0.4);
  transition: transform 0.25s ease;
}

.whats-float:hover {
  transform: scale(1.08);
}

.whats-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ======================================================
   17. ANIMAÇÕES
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Estilos para a nova seção de Dicas / Orientações */
#dicas {
  padding: 60px 0;
  background-color: #f9fafb;
}

#dicas .section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

#dicas .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

#dicas .tip-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#dicas .tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

#dicas .tip-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

#dicas .tip-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}
/* Layout Principal do Menu */
.site-header .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Itens e Botões */
.site-header .nav-list li {
  position: relative;
}

.site-header .nav-list a,
.site-header .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 0;
  white-space: nowrap;
}

/* Seta padronizada usando entidade segura */
.site-header .arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* Submenu em Lista Vertical */
.site-header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: none;
  z-index: 100;
}

/* Organiza os itens do submenu um abaixo do outro */
.site-header .dropdown-menu li {
  width: 100%;
}

.site-header .dropdown-menu a {
  padding: 8px 16px;
  display: block;
  color: #333333;
}

.site-header .dropdown-menu a:hover {
  background-color: #f4f6f8;
}

/* Comportamento de Exibição (Hover no Desktop) */
.site-header .dropdown:hover .dropdown-menu {
  display: block;
}

.site-header .dropdown:hover .arrow {
  transform: rotate(180deg);
}
