/*
Theme Name: Dra. Célia Tosta
Theme URI:
Author: Compass Agência
Description: Landing page para Dra. Célia Tosta Fernandes — Especialista em Prótese & Implantes
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: tema
*/

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

:root {
  --off-white: #f2eeeb;
  --nude: #f8e6d7;
  --red: #930d0f;
  --red-dark: #6e0a0b;
  --red-alpha: rgba(147, 13, 15, .09);
  --brown: #7f6751;
  --brown-dark: #5a4739;
  --text: #2c1f17;
  --text-light: #6b5344;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── PROGRESS BAR ── */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  width: 0%;
  z-index: 1000;
  transition: width .1s linear;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes growLine {
  from {
    width: 0;
  }

  to {
    width: 40px;
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-10px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: .12s;
}

.d2 {
  transition-delay: .22s;
}

.d3 {
  transition-delay: .32s;
}

.d4 {
  transition-delay: .42s;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 22px 0;
  transition: all .5s var(--ease);
}

header.scrolled {
  background: rgba(242, 238, 235, .96);
  box-shadow: 0 1px 28px rgba(44, 31, 23, .09);
  padding: 14px 0;
  backdrop-filter: blur(14px);
}

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

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0);
  transition: opacity .3s;
}

.logo:hover .logo-img {
  opacity: .75;
}

header.scrolled .logo-img {
  height: 52px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  transition: color .3s;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s var(--ease);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--red);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border: 1.5px solid var(--red);
  color: var(--red) !important;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-cta:hover {
  color: #fff !important;
}

.nav-cta:hover::before {
  transform: scaleX(1);
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 600;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all .3s var(--ease);
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  padding-top: 96px;
}

/* Grain overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .035;
  z-index: 0;
}

/* Decorative arcs top-right */
.hero-arc {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(127, 103, 81, .09);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-arc::after {
  content: '';
  position: absolute;
  top: 48px;
  right: 48px;
  width: 524px;
  height: 524px;
  border: 1px solid rgba(147, 13, 15, .07);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 80px;
  width: 100%;
}

/* Hero label with animated line */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-label-line {
  width: 40px;
  height: 1px;
  background: var(--red);
  animation: growLine 1s .4s var(--ease) both;
}

.hero-label-text {
  font-size: .67rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
  animation: fadeIn .8s .6s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--text);
  letter-spacing: -.025em;
  margin-bottom: 14px;
  animation: fadeUp .9s .2s var(--ease) both;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}

.hero-spec {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 32px;
  line-height: 1.4;
  animation: fadeUp .9s .32s var(--ease) both;
}

.hero-divider {
  width: 48px;
  height: 1.5px;
  background: var(--red);
  margin-bottom: 28px;
  animation: growLine 1s .5s var(--ease) both;
}

.hero-text {
  font-size: .92rem;
  color: var(--text-light);
  max-width: 460px;
  line-height: 1.9;
  margin-bottom: 44px;
  animation: fadeUp .9s .42s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp .9s .54s var(--ease) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.btn-primary:hover::after {
  transform: scaleX(1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(147, 13, 15, .28);
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border: 1px solid var(--brown);
  color: var(--brown);
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s var(--ease);
}

.btn-outline:hover {
  background: var(--brown);
  color: #fff;
}

/* ── HERO VISUAL ── */
.hero-visual {
  animation: fadeIn 1.2s .4s both;
}

.hero-frame {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.hero-frame::before {
  content: '';
  position: absolute;
  top: -22px;
  right: -22px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  border: 1.5px solid var(--nude);
  pointer-events: none;
  z-index: 0;
}

.hero-corner {
  position: absolute;
  top: -8px;
  left: -8px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.hero-corner.br {
  top: auto;
  left: auto;
  bottom: -8px;
  right: -8px;
  border-top: none;
  border-left: none;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.hero-photo {
  position: relative;
  z-index: 1;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -28px;
  z-index: 4;
  background: var(--text);
  color: var(--off-white);
  padding: 22px 28px;
  animation: float 6s 2s ease-in-out infinite;
}

.hero-badge-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--nude);
}

.hero-badge-label {
  display: block;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242, 238, 235, .55);
  margin-top: 4px;
}

.hero-bg-word {
  position: absolute;
  bottom: 4%;
  right: -2%;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 12vw, 15rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(127, 103, 81, .07);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

/* ── STATS BAND ── */
.stats-band {
  padding: 56px 0;
  border-top: 1px solid rgba(127, 103, 81, .14);
  border-bottom: 1px solid rgba(127, 103, 81, .14);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(127, 103, 81, .16);
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .67rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
}

/* ── SECTION HEADER ── */
.sec-hd {
  margin-bottom: 60px;
}

.sec-hd.center {
  text-align: center;
}

.sec-tag {
  display: inline-block;
  font-size: .63rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 16px;
}

.sec-tag.lined {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sec-tag.lined::before,
.sec-tag.lined::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--red);
  opacity: .5;
  flex-shrink: 0;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.sec-rule {
  display: block;
  width: 46px;
  height: 1.5px;
  background: var(--red);
  margin-top: 22px;
}

.sec-hd.center .sec-rule {
  margin-left: auto;
  margin-right: auto;
}

/* ── SOBRE ── */
#sobre {
  padding: 120px 0;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

.sobre-left {
  padding-right: 72px;
  border-right: 1px solid rgba(127, 103, 81, .15);
}

.sobre-body {
  margin-top: 28px;
}

/* ── SOBRE FOTO + TÓPICOS (direita) ── */
.sobre-photo-inner {
  position: relative;
  margin-bottom: 48px;
}

.sobre-photo-img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 15%;
  aspect-ratio: 4/5;
}

.sobre-badge {
  position: absolute;
  bottom: -16px;
  right: 0;
  z-index: 2;
  background: var(--red);
  color: #fff;
  padding: 18px 22px;
}

.sb-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, .9);
  display: block;
}

