
/* ===== Design tokens — paleta oficial ===== */
:root{
  --taupe:#A67B6A;
  --nude:#BB9C87;
  --paper:#F7F2EF;
  --rose:#D4AFA7;
  --gold:#CBA135;
  --text:#2B1C11;
  --muted:#6E5B52;
  --radius:16px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --container:1120px;
  --display:'Arches','Fraunces','Playfair Display',serif;
  --ui:'Montserrat',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family:var(--ui);
  line-height:1.55;
  /* Fundo global mais evidente (sai do branco chapado) */
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 20px}

/* ===== Navbar ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(166, 123, 106, 0.9); /* cor sólida da home com 90% de opacidade */
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid #bd9e90;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;           /* altura fixa da navbar */
  padding: 40px 20px;        /* remove padding vertical, só lateral */
  overflow: visible;      /* permite que a logo ultrapasse o container */
}

.brand{display:flex;align-items:center;gap:12px}
.brand img {
  height: 150px;
  margin-top: -5px;
  margin-left: 0px; /* garante que não tenha espaçamento extra */
}
.brand-text{display:flex;flex-direction:column;line-height:1}
.brand-text strong{font-weight:700}
.brand-text small{color:var(--muted);font-weight:600}
.nav-links{display:flex;gap:20px}
.nav-links a{padding:10px 8px;border-radius:10px;color:var(--paper);font-weight:600}
.nav-links a:hover{color:var(--gold)}
.nav-cta{display:flex;align-items:center;gap:12px}
.menu-btn{display:none;background:none;border:0;font-size:22px}

/* ===== Buttons ===== */
.btn{display:inline-flex;align-items:center;gap:10px;font-weight:700;border-radius:999px;padding:12px 18px;border:2px solid transparent;transition:.2s box-shadow,.2s transform}
.btn i{font-size:1.05em}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--taupe);color:#fff;border-color:var(--taupe)}
.btn-primary:hover{box-shadow:var(--shadow)}
.btn-outline{background:var(--taupe);border-color:var(--taupe);color:#fff}
.btn-outline:hover{background:var(--taupe);color:#fff}

/* ===== HERO SECTION (Versão Cor Principal) ===== */
/* ===== HERO SECTION (Versão Compacta Ajustada) ===== */
.hero {
  position: relative;
  background-color: #A67B6A;
  
  /* DIMINUI O PADDING (Antes era 80px) */
  /* Isso puxa o conteúdo para cima e remove espaço extra em baixo */
  padding: 30px 0 40px 0; 
  
  overflow: hidden;
  
  display: flex;
  align-items: center; /* Mantém centralizado verticalmente */
  
  /* DIMINUI A ALTURA MÍNIMA (Antes era 85vh) */
  /* 75vh significa 75% da altura da tela. Ideal para ver tudo sem rolar. */
  min-height: 75vh; 
}

/* --- CAMADA 1: O PADRÃO (PRANCHETA) --- */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
  
  background-image: url('./imagem/prancheta.png');
  background-size: 280px; /* Reduzi levemente o tamanho do padrão */
  background-repeat: repeat;
  
  opacity: 0.15;
  z-index: 0;
  
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 80%, transparent 100%);
}

/* --- CAMADA 2: A MANCHA DE LUZ --- */
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  
  /* Ajustei o tamanho da mancha para a nova altura */
  width: 600px; 
  height: 600px;
  border-radius: 50%;
  
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle, 
    rgba(212, 175, 167, 0.4) 0%, 
    rgba(166, 123, 106, 0) 70%
  );
  pointer-events: none;
}

/* --- CONTEÚDO --- */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px; /* Reduzi o espaço entre texto e foto */
  align-items: center;
}

/* --- TEXTOS --- */
.hero h1 {
  color: #FFFFFF;
  font-family: 'Fraunces', serif;
  /* Ajustei levemente o tamanho da fonte para telas menores */
  font-size: clamp(2.2rem, 4vw, 3.2rem); 
  line-height: 1.1;
  margin-bottom: 20px; /* Menos espaço abaixo do título */
}

.eyebrow {
  color: #F7F2EF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
}

.lead {
  color: #F7F2EF;
  font-size: 1.05rem;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 95%;
}

/* Ajuste nos botões */
.hero .btn-outline {
  color: #fff;
  border-color: #fff;
}
.hero .btn-outline:hover {
  background: #fff;
  color: #A67B6A;
}

