/* ============================================================
   JHEINI LASER — CSS
   Design: Luxury Aesthetic / Spa Premium / Gold & Nude
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap");

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --gold: #c6a35a;
  --gold-dark: #a8863d;
  --gold-light: #e2c98a;
  --gold-pale: #f5ead0;
  --nude: #f5ede4;
  --nude-dark: #ebe0d3;
  --brown: #5a4632;
  --brown-light: #7a6245;
  --white: #ffffff;
  --text-main: #3d2e1e;
  --text-soft: #8a7265;
  --shadow-gold: 0 8px 40px rgba(198, 163, 90, 0.18);
  --shadow-soft: 0 4px 24px rgba(90, 70, 50, 0.1);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--nude);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--nude);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 99px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  color: var(--brown);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

p {
  color: var(--text-soft);
  font-size: 0.97rem;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}
.section--dark {
  background-color: var(--brown);
}
.section--light {
  background-color: var(--white);
}
.section--nude {
  background-color: var(--nude);
}
.section--pale {
  background-color: var(--gold-pale);
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  max-width: 540px;
  margin-bottom: 56px;
}

.divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0 40px;
  border-radius: 99px;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* ── GOLD LINE ORNAMENT ───────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
}
.ornament span {
  height: 1px;
  width: 48px;
  background: var(--gold);
  opacity: 0.6;
}
.ornament i {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 99px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before {
  opacity: 1;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(198, 163, 90, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 163, 90, 0.5);
}

.btn-principal-menu {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 20px rgba(198, 163, 90, 0.4);
}

.btn-principal-menu:hover {
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--brown-light);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(245, 237, 228, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(90, 70, 50, 0.1);
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  transition:
    opacity 0.2s,
    color 0.2s;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--nude) 60%, var(--gold-pale) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 20%,
      rgba(198, 163, 90, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(198, 163, 90, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* decorative circles */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(198, 163, 90, 0.2);
  pointer-events: none;
}
.hero-circle--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}
.hero-circle--2 {
  width: 300px;
  height: 300px;
  top: 40px;
  right: 40px;
  opacity: 0.5;
}

.hero-content {
  padding: 80px 8% 0px 5%;
  position: relative;
  z-index: 2;
  order: 2; /* texto sempre à direita no desktop */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(255, 251, 241);
  border: 1px solid rgba(198, 163, 90, 0.3);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
  transition: transform 0.4s ease;
}

.hero-badge.pulse {
  transform: scale(1.03);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--brown);
}
.hero-title em {
  font-style: italic;
}

.hero-desc {
  font-size: 0.8rem;
  color: var(--text-soft);
  max-width: 460px;
  margin-bottom: 14px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--brown-light);
  margin-bottom: 40px;
}
.hero-location svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── HERO IMAGE ───────────────────────────────────────────── */
.hero-image-wrap {
  position: relative;
  height: 100vh;
  min-height: 600px;
  order: 1; /* imagem sempre à esquerda no desktop */
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(245, 237, 228, 0.6) 75%,
    rgba(245, 237, 228, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-img-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(198, 163, 90, 0.15);
  border: 2px dashed rgba(198, 163, 90, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-icon svg {
  color: var(--gold);
  opacity: 0.6;
}

.hero-image-placeholder p {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
  max-width: 200px;
  opacity: 0.7;
}

/* floating card */
.hero-float-card {
  position: absolute;
  bottom: 64px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.float-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card-icon svg {
  color: var(--white);
}

.float-card-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
  font-family: "Playfair Display", serif;
}
.float-card-text span {
  font-size: 0.73rem;
  color: var(--text-soft);
}

/* ── SOBRE ────────────────────────────────────────────────── */
#sobre {
  background: var(--white);
  padding: 56px 0;
}

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

.sobre-image-wrap {
  position: relative;
}

.sobre-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-pale), var(--nude-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.sobre-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C6A35A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sobre-image-frame p {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
  max-width: 180px;
  position: relative;
  z-index: 1;
}

.sobre-image-bg img {
  border-radius: 24px;
}

.sobre-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-gold);
  text-align: center;
  min-width: 140px;
}

.sobre-badge-float strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}
.sobre-badge-float span {
  font-size: 0.72rem;
  opacity: 0.9;
  line-height: 1.4;
}

.sobre-content .divider {
  margin-bottom: 32px;
}

.sobre-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--nude);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(198, 163, 90, 0.15);
  transition: var(--transition);
}

