:root {
  --cream: #faf7f4;
  --warm: #f2ece4;
  --blush: #e8cfc4;
  --rose: #c27f72;
  --rose-deep: #a86358;
  --sage: #8fa68a;
  --clay: #b5836e;
  --dark: #2b2220;
  --mid: #5a4a45;
  --muted: #9a8a84;
  --border: rgba(194, 127, 114, 0.18);
  --border-light: rgba(194, 127, 114, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(250, 247, 244, 0.94);
  backdrop-filter: blur(16px);
  padding: 16px 64px;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 32px rgba(43, 34, 32, 0.06);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-logo em {
  font-style: italic;
  color: var(--rose);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--rose);
}
.nav-cta {
  background: var(--rose);
  color: #fff !important;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 26px;
  border-radius: 2px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(194, 127, 114, 0.25);
}
.nav-cta:hover {
  background: var(--rose-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(194, 127, 114, 0.35);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 160px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--blush) 0%,
    var(--warm) 50%,
    #e0d5cc 100%
  );
}
.hero-right-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 70% at 60% 40%,
      rgba(194, 127, 114, 0.2) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 60% at 20% 80%,
      rgba(143, 166, 138, 0.15) 0%,
      transparent 60%
    );
}
.hero-right-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(194, 127, 114, 0.06) 0px,
      rgba(194, 127, 114, 0.06) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(194, 127, 114, 0.06) 0px,
      rgba(194, 127, 114, 0.06) 1px,
      transparent 1px,
      transparent 48px
    );
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.8s both;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(242, 236, 228, 0.18) 0%, transparent 40%),
    linear-gradient(to top, rgba(232, 207, 196, 0.35) 0%, transparent 50%);
}
.hero-badge {
  position: absolute;
  bottom: 48px;
  left: 40px;
  background: rgba(250, 247, 244, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(250, 247, 244, 0.6);
  padding: 18px 24px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(43, 34, 32, 0.12);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.badge-icon {
  font-size: 22px;
  margin-bottom: 4px;
  display: block;
}
.badge-text {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.4;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 32px;
  opacity: 0;
  animation: slideUp 0.8s ease 0.3s both;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--rose);
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: revealLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-title .line:nth-child(1) span {
  animation-delay: 0.4s;
}
.hero-title .line:nth-child(2) span {
  animation-delay: 0.55s;
}
.hero-title .line:nth-child(3) span {
  animation-delay: 0.7s;
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
  max-width: 440px;
  margin-bottom: 48px;
  opacity: 0;
  animation: slideUp 0.8s ease 1s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.8s ease 1.2s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 6px 24px rgba(194, 127, 114, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rose-deep);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover::before {
  transform: translateX(0);
}
.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(194, 127, 114, 0.35);
}
.btn-primary:hover svg {
  transform: translateX(3px);
}
.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 15px 28px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s both;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-dots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scroll-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose);
  animation: dotBounce 1.6s ease-in-out infinite;
}
.scroll-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.scroll-dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dotBounce {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* SECTION TAG */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.section-tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--rose);
}

/* PARA QUEM */
.para-quem {
  padding: 120px 64px;
  background: var(--warm);
  border-top: 1px solid var(--border-light);
}
.pq-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.pq-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.pq-left h2 em {
  font-style: italic;
  color: var(--rose);
}
.pq-left p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.8;
  max-width: 400px;
}
.pq-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pq-card {
  background: var(--cream);
  padding: 28px 24px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.pq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--clay));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pq-card:hover::before {
  transform: scaleX(1);
}
.pq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(194, 127, 114, 0.12);
}
.pq-icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
  width: 36px;
  height: 36px;
}

