/* assets/css/feedback.css — hero à esquerda + form à direita (card glass)
   Paleta: nude / branco / preto — Mantém Autography + Caviar
*/

/* ===== Variáveis ===== */
.feedback-page{
  --nude-50:#fbf8f5;
  --nude-100:#f4ede7;
  --nude-200:#e9ddd4;
  --ink:#0f1116;
  --ink-60:rgba(15,17,22,.6);
  --paper:#fff;
  --shadow:0 8px 30px rgba(0,0,0,.08);
  --radius:16px;
  --gap:18px;

  --glass:rgba(255,255,255,.92);
  --glass-bd:rgba(0,0,0,.10);
  --glass-blur:10px;
}

/* ===== Fundo com imagem + overlay suave ===== */
.feedback-page{
  position:relative; isolation:isolate; overflow:clip; background:var(--nude-50);
}
.feedback-page::before{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(243deg, rgb(255 255 255 / 45%) 0%, rgb(255 255 255 / 0%) 100%),
    radial-gradient(1200px 600px at 15% -10%, rgba(255,255,255,.22), transparent 60%),
    url(../images/backg.png) center/cover no-repeat;
  background-attachment:fixed;
}
@media (max-width:900px){
  .feedback-page::before{ background-attachment:scroll; }
}

/* ===== Hero (lado esquerdo) ===== */
.feedback-page .fbk-hero{ padding-top: clamp(28px, 6vw, 64px); }
.feedback-page .fbk-hero-inner{
  max-width:1200px; margin:0 auto; padding:32px 20px 0;
  display:grid;
  grid-template-columns: 1fr;            /* mobile */
}
@media (min-width:992px){
  .feedback-page .fbk-hero-inner{
    grid-template-columns: minmax(0,1fr) 560px; /* reserva espaço do form à direita */
    column-gap: 32px;
  }
}
.feedback-page .fbk-hero h1{
  font-size: clamp(40px,5vw,64px); line-height:1; margin:0;
  color:#000; text-shadow:0 2px 16px rgba(0,0,0,.12);
}
.feedback-page .fbk-hero p{
  margin:10px 0 24px; color:#000; max-width:58ch;
}

/* ===== Layout: seção inferior (onde vive o card do form) ===== */
.feedback-page .fbk-layout{
  max-width:1200px; margin:0 auto; padding: 0 20px 60px;
  display:grid; grid-template-columns: 1fr; gap:28px;
}
@media (min-width:992px){
  .feedback-page .fbk-layout{
    grid-template-columns: minmax(0,1fr) 560px; /* conteúdo | form */
    column-gap:32px;
    margin-top:-70px;            /* sobrepõe levemente o hero (efeito do exemplo) */
  }
}

/* Coluna do formulário sempre a direita no desktop */
.feedback-page .fbk-col-form{ grid-column: 1; }
@media (min-width:992px){
  .feedback-page .fbk-col-form{ grid-column: 2; }
}

/* Título acima do card */
.feedback-page .fbk-section-title{
  font-size: clamp(26px, 3vw, 32px);
  margin: 0 0 10px; text-align:center; color:#000;
}

/* ===== Card do formulário (glass) ===== */
.feedback-page .fbk-form{
  background: var(--glass);
  border:1px solid var(--glass-bd);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0,0,0,.12), var(--shadow);
  -webkit-backdrop-filter: blur(var(--glass-blur));
  backdrop-filter: blur(var(--glass-blur));
  padding: 22px 20px;
  position: relative;
}
/* linha sutil no topo (charme) */
.feedback-page .fbk-form::before{
  content:""; position:absolute; inset:0; pointer-events:none; border-radius:inherit;
  box-shadow:
    inset 0 2px 0 0 color-mix(in srgb, var(--nude-100) 65%, white),
    inset 0 0 0 1px var(--glass-bd);
}

