/* ================================================================
   STYLESHEET — MINIMALIST ROSA & BEAUTY STUDIO (REFAITO DO ZERO)
   ================================================================ */

/* ============ 1. VARIÁVEIS ROOT (REFINED ROSA PALETTE) ============ */
:root {
  /* Paleta Rosa Suave / Blush / Quartz */
  --bg-main:         #FFF8FA; /* Fundo rosa pálido e limpo */
  --bg-surface:      #FFFFFF; /* Superfície dos cards */
  --bg-soft:         #FBF2F5; /* Seções alternadas suaves */

  --text-main:       #3D2E35; /* Texto escuro tom de ameixa/marrom suave */
  --text-muted:      #826F77; /* Texto secundário delicado */
  --text-light:      #B09CA4; /* Texto de detalhes e bordas */

  --pink-primary:    #D8859A; /* Rosa elegante e suave */
  --pink-hover:      #C66E84; /* Rosa um pouco mais profundo para hover */
  --pink-soft:       #F7E6EB; /* Fundo suave para botões e badges */
  --border-light:    #F2DFE6; /* Linhas sutis e delicadas */

  /* Tipografia */
  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-sans:       'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Espaçamento elegante e equilibrado */
  --sp-xs:  0.35rem;
  --sp-sm:  0.75rem;
  --sp-md:  1.25rem;
  --sp-lg:  2.50rem;
  --sp-xl:  5.00rem;
  --sp-xxl: 8.00rem;

  /* Bordas e Sombras Suaves */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-full: 999px;

  --shadow-soft: 0 8px 24px rgba(216, 133, 154, 0.06);

  --container-max: 1100px;
  --container-narrow: 580px;
  --nav-height: 68px;

  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ 2. RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

.icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ============ 3. ESTRUTURA E TÍTULOS ============ */
.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: var(--sp-xs);
}

.section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
  text-align: center;
}

.section--soft {
  background-color: var(--bg-soft);
  max-width: none;
  border-block: 1px solid var(--border-light);
}
.section--soft > * {
  max-width: var(--container-max);
  margin-inline: auto;
}

/* Títulos menores e delicados */
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.section__header {
  margin-bottom: var(--sp-lg);
}

/* ============ 4. NAVEGAÇÃO ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 248, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--border-light); }

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: var(--nav-height);
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.nav__brand {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--text-main);
  margin-right: auto;
}

/* Lang Switcher */
.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 2px;
}

.lang__btn {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  color: var(--text-light);
  transition: all 0.2s ease;
}
.lang__btn.is-active {
  background-color: var(--pink-primary);
  color: #ffffff;
}
.lang__sep { width: 1px; height: 10px; background-color: var(--border-light); }

/* Toggle Mobile */
.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: var(--text-main);
}
.nav__toggle-bars { position: relative; width: 20px; height: 12px; }
.nav__toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav__toggle-bars span:nth-child(1) { top: 0; }
.nav__toggle-bars span:nth-child(2) { top: 5px; }
.nav__toggle-bars span:nth-child(3) { top: 10px; }

.nav__toggle.is-open .nav__toggle-bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav__toggle.is-open .nav__toggle-bars span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open .nav__toggle-bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* Menu Suspenso */
.nav__menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background-color: rgba(255, 248, 250, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: var(--sp-sm) var(--sp-md);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  visibility: hidden;
  transition: all 0.25s ease;
}

.nav.is-open .nav__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.nav__menu a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-xs) var(--sp-sm);
  transition: color 0.2s ease;
}
.nav__menu a:hover { color: var(--pink-primary); }

/* ============ 5. HERO ============ */
.hero {
  padding: var(--sp-xl) var(--sp-md) var(--sp-xl);
  text-align: center;
}
.hero__container {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.hero__logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-md);
}
.hero__logo {
  max-width: 130px;
  height: auto;
  object-fit: contain;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-main);
  margin: var(--sp-xs) 0;
}

.hero__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: var(--sp-xs);
}

.hero__actions {
  margin-top: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.btn {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-align: left;
  transition: transform 0.25s var(--transition-smooth), border-color 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: var(--pink-primary);
}

.btn__icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--pink-soft);
  color: var(--pink-primary);
  display: flex; align-items: center; justify-content: center;
}

