/* ─── RESET & VARIABLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #f5efe6;
  --beige:   #e8d9c5;
  --warm:    #c8a882;
  --brown:   #7a5c40;
  --dark:    #3a2a1e;
  --white:   #fdfaf6;
  --gold:    #b8935a;
  --text:    #4a3728;
  --light-beige: #faf7f2;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Margens laterais */
  --page-margin: clamp(2rem, 8vw, 8rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
#cursor-dot, #cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .3s, height .3s;
}
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  z-index: 9998;
  opacity: .6;
  transition: transform .18s var(--ease-out);
}
body:hover #cursor-dot { opacity: 1; }

/* ─── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--warm); border-radius: 2px; }

/* ─── UTILS ─────────────────────────────────────────────── */
.rounded-image { border-radius: 15px; }
.circular-image { 
  border-radius: 50%;
  width: 85% !important;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 3px solid var(--white);
  box-shadow: 0 20px 40px rgba(184, 147, 90, 0.5);
}

/* ─── HEADER / NAV ──────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--page-margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: background .4s, box-shadow .4s;
}
header.scrolled {
  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(122,92,64,.12);
}

.header-social { display: flex; gap: 1rem; align-items: center; }
.header-social a { color: var(--brown); transition: color .3s; display: flex; text-decoration: none; }
.header-social a:hover { color: var(--gold); }
.header-social i { font-size: 1.2rem; }

.logo {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--dark);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

nav { display: flex; gap: clamp(1rem, 2vw, 2rem); align-items: center; }
nav a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color .3s;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width .35s var(--ease-out);
}
nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary, .btn-outline, .footer-social-btn {
  border-radius: 15px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
  cursor: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  background: var(--dark);
  color: var(--cream);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary.i {
   background: var(--gold);

}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}

.btn-primary.i::before {

  background: var(--dark);


}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); }

/* Botão específico para seção diferenciais */
.btn-diferenciais {
  background: var(--gold);
  color: var(--dark);
}
.btn-diferenciais::before {
  background: var(--cream);
}
.btn-diferenciais:hover {
  color: var(--dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  border: 1px solid var(--warm);
  color: var(--brown);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,147,90,0.05); }

.tab-btn {
  padding: .6rem 1.6rem;
  border: 1px solid var(--beige);
  background: transparent;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brown);
  cursor: none;
  border-radius: 0;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}

/* ─── WHATSAPP FLOAT ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform .3s var(--ease-out), box-shadow .3s;
  animation: pulse-wa 2.5s ease-in-out infinite;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 32px rgba(37,211,102,.55); animation: none; }
@keyframes pulse-wa { 0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 40px rgba(37,211,102,.7); } }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding: 0 var(--page-margin);
  background: var(--cream);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 10vw, 10rem) 0 clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .3s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .9s .5s var(--ease-out) forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height: 1.8;
  color: var(--brown);
  max-width: 38ch;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp .9s .7s var(--ease-out) forwards;
}
.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1s ease 0.85s forwards;
}
.hero-badge {
  font-size: clamp(.8rem, 1.2vw, .9rem);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.08em;
  color: var(--brown);
}
.hero-badge::before { content: '✦'; color: var(--gold); }
.hero-cta { opacity: 0; animation: fadeUp .9s 1.1s var(--ease-out) forwards; }

.hero-right {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  
}

.profile-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bolhas flutuantes com imagens */
.floating-bubble {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(184, 147, 90, 0.35);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
  border: 3px solid var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--white);
}

.floating-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(184, 147, 90, 0.5);

}

.floating-bubble img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;

  transition: opacity 0.3s;
}

.floating-bubble span {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 90px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  padding: 3px 6px;
  border-radius: 20px;
  margin-bottom: 5px;
}

.bubble-1 {
  top: 15%;
  right: 5%;
  animation-delay: 0s;
}

