/* =========================================================
   CASA 29 INTERIORES — PROTÓTIPO
   Fontes: Poppins (texto, peso 300) + Jost (títulos, alternativa gratuita à Futura PT)
   Cores: preto (#000) sobre branco (#fff)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Poppins:wght@200;300;400&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: opacity .3s ease; }
a:hover { opacity: .6; }

h1, h2, h3, h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.25;
}

/* =========================================================
   HEADER / MENU (delicado, igual ao site original)
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 36px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  height: 66px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Grupo de navegação na direita (nav + ícones sociais) */
.nav-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .02em;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: #000;
  transition: width .3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover { opacity: 1; }

.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: .75;
  transition: opacity .3s ease, transform .3s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: #000;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  padding: 4px;
}

@media (max-width: 860px) {
  .nav-group { display: none; }
  .menu-toggle { display: block; }
  .nav-group.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px 4vw;
    gap: 20px;
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .nav-group.open .main-nav {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}

/* =========================================================
   LAYOUT GERAL
   ========================================================= */
main { padding-top: 138px; }

.section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 100px 4vw;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* =========================================================
   HERO (HOME)
   ========================================================= */
.hero {
  position: relative;
  height: calc(100vh - 138px);
  min-height: 540px;
  overflow: hidden;
  margin: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.45) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 6vw 10vh;
  color: #fff;
  max-width: 900px;
}

.hero-title {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.15;
  letter-spacing: .01em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease .4s forwards;
}

.hero-subtitle {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.2s ease .8s forwards;
}

.hero-cta {
  display: inline-block;
  width: fit-content;
  padding: 14px 36px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .4s ease;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.2s forwards;
}

.hero-cta:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}

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

/* =========================================================
   ABOUT PREVIEW (HOME)
   ========================================================= */
.about-preview {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.about-preview p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 22px;
  color: #222;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
}

/* =========================================================
   SERVIÇOS — PRÉVIA NA HOME
   ========================================================= */
.services-preview-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 40px 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: .05em;
  color: #333;
}

.services-preview-list span {
  padding: 8px 24px;
  border-right: 1px solid #ddd;
}
.services-preview-list span:last-child { border-right: none; }

@media (max-width: 720px) {
  .services-preview-list span {
    border-right: none;
    padding: 6px 16px;
  }
}

/* =========================================================
   PORTFOLIO GRID + HOVER OVERLAY
   ========================================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 8 / 9;
  background: #f4f4f4;
  cursor: pointer;
  display: block;
}

.project-card .project-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.project-card:hover .project-image {
  transform: scale(1.06);
}

.project-card .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.7) 100%);
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}

.project-card:hover .project-overlay { opacity: 1; }

.project-overlay h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 8px;
  transform: translateY(12px);
  transition: transform .5s ease .05s;
}

.project-overlay p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 14px;
  transform: translateY(12px);
  transition: transform .5s ease .1s;
}

.project-overlay .arrow {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(12px);
  transition: transform .5s ease .15s;
}

.project-overlay .arrow::after {
  content: '→';
  font-size: 18px;
  transition: transform .3s ease;
}

.project-card:hover .project-overlay h3,
.project-card:hover .project-overlay p,
.project-card:hover .project-overlay .arrow {
  transform: translateY(0);
}

.project-card:hover .arrow::after {
  transform: translateX(6px);
}

/* No mobile (sem hover), mostra overlay sempre */
@media (hover: none) {
  .project-card .project-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.75) 100%);
  }
  .project-overlay h3,
  .project-overlay p,
  .project-overlay .arrow { transform: translateY(0); }
}

/* =========================================================
   PÁGINA O QUE FAZEMOS — LAYOUT PREMIUM COM MOVIMENTO
   ========================================================= */

/* Container full-width da lista de serviços */
.services-wrapper {
  position: relative;
  padding: 40px 0 120px;
}

/* Contador fixo lateral (elegante, desktop only) */
.service-counter {
  position: fixed;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  z-index: 100;
  mix-blend-mode: difference;
  color: #fff;
  pointer-events: none;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 1100px) { .service-counter { display: none; } }

/* Cada serviço ocupa uma altura generosa */
.service-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding: 120px 6vw;
  overflow: hidden;
}

.service-section + .service-section {
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Número gigante decorativo no fundo */
.service-section .mega-number {
  position: absolute;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(180px, 32vw, 440px);
  line-height: .82;
  color: #000;
  opacity: .04;
  pointer-events: none;
  user-select: none;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: -.04em;
  transition: opacity 1.4s ease, transform 1.8s cubic-bezier(.2,.7,.2,1);
}

.service-section:nth-child(odd) .mega-number { right: -2vw; }
.service-section:nth-child(even) .mega-number { left: -2vw; }

.service-section.visible .mega-number {
  opacity: .055;
}

/* Grid interno do serviço */
.service-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.service-section:nth-child(even) .service-inner .service-visual {
  order: 1;
}
.service-section:nth-child(even) .service-inner .service-copy {
  order: 2;
}

/* VISUAL / IMAGEM com clip-path reveal */
.service-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.service-visual .visual-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(.77,0,.18,1), transform 14s ease-out;
  transform: scale(1.15);
}