/* --- RESPONSIVO --- */
@media (max-width: 900px) {
  .hero { 
    min-height: auto; /* No celular deixa a altura automática */
    padding-top: 40px; 
    padding-bottom: 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .lead { margin: 0 auto 24px auto; }
  .hero-actions { justify-content: center; }
  
  .hero::before { width: 100%; opacity: 0.1; }
  .hero::after { left: 50%; width: 350px; height: 350px; }
}
/* ===== AJUSTE DOS BOTÕES NO HERO ===== */

/* Botão do WhatsApp (com borda branca agora) */
.hero .btn-primary {
  border: 2px solid #ffffff; /* Adicion/* ===== SEÇÃO SOBRE LUXO ===== */
.sobre-luxury {
  background-color: #F7F2EF; /* Fundo "Paper" (Off-white da paleta) */
  padding: 100px 0;
  position: relative;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- EFEITO DA FOTO (Moldura deslocada) --- */
.sobre-media {
  position: relative;
  z-index: 1;
  padding-left: 20px; /* Espaço para o decorativo */
}

/* O quadrado rosa atrás da foto */
.sobre-bg-decor {
  position: absolute;
  top: -20px;
  left: 0;
  width: 80%;
  height: 90%;
  background-color: #D4AFA7; /* Rosa da paleta */
  border-radius: 12px;
  z-index: -1; /* Fica atrás da foto */
}

.sobre-photo {
  width: 100%;
  max-width: 450px;
  border-radius: 12px; /* Bordas suaves */
  box-shadow: 0 15px 40px rgba(74, 59, 50, 0.15); /* Sombra elegante */
  display: block;
}

/* O Selo Flutuante (CRN) */
.badge-autoridade {
  position: absolute;
  bottom: 30px;
  right: 10px; /* Fica "saindo" da foto */
  background: #fff;
  padding: 15px 25px;
  border-left: 4px solid #CBA135; /* Detalhe Dourado */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.badge-autoridade .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
}

.badge-autoridade .numero {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: #4A3B32;
  font-weight: 700;
}

/* --- TEXTOS --- */
.sobre-content .sobre-tag {
  color: #A67B6A; /* Taupe */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.sobre-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: #4A3B32;
  line-height: 1.1;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 1.2rem;
  color: #A67B6A; /* Destaque no primeiro parágrafo */
  margin-bottom: 20px;
  font-weight: 500;
}

.sobre-content p {
  color: #6E5B52;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Link com seta */
.link-destaque {
  display: inline-block;
  color: #4A3B32;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #CBA135; /* Sublinhado dourado */
  padding-bottom: 4px;
  transition: 0.3s;
  margin-top: 10px;
}
.link-destaque:hover {
  color: #A67B6A;
  border-color: #A67B6A;
}

/* --- RESPONSIVO --- */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sobre-media {
    order: 1; /* Foto primeiro no celular? Ou texto? (Normalmente foto) */
    text-align: center;
    padding-left: 0;
  }
  .sobre-bg-decor {
    left: 10%; /* Centraliza o decorativo */
  }
  .sobre-photo {
    margin: 0 auto;
  }
  .sobre-content h2 {
    font-size: 2.2rem;
  }
  .badge-autoridade {
    right: 5%;
  }
}a a borda branca */
  background-color: transparent; /* Deixa transparente igual ao do email (opcional, se quiser sólido apague essa linha) */
  color: #ffffff;
}

.hero .btn-primary:hover {
  background-color: #ffffff; /* Fica branco ao passar o mouse */
  color: #A67B6A; /* Texto vira marrom/taupe */
  border-color: #ffffff;
}

/* Garante que o botão de email continue igual */
.hero .btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.hero .btn-outline:hover {
  background-color: #ffffff;
  color: #A67B6A;
}

/* ===== Sobre mim ===== */
/* ===== SEÇÃO SOBRE LUXO ===== */
.sobre-luxury {
  background-color: #F7F2EF; /* Fundo "Paper" (Off-white da paleta) */
  padding: 100px 0;
  position: relative;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* --- EFEITO DA FOTO (Moldura deslocada) --- */
.sobre-media {
  position: relative;
  z-index: 1;
  padding-left: 20px; /* Espaço para o decorativo */
}

/* O quadrado rosa atrás da foto */
.sobre-bg-decor {
  position: absolute;
  top: -20px;
  left: 0;
  width: 80%;
  height: 90%;
  background-color: #D4AFA7; /* Rosa da paleta */
  border-radius: 12px;
  z-index: -1; /* Fica atrás da foto */
}

.sobre-photo {
  width: 100%;
  max-width: 450px;
  border-radius: 12px; /* Bordas suaves */
  box-shadow: 0 15px 40px rgba(74, 59, 50, 0.15); /* Sombra elegante */
  display: block;
}

/* O Selo Flutuante (CRN) */
.badge-autoridade {
  position: absolute;
  bottom: 30px;
  right: 10px; /* Fica "saindo" da foto */
  background: #fff;
  padding: 15px 25px;
  border-left: 4px solid #CBA135; /* Detalhe Dourado */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.badge-autoridade .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
}

.badge-autoridade .numero {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: #4A3B32;
  font-weight: 700;
}

/* --- TEXTOS --- */
.sobre-content .sobre-tag {
  color: #A67B6A; /* Taupe */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.sobre-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: #4A3B32;
  line-height: 1.1;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 1.2rem;
  color: #A67B6A; /* Destaque no primeiro parágrafo */
  margin-bottom: 20px;
  font-weight: 500;
}

.sobre-content p {
  color: #6E5B52;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Link com seta */
.link-destaque {
  display: inline-block;
  color: #4A3B32;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #CBA135; /* Sublinhado dourado */
  padding-bottom: 4px;
  transition: 0.3s;
  margin-top: 10px;
}
.link-destaque:hover {
  color: #A67B6A;
  border-color: #A67B6A;
}

/* --- RESPONSIVO --- */
@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sobre-media {
    order: 1; /* Foto primeiro no celular? Ou texto? (Normalmente foto) */
    text-align: center;
    padding-left: 0;
  }
  .sobre-bg-decor {
    left: 10%; /* Centraliza o decorativo */
  }
  .sobre-photo {
    margin: 0 auto;
  }
  .sobre-content h2 {
    font-size: 2.2rem;
  }
  .badge-autoridade {
    right: 5%;
  }
}
/* Especialidades: nude + paper com manchas radiais */
/* ===== Seção Especialidades ===== */
/* ===== Seção Especialidades ===== */
.section-especiais {
  background: var(--taupe);
  padding: 20px 0; /* aumentei para dar mais respiro (antes era 80px) */
  position: relative;
}

/* textura de fundo continua */
.section-especiais::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23bda89f' fill-opacity='0.15'/%3E%3C/svg%3E");
  opacity: .3;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* centraliza o cabeçalho da seção */
.section-especiais .section-head {
  color: var(--paper);
  text-align: center;
  max-width: 400px;
  margin: 0 auto 50px auto; /* centraliza e dá espaço abaixo */
}

.section-especiais .section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1px;
  color: var(--paper)
}

.section-especiais .section-head p {
  font-size: 1.1rem;
  color: var(--paper);
}

/* cards continuam iguais */
.especial-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(189, 158, 144, 0.35);
  border-radius: 18px;
  padding: 20px 80px;
  backdrop-filter: blur(6px) saturate(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.especial-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(189,158,144,0.35);
  border-radius: 18px;
  padding: 20px 18px;
  backdrop-filter: blur(6px) saturate(1.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: center;
}

.especial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
 
}
.grid.card-grid h3 {
  color: var(--taupe);
}
.badge-emoji {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 26px;
  margin: 0 auto 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.75)),
    linear-gradient(135deg, rgba(166,123,106,.25), rgba(189,158,144,.25));
  border: 1px solid rgba(166,123,106,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 6px 14px rgba(0,0,0,.06);
}

.badge-emoji i {
  color: var(--taupe);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1000px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .badge-emoji { width: 52px; height: 52px; font-size: 24px; }
}

/* ===== Espaço de Atendimento ===== */
.section.space {
  background-color: #ffffff; /* Rosa escuro fixo */
  text-align: center; /* Centraliza título e descrição */
   padding: 60px 0 80px; /* ↑ padding extra na parte inferior */
}

.section.space .section-head h2 {
  color: var(--taupe); /* Dourado */
}

.section.space .section-head p {
  color: var(--taupe); /* Branco para contraste no fundo rosa */
}

/* ===== Agendamento ===== */
.section.booking {
  background: linear-gradient(180deg, #8d5845 0%, #5e4e49 100%);
  padding: 60px 0;
}

.section.booking .section-head {
  text-align: center;
  margin-bottom: 24px;
  color: var(--paper);
}

.section.booking .section-head h2 {
  margin-top: 0;
}

.section.booking .section-head p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--paper);
}
/* ===== Formulário dentro da seção de Agendamento ===== */
.section.booking .form {
  background-color: #8C6456; /* Nude suave */
  border: 1.2px solid #e0d4ce;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

/* Títulos dos campos em nude mais escuro */
.section.booking .field label {
  color: #ffffff; /* Nude mais escuro para contraste */
  font-weight: 600;
}

/* ===== Contato ===== */
#contato.section {
  background-color: #5E4E49; /* Cor de fundo personalizada */
  padding: 70px 0;
}