.highlight-item:hover {
  border-color: rgba(198, 163, 90, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.highlight-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(198, 163, 90, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.highlight-item p {
  font-size: 0.82rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* ── BENEFÍCIOS ───────────────────────────────────────────── */
#beneficios {
  background: var(--nude);
  padding: 56px 0;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.beneficio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(198, 163, 90, 0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.beneficio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.beneficio-card:hover::before {
  transform: scaleX(1);
}
.beneficio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.beneficio-card .card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(198, 163, 90, 0.15),
    rgba(198, 163, 90, 0.08)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.beneficio-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--brown);
}

.beneficio-card p {
  font-size: 0.85rem;
}

/* ── ÁREAS ────────────────────────────────────────────────── */
#areas {
  background: var(--brown);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

#areas::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(198, 163, 90, 0.15);
}
#areas::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(198, 163, 90, 0.1);
}

#areas .tag,
#areas .section-title,
#areas .section-sub {
  color: rgba(245, 237, 228, 0.9);
}
#areas .tag {
  color: var(--gold-light);
}
#areas .section-title {
  color: var(--gold-pale);
}
#areas .divider {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.area-chip {
  background: rgba(198, 163, 90, 0.12);
  border: 1px solid rgba(198, 163, 90, 0.25);
  border-radius: 99px;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--gold-pale);
  transition: var(--transition);
  cursor: default;
}

.area-chip:hover {
  background: rgba(198, 163, 90, 0.22);
  border-color: rgba(198, 163, 90, 0.5);
  color: var(--gold-light);
  transform: scale(1.03);
}

.areas-note {
  margin-top: 32px;
  font-size: 0.8rem;
  color: rgba(198, 163, 90, 0.7);
  text-align: center;
  font-style: italic;
}

/* ── RESULTADOS ───────────────────────────────────────────── */
#resultados {
  background: var(--white);
  padding: 56px 0;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.resultado-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--nude);
  border: 1px solid rgba(198, 163, 90, 0.12);
  transition: var(--transition);
}

.resultado-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.resultado-img-placeholder {
  height: 240px;
  background: linear-gradient(135deg, var(--gold-pale), var(--nude-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.resultado-img-placeholder svg {
  color: var(--gold);
  opacity: 0.5;
}
.resultado-img-placeholder span {
  font-size: 0.75rem;
  color: var(--text-soft);
  opacity: 0.7;
}

.resultado-label {
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
}

/* ── DEPOIMENTOS ──────────────────────────────────────────── */
#depoimentos {
  background: var(--nude);
  padding: 56px 0;
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.depo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(198, 163, 90, 0.12);
  transition: var(--transition);
  position: relative;
}

.depo-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.depo-quote {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -16px;
}

.depo-text {
  font-size: 0.88rem;
  color: var(--text-soft);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.depo-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--nude-dark));
  border: 2px solid rgba(198, 163, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.depo-author-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brown);
}
.depo-author-sub {
  font-size: 0.73rem;
  color: var(--text-soft);
}

.depo-placeholder-note {
  margin-top: 40px;
  text-align: center;
  padding: 24px;
  border: 1.5px dashed rgba(198, 163, 90, 0.3);
  border-radius: var(--radius);
  font-size: 0.83rem;
  color: var(--text-soft);
  font-style: italic;
}

/* ── LOCAIS ───────────────────────────────────────────────── */
#locais {
  background: var(--white);
  padding: 56px 0;
}