.sb-plus {
  font-size: 1.4rem;
  vertical-align: super;
  margin-left: -4px;
}

.sb-label {
  display: block;
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
}

.sobre-p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.sobre-quote {
  margin-top: 32px;
  padding: 26px 30px;
  background: var(--nude);
  border-left: 2px solid var(--red);
}

.sobre-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--red);
  opacity: .3;
  line-height: .7;
  display: block;
  margin-bottom: 10px;
}

.sobre-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--brown-dark);
  line-height: 1.65;
}

.sobre-right {
  padding-left: 72px;
  padding-top: 0;
}

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(127, 103, 81, .12);
  margin-top: 40px;
}

.cred {
  background: var(--off-white);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .3s;
}

.cred:hover {
  background: var(--nude);
}

.cred-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.cred-icon {
  width: 34px;
  height: 34px;
  background: var(--red-alpha);
  border: 1px solid rgba(147, 13, 15, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.cred-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cred-title {
  font-weight: 500;
  color: var(--text);
  font-size: .82rem;
  margin-bottom: 3px;
  line-height: 1.3;
}

.cred-desc {
  font-size: .73rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ── SERVIÇOS ── */
#servicos {
  padding: 120px 0;
  background: var(--nude);
  position: relative;
  overflow: hidden;
}

#servicos::before {
  content: 'Serviços';
  position: absolute;
  top: -30px;
  left: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16vw;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(127, 103, 81, .055);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.card-srv {
  background: var(--off-white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all .45s var(--ease);
}

.card-srv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
}

.card-srv:hover::before {
  transform: scaleY(1);
}

.card-srv:hover .srv-num {
  color: rgba(255, 255, 255, .12);
}

.card-srv:hover .srv-title {
  color: #fff;
}

.card-srv:hover .srv-desc {
  color: rgba(255, 255, 255, .68);
}

.card-srv:hover .srv-more {
  opacity: 1;
  transform: translateX(0);
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .25);
}

.card-inner {
  position: relative;
  z-index: 1;
}

.srv-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(147, 13, 15, .09);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  transition: color .45s;
}

.srv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.38rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
  transition: color .45s;
}

.srv-desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.75;
  transition: color .45s;
}

.srv-more {
  display: inline-block;
  margin-top: 20px;
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid rgba(147, 13, 15, .28);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all .45s var(--ease);
}

/* ── CITAÇÃO ── */
#citacao {
  padding: 140px 0;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

#citacao::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
}

#citacao::after {
  content: '\201C';
  position: absolute;
  top: -100px;
  left: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .022);
  line-height: 1;
  pointer-events: none;
}

.citacao-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.citacao-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.orn-line {
  width: 56px;
  height: 1px;
  background: rgba(242, 238, 235, .18);
}

.orn-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

.citacao-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.65;
  margin-bottom: 40px;
}

.citacao-text em {
  color: var(--nude);
  font-style: normal;
  font-weight: 400;
}

.citacao-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.aut-line {
  width: 30px;
  height: 1px;
  background: var(--red);
}

.aut-name {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(242, 238, 235, .45);
}

/* ── CONTATO ── */
#contato {
  padding: 120px 0;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 100px;
  align-items: start;
}

.contato-text {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-top: 28px;
  margin-bottom: 44px;
}

.contato-text strong {
  color: var(--text);
  font-weight: 500;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s var(--ease);
  box-shadow: 0 4px 24px rgba(147, 13, 15, .2);
}

.btn-wa:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(147, 13, 15, .3);
}

.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.info-list {
  display: flex;
  flex-direction: column;
}

.info-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(127, 103, 81, .12);
}