#contato .section-head h2 {
  color: #fff; /* Branco para bom contraste no fundo escuro */
}

#contato .section-head p {
  color: rgba(255, 255, 255, 0.85); /* Texto levemente mais claro */
}
/* ===== Cards / Grids ===== */
.grid{display:grid;gap:18px}
.card-grid{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.card{background:#fff;border:1px solid #eadfda;border-radius:var(--radius);padding:20px;box-shadow:var(--shadow);transition:transform .2s, box-shadow .2s}
.card:hover{transform:translateY(-4px);box-shadow:0 14px 40px rgba(0,0,0,.08)}
.card h3{margin:0 0 .4rem;font-family:var(--display);font-size:1.2rem}
.card p{margin:0;color:var(--muted)}

/* ===== Boomerang gallery ===== */
.boomerang{display:flex;align-items:center;gap:12px;justify-content:center}
.boom-viewport{position:relative;width:min(680px,92vw);height:400px;border-radius:16px;overflow:hidden;border:1px solid #eadfda;box-shadow:var(--shadow);background:#fff}
.boom-slide{position:absolute;inset:0;opacity:0;transition:opacity .5s ease;object-fit:cover;width:100%;height:100%}
.boom-slide.active{opacity:1}
.boom-arrow{background:#fff;border:1px solid #eadfda;border-radius:999px;width:44px;height:44px;display:grid;place-items:center;cursor:pointer}
.boom-arrow:hover{box-shadow:var(--shadow)}

/* ===== Form / contato ===== */
.form{background: var(--nude);border:1.2px solid #eadfda;border-radius:var(--radius);padding:22px;box-shadow:var(--shadow)}
.row{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.field{display:flex;flex-direction:column;gap:8px}
.field label{font-weight:600}
.field input,.field textarea,.field select{border:1.6px solid #eadfda;border-radius:12px;padding:12px 14px;font:inherit;color:var(--text);background:#fff}
.field input:focus,.field textarea:focus,.field select:focus{outline:none;border-color:var(--taupe)}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
/* ===== Contato ===== */
#contato .section-head h2 {
  color: var(--paper); /* Usa a cor taupe definida no seu design system */
  /* (Opcional) Centraliza para mais harmonia */
  margin-bottom: 24px;
}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.contact-card{background:#fff;border:1px solid #eadfda;border-radius:var(--radius);padding:18px;box-shadow:var(--shadow)}

/* ===== Footer ===== */
/* ===== Footer ===== */
.footer {
  background: var(--rose); /* Torna o fundo transparente */
  border-top: none; /* Remove a linha superior */
  padding: 36px 0;
  color: var(--muted); /* Mantém a cor do texto */
}

.footer a {
  color: var(--taupe);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr;gap:24px}
  .row{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 860px){
  .nav-links{display:none}
  .menu-btn{display:block}
  .nav-links.open{
    display:flex;flex-direction:column;position:absolute;left:0;right:0;top:80px;padding:10px 16px;gap:8px;background:#fff;border-bottom:1px solid #eadfda
  }
}
/* ======== MOBILE: esconder foto do "Sobre mim" ======== */
/* ajuste o seletor conforme seu HTML: #sobre .about-photo ou .hero-img */
@media (max-width: 980px){
  #sobre .about-photo,
  #sobre .hero-img {
    display: none !important;
  }
}

/* ===== NAV: DESKTOP (>=861px) ===== */
@media (min-width: 861px){
  .nav-links{ display: flex; gap: 16px; align-items: center; }
  .menu-btn{ display: none; } /* esconde os 3 pontinhos no desktop */
}

/* ===== NAV: MOBILE (<=860px) ===== */
@media (max-width: 860px){
  /* Barra de navegação básica */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid #eadfda;
  }

  /* Esconde todos os links da nav no estado fechado */
  .nav-links {
    display: none !important;
  }

  /* Menu aberto (dropdown) */
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    color: var(--text);
    border-bottom: 1px solid #eadfda;
    padding: 12px 16px;
    gap: 10px;
    z-index: 102;
  }

  /* Garante contraste do texto dentro do dropdown */
  .nav-links.open a {
    color: var(--text);
  }

  /* Esconde apenas o link de agendamento */
  .nav-links a[href*="#agendamento"],
  .nav-cta-agendar,
  .nav-left {
    display: none !important;
  }

  /* Esconde qualquer botão dentro do container da nav-cta (mas mantém o container ativo para menu-btn) */
  .nav-cta a,
  .nav-cta button {
    display: none !important;
  }

  /* Mantém o container que segura os 3 pontinhos */
  .nav-cta,
  .nav-right {
    display: flex !important;
    align-items: center;
  }

  /* Botão (3 pontinhos) visível e no canto direito */
  .menu-btn {
    display: inline-flex !important;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    font-size: 22px;
    cursor: pointer;
    color: var(--text);
  }

  /* Centraliza a logo */
  .nav-brand,
  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 64px;
    margin: 0;
  }
}
/* ======== BOTÃO WHATSAPP FLUTUANTE (desktop + mobile) ======== */
.whatsapp-float {
  position: fixed;
  right: 16px; bottom: 16px;
  width: 56px; height: 56px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--rose); color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  z-index: 999;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.whatsapp-float:hover { 
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.whatsapp-float i { font-size: 24px; line-height: 1; }

/* ===== ESPECIALIDADES (FUNDO ESCURO + ONDAS) ===== */
.especialidades-luxury {
  /* Fundo Rosa Queimado/Taupe (Mesma cor das ondas) */
  background-color: #A67B6A; 
  
  /* Padding zerado na seção para as ondas encostarem nas bordas sem espaços brancos */
  padding: 0; 
  position: relative;
}

/* --- CABEÇALHO E TEXTOS (Ajuste de Contraste) --- */
/* Força o título a ficar BRANCO para ler no fundo escuro */
.especialidades-luxury h2,
.text-contrast h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  color: #FFFFFF; 
  margin-bottom: 15px;
}

/* Força o parágrafo a ficar CLARO */
.especialidades-luxury p,
.text-contrast p {
  color: #F7F2EF; /* Off-white */
  opacity: 0.9;
}

/* O texto "Excelência Técnica" agora fica claro também */
.eyebrow-gold {
  color: #F7F2EF; 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

.center-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* --- CONFIGURAÇÃO DAS ONDAS --- */
.wave-divider img {
  width: 100%;
  display: block;
  height: auto;
}

.wave-top img {
  transform: scaleY(-1); /* Inverte a onda para o topo */
  margin-bottom: -1px; /* Remove linha branca indesejada */
}

.wave-bottom img {
  margin-top: -1px; /* Remove linha branca indesejada */
}

/* ===== GRID E CARDS ===== */
.grid-luxury {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  
  /* Espaçamento interno para o conteúdo não colar nas ondas */
  padding: 40px 20px; 
}

/* --- ESTILO DOS CARDS (Mantidos Brancos para contraste) --- */
.card-lux {
  background: #FDFBF9; /* Fundo claro do card */
  border: 1px solid #F0E6E2;
  padding: 40px 30px;
  border-radius: 8px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-lux:hover {
  transform: translateY(-10px);
  /* Sombra mais forte para destacar no fundo escuro */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); 
  border-color: transparent;
}

/* Barra dourada inferior do card */
.card-lux::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #CBA135, #E5CE89);
  transition: width 0.4s ease;
}

.card-lux:hover::after {
  width: 100%;
}

/* Ícone */
.icon-box {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border: 1px solid #EFE5E0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: #A67B6A; /* Ícone na cor da marca */
  transition: 0.3s;
}

.card-lux:hover .icon-box {
  background-color: #A67B6A;
  color: #ffffff;
  border-color: #A67B6A;
}

/* Textos INTERNOS do Card (Devem ser escuros pois o card é branco) */
.card-lux h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: #4A3B32; /* Título do card escuro */
  margin-bottom: 15px;
}

.card-lux p {
  color: #6E5B52; /* Texto do card marrom café */
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #CBA135;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: 0.3s;
}

.card-link:hover {
  color: #A67B6A;
  padding-left: 5px;
}
/* ===== SEÇÃO ESPAÇO LUXURY (Efeito Foco) ===== */
.space-luxury {
  background-color: #F7F2EF; /* Fundo claro para contraste com a seção anterior */
  padding: 100px 0;
  overflow: hidden; /* Importante para as imagens não vazarem da tela */
}

.boomerang-wrapper {
  position: relative;
  max-width: 1200px; /* Largura máxima do carrossel */
  margin: 40px auto 0;
  height: 450px; /* Altura da área do slider */
  display: flex;
  align-items: center;
}

/* O trilho que se move (O JS vai mexer nisso aqui) */
.boomerang-track {
  display: flex;
  align-items: center;
  gap: 20px; /* Espaço entre as fotos */
  
  position: absolute;
  left: 50%; /* Começa no meio */
  transform: translateX(-50%); /* Centraliza o ponto inicial */
  transition: transform 0.5s ease-in-out; /* Movimento suave */
}

/* --- O SLIDE (Estado Normal = Desfocado) --- */
.boom-slide {
  /* Tamanho base das imagens laterais */
  width: 350px; 
  height: 250px;
  
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0; /* Garante que não amassem */
  
  /* O EFEITO DE DESFOQUE */
  filter: blur(4px) grayscale(40%) brightness(0.8); /* Desfoque, um pouco cinza e mais escuro */
  transform: scale(0.9); /* Um pouco menor */
  opacity: 0.6; /* Meio transparente */
  
  transition: all 0.5s ease-in-out; /* Transição suave para o estado focado */
  cursor: pointer;
}

/* --- O SLIDE ATIVO (Estado Focado = Central) --- */
.boom-slide.active {
  /* Tamanho maior */
  width: 550px;
  height: 400px;
  
  /* REMOVE OS EFEITOS */
  filter: blur(0) grayscale(0%) brightness(1); /* Nítido, colorido e brilhante */
  transform: scale(1); /* Tamanho real */
  opacity: 1;
  
  box-shadow: 0 25px 50px rgba(0,0,0,0.2); /* Sombra para destacar */
  z-index: 10; /* Fica na frente dos outros */
}

/* Botões de Navegação */
.boom-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.8);
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #A67B6A;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.boom-btn:hover { background: #A67B6A; color: #fff; }
.boom-btn.prev { left: 20px; }
.boom-btn.next { right: 20px; }

/* Responsivo para celular */
@media (max-width: 768px) {
  .boomerang-wrapper { height: 350px; }
  .boom-slide { width: 200px; height: 150px; }
  .boom-slide.active { width: 300px; height: 250px; }
  .boom-btn { display: none; } /* Esconde botões no celular, ideal seria habilitar touch swipe */
}

/* ===== GALERIA NOVA (BLINDADA) ===== */

/* Força a seção a ter altura e cor */
#espaco.secao-galeria-nova {
  display: block !important;
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

#espaco .galeria-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px; /* Altura FORÇADA para a foto não sumir */
  margin-top: 40px;
  overflow: hidden; /* Esconde o que sai da tela */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* O Trilho que segura as fotos */
/* CORREÇÃO DO POSICIONAMENTO (CSS) */
#espaco .galeria-track {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  
  /* O ERRO ESTAVA AQUI: Antes estava 50%, mude para 0 */
  left: 50%; 
  
  /* Removemos o translate do CSS para o Javascript controlar sozinho */
  transform: none; 
  
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  width: max-content; /* Garante espaço para todas as fotos */
}