/* ===== Campos ===== */
.feedback-page .fbk-row{ display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width:560px){
  .feedback-page .fbk-row{ grid-template-columns:1fr 1fr; }
}
.feedback-page .fbk-field{ margin-bottom:14px; }
.feedback-page .fbk-field label{
  display:block; margin-bottom:6px; color:#111;
  font-weight:600; letter-spacing:.2px;
}
.feedback-page .fbk-field input,
.feedback-page .fbk-field select,
.feedback-page .fbk-field textarea{
  width:97%; border:1px solid rgba(0,0,0,.14);
  border-radius:10px; padding:12px 12px;
  background:#fff; color:var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.feedback-page .fbk-field input:hover,
.feedback-page .fbk-field select:hover,
.feedback-page .fbk-field textarea:hover{ border-color:#d9c6b6; }
.feedback-page .fbk-field input:focus,
.feedback-page .fbk-field select:focus,
.feedback-page .fbk-field textarea:focus{
  outline:none; border-color:#d4a98a; box-shadow:0 0 0 3px rgba(212,169,138,.25);
}
.feedback-page .fbk-field textarea{ resize:vertical; }
.feedback-page .fbk-help{ margin-top:6px; font-size:.9rem; color:var(--ink-60); }

/* ===== anti-spam (honeypot) ===== */
.feedback-page .fbk-hp{ position:absolute !important; left:-9999px !important; opacity:0 !important; }

/* ===== Estrelas (rating) ===== */
.feedback-page .fbk-rating legend{ margin-bottom:6px; color:#111; }
.feedback-page .fbk-stars-input{ display:inline-flex; flex-direction:row-reverse; gap:4px; }
.feedback-page .fbk-stars-input input{ display:none; }
.feedback-page .fbk-stars-input label{
  font-size:24px; cursor:pointer; color:#bbb;
  transition: transform .08s ease, color .12s ease;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.06));
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
}
.feedback-page .fbk-stars-input label:hover,
.feedback-page .fbk-stars-input label:hover ~ label{ color:#111; transform:scale(1.05); }
.feedback-page .fbk-stars-input input:checked ~ label{ color:#d4a98a; }

/* ===== Botão Submit (CTA nude) ===== */
.feedback-page .fbk-submit{
  width:100%; border:none; border-radius:999px; padding:12px 14px;
  background: linear-gradient(180deg, #dcb79a, #d4a98a);
  color:#111; font-weight:700; letter-spacing:.2px;
  box-shadow:0 10px 24px rgba(212,169,138,.35);
  cursor:pointer; transition: filter .15s ease, transform .06s ease;
}
.feedback-page .fbk-submit:hover{ filter:brightness(1.03); transform:translateY(-1px); }
.feedback-page .fbk-submit:active{ transform:translateY(0); filter:brightness(.98); }
.feedback-page .fbk-submit:disabled{ opacity:.65; cursor:not-allowed; box-shadow:none; }

/* ===== Mensagens ===== */
.feedback-page .fbk-success,
.feedback-page .fbk-error{
  display:none; margin-top:10px; padding:10px 12px; border-radius:10px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.feedback-page .fbk-success{ background: rgba(232,246,235,.9); border:1px solid #c6e6c6; }
.feedback-page .fbk-error{ background: rgba(253,238,238,.92); border:1px solid #f2c9c9; }

/* ===== Utilidades ===== */
.feedback-page .fbk-section-title + .fbk-form{ scroll-margin-top:90px; }

/* ===== Motion ===== */
@media (prefers-reduced-motion:reduce){
  .feedback-page::before,
  .feedback-page .fbk-submit,
  .feedback-page .fbk-stars-input label{ transition:none !important; }
}

/* ============ DETALHES (coluna esquerda) ============ */
.feedback-page .fbk-col-details { grid-column: 1; }
@media (max-width: 991.98px){
  .feedback-page .fbk-col-details { order: 2; } /* em mobile, detalhes abaixo do form */
}
@media (min-width: 992px){
  .feedback-page .fbk-col-details { align-self: start; }
}

.feedback-page .fbk-details-card{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 26px rgba(0,0,0,.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  margin-top: 51px;
}

.feedback-page .fbk-kicker{
  display:inline-block;
  font-size:.8rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  background: #dcb79a;
  color:#fff;
  border-radius:999px;
  padding:6px 10px;
  margin-bottom:10px;
}

.feedback-page .fbk-details-title{
  font-size: clamp(26px, 3vw, 36px);
  line-height:1.1;
  margin:0 0 6px;
  color:#000;
}
.feedback-page .fbk-details-lead{
  color:#000;
  margin:0 0 16px;
}

.feedback-page .fbk-callout{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 10px 12px;
  margin: 8px 0 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.feedback-page .fbk-link{ color:#111; text-decoration: none; }
.feedback-page .fbk-link:hover{ text-decoration: underline; }

/* Benefícios (grade com check) */
.feedback-page .fbk-benefits{
  display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px 16px;
  margin: 8px 0 18px;
}
@media (max-width:560px){
  .feedback-page .fbk-benefits{ grid-template-columns: 1fr; }
}
.feedback-page .fbk-benefit{
  position:relative; padding-left:24px; color:#111;
}
.feedback-page .fbk-benefit::before{
  content:"✔"; position:absolute; left:0; top:0; line-height:1; color:#b08767
}

/* Passos (1–3) */
.feedback-page .fbk-steps h3{
  margin: 6px 0 8px; font-size: 1rem; color:#111; font-weight:700;
}
.feedback-page .fbk-steps ol{
  list-style:none; margin:0; padding:0; display:grid; gap:10px;
}
.feedback-page .fbk-steps li{
  display:grid; grid-template-columns: 28px 1fr; gap:10px; align-items:start;
}
.feedback-page .fbk-steps .num{
  width:28px; height:28px; border-radius:50%;
  display:grid; place-items:center;
  background:#b08767; color:#fff; font-weight:700;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.feedback-page .fbk-steps p{ margin: 3px 0 0; color:#111; }

/* garante que o form continue à direita no desktop */
@media (min-width: 992px){
  .feedback-page .fbk-layout{
    grid-template-columns: minmax(0,1fr) 560px;
    column-gap: 32px;
    margin-top: -70px;
  }
  .feedback-page .fbk-col-form{ grid-column: 2; }
}










@font-face {
  font-family: 'Autography';
  src: url('../fonts/Autography.woff2') format('woff2'),
       url('../fonts/Autography.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}



@font-face {
  font-family: 'Caviar Dreams';
  src: url('../fonts/CaviarDreams.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


/* Fonte Caviar Dreams */


body {
  margin: 0;
  font-family: 'Caviar Dreams', sans-serif;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 40px;
  box-shadow: 0 4px 10px rgba(233, 214, 200, 0.8); /* sombra nude */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header .logo img {
  height: 100px;
}

/* Menu Links */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  text-decoration: none;
  color: #333;
  font-family: 'Caviar Dreams', sans-serif;
    font-weight: bold; /* 🔥 fonte sempre em bold */

  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links ul li a:hover {
  color: var(--hover-color);
  font-weight: bold;
  text-shadow: 0 0 1px var(--hover-color);
}


/* Botão de Contato */
.contact-button {
  background-color: var(--hover-color);
  color: #00000 !important;
  padding: 8px 16px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.contact-button:hover {
  background-color: #bb8559;
  transform: scale(1.05);
}

/* Menu hamburguer (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
  transition: all 0.3s ease;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 90px;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.active {
    display: block;
  }
}




.site-footer {
  background-color: #ffffff;
  color: #ffffff;
  padding: 40px 20px;
  font-family: 'Caviar Dreams', sans-serif;
  border-top: 3px solid #f6f1eb;
  text-align: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 20px;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.5rem;
  font-family: 'Autography', cursive;
  color: #000000;
}

.footer-brand img {
  height: 100px;
  border-radius: 8px;
  border: 2px solid #f6f1eb;
}

.footer-social a {
  color: #000000;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-social a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #f6f1eb;
  transition: width 0.3s ease;
}

.footer-social a:hover {
  color: #f6f1eb;
}

.footer-social a:hover::after {
  width: 100%;
}

.footer-bottom {
  font-size: 0.95rem;
  color: #000000;
  border-top: 1px solid #f6f1eb;
  padding-top: 15px;
}

/* Responsivo */
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-social {
    margin-top: 10px;
  }
}

.site-footer .footer-bottom p{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;           /* mude para space-between se quiser nas extremidades */
  margin:0;
  font-size:0.95rem;
}

.site-footer .footer-bottom .sep{
  opacity:.35;
}

.site-footer .footer-bottom .powered-by{
  font-size:.85rem;
  opacity:.65;
}

.site-footer .footer-bottom .powered-by a{
  color:inherit;                     /* acompanha a cor do footer */
  text-decoration:none;
  border-bottom:1px dotted currentColor;
  opacity:.9;
}

.site-footer .footer-bottom .powered-by a:hover{
  opacity:1;
  border-bottom-color: transparent;  /* remove o sublinhado pontilhado no hover */
}





.hero {
  height: 100vh;
  background: url('../images/backg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay {
      background: rgb(255 255 255 / 70%); /* escurece o fundo para legibilidade */

  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  color: #000; /* ⚠️ Agora os textos são pretos */
  max-width: 1000px;
  padding: 20px;
}

@keyframes disintegrate-in {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(60px) scale(1.2) skewY(10deg) rotateZ(3deg);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }

  60% {
    opacity: 1;
    filter: blur(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center; /* centraliza verticalmente */
  justify-content: center; /* centraliza horizontalmente */
  text-align: center;
  min-height: 100vh; /* altura total da tela */
  padding: 40px 20px; /* espaço interno */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6); /* overlay suave, ajustável */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* controle de espaçamento entre os elementos */
}

/* Título principal */
.hero-title {
  font-family: 'Autography', cursive;
  font-size: clamp(10rem, 8vw, 10rem); /* responsivo: min, preferido, max */
  margin: 0;
  line-height: 0.6; /* controla altura da linha */
  letter-spacing: 1px; /* mais refinado */
  color: #000;
  animation: disintegrate-in 2s ease-out 0.3s forwards;
}

/* Subtítulos */
.hero-subtitle {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: clamp(3.6rem, 2vw, 2rem);
  margin: 5px 0;
  line-height: 1.3;
  color: #000;
}

.hero-subtitle-secondary {
  font-size: clamp(2.5rem, 1.8vw, 1.6rem); /* controla só esse */
  font-weight: 300; /* mais leve, se quiser */
  margin-top: 5px; /* ajuste fino */
  color: #333; /* cor diferente se necessário */
  line-height: 1.4;
}



/* Botão CTA */
.cta-button {
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(90deg, #d4a373, #b07d5b);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(90deg, #b07d5b, #d4a373);
  transform: translateY(-3px);
}

/* Responsividade extra para telas pequenas */
@media (max-width: 768px) {
  .hero {
    padding: 20px;
  }
  .hero-content {
    gap: 10px;
  }
}


/* Botão com efeito pulsante */
.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 36px;
  background-color: var(--nude);
  color: #000;
  font-family: 'Caviar Dreams', sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* Animação */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(233, 214, 200, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(233, 214, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 214, 200, 0); }
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-title {
    font-size: 4.1rem;
  }

  .hero-subtitle {
    font-size: 1.9rem;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 14px 28px;
  }
}


/* Container geral */
.about-section {
  padding: 80px 40px;
  background: #fff;
  font-family: 'Caviar Dreams', sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Imagem com zoom */
.about-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  min-width: 300px;
  max-width: 550px;
}

.about-img-zoom {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.about-img-zoom:hover {
  transform: scale(1.08);
}

/* Texto */
.about-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-label {
  color: #000;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
    font-family: 'Caviar Dreams', sans-serif;

}

.about-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
    font-family: 'Caviar Dreams', sans-serif;

  color: #000;
}

.about-title .highlight {
  color: #c39871;
    font-family: 'Caviar Dreams', sans-serif;

}

.about-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #000;
    font-family: 'Caviar Dreams', sans-serif;

}

/* Itens com ícones */
.about-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-icon {
  font-size: 1.6rem;
  color: #bb916a;
  margin-top: 17px;
}

/* Botão gradativo */
.btn-gradient {
  display: inline-block;
  background: #bb916a;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.5s ease, color 0.5s ease;
}

.btn-gradient:hover {
  background: #f3c99e;
  color: #fff;
}


/* Seção principal */
.services-section {
  position: relative;
  padding: 0px 20px;
  text-align: center;
  overflow: hidden;
  font-family: 'Caviar Dreams', sans-serif;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 40px;
  font-family: 'Autography', cursive;
}

/* Lista de serviços */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.services-list li {
  cursor: pointer;
  font-size: 1.1rem;
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 50px;
  transition: 0.3s ease;
}

.services-list li:hover,
.services-list li.active {
  background: #c2a68d;
  color: #fff;
  border-color: #d8bfa3;
}

/* Container do conteúdo */
.service-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: nowrap;
  transition: all 0.5s ease-in-out;
}

/* Texto */
.service-content {
  flex: 1;
  max-width: 500px;
  min-height: 400px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 2.3rem;
  margin-bottom: 10px;
  font-family: 'Autography', cursive;
}

.service-content p {
  font-size: 1.3rem;
  color: #000;
}

/* Imagem */
.service-image {
  flex: 1;
  max-width: 500px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 12px;
  box-shadow: -1px -10px 20px #e3cdb9;
  object-fit: cover;
}

/* Alinhamento condicional via JS */
.left {
  order: 1;
}

.right {
  order: 2;
}

@media (max-width: 768px) {
  .services-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
  }
@media (max-width: 768px) {
  .services-section::before {
    background-attachment: scroll !important;
    background-position: top center !important;
    background-size: cover !important;
  }
}

  .services-list {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .service-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }

  .service-content,
  .service-image {
    width: 100%;
    text-align: center;
    order: 1 !important; /* ✅ força todos a aparecerem na mesma ordem */
      max-width: 500px;
  min-height: 200px;
  
  }

  .service-content h3,
  .service-content p {
    text-align: center;
  }

  .service-image img {
    max-height: none;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 5 0 6px rgba(0, 0, 0, 0.1);
  }
}




.cta-outline {
  display: inline-block;
  padding: 14px 24px;
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #0c0c0c;
  background-color: #f6f1eb;
  border: 2px solid #f6e8d5;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(246, 241, 235, 0.7);
  animation: pulse 2.5s infinite;
}

.cta-outline:hover {
  background-color: #0c0c0c;
  color: #f6f1eb;
  border-color: #f6f1eb;
  transform: scale(1.05);
}

/* Pulsante */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 241, 235, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(246, 241, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(246, 241, 235, 0);
  }
}

/* Centralização opcional */
.service-btn-middle {
  display: block;
  margin: 30px auto;
  max-width: 260px;
}



.gallery-section {
  position: relative;
  padding: 0px 20px;
  text-align: center;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
}


.gallery-title {
  font-family: 'Autography', cursive;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.gallery-subtitle {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1.3rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 820px; /* garante espaço mesmo com position absolute */
}

.gallery-groups {
  position: relative;
  width: 100%;
  max-width: 1400px;
}

.gallery-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.6s ease-in-out;
  pointer-events: none;
}

.gallery-group.active {
  left: 0;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.gallery-left,
.gallery-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-center {
  display: flex;
  align-items: center;
}

/* Wrapper com borda e efeitos */
.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  border: 2px solid #d5b690;
  border-radius: 4px;
  width: 440px;
}

/* Tamanhos específicos */
.img-1, .img-4 { height: 290px; }
.img-2, .img-5 { height: 470px; }
.img-3 { height: 783.5px; }

/* Imagem */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

/* Efeito de brilho (shimmer) */
.gallery-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.1) 100%);
  transform: skewX(-25deg);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

/* Glitter */
.gallery-img-wrapper::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0;
  pointer-events: none;
  animation: glitter-fall 3s linear infinite;
  z-index: 2;
}

.gallery-img-wrapper:hover::after,
.gallery-img-wrapper:hover::before,
.gallery-img-wrapper.active::after,
.gallery-img-wrapper.active::before {
  opacity: 0.4;
}

.gallery-img-wrapper:active .gallery-img {
  transform: scale(0.98);
}

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

@keyframes glitter-fall {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Botões de navegação */
.gallery-nav {
  background-color: #c8a275;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  animation: pulse 1.5s infinite;
  z-index: 10;
  margin: 0 1rem;
}

.gallery-nav:hover {
  background-color: #a87b58;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 162, 117, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(200, 162, 117, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 162, 117, 0); }
}

@media (max-width: 768px) {
  .gallery-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0 40px 0;
    overflow: visible;
  }

  .gallery-groups {
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  .gallery-group {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .gallery-group.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 60px;
  }

  .gallery-left,
  .gallery-center,
  .gallery-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .gallery-img-wrapper {
    width: 90vw !important;
    max-width: 400px;
    height: auto !important;
  }

  .gallery-title {
    font-size: 2.5rem;
  }

  .gallery-subtitle {
    font-size: 1.3rem;
    padding: 0 10px;
  }

.gallery-nav {
  position: absolute; /* ← antes estava fixed */
  top: -30px; /* posiciona acima das imagens */
  background-color: #c8a275;
  color: white;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  z-index: 10;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px; /* mesmo estilo da imagem, se aplicável */
  box-shadow: 0 0 20px rgba(0,0,0,0.2); /* opcional */
}


.gallery-social-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  font-family: 'Caviar Dreams', sans-serif;
}

.gallery-text {
  font-size: 1.1rem;
  color: #c7a88b; /* nude elegante */
  font-weight: 600;
}

.gallery-arrow {
  color: #c7a88b;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.Gallery-social {
  display: flex;
  gap: 15px;
}

.Gallery-social a i {
  font-size: 1.4rem;
  color: #c7a88b;
  transition: transform 0.3s ease, color 0.3s ease;
}

.Gallery-social a:hover i {
  transform: scale(1.2);
  color: #a97c62; /* tom nude mais escuro ao hover */
}

.gallery-social-wrapper:hover .gallery-arrow {
  transform: translateX(5px);
}











.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 360px;
  margin: 20px auto;
}


.testimonials-section {
  position: relative;
  padding: 40px 20px;
  text-align: center;
  background: url('../images/esc.gif') no-repeat center center/cover;

}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
}

/* ===== Cabeçalho da seção ===== */

.testimonials-title {
  font-size: 4rem;
  color: #000;
  margin-bottom: 0.5rem;
  font-family: 'Great Vibes', cursive;
  text-align: center;
}


.testimonials-subtitle {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
}

/* ===== Slider / Container ===== */
.testimonials-slider {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* ===== Cartão do depoimento (estilo balão) ===== */
.testimonial-card {
  position: relative;
  background: #c8a27570;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
  padding: 30px 25px 40px;
  text-align: center;
  max-width: 360px;
  min-width: 360px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Triângulo inferior */
.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 20px 0 20px;
  border-style: solid;
  border-color: #c8a27570 transparent transparent transparent;
}

/* ===== Texto do depoimento ===== */
.testimonial-content p {
  font-size: 1.3rem;
  
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Caviar Dreams', sans-serif;
}

/* ===== Nome do autor ===== */
.testimonial-author {
  margin-top: 30px;
  text-align: center;
  font-family: 'Caviar Dreams', sans-serif;
}

.testimonial-author strong {
  font-size: 1.1rem;
  color: #111;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #777;
}

/* ===== Paginação (bolinhas) ===== */
.testimonial-dots {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dots button.active {
  background: #c8a275;
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 95%;
    max-width: 95%;
  }

  .testimonial-content p {
    font-size: 1rem;
  }

  .testimonials-title {
    font-size: 3rem;
  }

  .testimonials-subtitle {
    font-size: 1.3rem;
  }
}



.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 12, 12, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal {
  background-color: #f6f1eb; /* Nude */
  color: #0c0c0c;
  width: 90%;
  max-width: 700px;
  border-radius: 16px;
  padding: 40px 30px;
  font-family: 'Caviar Dreams', sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.modal h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #0c0c0c;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 25px;
  font-size: 1.8rem;
  color: #0c0c0c;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #000000;
}

form.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  width: 100%;
      margin: 15px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.submit-button {
  background-color: #a49079;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Caviar Dreams', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background-color: #333;
}

.or-divider {
  text-align: center;
  margin: 20px 0;
  font-weight: bold;
  color: #333;
  position: relative;
}

.or-divider::before,
.or-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #ccc;
}

.or-divider::before {
  left: 0;
}

.or-divider::after {
  right: 0;
}

.call-us {
  text-align: center;
  font-size: 1rem;
  color: #0c0c0c;
}

.call-us i {
  color: #0c0c0c;
  margin-right: 6px;
}

.call-us a {
  color: #0c0c0c;
  font-weight: bold;
  text-decoration: none;
}

.call-us a:hover {
  text-decoration: underline;
}

.quote-success-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background-color: #dff0d8;
  color: #3c763d;
  border-left: 5px solid #3c763d;
  border-radius: 6px;
  text-align: center;
}

#quoteModal {
  display: none; /* Modal oculto por padrão */
}

/* Garante que o modal centralize e não ultrapasse a tela */
.modal-overlay {
  padding: 20px;
  box-sizing: border-box;
}

/* Corrige o modal para mobile */
@media (max-width: 768px) {
  .modal {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    padding: 25px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    width: 100%;
  }

  .modal h2 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.3;
  }

  .submit-button {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }

  .close-btn {
    top: 12px;
    right: 15px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 20px 15px;
  }

  .modal h2 {
    font-size: 1.3rem;
  }

  .submit-button {
    font-size: 0.95rem;
  }
}

.modal {
  max-height: 90vh;
  overflow-y: auto;
}



/* Botão flutuante */
.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f6f1eb;
  color: #0c0c0c;
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1rem;
  padding: 14px 18px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s;
  z-index: 999;
}

.floating-contact-btn:hover {
  background-color: #0c0c0c;
  color: #f6f1eb;
  transform: scale(1.05);
}

/* Caixa de chat */
.contact-chat-box {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 320px;
  background-color: #ffffff;
  border: 2px solid #f6f1eb;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  padding: 20px;
  font-family: 'Caviar Dreams', sans-serif;
  display: none;
  flex-direction: column;
  z-index: 999;
}

/* Mostrar quando ativo */
.contact-chat-box.active {
  display: flex;
}

/* Cabeçalho do chat */
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Autography', cursive;
  font-size: 1.5rem;
  color: #0c0c0c;
  margin-bottom: 15px;
}

.chat-header button {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #0c0c0c;
  cursor: pointer;
}

/* Formulário */
.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 0.95rem;
  background-color: #f6f1eb;
  color: #0c0c0c;
}

.chat-form button {
  background-color: #e3d2bc;
  color: #ffffff;
  font-weight: bold;
  font-family: 'Caviar Dreams', sans-serif;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.chat-form button:hover {
  background-color: #333;
}

/* Mensagem de sucesso */
.contact-success-message {
  display: none;
  padding: 10px;
  background-color: #e3f6e8;
  color: #2d7a41;
  border-left: 4px solid #2d7a41;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* Ações extras */
.chat-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-actions a {
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  font-family: 'Caviar Dreams', sans-serif;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* Botões específicos */
.chat-call-btn {
  background-color: #e2d1bc;
  color: #ffffff;
}

.chat-call-btn:hover {
  background-color: #333;
}

.chat-whatsapp-btn {
  background-color: #25d366;
  color: #ffffff;
}

.chat-whatsapp-btn:hover {
  background-color: #1cb255;
}

/* Responsividade */
@media (max-width: 400px) {
  .contact-chat-box {
    width: 65%;
    right: 1.5%;
    bottom: 80px;
  }

  .floating-contact-btn {
    right: 2.5%;
    bottom: 20px;
  }
}







.services-wrapper {
  background-color: #f5f7f3;
  padding: 80px 40px;
  border-top: 1px solid #d9ddd7;
  font-family: 'Caviar Dreams', sans-serif;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.services-title {
  font-family: 'Autography', serif;
  font-size: 80px;
  font-weight: normal;
  margin-bottom: 20px;
  color: #000;
}

.services-subtitle {
  font-size: 25px;
  line-height: 1.7;
  color: #000;
}


.servicepage-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Caviar Dreams', sans-serif;
}

/* Bloco de serviço */
.servicepage-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

/* Alterna a ordem visual */
.servicepage-row.even {
}

/* Coluna de imagem */
.servicepage-image {
  flex: 1 1 600px;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.servicepage-image img {
  width: 100%;
  max-width: 600px;
  height: 540px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #f6f1eb;
  box-shadow: -1px 1px 20px 4px rgb(188 152 108);
}

/* Coluna de texto */
.servicepage-text {
  flex: 1 1 600px;
  max-width: 490px;
  text-align: left;
  padding: 10px 20px;
}

.servicepage-text h2 {
  font-family: 'Autography', cursive;
  font-size: 3rem;
  color: #0c0c0c;
  margin-bottom: 20px;
}

.servicepage-text p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 12px;
}

/* Botão de orçamento */
.servicepage-quote-btn-wrapper {
  text-align: center;
  margin-top: 60px;
}

.servicepage-quote-btn {
  background-color: #f6f1eb;
  color: #0c0c0c;
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1.1rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid #d5b690;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2.5s infinite;
}

.servicepage-quote-btn:hover {
  background-color: #0c0c0c;
  color: #f6f1eb;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(213, 182, 144, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(213, 182, 144, 0); }
  100% { box-shadow: 0 0 0 0 rgba(213, 182, 144, 0); }
}

/* Modal */
.servicepage-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.servicepage-modal.active {
  display: flex !important;
}


.servicepage-modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 0px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  font-family: 'Caviar Dreams', sans-serif;
  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.servicepage-modal-content h3 {
  font-family: 'Autography', cursive;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.servicepage-modal-content input,
.servicepage-modal-content select,
.servicepage-modal-content textarea {
  width: 100%;
  padding: 9px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Caviar Dreams', sans-serif;
}

.servicepage-modal-content button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #c39871;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.servicepage-modal-content button:hover {
  background-color: #333;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.4rem;
  color: #000;
  cursor: pointer;
}

.servicepage-success-message {
  display: none;
  padding: 10px;
  background-color: #dff0d8;
  color: #2c7a36;
  border-left: 5px solid #2c7a36;
  border-radius: 6px;
  text-align: center;
  margin-top: 15px;
}


/* Responsivo */
@media (max-width: 1024px) {
  .servicepage-row {
    flex-direction: column !important;
    text-align: center;
  }

  .servicepage-image,
  .servicepage-text {
    max-width: 100%;
  }

  .servicepage-image {
    order: 1;
  }

  .servicepage-text {
    order: 2;
  }

  .servicepage-image img {
    height: auto;
    max-width: 90vw;
  }

  .servicepage-text h2 {
    font-size: 3.4rem;
  }

  .servicepage-text p {
    font-size: 1rem;
  }
}




.aboutus-wrapper {
  background-color: #f5f7f3;
  padding: 80px 40px;
  border-top: 1px solid #d9ddd7;
  font-family: 'Caviar Dreams', sans-serif;
}

.aboutus-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.aboutus-title {
  font-family: 'Autography', serif;
  font-size: 80px;
  font-weight: normal;
  margin-bottom: 20px;
  color: #000;
}

.aboutus-subtitle {
  font-size: 25px;
  line-height: 1.7;
  color: #000;
}



.aboutus-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 100px;
}

.aboutus-card {
  background-color: #e5d7c1;
  border-radius: 20px;
  transform: rotate(-3deg);
  padding: 3px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
}

.card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 85px;
}

.card-title {
  font-size: 1.9rem;
  margin: 0 0 10px;
}

.card-text {
  font-size: 1.2rem;
  font-family: 'Caviar Dreams', sans-serif;
  line-height: 1.5;
  color: #000;
}

@media (max-width: 768px) {
  .aboutus-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 20px; /* opcional, para evitar encostar nas bordas */
  }

  .aboutus-card {
    width: 100%;
    max-width: 500px; /* controla a largura máxima no centro */
    margin-bottom: 3px;
    transform: rotate(0deg);
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex; /* garante alinhamento interno */
  }

  .card-icon {
    margin: 0 auto 15px auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .aboutus-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 20px; /* opcional, para evitar encostar nas bordas */
  }

  .aboutus-card {
    width: 100%;
    max-width: 500px; /* controla a largura máxima no centro */
    margin-bottom: 20px;
    transform: rotate(0deg);
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex; /* garante alinhamento interno */
  }

  .card-icon {
    margin: 0 auto 15px auto;
    display: block;
  }
}




/*exclusive*/
/* Exclusive About Section */
:root {
  --box-width: 250px;      /* largura das caixas */
  --box-spacing: 60px;     /* espaçamento entre caixas */
  --line-top-offset: 200px; /* distância entre o título e início da linha */
  --line-bottom-offset: 140px; /* distância entre o final da linha e o botão */
}



.exclusive-about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;

  z-index: -1;
}


.exclusive-about-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  z-index: 1;
  /* REMOVE qualquer background aqui */
  /* background: rgba(...) não vai funcionar aqui se ::before cobre tudo */
}

/* TÍTULO */
.exclusive-title {
  font-size: 4rem;
  margin-bottom: 60px;
  z-index: 2;
  position: relative;
}

/* LINHA CENTRAL */
.exclusive-line-wrapper {
  position: absolute;
  top: var(--line-top-offset);
  left: 50%;
  width: 2px;
  height: calc(100% - var(--line-top-offset) - var(--line-bottom-offset));
  transform: translateX(-50%);
  z-index: 0;
}

.exclusive-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #c8a77d, transparent, #c8a77d);
}