.bubble-2 {
  bottom: 20%;
  left: 0%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 600px) {
  .hero-right {
    min-height: 250px;
    margin-top: 60px; /* AINDA MAIOR EM TELAS PEQUENAS */
  }
  .hero-left {
    padding-top: 0;
  }
}
  

/* ─── SECTION SHARED ────────────────────────────────────── */
section { 
  padding: clamp(5rem, 10vw, 10rem) var(--page-margin); 
}

.section-label {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-text {
  font-size: clamp(.9rem, 1.1vw, 1rem);
  line-height: 1.9;
  color: var(--brown);
  max-width: 55ch;
  margin: 0 auto;
}

/* SOBRE - fundo bege claro */
.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  background: var(--white);
  position: relative;
}
.sobre::before {
  content: 'Sobre';
  position: absolute;
  top: 60px; left: var(--page-margin);
  font-family: var(--ff-display);
  font-size: 120px;
  font-weight: 300;
  color: rgba(139,99,64,0.05);
  pointer-events: none;
  line-height: 1;
}
.sobre-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.sobre-content { position: relative; }

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.sobre-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--brown);
  margin-bottom: 40px;
}
.sobre-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.pillar {
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: var(--light-beige);
}
.pillar-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.pillar-text { font-size: 13px; line-height: 1.6; color: var(--brown); }

@media (max-width: 600px) {
  .sobre {
    padding-top: 0;
  }

}

/* DIFERENCIAIS - sem texto de fundo */
.diferenciais {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.diferenciais .section-title { color: var(--cream); }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: rgba(200,168,130,.2);
}
.dif-card {
  background: var(--dark);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
  transition: background .4s;
  position: relative;
  overflow: hidden;
}
.dif-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
}
.dif-card:hover::before { transform: translateY(0); }
.dif-card > * { position: relative; z-index: 1; }
.dif-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(200,168,130,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s;
}
.dif-icon i { font-size: 24px; color: var(--warm); transition: color .4s; }
.dif-card:hover .dif-icon i { color: var(--white); }
.dif-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  transition: color .4s;
}
.dif-card:hover .dif-title { color: var(--white); }
.dif-text {
  font-size: .83rem;
  line-height: 1.7;
  color: rgba(232,217,197,.65);
  transition: color .4s;
}
.dif-card:hover .dif-text { color: rgba(255,255,255,.85); }


@media (max-width: 600px) {

  .dif-card {
      padding: 2rem 1rem;
}

}

/* SERVIÇOS */
.servicos { background: var(--white); }
.servicos-intro { max-width: 800px; margin: 0 auto 5rem; text-align: center; }
.servicos-intro .section-text-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.servicos-tabs { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; }
.servicos-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.servico-card {
  border: 1px solid var(--beige);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out), background-color .3s;
  background: var(--white);
}

.servico-card:hover {
  border-color: var(--gold);
  background: var(--dark);
  transform: translateY(-4px);
}

.servico-card:hover .servico-name {
  color: var(--gold);
}

.servico-card:hover .servico-num {
  color: var(--gold);
}

.servico-card:hover .servico-desc {
  color: var(--cream);
}


.servico-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: .5rem;
}
.servico-desc { font-size: .82rem; color: var(--warm); line-height: 1.6; }

/* RESULTADOS (GALERIA) */
.resultados { background: var(--cream); }

.resultados-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

/* Garantir que o texto da galeria fique alinhado à direita */
.resultados-intro .section-text {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.galeria-item {
  position: relative;
  overflow: hidden;
  background: var(--beige);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.galeria-item:hover img {
  transform: scale(1.05);
}

.galeria-item.square { aspect-ratio: 1/1; }
.galeria-item.horizontal { aspect-ratio: 2/1; grid-column: span 2; }

.galeria-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--beige) 0%, var(--warm) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  gap: .5rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.galeria-placeholder i { font-size: 2rem; margin-bottom: 0.5rem; }

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 42, 30, .75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s;
  gap: .5rem;
}
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-overlay-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
}
.galeria-overlay-sub { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--warm); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .galeria { grid-template-columns: repeat(2, 1fr); }
  .galeria-item.horizontal { grid-column: span 2; aspect-ratio: 2/1; }
}

