/* ======================================================
   Anna Clara Araújo — Psicóloga | Design System
   Paleta extraída da identidade visual (folha dourada + terracota)
   ====================================================== */

:root {
  /* Cores da marca */
  --cream: #FBF5EA;
  --cream-deep: #F2E5CD;
  --white: #FFFFFF;
  --brown-900: #331F10;
  --brown-800: #4A2D18;
  --brown-700: #5E3B22;
  --brown-600: #7A5136;
  --rust: #9C4620;
  --rust-dark: #7C3717;
  --rust-tint: #F1D9C9;
  --gold: #E29A34;
  --gold-dark: #C9822A;
  --gold-tint: #F6DFAF;
  --gold-soft: #FBEDD1;
  --ink: #2A1B10;

  /* Tipografia */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Espaçamento */
  --section-pad: clamp(4.5rem, 8vw, 7.5rem);
  --container-w: 1180px;

  /* Sombras */
  --shadow-soft: 0 20px 50px -25px rgba(51, 31, 16, 0.35);
  --shadow-card: 0 12px 30px -15px rgba(51, 31, 16, 0.22);

  /* Transições */
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }
svg { display: block; }

body {
  background: var(--cream);
  color: var(--brown-800);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* visually-hidden util for accessibility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--rust);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-tint); color: var(--brown-900); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.25rem;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  margin-bottom: .9rem;
}
.section-head p {
  color: var(--brown-700);
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--rust), var(--rust-dark));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 45px -18px rgba(156,70,32,.55); }
.btn-secondary {
  background: transparent;
  color: var(--brown-900);
  border: 1.5px solid var(--brown-900);
}
.btn-secondary:hover { background: var(--brown-900); color: var(--cream); transform: translateY(-3px); }
.btn-light {
  background: var(--white);
  color: var(--rust);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(0,0,0,.35); }
.btn-block { width: 100%; }

/* ======================================================
   Header
   ====================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 1.35rem 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.scrolled {
  padding: .7rem 0;
  background: rgba(251, 245, 234, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px -20px rgba(51,31,16,.35);
}

.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { height: 44px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand img { height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}
.brand-text span {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.main-nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--brown-800);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rust);
  transition: width .35s var(--ease);
  border-radius: 2px;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions .btn-primary { padding: .78rem 1.5rem; font-size: .88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--brown-900); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

/* Mobile side panel */
.mobile-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(86vw, 360px);
  background: rgba(251, 245, 234, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: -20px 0 60px -20px rgba(51,31,16,.45);
  z-index: 1100;
  padding: 1.6rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}
.mobile-panel.open { transform: translateX(0); }
.panel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }
.panel-close {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
}
.panel-close svg { width: 18px; height: 18px; }
.mobile-panel nav ul { display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-panel nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}
.panel-footer { margin-top: auto; padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.panel-footer .btn { width: 100%; }
.panel-contact { font-size: .85rem; color: var(--brown-700); }

.overlay {
  position: fixed; inset: 0;
  background: rgba(42, 27, 16, 0.38);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.overlay.visible { opacity: 1; visibility: visible; }

body.menu-open { overflow: hidden; }

/* ======================================================
   Hero
   ====================================================== */
.hero {
  position: relative;
  padding: clamp(8rem, 16vw, 11rem) 0 6rem;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 82% 12%, var(--gold-soft) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 8% 85%, var(--rust-tint) 0%, transparent 60%);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero-copy .eyebrow { margin-bottom: 1.3rem; }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--rust);
  position: relative;
  white-space: nowrap;
}
.hero-copy p.lead {
  font-size: 1.12rem;
  color: var(--brown-700);
  max-width: 490px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}
.hero-meta div span {
  font-size: .8rem;
  color: var(--brown-600);
}

.hero-visual { position: relative; display: flex; justify-content: center; }
.blob-frame {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 3 / 3.7;
}
.blob-shape {
  position: absolute;
  inset: 0;
  border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
  background: linear-gradient(150deg, var(--gold) 0%, var(--rust) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  animation: blob-morph 14s ease-in-out infinite alternate;
}
.blob-shape img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
}
@keyframes blob-morph {
  0%   { border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%; }
  50%  { border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%; }
  100% { border-radius: 40% 60% 55% 45% / 60% 45% 55% 40%; }
}
.floating-badge {
  position: absolute;
  bottom: -6%;
  left: -8%;
  background: var(--white);
  border-radius: 20px;
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: .7rem;
  max-width: 220px;
  animation: float-y 5s ease-in-out infinite;
}
.floating-badge .icon-circle { background: var(--gold-soft); color: var(--rust); }
.floating-badge strong { display: block; font-family: var(--font-display); font-size: .82rem; color: var(--ink); }
.floating-badge span { font-size: .72rem; color: var(--brown-600); }
.floating-chip {
  position: absolute;
  top: 6%;
  right: -6%;
  background: var(--white);
  border-radius: 999px;
  padding: .6rem 1.1rem;
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: .45rem;
  animation: float-y 6s ease-in-out infinite 1s;
}
.floating-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #3F9C5F; }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 20px; height: 20px; }