.info-item:first-child {
  border-top: 1px solid rgba(127, 103, 81, .12);
}

.info-ico {
  width: 38px;
  height: 38px;
  background: var(--nude);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.info-label {
  font-size: .67rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.info-val {
  font-size: .86rem;
  color: var(--text);
  line-height: 1.55;
}

.info-val a {
  color: var(--red);
  text-decoration: none;
}

.info-val a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(242, 238, 235, .07);
}

.ft-brand-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  opacity: .85;
}

.ft-brand-cro {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(242, 238, 235, .3);
  display: block;
  margin-bottom: 20px;
}

.ft-brand-desc {
  font-size: .82rem;
  color: rgba(242, 238, 235, .38);
  line-height: 1.75;
  max-width: 260px;
}

.ft-brand-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  text-decoration: none;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242, 238, 235, .35);
  border-bottom: 1px solid rgba(242, 238, 235, .12);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}

.ft-brand-social:hover {
  color: var(--nude);
  border-color: rgba(248, 230, 215, .4);
}

.ft-col-title {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

.ft-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-nav a {
  text-decoration: none;
  font-size: .82rem;
  color: rgba(242, 238, 235, .4);
  transition: color .3s;
}

.ft-nav a:hover {
  color: var(--nude);
}

.ft-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ft-contact-label {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242, 238, 235, .28);
}

.ft-contact-val {
  font-size: .82rem;
  color: rgba(242, 238, 235, .55);
  line-height: 1.5;
}

.ft-contact-val a {
  color: rgba(242, 238, 235, .55);
  text-decoration: none;
  transition: color .3s;
}

.ft-contact-val a:hover {
  color: var(--nude);
}

.ft-hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-hours-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ft-hours-day {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242, 238, 235, .28);
}

.ft-hours-time {
  font-size: .82rem;
  color: rgba(242, 238, 235, .55);
}

.ft-hours-note {
  margin-top: 16px;
  font-size: .75rem;
  color: rgba(242, 238, 235, .25);
  font-style: italic;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-copy {
  font-size: .68rem;
  color: rgba(242, 238, 235, .22);
  letter-spacing: .04em;
}

.footer-red {
  color: var(--red);
}

/* ── FLOATING WA ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 400;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .4);
  text-decoration: none;
  transition: all .3s var(--ease);
  animation: float 4s 1s ease-in-out infinite;
}

.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(37, 211, 102, .52);
}

.float-wa svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

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

  .hero-visual {
    display: none;
  }

  .hero-bg-word {
    display: none;
  }

  #sobre {
    padding: 80px 0;
  }

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

  .sobre-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(127, 103, 81, .14);
    padding-bottom: 48px;
    margin-bottom: 48px;
  }

  .sobre-right {
    padding-left: 0;
  }

  .sobre-photo-img {
    aspect-ratio: 3/4;
    object-position: center 20%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

  .stats-grid .stat:nth-child(2)::after {
    display: none;
  }

  #servicos {
    padding: 80px 0;
  }

  #citacao {
    padding: 100px 0;
  }

  #contato {
    padding: 80px 0;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: fixed;
    inset: 0;
    background: var(--off-white);
    align-items: center;
    justify-content: center;
    z-index: 500;
  }

  .nav-links.open a {
    font-size: .95rem !important;
    letter-spacing: .2em;
  }

  .burger {
    display: flex;
  }

  .logo-img {
    height: 48px;
  }

  header.scrolled .logo-img {
    height: 40px;
  }

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

  .card-srv {
    padding: 36px 28px;
  }

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

  .stats-band {
    padding: 40px 0;
  }

  .sec-hd {
    margin-bottom: 40px;
  }
}

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

  .container {
    padding: 0 18px;
  }

  .logo-img {
    height: 42px;
  }

  header.scrolled .logo-img {
    height: 36px;
  }

  #hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-text {
    font-size: .88rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    left: 0;
    bottom: -16px;
  }

  .stats-band {
    padding: 36px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .stat {
    padding: 0 12px;
  }

  .stats-grid .stat:nth-child(2n)::after {
    display: none;
  }

  #sobre {
    padding: 64px 0;
  }

  .sobre-left {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

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

  .sobre-badge {
    right: 0;
    bottom: 0;
  }

  #servicos {
    padding: 64px 0;
  }

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

  .card-srv {
    padding: 32px 24px;
  }

  #citacao {
    padding: 72px 0;
  }

  #contato {
    padding: 64px 0;
  }

  .contato-grid {
    gap: 40px;
  }

  .btn-wa {
    width: 100%;
    justify-content: center;
  }

  .info-item {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  footer {
    padding: 56px 0 0;
  }

  .footer-grid {
    gap: 36px;
    padding-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 0;
  }

  .float-wa {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}