.locais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.local-card {
  background: var(--nude);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(198, 163, 90, 0.15);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.local-card:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.local-card .local-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.local-card h3 {
  color: var(--brown);
  font-size: 1.15rem;
}
.local-card .city-tag {
  display: inline-block;
  background: rgba(198, 163, 90, 0.12);
  border: 1px solid rgba(198, 163, 90, 0.25);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 99px;
}

.maps-wrap {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(198, 163, 90, 0.15);
  background: var(--nude);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.maps-wrap svg {
  color: var(--gold);
  opacity: 0.5;
}

.maps-wrap iframe {
  width: 100%;
  height: 100%;
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq {
  background: var(--nude);
  padding: 56px 0;
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(198, 163, 90, 0.15);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(198, 163, 90, 0.4);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(198, 163, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: var(--transition);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer p {
  font-size: 0.86rem;
  padding-bottom: 20px;
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ── PÚBLICO ──────────────────────────────────────────────── */
#publico {
  background: var(--gold-pale);
  padding: 56px 0;
}

.publico-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.publico-text {
  flex: 1;
}
.publico-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.publico-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(198, 163, 90, 0.15);
  transition: var(--transition);
  text-align: center;
}
.publico-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.publico-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}
.publico-card h4 {
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 4px;
}
.publico-card p {
  font-size: 0.8rem;
}

/* ── PREÇOS ───────────────────────────────────────────────── */
#precos {
  background: var(--white);
  padding: 56px 0;
}

.precos-note {
  max-width: 500px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 0.87rem;
}

.precos-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.precos-placeholder {
  padding: 48px;
  border: 2px dashed rgba(198, 163, 90, 0.3);
  border-radius: var(--radius);
  max-width: 480px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-style: italic;
}

.precos-placeholder svg {
  color: var(--gold);
  opacity: 0.4;
  margin: 0 auto 12px;
}

/* ── CTA FINAL ────────────────────────────────────────────── */
#cta-final {
  background: linear-gradient(135deg, var(--brown) 0%, #3d2412 100%);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(198, 163, 90, 0.12);
}

#cta-final::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(198, 163, 90, 0.1);
}

.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-inner .tag {
  color: var(--gold-light);
}
.cta-inner h2 {
  color: var(--gold-pale);
  margin-bottom: 16px;
}
.cta-inner .section-sub {
  color: rgba(245, 237, 228, 0.7);
  margin: 0 auto 40px;
}
.cta-inner .btn-gold {
  font-size: 0.8rem;
  padding: 18px 44px;
}

/* ── CONTATO BAR ──────────────────────────────────────────── */
#contato {
  background: var(--nude-dark);
  padding: 48px 0;
}

.contato-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.contato-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--brown);
  font-weight: 700;
}

.contato-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--brown-light);
  transition: color 0.2s;
}
.contato-link:hover {
  color: var(--gold);
}
.contato-link svg {
  color: var(--gold);
}

.contato-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(198, 163, 90, 0.12);
  border: 1px solid rgba(198, 163, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--brown);
  padding: 20px 5%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245, 237, 228, 0.45);
}

footer p {
  font-size: 0.75rem;
  color: var(--gold-pale);
}

footer a {
  text-decoration: underline;
}

/* ── FLOATING WHATSAPP ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 {
  transition-delay: 0.1s;
}
.fade-up.delay-2 {
  transition-delay: 0.2s;
}
.fade-up.delay-3 {
  transition-delay: 0.3s;
}
.fade-up.delay-4 {
  transition-delay: 0.4s;
}
.fade-up.delay-5 {
  transition-delay: 0.5s;
}

/* ── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(245, 237, 228, 0.98);
  backdrop-filter: blur(12px);
  z-index: 997;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: "Poppins", serif;
  font-size: 1rem;
  color: var(--brown);
  font-style: normal;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* HERO MOBILE: imagem de fundo, texto sobreposto com fade */
  #hero {
    display: block;
    position: relative;
    min-height: 100vh;
    padding-top: 0;
    background: none;
  }

  /* A imagem ocupa o hero inteiro como fundo */
  .hero-image-wrap {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: unset;
    order: unset;
    z-index: 0;
  }

  .hero-image-bg {
    position: absolute;
    inset: 0;
  }

  .hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    border-radius: 0;
  }

  /* Gradiente nude sobre a imagem para legibilidade do texto */
  .hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(245, 237, 228, 0.05) 0%,
      rgba(245, 237, 228, 0.6) 80%,
      rgba(245, 237, 228, 0.92) 90%,
      rgba(245, 237, 228, 0.98) 100%
    );
    z-index: 1;
  }

  /* Texto fica na frente, na parte inferior */
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 62vh 5% 24px; /* empurra o texto para baixo, abaixo do rosto */
    text-align: center;
    order: unset;
  }

  .hero-desc,
  .hero-location {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  /* Float card some no mobile para não atrapalhar */
  .hero-float-card {
    display: none;
  }

  .hero-circle--1,
  .hero-circle--2 {
    display: none;
  }

  /* Resto do layout tablet */
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .sobre-image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .beneficios-grid {
    grid-template-columns: 1fr 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .resultados-grid {
    grid-template-columns: 1fr 1fr;
  }
  .depo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .locais-grid {
    grid-template-columns: 1fr;
  }
  .publico-inner {
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  /* Ajuste do padding do texto no hero para telas menores */
  .hero-content {
    padding-top: 50vh;
    padding-bottom: 20px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .resultados-grid {
    grid-template-columns: 1fr;
  }
  .depo-grid {
    grid-template-columns: 1fr;
  }
  .sobre-highlights {
    grid-template-columns: 1fr;
  }
  .publico-cards {
    grid-template-columns: 1fr;
  }

  .contato-inner {
    flex-direction: column;
    text-align: center;
  }
  .contato-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding-top: 35vh;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