@media (max-width: 600px) {
  .galeria { grid-template-columns: 1fr; }
  .galeria-item.horizontal { grid-column: span 1; aspect-ratio: 2/1; }
}

/* INVESTIMENTO - texto esquerda, imagem direita */
.investimento {
  background: var(--white);
  padding: clamp(5rem, 10vw, 10rem) var(--page-margin);
}

.investimento-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.investimento-content {
  text-align: left;
}

.investimento-content .section-title {
  margin-bottom: 1.5rem;
}

.investimento-content .section-text {
  margin: 0 0 1.5rem 0;
  max-width: 100%;
}

.investimento-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  text-align: left;
}

.investimento-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text);
}

.investimento-checklist li::before {
  content: '✦';
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.investimento-cta {
  display: flex;
  justify-content: flex-start;
}

.investimento-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  aspect-ratio: 3/4;
}

.investimento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.investimento-image:hover img {
  transform: scale(1.05);
}



/* Responsivo */
@media (max-width: 900px) {
  .investimento-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .investimento-content {
    text-align: center;
  }
  
  .investimento-checklist {
    display: inline-block;
    text-align: left;
  }
  
  .investimento-cta {
    justify-content: center;
  }
  
  .investimento-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .investimento-checklist li {
    font-size: .85rem;
  }
}

/* CONTATO (MAPA) */
.contato {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contato-left {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contato-left .section-title { color: var(--cream); }
.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.contato-info-item i {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15rem;
}
.contato-info-item p { font-size: .88rem; line-height: 1.7; color: rgba(232,217,197,.8); }
.contato-info-item strong { display: block; color: var(--cream); margin-bottom: .2rem; font-weight: 400; letter-spacing: .04em; }

.contato-right {
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem);
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.map-container {
  width: 100%;
  height: 500px; /* Aumentado de 300px para 450px */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER (ESCURO) */
footer {
  background: var(--dark);
  padding: 60px var(--page-margin) 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(232,217,192,0.6);
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social-btn i { font-size: 1rem; }
.footer-social-btn:hover { background: rgba(201,169,110,0.2); border-color: var(--gold); color: var(--cream); }

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(232,217,192,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(232,217,192,0.4);
}
.footer-credit {
  font-size: 11px;
  color: rgba(232,217,192,0.3);
}
.footer-credit i { color: var(--gold); font-size: 0.8rem; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: auto; min-height: 400px; }
  .sobre { grid-template-columns: 1fr; gap: 50px; }
  .sobre-img-wrap { order: -1; }
  .hero-right {order: -1;}
  .pacotes { grid-template-columns: 1fr; }

  .contato { grid-template-columns: 1fr; }
  .galeria { grid-template-columns: repeat(2, 1fr); }
  .galeria-item.portrait { grid-row: span 1; aspect-ratio: 1/1.5; }
  nav { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  
  .floating-bubble {
    width: 80px;
    height: 80px;
  }
  
  .floating-bubble span { font-size: 0.6rem; }
}

@media (max-width: 600px) {
  .galeria { grid-template-columns: 1fr; }
  .galeria-item.portrait { aspect-ratio: 1/1.2; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  
  .floating-bubble {
    width: 70px;
    height: 70px;
  }
  
  .floating-bubble span { 
    font-size: 0.55rem;
    padding: 2px 4px;
  }
  
  .bubble-1 { top: 10%; right: 0; }
  .bubble-2 { bottom: 10%; left: 0; }
}
/* ═══════════════════════════════════════════════════════════
   PÁGINAS INTERNAS — ESTILOS COMPARTILHADOS
   ═══════════════════════════════════════════════════════════ */

/* ─── NAV ACTIVE ─────────────────────────────────────────── */
nav a.nav-active {
  color: var(--gold);
}
nav a.nav-active::after {
  width: 100%;
}

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  min-height: 46vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10rem var(--page-margin) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(184,147,90,.13) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin: .8rem 0 1.2rem;
  animation: fadeUp .9s .4s var(--ease-out) both;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-subtitle {
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  line-height: 1.8;
  color: var(--brown);
  max-width: 44ch;
  margin: 0 auto;
  animation: fadeUp .9s .6s var(--ease-out) both;
}
.page-hero-bar {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem auto 0;
  animation: fadeUp .8s .8s var(--ease-out) both;
}

/* ─── SOBRE PAGE ─────────────────────────────────────────── */
.sobre-page {
  background: var(--white);
  padding: clamp(5rem, 10vw, 9rem) var(--page-margin);
}
.sobre-page-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.sobre-page-img-wrap {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(58,42,30,.15);
}
.sobre-page-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
  transition: transform .7s var(--ease-out);
}
.sobre-page-img-wrap:hover img { transform: scale(1.04); }
.sobre-page-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--dark);
  color: var(--cream);
  padding: 1rem 1.6rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.badge-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(232,217,197,.7);
}
.sobre-credenciais {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.credencial-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--light-beige);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}
.credencial-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.credencial-item strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .2rem;
  font-weight: 500;
}
.credencial-item p {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.5;
}
.sobre-page-right .section-eyebrow {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.sobre-page-texto {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
}
.sobre-page-texto p {
  font-size: clamp(.9rem, 1.1vw, 1rem);
  line-height: 1.9;
  color: var(--text);
}

/* ─── VALORES ────────────────────────────────────────────── */
.valores-section {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) var(--page-margin);
}
.valores-intro {
  text-align: center;
  margin-bottom: 4rem;
}
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.valor-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.valor-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(184,147,90,.15);
}
.valor-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184,147,90,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.valor-icon i { color: var(--gold); font-size: 1.3rem; }
.valor-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: .8rem;
}
.valor-text {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--brown);
}

