/* =========================================================
   Andreia Longaray — Camuflagem Estética
   ========================================================= */

:root {
  --cream: #f8f5ec;
  --cream-soft: #efe7d2;
  --gold: #dbb766;
  --gold-strong: #c79a44;
  --gold-medium: #d4a94d;
  --brown: #1f1408;
  --brown-soft: #3b2a18;
  --text: #2b1d10;
  --text-muted: #6b5a45;
  --line: #e5dcc4;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(31, 20, 8, .06);
  --shadow-md: 0 14px 40px rgba(31, 20, 8, .12);
  --shadow-lg: 0 30px 80px rgba(31, 20, 8, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --radius-sm: .4rem;
  --radius: .75rem;
  --radius-lg: 1.25rem;
  --container: 1180px;
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--ease);
}

ul { margin: 0; padding: 0; list-style: none; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

button { font: inherit; cursor: pointer; }

iframe { display: block; max-width: 100%; border: 0; }

/* ----- tipografia ----- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--brown);
  margin: 0 0 .6em;
  line-height: 1.12;
  letter-spacing: .005em;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.06;
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-strong);
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 500;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin: 0 0 1.2rem;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: .8rem; }
.section-head h2 { margin-bottom: .6rem; }
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ----- layout ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

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

.cards-grid {
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.8rem);
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-services { grid-template-columns: repeat(3, 1fr); }
.servicos-rows { display: flex; flex-direction: column; gap: clamp(1.2rem, 2vw, 1.8rem); }

@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards-4, .cards-3 { grid-template-columns: 1fr; }
}

/* ----- skip link / a11y ----- */
.skip-link {
  position: absolute;
  left: -1000px;
  top: 0;
  background: var(--brown);
  color: var(--cream);
  padding: .8rem 1.2rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ----- header ----- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 245, 236, 0);
  backdrop-filter: blur(0);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
  padding: 1.6rem 0;
}
.site-header[data-scrolled] {
  background: rgba(248, 245, 236, .88);
  backdrop-filter: saturate(140%) blur(14px);
  padding: .8rem 0;
  box-shadow: var(--shadow-sm);
}
.site-header[data-menu-open] {
  background: var(--cream);
  backdrop-filter: none;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--brown);
  letter-spacing: .01em;
}
.brand-tag {
  font-size: .65rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin-top: .3rem;
  font-weight: 500;
}
/* font-size removido: causava reflow/jank no scroll mobile */

.site-nav ul {
  display: flex;
  gap: 2.2rem;
}
.site-nav a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--brown);
  position: relative;
  padding: .4rem 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  position: relative;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--brown);
  margin: 7px 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

@media (max-width: 900px) {
  .site-header .site-nav { display: none; }
  .site-header .header-cta { display: none; }
  .site-header .menu-toggle { display: block; }

  .site-header .site-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(31, 20, 8, .14);
  }
  .site-header .site-nav.open ul {
    flex-direction: column;
    padding: 1.2rem 1.5rem 2rem;
    gap: 1.4rem;
  }
  /* mobile: header sempre tem fundo cream pra evitar overlay com hero */
  .site-header {
    background: rgba(248, 245, 236, .92);
    backdrop-filter: saturate(140%) blur(14px);
    padding: 1rem 0;
  }
}