/* ======================================================
   Reveal-on-scroll
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ======================================================
   Section divider (organic wave)
   ====================================================== */
.divider { display: block; width: 100%; line-height: 0; }
.divider svg { width: 100%; height: auto; display: block; }

/* ======================================================
   Sobre
   ====================================================== */
.sobre { padding: var(--section-pad) 0; background: var(--white); position: relative; }
.sobre .container {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.sobre-visual { position: relative; }
.sobre-visual .photo-frame {
  position: relative;
  border-radius: 28px 28px 28px 90px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.sobre-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.sobre-visual .ring-deco {
  position: absolute;
  width: 130px; height: 130px;
  border: 2.5px dashed var(--gold);
  border-radius: 50%;
  top: -14%; right: -12%;
  z-index: -1;
}
.sobre-copy .section-head { margin-bottom: 1.6rem; }
.sobre-copy p { color: var(--brown-700); margin-bottom: 1.1rem; }
.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}
.credential-item {
  background: var(--cream);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}
.credential-item .icon-circle { background: var(--gold-soft); color: var(--rust); width: 36px; height: 36px; }
.credential-item svg { width: 17px; height: 17px; }
.credential-item strong { display: block; font-family: var(--font-display); font-size: .86rem; color: var(--ink); margin-bottom: .15rem; }
.credential-item span { font-size: .78rem; color: var(--brown-600); }

/* ======================================================
   Especialidades
   ====================================================== */
.especialidades { padding: var(--section-pad) 0; background: var(--cream-deep); position: relative; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.spec-card {
  background: var(--white);
  border-radius: 22px;
  padding: 2.1rem 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
  overflow: hidden;
}
.spec-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold-soft);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.spec-card:hover { transform: translateY(-8px); box-shadow: 0 26px 55px -22px rgba(51,31,16,.35); }
.spec-card:hover::before { transform: scale(1.3); }
.spec-card .icon-circle {
  background: linear-gradient(135deg, var(--gold), var(--rust));
  color: var(--white);
  width: 54px; height: 54px;
  margin-bottom: 1.3rem;
  position: relative; z-index: 1;
}
.spec-card .icon-circle svg { width: 26px; height: 26px; }
.spec-card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: .55rem; position: relative; z-index: 1; }
.spec-card p { font-size: .9rem; color: var(--brown-600); position: relative; z-index: 1; }

/* ======================================================
   Como funciona
   ====================================================== */
.como-funciona { padding: var(--section-pad) 0; background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-tint) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step-item { position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--rust);
  margin-bottom: 1.3rem;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.step-item:hover .step-num {
  background: linear-gradient(135deg, var(--gold), var(--rust));
  color: var(--white);
  border-color: transparent;
  transform: scale(1.06);
}
.step-item h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: .5rem; }
.step-item p { font-size: .88rem; color: var(--brown-600); }

/* ======================================================
   Atendimento (modalidades)
   ====================================================== */
.atendimento { padding: var(--section-pad) 0; background: var(--brown-900); position: relative; overflow: hidden; }
.atendimento::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,154,52,.16), transparent 70%);
  top: -180px; left: -150px;
}
.atendimento .section-head h2, .atendimento .section-head p { color: var(--cream); }
.atendimento .section-head p { color: rgba(251,245,234,.72); }
.atendimento .eyebrow { color: var(--gold); }
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  position: relative; z-index: 1;
}
.modal-card {
  background: rgba(251,245,234,.05);
  border: 1px solid rgba(251,245,234,.14);
  border-radius: 22px;
  padding: 2.2rem 1.9rem;
  backdrop-filter: blur(6px);
  transition: transform .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease);
}
.modal-card:hover { transform: translateY(-6px); background: rgba(251,245,234,.09); border-color: rgba(226,154,52,.5); }
.modal-card .icon-circle { background: rgba(226,154,52,.18); color: var(--gold); width: 52px; height: 52px; margin-bottom: 1.3rem; }
.modal-card .icon-circle svg { width: 24px; height: 24px; }
.modal-card h3 { color: var(--cream); font-size: 1.12rem; font-weight: 600; margin-bottom: .7rem; }
.modal-card p { color: rgba(251,245,234,.68); font-size: .9rem; margin-bottom: 1rem; }
.modal-card .tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(226,154,52,.12);
  padding: .35rem .8rem;
  border-radius: 999px;
}

/* ======================================================
   Depoimentos
   ====================================================== */
.depoimentos { padding: var(--section-pad) 0; background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.testi-card {
  background: var(--white);
  border-radius: 22px;
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testi-card .quote-mark {
  width: 42px; height: 42px;
  margin-bottom: 1rem;
  color: var(--gold-tint);
}
.testi-card p.quote { font-size: .96rem; color: var(--brown-700); margin-bottom: 1.4rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rust));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
}
.testi-author strong { display: block; font-family: var(--font-display); font-size: .88rem; color: var(--ink); }
.testi-author span { font-size: .76rem; color: var(--brown-600); }
.testi-stars { display: flex; gap: 2px; margin-top: .2rem; }
.testi-stars svg { width: 13px; height: 13px; color: var(--gold-dark); }