/* ─── SOBRE CTA ──────────────────────────────────────────── */
.sobre-cta {
  background: var(--dark);
  padding: clamp(5rem, 10vw, 9rem) var(--page-margin);
  text-align: center;
}
.sobre-cta-content { max-width: 600px; margin: 0 auto; }

/* ─── PROCEDIMENTOS PAGE ─────────────────────────────────── */
.proc-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 8rem) var(--page-margin);
}
.proc-tabs-wrap {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.proc-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.proc-card {
  background: var(--light-beige);
  border-radius: 15px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.proc-card:hover {
  border-color: var(--beige);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(122,92,64,.1);
}
.proc-card--featured {
  background: var(--dark);
  border-color: transparent;
}
.proc-card--featured:hover {
  border-color: var(--gold);
}
.proc-card-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--beige);
  line-height: 1;
  margin-bottom: .5rem;
  transition: color .3s;
}
.proc-card--featured .proc-card-num { color: rgba(232,217,197,.15); }
.proc-card:hover .proc-card-num { color: var(--gold); opacity: .4; }
.proc-card-badge {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,147,90,.4);
  border-radius: 50px;
  padding: .25rem .8rem;
  margin-bottom: 1rem;
}
.proc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184,147,90,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.proc-card-icon i { color: var(--gold); font-size: 1rem; }
.proc-card--featured .proc-card-icon { background: rgba(184,147,90,.2); }
.proc-card-name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: .8rem;
}
.proc-card--featured .proc-card-name { color: var(--cream); }
.proc-card-desc {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--brown);
  flex: 1;
  margin-bottom: 1.5rem;
}
.proc-card--featured .proc-card-desc { color: rgba(232,217,197,.75); }
.proc-card-cta {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: gap .3s;
}
.proc-card-cta:hover { gap: .8rem; }
.proc-cta-wrap {
  text-align: center;
  margin-top: 4rem;
}