.pq-card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark);
}
.pq-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* DORES */
.dores {
  padding: 120px 64px;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
}
.dores-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.dores-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.dores-top h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 400;
  line-height: 1.15;
}
.dores-top h2 em {
  font-style: italic;
  color: var(--clay);
}
.dores-top p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.8;
}
.dores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.dor-card {
  background: var(--cream);
  padding: 40px 28px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.dor-card:hover {
  background: var(--warm);
}
.dor-num {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 400;
  color: rgba(194, 127, 114, 0.12);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.dor-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic;
}

/* SOLUÇÃO */
.solucao {
  padding: 120px 64px;
  background: linear-gradient(
    160deg,
    var(--blush) 0%,
    var(--warm) 60%,
    var(--cream) 100%
  );
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.solucao::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(194, 127, 114, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.solucao-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.solucao-top {
  text-align: center;
  margin-bottom: 72px;
}
.solucao-top h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}
.solucao-top h2 em {
  font-style: italic;
  color: var(--rose);
}
.solucao-top p {
  color: var(--mid);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
.sol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sol-card {
  background: rgba(250, 247, 244, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(194, 127, 114, 0.15);
  border-radius: 6px;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(194, 127, 114, 0.15);
}
.sol-num-bg {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "Playfair Display", serif;
  font-size: 96px;
  font-weight: 400;
  color: rgba(194, 127, 114, 0.07);
  line-height: 1;
  pointer-events: none;
}
.sol-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.sol-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--dark);
}
.sol-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.sol-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sol-list li {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sol-list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

/* SOBRE */
.sobre {
  padding: 120px 64px;
  background: var(--dark);
  border-top: 1px solid rgba(194, 127, 114, 0.2);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.sobre-visual {
  position: relative;
}
.sobre-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #3a2d2a, #241e1c);
  border: 1px solid rgba(194, 127, 114, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sobre-frame-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 35%,
    rgba(194, 127, 114, 0.08),
    transparent
  );
}
.sobre-monogram {
  font-family: "Playfair Display", serif;
  font-size: 180px;
  font-weight: 400;
  color: rgba(194, 127, 114, 0.07);
  letter-spacing: -0.06em;
  user-select: none;
}
.sobre-tag-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--rose);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(194, 127, 114, 0.35);
}
.sobre-tag-float strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.sobre-tag-float span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.sobre-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 6px;
}
.sobre-subtitle {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 32px;
  display: block;
}
.sobre-text {
  color: rgba(250, 247, 244, 0.6);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.sobre-divider {
  width: 48px;
  height: 1px;
  background: rgba(194, 127, 114, 0.4);
  margin: 32px 0;
}
.pilares {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pilar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pilar-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(194, 127, 114, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
}

.pilar-dot img {
  width: 12px;
  height: 12px;
}

.pilar h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 3px;
}
.pilar p {
  font-size: 12px;
  color: rgba(250, 247, 244, 0.45);
  line-height: 1.6;
}

/* SERVIÇOS */
.servicos {
  padding: 120px 64px;
  background: var(--warm);
  border-top: 1px solid var(--border-light);
}
.servicos-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.servicos-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.servicos-top h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 400;
  line-height: 1.1;
}
.servicos-top h2 em {
  font-style: italic;
  color: var(--rose);
}
.servicos-top p {
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: right;
}
.serv-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.serv-item {
  background: var(--cream);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 36px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.35s ease;
}
.serv-item:hover {
  background: #fdf9f7;
  border-color: var(--border);
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(194, 127, 114, 0.08);
}
.serv-n {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: rgba(194, 127, 114, 0.3);
  line-height: 1;
  transition: color 0.3s ease;
}
.serv-item:hover .serv-n {
  color: var(--rose);
}
.serv-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--dark);
}
.serv-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 460px;
}
.serv-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.chip {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1px solid rgba(194, 127, 114, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
}

/* TRANSFORMAÇÃO */
.transf {
  padding: 120px 64px;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.transf-inner {
  max-width: 960px;
  margin: 0 auto;
}
.transf h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}
.transf h2 em {
  font-style: italic;
  color: var(--rose);
}
.transf-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 64px;
}
.transf-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.tr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.tr-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.3s ease;
}
.tr-circle img {
  width: 48px;
  height: 48px;
}
.tr-circle:hover {
  background: rgba(194, 127, 114, 0.1);
  border-color: var(--rose);
  transform: scale(1.1);
}
.tr-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

/* CONTATO */
.contato {
  padding: 140px 64px;
  background: linear-gradient(
    160deg,
    var(--rose-deep) 0%,
    var(--clay) 50%,
    #8a5e52 100%
  );
  position: relative;
  overflow: hidden;
}
.contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(250,247,244,0.06)'/%3E%3C/svg%3E");
}
.contato-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.contato-stag {
  justify-content: center;
  color: rgba(250, 247, 244, 0.7);
}
.contato-stag::before {
  background: rgba(250, 247, 244, 0.5);
}
.contato-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}
.contato-inner h2 em {
  font-style: italic;
  color: rgba(250, 247, 244, 0.75);
}
.contato-desc {
  font-size: 16px;
  color: rgba(250, 247, 244, 0.7);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 52px;
}
.contato-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  color: var(--rose-deep);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.btn-light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.2);
}
.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid rgba(250, 247, 244, 0.35);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-wpp:hover {
  background: rgba(250, 247, 244, 0.1);
  border-color: rgba(250, 247, 244, 0.6);
}
.contato-sep {
  width: 100%;
  height: 1px;
  background: rgba(250, 247, 244, 0.15);
  margin: 60px 0 48px;
}
.contato-info {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.ci {
  text-align: center;
}
.ci-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 244, 0.5);
  display: block;
  margin-bottom: 6px;
}
.ci-val {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(250, 247, 244, 0.9);
}

/* FOOTER */
footer {
  padding: 32px 64px;
  background: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(194, 127, 114, 0.15);
}
.f-logo {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--cream);
  text-decoration: none;
}
.f-logo em {
  font-style: italic;
  color: var(--rose);
}
footer p {
  font-size: 11px;
  color: rgba(250, 247, 244, 0.3);
}
footer a {
  font-size: 11px;
  color: rgba(250, 247, 244, 0.63);
}

.box-text-final-footer {
  text-align: center;
}

/* WHATSAPP */
.wpp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  animation: fadeIn 1s ease 2.5s both;
}
.wpp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.wpp-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.1s;
}
.rd2 {
  transition-delay: 0.2s;
}
.rd3 {
  transition-delay: 0.3s;
}
.rd4 {
  transition-delay: 0.4s;
}
.rd5 {
  transition-delay: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes revealLine {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  nav {
    padding: 18px 24px;
  }
  nav.scrolled {
    padding: 14px 24px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 120px 24px 60px;
  }
  .hero-right {
    height: 520px;
  }
  .hero-badge {
    width: 140px;
    height: 140px;
  }
  .badge-text {
    font-size: 11px;
  }
  .para-quem,
  .dores,
  .solucao,
  .sobre,
  .servicos,
  .transf,
  .contato {
    padding: 80px 24px;
  }
  .pq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .dores-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dores-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sol-cards {
    grid-template-columns: 1fr;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .servicos-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .servicos-top p {
    text-align: left;
  }
  .serv-item {
    grid-template-columns: 40px 1fr;
    padding: 24px 20px;
    gap: 20px;
  }
  .serv-chips {
    display: none;
  }
  .transf-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pq-cards {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px;
  }
}

@media (min-width: 425px) and (max-width: 960px) {
  .hero-right {
    width: 425px;
    margin: 0 auto;
  }
}