/* O Cartão da Foto (Container individual) */
#espaco .foto-card {
  width: 300px; /* Largura fixa */
  height: 200px; /* Altura fixa */
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s ease;
  
  /* Estado normal: pequeno e meio apagado */
  opacity: 0.5;
  transform: scale(0.9);
  filter: grayscale(100%);
}

/* A Imagem dentro do cartão */
#espaco .foto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ESTADO ATIVO (FOTO DO MEIO) */
#espaco .foto-card.active {
  width: 500px !important; /* Força tamanho maior */
  height: 350px !important;
  opacity: 1;
  transform: scale(1);
  filter: grayscale(0%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  z-index: 20;
}

/* Botões */
#espaco .nav-btn-galeria {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: #fff;
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  color: #A67B6A;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#espaco .nav-btn-galeria.prev { left: 20px; }
#espaco .nav-btn-galeria.next { right: 20px; }

/* Celular */
@media (max-width: 768px) {
  #espaco .galeria-wrapper { height: 400px; }
  #espaco .foto-card { width: 150px; height: 100px; }
  #espaco .foto-card.active { width: 300px; height: 220px; }
}

/* ===== SEÇÃO CONTATO (MESMA COR DAS ONDAS) ===== */
/* ===== CORREÇÃO DE COR: CONTATO IGUAL À ONDA ===== */
.contato-luxury {
  /* Usei !important para garantir que essa cor prevaleça sobre qualquer outra antiga */
  background-color: #A67B6A !important; 
  padding: 0 0 80px 0;
  color: #fff;
  position: relative;
  margin-top: -2px; /* Puxa a seção um tiquinho pra cima pra colar na onda */
}