/* ----- botões ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-sm { padding: .65rem 1.2rem; font-size: .75rem; }

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.btn-primary:hover {
  background: var(--gold-strong);
  border-color: var(--gold-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(199, 154, 68, .25);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 245, 236, .5);
}
.btn-ghost:hover {
  background: rgba(248, 245, 236, .12);
  border-color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--cream);
}

/* ----- hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.85) saturate(.9);
  transform: scale(1.05);
  transition: transform 18s var(--ease);
  will-change: transform;
  position: relative;
  z-index: 1;
}
.hero.loaded .hero-media img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(31, 20, 8, .82) 0%, rgba(31, 20, 8, .55) 50%, rgba(31, 20, 8, .7) 100%),
    radial-gradient(ellipse at 25% 75%, rgba(199, 154, 68, .22), transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-block: 4rem 6rem;
  margin-right: auto;
}
@media (min-width: 768px) {
  .hero .container {
    max-width: none;
    margin: 0;
    padding-left: clamp(2.5rem, 6vw, 6rem);
    padding-right: 1.5rem;
  }
}
.hero h1 { color: var(--cream); margin-bottom: .8rem; max-width: 7em; }
@media (max-width: 767px) { .hero h1 { max-width: none; } }
.hero h1 em { color: var(--gold); }
.hero .eyebrow { color: var(--gold); }
.hero .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(248, 245, 236, .88);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(248, 245, 236, .4);
  border-radius: 40px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-bounce 1.8s var(--ease) infinite;
}
@keyframes scroll-bounce {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ----- vídeo institucional ----- */
.section-andreia { background: var(--cream); }
.video-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  isolation: isolate;
}
.video-frame-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--brown);
  box-shadow:
    var(--shadow-lg),
    0 0 0 8px var(--cream),
    0 0 0 9px var(--line);
  z-index: 2;
}
.video-frame-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-frame-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at center, rgba(219, 183, 102, .35), transparent 70%);
  filter: blur(40px);
  z-index: 1;
  opacity: .8;
}

/* ----- diferenciais ----- */
.section-diferenciais {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
}
.card-feature {
  background: var(--white);
  padding: 2.4rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(219, 183, 102, .6);
}
.card-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold-strong);
  margin-bottom: 1rem;
}
.card-feature h3 { color: var(--brown); margin-bottom: .6rem; }
.card-feature p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----- serviços ----- */
.section-servicos { background: var(--cream); }
.card-service {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card-service a {
  display: block;
  height: 100%;
}
.card-service figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.card-service figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 20, 8, .35));
  opacity: .8;
  transition: opacity .4s var(--ease);
}
.card-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card-service:hover img { transform: scale(1.06); }
.card-service:hover figure::after { opacity: 1; }

.card-body { padding: 1.6rem 1.6rem 1.8rem; }
.card-body h3 { color: var(--brown); margin-bottom: .5rem; }
.card-body p {
  font-size: .92rem;
  color: var(--text-muted);
  margin: 0;
}

/* ----- método reskin ----- */
.section-metodo { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%); }
.metodo-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.metodo-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.metodo-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--cream);
  padding: .35rem 1.1rem;
  border-radius: 999px;
  background: rgba(31, 20, 8, .55);
  border: 1px solid rgba(219, 183, 102, .5);
  backdrop-filter: blur(4px);
}

/* ----- para profissionais ----- */
.section-profissionais { background: var(--brown); color: var(--cream); }
.section-profissionais .eyebrow { color: var(--gold); }
.section-profissionais .section-head h2 { color: var(--cream); }
.section-profissionais .section-sub { color: rgba(248, 245, 236, .72); }

.prof-block {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.prof-block + .prof-block { margin-top: clamp(3rem, 6vw, 5rem); }
.prof-block-alt .prof-intro { order: 2; }

.prof-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .6rem;
}
.prof-intro h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--cream);
  margin: 0 0 1rem;
}
.prof-intro p {
  color: rgba(248, 245, 236, .78);
  margin: 0 0 1.6rem;
}