.service-section.visible .visual-inner {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.service-section:nth-child(even) .visual-inner {
  clip-path: inset(0 0 0 100%);
}

/* Linha fina decorativa que cresce */
.service-visual::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 1.6s cubic-bezier(.77,0,.18,1) .4s;
}

.service-section.visible .service-visual::after {
  width: 100%;
}

/* COPY / TEXTO */
.service-copy {
  padding: 20px 0;
}

.service-copy .eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .8s ease .2s, transform .8s ease .2s;
}

.service-copy h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 32px;
  overflow: hidden;
}

.service-copy h2 .word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.77,0,.18,1);
}

.service-section.visible .service-copy h2 .word { transform: translateY(0); }
.service-section.visible .service-copy h2 .word:nth-child(1) { transition-delay: .35s; }
.service-section.visible .service-copy h2 .word:nth-child(2) { transition-delay: .45s; }
.service-section.visible .service-copy h2 .word:nth-child(3) { transition-delay: .55s; }
.service-section.visible .service-copy h2 .word:nth-child(4) { transition-delay: .65s; }
.service-section.visible .service-copy h2 .word:nth-child(5) { transition-delay: .75s; }

.service-copy p {
  font-size: 17px;
  line-height: 1.85;
  color: #333;
  font-weight: 300;
  max-width: 480px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease 1s, transform 1s ease 1s;
}

.service-section.visible .service-copy .eyebrow {
  opacity: 1;
  transform: translateX(0);
}
.service-section.visible .service-copy p {
  opacity: 1;
  transform: translateY(0);
}

/* Linha vertical decorativa ao lado do texto */
.service-copy::before {
  content: '';
  display: block;
  width: 1px;
  height: 0;
  background: #000;
  margin-bottom: 32px;
  transition: height 1.2s cubic-bezier(.77,0,.18,1) .2s;
}

.service-section.visible .service-copy::before {
  height: 60px;
}

/* Mobile */
@media (max-width: 860px) {
  .service-section {
    min-height: auto;
    padding: 80px 6vw;
  }
  .service-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-section:nth-child(even) .service-inner .service-visual { order: 0; }
  .service-section:nth-child(even) .service-inner .service-copy { order: 1; }
  .service-section .mega-number {
    font-size: 180px;
    right: -20px !important;
    left: auto !important;
    top: 20px;
    transform: none;
  }
}

/* =========================================================
   PÁGINA PERFIL — EDITORIAL DINÂMICO
   ========================================================= */

/* HERO do perfil — nome gigante + imagem assimétrica */
.profile-hero {
  position: relative;
  padding: 160px 6vw 80px;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}

.profile-hero .eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 28px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease .2s forwards;
}

.profile-hero .mega-name {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(56px, 11vw, 180px);
  line-height: .92;
  letter-spacing: -.02em;
  margin-bottom: 60px;
  max-width: 1200px;
}

.profile-hero .mega-name span {
  display: inline-block;
  overflow: hidden;
}

.profile-hero .mega-name span i {
  display: inline-block;
  font-style: normal;
  transform: translateY(110%);
  animation: revealUp 1.3s cubic-bezier(.77,0,.18,1) .4s forwards;
}

.profile-hero .mega-name span:nth-child(2) i { animation-delay: .55s; }

@keyframes revealUp {
  to { transform: translateY(0); }
}

.profile-hero .lead {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 1s forwards;
}

/* GALERIA ASSIMÉTRICA */
.profile-gallery {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 6vw 140px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 24px;
}

.profile-gallery .g-item {
  position: relative;
  overflow: hidden;
  background: #efece4;
}

.profile-gallery .g-item .g-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.5s cubic-bezier(.2,.7,.2,1);
}

.profile-gallery .g-item:hover .g-bg {
  transform: scale(1.05);
}

.profile-gallery .g-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-gallery .g-item.g-1 { grid-column: 1 / span 7;  grid-row: 1 / span 7; }
.profile-gallery .g-item.g-2 { grid-column: 9 / span 4;  grid-row: 2 / span 5; }
.profile-gallery .g-item.g-3 { grid-column: 2 / span 4;  grid-row: 9 / span 5; }
.profile-gallery .g-item.g-4 { grid-column: 7 / span 6;  grid-row: 8 / span 7; }

/* Bloco de texto editorial flutuante entre as imagens */
.profile-quote {
  grid-column: 8 / span 4;
  grid-row: 7 / span 1;
  display: flex;
  align-items: center;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  font-style: italic;
  color: #555;
  padding: 0 10px;
}