/* O resto do CSS continua igual, só precisávamos forçar a cor acima */
.wave-top img {
  transform: scaleY(-1);
  display: block; /* Remove espaços fantasmas */
  width: 100%;
}

.contact-wrapper-lux {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

/* --- TEXTOS E TIPOGRAFIA --- */
.contact-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-desc {
  color: #F7F2EF;
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 450px;
}

.eyebrow-gold {
  color: #F7F2EF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 10px;
}

/* --- ÍCONES --- */
.icon-circle {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15); /* Um pouco mais visível */
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; 
  align-items: center; justify-content: center;
  color: #FFFFFF;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-item:hover .icon-circle {
  background: #FFFFFF;
  color: #A67B6A; /* Ícone fica da cor do fundo ao passar o mouse */
  border-color: #FFFFFF;
}

/* --- LISTA DE CONTATOS --- */
.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  text-decoration: none;
}

/* --- MAPA --- */
.contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
}

/* --- RODAPÉ INTEGRADO (Mesma cor) --- */
.footer {
  background-color: #A67B6A !important; /* Garante a continuidade */
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

/* Responsivo */
@media (max-width: 900px) {
  .contact-wrapper-lux {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-text { text-align: center; }
  .contact-desc { margin: 0 auto 40px auto; }
  .contact-item { justify-content: center; text-align: left; }
  .contact-map iframe { height: 300px; }
}
/* ========================================================= */
/* BLOCO FINAL DE CORREÇÕES V3 (ONDAS VISÍVEIS)             */
/* ========================================================= */

/* --- 1. GALERIA HÍBRIDA (PC GRANDE / CELULAR AJUSTADO) --- */
#espaco.secao-galeria-nova {
  display: block !important;
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

#espaco .galeria-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin-top: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#espaco .galeria-track {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

#espaco .foto-card {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0.5;
  transform: scale(0.9);
  filter: grayscale(100%);
  margin: 0;
}

#espaco .foto-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

#espaco .foto-card.active {
  width: 500px !important;
  height: 350px !important;
  opacity: 1;
  transform: scale(1);
  filter: grayscale(0%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  z-index: 20;
}

/* --- 2. AGENDAMENTO (FUNDO BRANCO) --- */
#agendamento {
  background: #FFFFFF !important; 
  background-image: none !important;
  border: none !important;
  /* Espaço embaixo para a onda subir sem cobrir o botão */
  padding: 80px 0 250px 0 !important; 
  position: relative;
  
  /* CORREÇÃO AQUI: Z-index MENOR para a onda do contato passar por cima */
  z-index: 1 !important; 
}

