
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rose: #C97B6A;
  --rose-lt: #E8B4A8;
  --rose-pale: #F9EDE9;
  --cream: #FAF8F6;
  --stone: #EDE9E5;
  --charcoal: #2C2420;
  --mid: #7A6460;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6vw;
  background: rgba(250, 248, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(44, 36, 32, .06);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--rose);
}

.nav-cta {
  background: var(--rose);
  color: #fff;
  padding: .5rem 1.4rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s;
}

.nav-cta:hover {
  background: var(--charcoal);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 6vw 80px;
  background: linear-gradient(135deg, var(--cream) 55%, var(--rose-pale) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 220px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 24px rgba(201, 123, 106, .18));
}

.teste {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.foto_leticia {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.foto_leticia img {
  width: 300px;      /* ajuste conforme desejar */
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--rose);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}

h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 400px;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  padding: .85rem 2rem;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--rose-lt);
  color: var(--rose);
  padding: .85rem 2rem;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, color .2s;
  display: inline-block;
}

.btn-ghost:hover {
  background: var(--rose-pale);
}

/* ── SECTION SHARED ── */
section {
  padding: 100px 6vw;
}

.section-label {
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .8rem;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

h2 em {
  font-style: italic;
  color: var(--rose);
}

.section-intro {
  color: var(--mid);
  max-width: 480px;
  margin-bottom: 3rem;
}

/* ── ABOUT ── */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--stone);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--rose);
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
}

.about-badge strong {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.about-badge span {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-text h2 {
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--mid);
  margin-bottom: 1rem;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 2rem 1.8rem;
  border-radius: 4px;
  transition: box-shadow .25s, transform .2s, border-color .2s;
  cursor: default;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(201, 123, 106, .12);
  transform: translateY(-3px);
  border-color: var(--rose-lt);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  width: 44px;
  height: 44px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .85rem;
  color: var(--mid);
}

/* ── GALLERY / INSTAGRAM ── */
.gallery {
  background: var(--rose-pale);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 2.5rem;
}

.ig-item {
  aspect-ratio: 1;
  background: var(--stone);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 123, 106, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

.ig-overlay svg {
  width: 28px;
  fill: #fff;
}

.ig-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--mid);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ig-error {
  color: var(--mid);
  font-size: .85rem;
  text-align: center;
  padding: 1rem 0;
}

.gallery-footer {
  text-align: center;
}

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--rose);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rose-lt);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.ig-handle:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--charcoal);
}

.testimonials .section-label {
  color: var(--rose-lt);
}

.testimonials h2 {
  color: var(--white);
}

.testimonials h2 em {
  color: var(--rose-lt);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 2rem;
  border-radius: 4px;
}

.testi-stars {
  color: var(--rose);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .15em;
}

.testi-text {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.testi-author {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-lt);
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}

.contact-info p {
  color: var(--mid);
  margin-bottom: 2rem;
}

.info-block {
  margin-bottom: 1.8rem;
}

.info-label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .3rem;
}

.info-value {
  font-size: .95rem;
  color: var(--charcoal);
}

.info-value a {
  color: var(--charcoal);
  text-decoration: none;
}

.info-value a:hover {
  color: var(--rose);
}

.map-embed {
  width: 100%;
  height: 320px;
  border-radius: 4px;
  background: var(--stone);
  overflow: hidden;
  border: 1px solid var(--stone);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .5rem;
  transition: background .2s;
}

.whatsapp-btn:hover {
  background: #1ebe59;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .45);
  text-align: center;
  padding: 2.5rem 6vw;
  font-size: .75rem;
  letter-spacing: .1em;
}

footer a {
  color: var(--rose-lt);
  text-decoration: none;
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--rose-lt);
  margin: 1.5rem 0;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    bottom: 10px;
    right: 10px;
  }

  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}