/* ÍCONE CENTRAL */
.scroll-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  z-index: 10;
  top: 0;
  opacity: 1;
  transition: top 0.4s ease;
  pointer-events: none;
  animation: floatY 3s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 215, 140, 0.6));

}

@keyframes floatY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}


/* CONTAINER DAS CAIXAS */
.exclusive-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--box-spacing);
  position: relative;
  z-index: 2;
}

/* CAIXAS ALTERNADAS PRÓXIMAS DA LINHA */
.exclusive-card {
  width: var(--box-width);
  background: #e5d7c1;
  border: 2px solid #93744c;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}

/* Alinhamento das caixas à linha central com margens internas */
.exclusive-card:nth-child(odd) {
  align-self: flex-start;
  margin-left: calc(45% - var(--box-width) - 90px); /* aproxima da linha */
  text-align: left;
}

.exclusive-card:nth-child(even) {
  align-self: flex-end;
  margin-right: calc(45% - var(--box-width) - 90px); /* aproxima da linha */
  text-align: right;
}


.exclusive-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
font-family: 'Great Vibes', cursive;}

.exclusive-card p {
  font-size: 1.1rem;
  font-family: 'Caviar Dreams', sans-serif;
  line-height: 1.6;
}

/* BOTÃO CENTRAL COM DIAGONAL */
.exclusive-button-wrapper {
  margin-top: 60px;
  position: relative;
  z-index: 3;
}