#agendamento .section-head h2,
#agendamento .section-head p {
  color: #4A3B32 !important;
  text-shadow: none !important;
}

/* CARD DO FORMULÁRIO (TAUPE) */
#agendamento .form {
  background-color: #A67B6A !important;
  border: none !important;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important; 
  width: 100%;
}

#agendamento label {
  color: #FFFFFF !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

#agendamento input,
#agendamento select,
#agendamento textarea {
  background-color: #FFFFFF !important;
  border: 1px solid transparent !important;
  color: #333 !important;
  border-radius: 12px;
}

#agendamento input:focus,
#agendamento select:focus,
#agendamento textarea:focus {
  background-color: #FFF !important;
  border: 2px solid #4A3B32 !important;
  outline: none;
}

#agendamento .btn-primary {
  background-color: #4A3B32 !important; 
  color: #FFFFFF !important;
  border: none !important;
  width: 100%;
  justify-content: center;
  margin-top: 15px;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

#agendamento .btn-outline { display: none !important; }

/* --- 3. CONTATO & ONDA (CORREÇÃO DE Z-INDEX) --- */
.contato-luxury {
  position: relative;
  background-color: #A67B6A !important;
  margin-top: 0 !important;
  
  /* CORREÇÃO AQUI: Z-index MAIOR que o agendamento para a onda aparecer */
  z-index: 10 !important; 
}