.btn__text { flex: 1; display: flex; flex-direction: column; }
.btn__text strong { font-size: 0.88rem; font-weight: 600; color: var(--text-main); }
.btn__text small { font-size: 0.72rem; color: var(--text-muted); }
.btn__arrow { color: var(--text-light); }

.btn--pink { background-color: #FFFFFF; }
.btn--outline { background-color: #FFFFFF; }

/* ============ 6. SOBRE A DONA ============ */
.about__layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  align-items: center;
  text-align: left;
}

.about__content { flex: 1; }

.about__desc {
  margin-top: var(--sp-sm);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 300;
}

.about__photo-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(216, 133, 154, 0.2) 0%, rgba(255, 248, 250, 0) 70%);
  bottom: 10%;
  z-index: 0;
  pointer-events: none;
}

.about__png {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(61, 46, 53, 0.08));
}

/* ============ 7. SERVIÇOS (2 COLUNAS NO MOBILE, QUADRADOS) ============ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colunas já no mobile */
  gap: var(--sp-sm);                      /* Espaçamento compacto */
  text-align: left;
}

.service__card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s var(--transition-smooth), border-color 0.25s ease;
}
.service__card:hover {
  transform: translateY(-3px);
  border-color: var(--pink-primary);
}

.service__thumb {
  width: 100%;
  aspect-ratio: 1 / 1; /* Mantém proporção perfeitamente quadrada */
  overflow: hidden;
  background-color: var(--bg-soft);
}
.service__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition-smooth);
}
.service__card:hover .service__thumb img {
  transform: scale(1.04);
}

/* Espaçamento e tipografia ajustados para o layout em 2 colunas */
.service__body {
  padding: var(--sp-sm);
}
.service__body h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 4px;
}
.service__body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============ 8. CERTIFICADOS / DIFERENCIAIS ============ */
.cert__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  text-align: left;
}

.cert__card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-soft);
}

.cert__card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 4px;
}
.cert__card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============ 9. DEPOIMENTOS ============ */
.rev__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  text-align: left;
}

.rev__card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-soft);
}

.rev__stars {
  display: flex;
  gap: 2px;
  color: var(--pink-primary);
  font-size: 0.75rem;
  margin-bottom: var(--sp-xs);
}

.rev__card p {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: var(--sp-xs);
  line-height: 1.45;
}

.rev__card cite {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ============ 10. LOCALIZAÇÃO ============ */
.loc__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
  text-align: left;
}

.loc__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.loc__info-card {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background-color: var(--bg-surface);
  padding: var(--sp-sm) var(--sp-md);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.loc__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background-color: var(--pink-soft);
  color: var(--pink-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.loc__info-card strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
  margin-bottom: 2px;
}
.loc__info-card p { font-size: 0.85rem; color: var(--text-muted); }

.loc__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  aspect-ratio: 16 / 10;
  background-color: var(--bg-soft);
  box-shadow: var(--shadow-soft);
}
.loc__map iframe { width: 100%; height: 100%; border: 0; }

/* ============ 11. RODAPÉ ============ */
.footer {
  border-top: 1px solid var(--border-light);
  padding: var(--sp-xl) var(--sp-md) var(--sp-lg);
  text-align: center;
  background-color: var(--bg-main);
}

.footer__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--text-main);
  margin-bottom: 4px;
}
.footer__copy { font-size: 0.72rem; color: var(--text-light); }

/* ============ 12. RESPONSIVIDADE ============ */
@media (min-width: 600px) {
  .services__grid { 
    gap: var(--sp-md); 
  }
  .service__body {
    padding: var(--sp-md);
  }
  .service__body h3 {
    font-size: 1.15rem;
  }
  .service__body p {
    font-size: 0.82rem;
  }
  
  .cert__grid { grid-template-columns: repeat(2, 1fr); }
  .rev__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .rev__grid { grid-template-columns: repeat(3, 1fr); }

  .about__layout {
    flex-direction: row;
    gap: var(--sp-xl);
  }

  .loc__layout {
    grid-template-columns: 1fr 1fr;
  }
}