/* ======================================================
   FAQ
   ====================================================== */
.faq { padding: var(--section-pad) 0; background: var(--cream-deep); }
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white);
  border-radius: 18px;
  padding: .3rem 1.6rem;
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--rust);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.faq-item .plus svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.faq-item[open] .plus { background: var(--rust); color: var(--white); }
.faq-item[open] .plus svg { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.5rem; color: var(--brown-700); font-size: .93rem; max-width: 640px; }

/* ======================================================
   Contato
   ====================================================== */
.contato { padding: var(--section-pad) 0; background: var(--white); }
.contato .container {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.contact-info-card {
  background: var(--brown-900);
  border-radius: 26px;
  padding: 2.6rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,154,52,.2), transparent 70%);
  bottom: -120px; right: -100px;
}
.contact-info-card h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: .6rem; position: relative; z-index: 1; }
.contact-info-card > p { color: rgba(251,245,234,.7); font-size: .92rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.info-list { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2.2rem; position: relative; z-index: 1; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .icon-circle { background: rgba(226,154,52,.16); color: var(--gold); flex-shrink: 0; }
.info-list a, .info-list span.text { font-size: .92rem; color: var(--cream); }
.info-list small { display: block; font-size: .74rem; color: rgba(251,245,234,.55); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .15rem; }

.hours-table { position: relative; z-index: 1; }
.hours-table h4 { color: var(--gold); font-family: var(--font-display); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; }
.hours-table table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.hours-table td { padding: .5rem 0; border-bottom: 1px solid rgba(251,245,234,.12); color: rgba(251,245,234,.85); }
.hours-table td:last-child { text-align: right; color: var(--cream); font-weight: 500; }
.hours-table tr:last-child td { border-bottom: none; }

.contact-form {
  background: var(--cream-deep);
  border-radius: 26px;
  padding: 2.6rem;
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.contact-form > p { color: var(--brown-600); font-size: .9rem; margin-bottom: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; position: relative; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: .45rem;
}
.field input, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(51,31,16,.14);
  background: var(--white);
  color: var(--brown-900);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(51,31,16,.35); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 4px rgba(156,70,32,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .error-msg {
  display: none;
  font-size: .74rem;
  color: #B33A2E;
  margin-top: .4rem;
}
.field.invalid input, .field.invalid textarea { border-color: #B33A2E; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .74rem; color: var(--brown-600); margin-top: .9rem; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: .8rem;
  background: #E7F2E9;
  border: 1px solid #B9DCC0;
  color: #2C6B3F;
  padding: .9rem 1.1rem;
  border-radius: 12px;
  font-size: .86rem;
  margin-bottom: 1.2rem;
}
.form-success.visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ======================================================
   Mapa
   ====================================================== */
.mapa { padding-top:5%;background: var(--cream-deep); padding-bottom: var(--section-pad); }
.map-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  filter: sepia(8%) saturate(92%);
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }
.map-label {
  position: absolute;
  top: 0.3rem; right: 1em;
  background: var(--white);
  padding: .7rem 1.1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  filter: sepia(0) saturate(100%);
}
.map-label svg { width: 16px; height: 16px; color: var(--rust); }

/* ======================================================
   CTA final
   ====================================================== */
.cta-final { padding: 5.5rem 0; background: linear-gradient(135deg, var(--rust), var(--gold-dark)); text-align: center; }
.cta-final h2 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 1rem; }
.cta-final p { color: rgba(255,255,255,.88); max-width: 520px; margin: 0 auto 2rem; }
.cta-final .btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ======================================================
   Footer
   ====================================================== */
.site-footer { background: var(--brown-900); color: rgba(251,245,234,.7); padding: 4.5rem 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251,245,234,.12);
}
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.footer-brand img { height: 40px; }
.footer-brand strong { font-family: var(--font-display); font-size: 1rem; color: var(--cream); }
.footer-col p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .8rem; }
.footer-col a { font-size: .88rem; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-col li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; }
.footer-col li svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer-bottom .crp { color: rgba(251,245,234,.5); }

/* ======================================================
   WhatsApp flutuante
   ====================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 800;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.6);
  transition: transform .4s var(--ease);
  animation: pulse-wa 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 14px 30px -10px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 14px 30px -10px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,0); }
}

/* ======================================================
   Responsivo
   ====================================================== */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
}

@media (max-width: 980px) {
  .main-nav, .header-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p.lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 1rem; }
  .blob-frame { width: min(78vw, 320px); }

  .sobre .container { grid-template-columns: 1fr; }
  .sobre-visual { max-width: 380px; margin-inline: auto; }
  .credentials { grid-template-columns: 1fr 1fr; }

  .spec-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .steps::before { display: none; }
  .modal-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .contato .container { grid-template-columns: 1fr; }
  .contact-info-card { order: 2; }
}

@media (max-width: 640px) {
  .spec-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 1.2rem; right: 1.2rem; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .map-wrap iframe { height: 320px; }
}