/* A ONDA FLUTUANTE */
.wave-divider.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  /* Sobe a onda para cima da parte branca */
  transform: translateY(-99%);
  
  z-index: 20;
  line-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none; 
}

.wave-divider.wave-top img {
  display: block; width: 100%; height: auto;
}

/* --- 4. AJUSTES MOBILE --- */
/* ================================================================= */
/* BLOCO MESTRE: CORREÇÃO DE LINHAS E MOBILE COMPLETO (FINAL)       */
/* ================================================================= */

/* --- 1. CORREÇÃO DA LINHA NO ESPAÇO DE ATENDIMENTO --- */
/* Isso força a seção branca a subir 1px e cobrir qualquer falha da onda anterior */
#espaco.secao-galeria-nova {
  margin-top: -2px !important; 
  padding-top: 80px; /* Mantém o espaço interno */
  position: relative;
  z-index: 5; /* Fica acima da falha da onda */
  background-color: #ffffff;
  display: block !important;
}

/* Ajuste da onda de baixo da seção anterior para garantir que não sobre espaço */
.wave-divider.wave-bottom {
  margin-bottom: -1px !important;
  display: block;
}

/* --- 2. CONFIGURAÇÕES GERAIS DE AGENDAMENTO (PC/BASE) --- */
#agendamento {
  background: #FFFFFF !important; 
  border: none !important;
  padding: 80px 0 250px 0 !important; /* Espaço para a onda de baixo */
  position: relative;
  z-index: 1 !important;
}