/* ─── CONTATO PAGE ───────────────────────────────────────── */
.contato-page {
  background: var(--white);
  padding: clamp(4rem, 8vw, 8rem) var(--page-margin);
}
.contato-page-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contato-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.contato-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--light-beige);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.contato-info-card:hover {
  border-color: var(--beige);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(122,92,64,.08);
}
.contato-info-card--wa {
  background: linear-gradient(135deg, #e8f8ed 0%, #f5faf7 100%);
  border-color: rgba(37,211,102,.25);
}
.contato-info-card--wa:hover {
  border-color: rgba(37,211,102,.5);
  box-shadow: 0 4px 20px rgba(37,211,102,.15);
}
.contato-info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(184,147,90,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-info-card--wa .contato-info-card-icon { background: rgba(37,211,102,.15); }
.contato-info-card--wa .contato-info-card-icon i { color: #25d366; font-size: 1.3rem; }
.contato-info-card-icon i { color: var(--gold); font-size: 1.1rem; }
.contato-info-card-body strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .35rem;
  font-weight: 500;
}
.contato-info-card-body p {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--text);
}
.contato-info-card-action {
  display: block;
  font-size: .78rem;
  color: #25d366;
  font-weight: 500;
  margin-top: .3rem;
}
.contato-info-card-note {
  display: block;
  font-size: .78rem;
  color: var(--warm);
  margin-top: .3rem;
}
.contato-social-wrap { margin-top: 1.5rem; }
.contato-social-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  display: block;
}
.contato-social-links { display: flex; gap: .8rem; flex-wrap: wrap; }
.contato-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  border: 1px solid var(--beige);
  border-radius: 8px;
  font-size: .82rem;
  color: var(--brown);
  text-decoration: none;
  transition: all .3s;
}
.contato-social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,147,90,.05); }
.contato-social-btn i { font-size: 1rem; }

/* MAPA + FORMULÁRIO lado direito */
.contato-page-right {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* FORMULÁRIO */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--light-beige);
  border: 1px solid var(--beige);
  border-radius: 8px;
  padding: .9rem 1.1rem;
  font-family: var(--ff-body);
  font-size: .92rem;
  color: var(--text);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
  cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,147,90,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a5c40' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.contato-form-btn {
  width: 100%;
  justify-content: center;
  font-size: .85rem;
}

/* ─── RESPONSIVE PÁGINAS INTERNAS ───────────────────────── */
@media (max-width: 900px) {
  .sobre-page-container { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-page-badge { right: 1rem; }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-page-container { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .valores-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding-top: 7rem; min-height: auto; }
}

/* ─── SERVICOS CTA WRAP (index) ──────────────────────────── */
.servicos-cta-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

/* ─── CONTATO INFO CARDS - DARK VARIANT (index) ─────────── */
.contato-info-cards--dark .contato-info-card--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(184,147,90,.15);
}
.contato-info-cards--dark .contato-info-card--dark:hover {
  border-color: rgba(184,147,90,.4);
  background: rgba(255,255,255,.1);
}
.contato-info-cards--dark .contato-info-card--dark .contato-info-card-icon {
  background: rgba(184,147,90,.15);
}
.contato-info-cards--dark .contato-info-card--dark .contato-info-card-body strong {
  color: rgba(232,217,197,.7);
}
.contato-info-cards--dark .contato-info-card--dark .contato-info-card-body p {
  color: rgba(232,217,197,.85);
}
.contato-info-cards--dark .contato-info-card--dark .contato-info-card-note {
  color: rgba(200,168,130,.6);
}

/* Compact proc-card for index servicos section */
.servicos-grid .proc-card {
  padding: 1.6rem;
}
.servicos-grid .proc-card-num {
  font-size: 2.5rem;
  margin-bottom: .3rem;
}
.servicos-grid .proc-card-name {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.servicos-grid .proc-card-desc {
  font-size: .83rem;
  margin-bottom: 0;
}