/* SEÇÃO BIOGRAFIA — texto em duas colunas elegantes */
.profile-bio {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 6vw 140px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.profile-bio .bio-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  padding-top: 10px;
  border-top: 1px solid #000;
}

.profile-bio .bio-text p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: #222;
  font-weight: 300;
}

.profile-bio .bio-text p:first-child::first-letter {
  font-family: 'Jost', sans-serif;
  font-size: 62px;
  float: left;
  line-height: .85;
  margin: 6px 10px 0 0;
  font-weight: 300;
}

.profile-bio .signature {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #666;
  margin-top: 40px;
  display: inline-block;
  border-top: 1px solid #ddd;
  padding-top: 16px;
}

/* Mobile perfil */
@media (max-width: 860px) {
  .profile-hero { padding: 120px 6vw 40px; }
  .profile-hero .mega-name { font-size: clamp(48px, 14vw, 90px); margin-bottom: 40px; }
  .profile-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .profile-gallery .g-item {
    grid-column: 1 !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 5;
  }
  .profile-quote {
    grid-column: 1 !important;
    grid-row: auto !important;
    padding: 20px 0;
    font-size: 16px;
  }
  .profile-bio {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 6vw 100px;
  }
}

/* =========================================================
   PÁGINA CONTATO — EDITORIAL MODERNO
   ========================================================= */
.contact-hero {
  position: relative;
  min-height: calc(100vh - 138px);
  padding: 100px 6vw 80px;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}

.contact-left .eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 28px;
  display: block;
}

.contact-left h1 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 40px;
}

.contact-left h1 .soft {
  display: block;
  color: #8a8a8a;
  font-style: italic;
  font-weight: 300;
  margin-top: 4px;
}

.contact-left .lead {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  font-weight: 300;
  margin-bottom: 44px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-actions .ig-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid #000;
  border-radius: 50%;
  transition: all .35s ease;
}

.contact-actions .ig-icon svg {
  width: 18px;
  height: 18px;
  fill: #000;
  transition: fill .35s ease;
}

.contact-actions .ig-icon:hover {
  background: #000;
  opacity: 1;
  transform: translateY(-3px);
}
.contact-actions .ig-icon:hover svg { fill: #fff; }

/* Coluna direita — card editorial com info */
.contact-right {
  position: relative;
  padding: 60px 50px;
  background: #f5f1ea;
}

.contact-right::before {
  content: '';
  position: absolute;
  top: 30px; left: 30px;
  width: 40px;
  height: 1px;
  background: #1a1a1a;
}

.contact-right h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 36px;
  color: #1a1a1a;
  max-width: 340px;
}

.contact-right .info-block {
  margin-bottom: 26px;
}

.contact-right .info-block span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.contact-right .info-block a,
.contact-right .info-block p {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 300;
}

.contact-right .info-block a {
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.contact-right .info-block a:hover {
  border-bottom-color: #000;
  opacity: 1;
}

@media (max-width: 960px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 120px 6vw 60px;
    min-height: auto;
  }
  .contact-right { padding: 50px 32px; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid #000;
  transition: all .3s ease;
}

.btn-primary:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}

/* =========================================================
   CTA FINAL (HOME / SERVIÇOS) — VERSÃO CREME EDITORIAL
   ========================================================= */
.cta-final {
  background: #f5f1ea;
  color: #1a1a1a;
  text-align: center;
  padding: 90px 4vw;
  margin-top: 80px;
  position: relative;
}

.cta-final::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: #1a1a1a;
  margin: 0 auto 26px;
}

.cta-final .eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 18px;
}

.cta-final h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -.005em;
  margin: 0 auto 36px;
  max-width: 900px;
}

.cta-final h2 .line,
.cta-final h2 .line-soft {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cta-final h2 {
    font-size: 18px;
  }
  .cta-final h2 .line,
  .cta-final h2 .line-soft {
    white-space: normal;
  }
}

.cta-final h2 .line {
  display: block;
}

.cta-final h2 .line-soft {
  display: block;
  color: #6b6b6b;
  font-style: italic;
  font-weight: 300;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #fafafa;
  padding: 60px 4vw 30px;
  border-top: 1px solid #eee;
}

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 300;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 50%;
  transition: all .35s ease;
}

.footer-social a:hover {
  background: #000;
  border-color: #000;
  opacity: 1;
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: #000;
  transition: fill .35s ease;
}

.footer-social a:hover svg { fill: #fff; }

.footer-copy {
  font-size: 11px;
  color: #999;
  letter-spacing: .05em;
  margin-top: 16px;
}

/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
  z-index: 9999;
  transition: transform .3s ease;
  animation: pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  opacity: 1;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.4); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,.35), 0 0 0 14px rgba(37,211,102,0); }
}

/* =========================================================
   ANIMAÇÕES DE SCROLL (fade-up genérico)
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