#agendamento .form {
  background-color: #A67B6A !important; /* Taupe */
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important; 
}
/* Textos do Agendamento */
#agendamento .section-head h2, #agendamento .section-head p { color: #4A3B32 !important; text-shadow: none !important; }
#agendamento label { color: #FFFFFF !important; font-weight: 700; font-size: 0.85rem; }
#agendamento input, #agendamento select, #agendamento textarea {
  background-color: #FFFFFF !important; border: 1px solid transparent !important; color: #333 !important; border-radius: 12px;
}
#agendamento .btn-primary {
  background-color: #4A3B32 !important; color: #FFFFFF !important; width: 100%; justify-content: center; margin-top: 15px; padding: 15px;
}
#agendamento .btn-outline { display: none !important; }

/* --- 3. CONFIGURAÇÕES GERAIS DE CONTATO (PC/BASE) --- */
.contato-luxury {
  background-color: #A67B6A !important;
  margin-top: 0 !important;
  z-index: 10 !important;
  position: relative;
}
/* Onda Flutuante do Contato */
.wave-divider.wave-top {
  position: absolute; top: 0; left: 0; width: 100%;
  transform: translateY(-99%); /* Sobe a onda */
  z-index: 20; pointer-events: none; margin: 0 !important;
}


/* ================================================================= */
/* 4. AJUSTE MOBILE GLOBAL (TODAS AS SEÇÕES) - 900PX PARA BAIXO     */
/* ================================================================= */
@media (max-width: 900px) {

  /* --- A. HERO (Topo do site) --- */
  .hero { min-height: auto; padding-top: 40px; padding-bottom: 60px; }
  .hero-inner {
    grid-template-columns: 1fr; /* Coluna única */
    text-align: center;
    gap: 40px;
  }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { justify-content: center; }
  
  /* --- B. SOBRE MIM --- */
  .sobre-grid {
    grid-template-columns: 1fr; /* Texto embaixo da foto */
    gap: 40px;
  }
  .sobre-media { padding-left: 0; text-align: center; }
  .sobre-photo { margin: 0 auto; max-width: 100%; }
  .sobre-bg-decor { left: 5%; width: 90%; }
  
  /* --- C. ESPECIALIDADES (Cards) --- */
  .grid-luxury {
    grid-template-columns: 1fr; /* Um card por linha */
    padding: 0 20px;
  }
  .card-lux { padding: 30px 20px; } /* Card mais compacto */

  /* --- D. ESPAÇO (Galeria) --- */
  #espaco .galeria-wrapper { height: 300px; }
  #espaco .galeria-track { gap: 15px !important; }
  #espaco .foto-card { width: 90px !important; min-width: 90px !important; height: 120px; }
  #espaco .foto-card.active { width: 280px !important; min-width: 280px !important; height: 220px !important; }

  /* --- E. AGENDAMENTO (Formulário) --- */
  #agendamento { padding-bottom: 120px !important; } /* Menos espaço branco embaixo */
  #agendamento .form { padding: 25px 20px !important; width: 100%; }
  #agendamento .row { display: flex; flex-direction: column; gap: 15px; } /* Inputs empilhados */
  #agendamento .section-head h2 { font-size: 2rem !important; }

  /* --- F. CONTATO & FOOTER --- */
  .contato-luxury {
    padding-top: 100px !important; /* Espaço para o texto sair de baixo da onda */
    padding-bottom: 50px !important;
  }
  .contact-wrapper-lux {
    display: flex; flex-direction: column; gap: 40px;
  }
  .contact-text { text-align: center; padding: 0; }
  .contact-item { flex-direction: column; text-align: center; gap: 10px; }
  .contact-map iframe { height: 250px !important; }
  
  /* Footer centralizado */
  .footer-inner { flex-direction: column; text-align: center; gap: 15px; }
}