.prof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(.9rem, 1.6vw, 1.3rem);
}
.prof-card {
  background: rgba(248, 245, 236, .04);
  border: 1px solid rgba(219, 183, 102, .22);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.prof-card:hover {
  border-color: rgba(219, 183, 102, .55);
  background: rgba(248, 245, 236, .07);
  transform: translateY(-3px);
}
.prof-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: .5rem;
}
.prof-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--cream);
  margin: 0 0 .4rem;
}
.prof-card p {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(248, 245, 236, .7);
  margin: 0;
}
.section-profissionais .btn-outline {
  color: var(--gold);
  border-color: var(--gold);
}
.section-profissionais .btn-outline:hover {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

@media (max-width: 860px) {
  .prof-block { grid-template-columns: 1fr; }
  .prof-block-alt .prof-intro { order: 0; }
}
@media (max-width: 520px) {
  .prof-grid { grid-template-columns: 1fr; }
}

/* ----- sobre ----- */
.section-sobre { background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%); }
.sobre-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.sobre-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.timeline {
  margin-top: 2rem;
  border-left: 1px solid var(--line);
  padding-left: 1.4rem;
}
.timeline li {
  font-size: .92rem;
  color: var(--text-muted);
  padding: .55rem 0;
  position: relative;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--cream);
}
.timeline strong {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-strong);
  font-weight: 500;
  font-style: italic;
  font-size: 1.2rem;
  margin-right: .8rem;
}