.diagonal-background {
  background: url('../images/diagonal-card.png') no-repeat center center/cover;
  padding: 40px;
  display: inline-block;
  transform: rotate(-3deg);
}

.exclusive-contact-btn {
  background-color: #c8a77d;
  color: white;
  padding: 15px 35px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,167,125, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(200,167,125, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(200,167,125, 0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .exclusive-card,
  .exclusive-card:nth-child(odd),
  .exclusive-card:nth-child(even) {
    align-self: center;
    text-align: left;
    margin: 0;
  }

  .exclusive-line-wrapper {
    left: 10%;
    transform: none;
  }

  .scroll-icon {
    left: 10%;
    transform: none;
  }
}





/* Modal */
.exclusive-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.exclusive-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
}

.exclusive-close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.exclusive-form input {
  display: block;
  width: 100%;
  margin: 15px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.exclusive-form button {
  background: #c8a77d;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Caviar Dreams', sans-serif;
}

.exclusive-contacts a {
  color: #c8a77d;
  text-decoration: none;
  font-family: 'Caviar Dreams', sans-serif;
}

/* Mobile */
@media (max-width: 768px) {
  .exclusive-line {
    left: 10%;
  }
  .exclusive-card.left, .exclusive-card.right {
    align-self: flex-start;
    text-align: left;
  }
  .exclusive-contact-btn {
    font-size: 1rem;
  }
  .scroll-glow {
    left: 10%;
  }
}







/* Seção principal com layout de duas colunas */
.contact-section {
  background: url('../images/backg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0 20px;
  
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.65); /* branco translúcido */
  z-index: 0;
  pointer-events: none; /* garante que o conteúdo permaneça interativo */
}


/* Lado esquerdo (texto e ícones) */
.contact-text-side {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1; /* garante que fique acima do ::before */
}

/* Cards de contato */

.contacts-card {
  align-items: center; /* <- aqui é a correção */
  gap: 20px;
}

.card-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Lado direito com imagem e formulário em glassmorphism */
.contact-form-side {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  background: linear-gradient(120deg, #e6c9b5, #d4a98a);
  background-size: 200% 200%;
  animation: nudeShift 8s ease-in-out infinite;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* já tinha */
  overflow: hidden; /* mantém efeito dentro do contorno */
}

@keyframes nudeShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.contact-form-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  color: #000;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1; /* garante que fique acima do ::before */
}

/* Títulos */
.contacts-title,
.card-title,
.contact-title {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: #120000;
}

.contacts-subtitle,
.card-text,
.contact-subtitle {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1rem;
  color: #000;
}

.contact-link {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-title {
  font-size: 2.5rem;
  color: #000;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-group.full {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  font-family: 'Caviar Dreams', sans-serif;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
    display: block;
  width: 100%;
  margin: 15px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  
}

/* Botão */
.quote-button {
  font-family: 'Caviar Dreams', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(120deg, #d6bfa5, #b9987d);
  color: #000;
  cursor: pointer;
  box-shadow: 0 4px 12px rgb(0 0 0 / 33%);
  transition: all 0.3s ease;
}

.quote-button:hover {
  background: linear-gradient(120deg, #b9987d, #d6bfa5);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(185, 152, 125, 0.5);
}

.quote-button:active {
  transform: scale(0.97);
  box-shadow: 0 3px 8px rgba(185, 152, 125, 0.4);
}


/* Mensagem de sucesso */
.contact-success-message {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.15);
  border-left: 5px solid #4CAF50;
  color: #000;
  font-family: 'Caviar Dreams', sans-serif;
  display: none;
}

/* Responsividade */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 30px 15px;
  }

  .contact-form-side {
    padding: 30px 15px;
  }

  .contact-form-container {
    padding: 30px;
  }

  .contacts-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .contacts-cards {
    gap: 25px;
    padding: 0 10px;
  }

  .contacts-card {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .card-title {
    font-size: 2.6rem;
  }

  .card-text,
  .contact-link {
    font-size: 1.2rem;
  }
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.social-links a {
  font-family: 'Caviar Dreams', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #b9987d;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 30px;
  background: rgba(230, 201, 181, 0.15);
  transition: all 0.3s ease;
}

.social-links a i {
  font-size: 1.2rem;
}

.social-links a:hover {
  background: linear-gradient(120deg, #d6bfa5, #b9987d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 152, 125, 0.4);
}

.social-links a:hover i {
  color: #fff;
}

