/* ============================================================
   SEND BEAUTY · Landing Page
   Mobile first · Tema escuro: fundo preto + branco como destaque
   ============================================================ */

:root {
  --bg: #0b0b0b;                 /* fundo principal (preto) */
  --surface: #151414;            /* cards e blocos elevados */
  --surface-2: #1d1b1b;          /* variação de superfície */
  --accent: #ffffff;             /* cor de destaque */
  --accent-soft: rgba(255, 255, 255, .08);
  --line: rgba(255, 255, 255, .14);
  --text: #f4f1ef;
  --text-soft: #b3adaa;
  --whats: #25d366;
  --whats-dark: #1eb457;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .5);
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Jost", -apple-system, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

h1, h2, h3 { font-family: var(--font-title); line-height: 1.2; color: var(--accent); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;               /* alvo de toque confortável */
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: scale(.97); }

.btn--whats {
  background: var(--whats);
  color: #06130a;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .3);
}
.btn--whats:hover { background: var(--whats-dark); }

.btn--light {
  background: var(--accent);
  color: #111;
}
.btn--light:hover { background: #d9d9d9; }

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--ghost:hover { background: var(--accent-soft); }

.btn--lg { padding: 15px 30px; font-size: 1.0625rem; }
.btn--xl { padding: 17px 36px; font-size: 1.125rem; }

.ico-whats, .whats-float svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 11, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, .6); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-right: auto;
}
.header__logo img { border-radius: 50%; }

.header__nav { display: none; }
.header__nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .15s ease;
}
.header__nav a:hover { color: var(--accent); }

.btn--header { padding: 10px 18px; min-height: 42px; font-size: .95rem; }

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.header__burger span {
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* menu mobile aberto */
.header__nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 12px 20px 20px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .6);
}
.header__nav.is-open a { padding: 14px 8px; border-bottom: 1px solid var(--accent-soft); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, #0b0b0b 0%, #181616 60%, #211d1c 100%);
  padding: 48px 0 64px;
}
.hero__inner { display: grid; gap: 36px; align-items: center; }

.hero__badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.1rem);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 em { font-style: italic; color: var(--text-soft); }

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 34rem;
  margin-bottom: 26px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.hero__note { font-size: .9rem; color: var(--text-soft); }

.hero__media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
}

/* ---------- Prova social ---------- */
.social-proof { padding: 56px 0; background: var(--surface); }

.social-proof__seal {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 40px;
}
.stars { color: var(--accent); font-size: 2rem; letter-spacing: .15em; }
.stars--sm { font-size: 1rem; margin-bottom: 8px; }

.social-proof__score { font-family: var(--font-title); font-size: 1.6rem; margin-top: 4px; color: var(--accent); }
.social-proof__count { color: var(--text-soft); margin-bottom: 16px; }
.social-proof__count strong { color: var(--text); }

.social-proof__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 600;
}
.social-proof__badge svg { width: 16px; height: 16px; fill: var(--accent); }

.testimonials { display: grid; gap: 18px; }
.testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.testimonial p { font-style: italic; margin-bottom: 12px; }
.testimonial footer { font-size: .9rem; color: var(--text-soft); font-weight: 500; }

/* ---------- Seções: títulos ---------- */
.section-title {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.section-title--left { text-align: left; }
.section-sub {
  text-align: center;
  color: var(--text-soft);
  max-width: 36rem;
  margin: 0 auto 40px;
}

/* ---------- Serviços ---------- */
.services { padding: 64px 0; }

.services__grid { display: grid; gap: 22px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255, 255, 255, .3); }

.card__media {
  aspect-ratio: 4 / 5;            /* proporção vertical: mostra as fotos (retrato) sem cortes agressivos */
  background: var(--surface-2);
}
.card__media img,
.card__media video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.card__media .obj-top { object-position: top; }

.card__body { padding: 22px 24px 26px; }

.card__icon {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: .98rem; margin-bottom: 14px; }

.card__link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: .98rem;
}
.card__link:hover { text-decoration: underline; }

/* ---------- Por que escolher ---------- */
.why { padding: 64px 0; background: var(--surface); }

.why__grid { display: grid; gap: 18px; list-style: none; }

.why__item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.why__icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.why__item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why__item p { color: var(--text-soft); font-size: .98rem; }

/* ---------- Galeria ---------- */
.gallery { padding: 64px 0; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery__grid img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: top;
}

/* ---------- Localização ---------- */
.location { padding: 64px 0; background: var(--surface); }
.location__inner { display: grid; gap: 32px; }

.location__address { font-style: normal; margin: 18px 0; }
.location__address p { margin-bottom: 8px; }
.location__ref { color: var(--text-soft); font-size: .95rem; }

.location__hours { list-style: none; margin-bottom: 24px; max-width: 320px; }
.location__hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.location__hours span { color: var(--text-soft); }

.location__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 300px;
}
.location__map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* ---------- CTA final (bloco branco: destaque máximo) ---------- */
.final-cta {
  padding: 72px 0;
  background: var(--accent);
  color: #161414;
  text-align: center;
}
.final-cta h2 {
  color: #0b0b0b;
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  max-width: 42rem;
  margin: 0 auto 14px;
}
.final-cta p { max-width: 34rem; margin: 0 auto 28px; color: #3d3a39; }
.final-cta__note { font-size: .9rem; margin-top: 18px; color: #3d3a39; }

/* ---------- Footer ---------- */
.footer { background: #060606; color: var(--text-soft); border-top: 1px solid var(--line); padding: 56px 0 24px; }

.footer__grid { display: grid; gap: 32px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}
.footer__logo img { border-radius: 50%; }

.footer__col h3 {
  font-family: var(--font-body);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin: 18px 0 8px;
}
.footer__col h3:first-child { margin-top: 0; }
.footer__col p { font-size: .95rem; margin-bottom: 8px; }
.footer__col a { color: var(--accent); }

.footer__social { display: flex; gap: 12px; margin-top: 14px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  transition: background .15s ease;
}
.footer__social a:hover { background: rgba(255, 255, 255, .22); }
.footer__social svg { width: 20px; height: 20px; fill: var(--accent); }

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--accent-soft);
  font-size: .85rem;
  text-align: center;
  color: #7c7573;
}

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whats);
  color: #06130a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  animation: float-pulse 2.4s ease-in-out infinite;
  transition: transform .15s ease;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 30px; height: 30px; }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .3); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .whats-float { animation: none; }
}

/* ============================================================
   BREAKPOINTS (mobile first)
   ============================================================ */

@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .header__nav { display: flex; gap: 4px; margin-right: 8px; }
  .header__burger { display: none; }

  .hero { padding: 80px 0 96px; }
  .hero__inner { grid-template-columns: 1.1fr .9fr; gap: 56px; }
  .hero__media img { min-height: 460px; }

  /* 6 cards: 3 por linha */
  .services__grid { grid-template-columns: repeat(6, 1fr); }
  .services__grid .card { grid-column: span 2; }

  .why__grid { grid-template-columns: repeat(4, 1fr); }

  .location__inner { grid-template-columns: 1fr 1.1fr; align-items: center; }

  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