/* ----- faq ----- */
.section-faq { background: var(--brown); color: var(--cream); }
.section-faq h2,
.section-faq .section-head h2 { color: var(--cream); }
.section-faq .eyebrow { color: var(--gold); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.faq-item {
  background: rgba(248, 245, 236, .04);
  border: 1px solid rgba(248, 245, 236, .1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.faq-item:hover {
  background: rgba(248, 245, 236, .06);
  border-color: rgba(219, 183, 102, .3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 400;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 1.8rem 1.6rem;
  color: rgba(248, 245, 236, .78);
  font-size: .95rem;
  line-height: 1.75;
  animation: faq-in .4s var(--ease);
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----- contato ----- */
.section-contato { background: var(--cream); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}
@media (max-width: 860px) {
  .contato-grid { grid-template-columns: 1fr; }
}
.contato-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (max-width: 560px) {
  .contato-info { grid-template-columns: 1fr; }
}
.contato-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.contato-card:hover {
  border-color: rgba(219, 183, 102, .6);
  box-shadow: var(--shadow-sm);
}
.contato-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-soft);
  color: var(--gold-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-icon svg { width: 22px; height: 22px; }
.contato-card h3 {
  font-size: 1rem;
  margin-bottom: .3rem;
  color: var(--brown);
}
.contato-card p {
  margin: 0;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
  word-break: break-word;
}
.contato-card p a { white-space: nowrap; }
.contato-card a:hover { color: var(--gold-strong); }

.contato-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.contato-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

/* ----- footer ----- */
.site-footer {
  background: var(--brown);
  color: rgba(248, 245, 236, .72);
  padding: 3rem 0 2rem;
  font-size: .85rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer-inner .brand-name {
  color: var(--cream);
  font-size: 1.5rem;
  margin: 0;
}
.footer-tag {
  margin: .2rem 0 0;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-inner nav {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-inner nav a {
  color: rgba(248, 245, 236, .72);
  font-size: .85rem;
  letter-spacing: .05em;
}
.footer-inner nav a:hover { color: var(--gold); }
.footer-cred {
  text-align: right;
  font-size: .75rem;
  margin: 0;
  line-height: 1.7;
}
.footer-cred a { color: var(--gold); }
.footer-cred a:hover { color: var(--cream); }
@media (max-width: 760px) {
  .footer-cred { text-align: center; }
}

/* ----- WhatsApp flutuante ----- */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(31, 20, 8, .25), 0 0 0 6px rgba(219, 183, 102, .12);
  z-index: 90;
  opacity: 0;
  transform: translateY(20px) scale(.85);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float[data-visible] {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-float:hover {
  background: var(--gold-strong);
  color: var(--cream);
  box-shadow: 0 18px 40px rgba(199, 154, 68, .35), 0 0 0 8px rgba(219, 183, 102, .18);
}
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ----- reveal animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { transition: none; transform: none; }
  .hero-scroll span { animation: none; }
}

/* ----- focus visível ----- */
:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----- ajustes mobile ----- */
@media (max-width: 560px) {
  .hero-content { padding-block: 3rem 5rem; }
  .hero-cta .btn { flex: 1 1 auto; }
  .section { padding: 4rem 0; }
  .wa-float { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* =========================================================
   Mobile: carrosséis horizontais e reorganização de seções
   ========================================================= */

.scroll-hint { display: none; }
.mobile-br { display: none; }

@media (max-width: 760px) {
  /* ----- diferenciais: carrossel horizontal com seta ----- */
  .section-diferenciais .container { position: relative; }
  /* eyebrow mobile quebra em 2 linhas */
  .mobile-br { display: inline; }

  /* wrapper posicionado para o hint flutuar sobre a borda direita */
  .scroll-wrap {
    position: relative;
  }

  .cards-grid.cards-4.cards-scroll {
    display: flex;
    flex-direction: row;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    gap: 1rem;
    padding: .4rem 1.5rem 1.4rem;
    margin: 0 -1.5rem;
    scroll-padding-inline: 1.5rem;
    scrollbar-width: none;
  }
  .cards-grid.cards-4.cards-scroll::-webkit-scrollbar { display: none; }
  .cards-grid.cards-4.cards-scroll > .card-feature {
    flex: 0 0 75%;
    scroll-snap-align: start;
    margin: 0;
  }

  /* hint: absoluto relativo ao .scroll-wrap (fora do overflow) */
  .scroll-hint {
    display: flex;
    position: absolute;
    right: .8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(199, 154, 68, .78);
    color: var(--cream);
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
    animation: hint-pulse 1.8s ease-in-out infinite;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 12px rgba(199, 154, 68, .3);
  }
  .scroll-hint::after {
    content: '';
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--cream);
    border-right: 2px solid var(--cream);
    transform: rotate(45deg) translateX(-2px);
  }
  @keyframes hint-pulse {
    0%, 100% { opacity: .75; transform: translateY(-50%) translateX(0); }
    50% { opacity: 1; transform: translateY(-50%) translateX(5px); }
  }

  /* ----- serviços: 3 linhas, scroll horizontal por linha ----- */
  .servicos-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 -1.5rem;
  }
  .servicos-rows .cards-grid.cards-services {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    gap: .9rem;
    padding: .4rem 1.5rem 1rem;
    scroll-padding-inline: 1.5rem;
    scrollbar-width: none;
  }
  .servicos-rows .cards-grid.cards-services::-webkit-scrollbar { display: none; }
  .servicos-rows .card-service {
    flex: 0 0 65%;
    scroll-snap-align: start;
    margin: 0;
  }
  .servicos-rows .card-service figure { aspect-ratio: 4 / 3; }
  .servicos-rows .card-body { padding: 1rem 1.1rem 1.2rem; }
  .servicos-rows .card-body h3 { font-size: 1.05rem; }
  .servicos-rows .card-body p { font-size: .82rem; line-height: 1.5; }

  /* ----- contato mobile: mapa primeiro + grid 2x2 ----- */
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .contato-map {
    order: -1;
    min-height: 240px;
  }
  .contato-map iframe { min-height: 240px; }
  .contato-info {
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
  }
  .contato-card {
    flex-direction: column;
    align-items: flex-start;
    gap: .7rem;
    padding: 1.1rem;
  }
  .contato-card h3 { font-size: .92rem; }
  .contato-card p { font-size: .78rem; }
  .contato-card p a { white-space: normal; word-break: break-word; }
  .contato-icon { width: 36px; height: 36px; }
  .contato-icon svg { width: 18px; height: 18px; }

  /* ----- footer mobile: garantir que tudo apareça ----- */
  .site-footer {
    padding: 2.6rem 0 5rem; /* espaço extra pra não ficar atrás do WhatsApp flutuante */
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    text-align: center;
  }
  .footer-inner nav {
    justify-content: center;
    gap: 1.2rem;
  }
  .footer-cred {
    text-align: center;
    font-size: .72rem;
  }
}

@media (max-width: 560px) {
  .servicos-rows .card-service { flex: 0 0 78%; }
  .cards-grid.cards-4.cards-scroll > .card-feature { flex: 0 0 82%; }
}
