/* unhasdaRe — mobile-first, paleta #F5F0ED / #A37B7B / #4A3E3E */

:root {
  --bg: #f5f0ed;
  --accent: #a37b7b;
  --text: #4a3e3e;
  --cream: #f8f4f1;
  --white: #ffffff;
  --ink: #1a1818;
  --shadow-soft: 0 18px 45px rgba(74, 62, 62, 0.08);
  --shadow-accent: 0 12px 32px rgba(163, 123, 123, 0.28);
  --radius: 14px;
  --footer-h: 3.25rem;
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-quote: "Cormorant Garamond", Georgia, serif;
  --section-space: 2.75rem;
  --media-gap: 1.35rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  padding-bottom: calc(var(--footer-h) + 4.5rem);
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Botão principal da marca */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn--brand {
  background: var(--accent);
  color: var(--cream) !important;
  box-shadow: var(--shadow-accent);
}

.btn--brand:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.btn--brand:active {
  transform: translateY(0);
}

/* Moldura uniforme para mídias */
.media-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(163, 123, 123, 0.14);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-frame--flush {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero__cover {
  width: 100%;
  height: 100%;
  min-height: 72vh;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

@media (max-width: 768px) {
  .hero__cover {
    object-position: center center;
  }
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    rgba(245, 240, 237, 0.65) 45%,
    transparent 100%
  );
}

/* Barra de marca */
.brand-bar {
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  padding: 0 1.25rem var(--section-space);
}

.brand-bar__inner {
  max-width: 26rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 1.85rem;
  text-align: center;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.brand-bar__logo {
  width: auto;
  max-width: min(220px, 72vw);
  height: auto;
  margin: 0 auto;
}

.brand-bar__name {
  margin: 0.85rem 0 0;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.85rem, 6vw, 2.35rem);
  letter-spacing: 0.04em;
  color: var(--cream);
}

.brand-bar__tagline {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 244, 241, 0.88);
}

.brand-bar__cta {
  margin-top: 1.25rem;
  min-height: 3.1rem;
  padding: 0 1.65rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.brand-bar__cta i {
  font-size: 1.15rem;
}

/* Revelar ao rolar */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(2rem);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal]:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  html.js [data-reveal] {
    transition: none;
  }
}

.main {
  position: relative;
}

.section {
  padding: var(--section-space) 1.35rem;
}

.section__inner {
  max-width: 38rem;
  margin: 0 auto;
}

.section__inner--wide {
  max-width: 72rem;
}

.section__title {
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.65rem, 5vw, 2rem);
  color: var(--accent);
  letter-spacing: 0.02em;
}

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

.section__subtitle {
  margin: -0.35rem 0 1.75rem;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text);
  opacity: 0.88;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section__text {
  margin: 0;
  font-size: 1.02rem;
}

.section__lead {
  margin: -0.25rem 0 1.5rem;
  font-size: 0.98rem;
  opacity: 0.92;
  text-align: center;
}

.form-schedule-hint {
  margin: -0.15rem 0 0.65rem;
  padding: 0 0.05rem;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--accent);
}

.form-schedule-hint[hidden] {
  display: none;
}

/* Dia das Mães */
.section--maes {
  padding-top: 0.5rem;
}

.section__maes-grid {
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  gap: var(--media-gap);
}

.maes__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.maes-frame {
  position: relative;
  padding: 2rem 1.5rem 2.25rem;
  background: linear-gradient(145deg, var(--white) 0%, rgba(245, 240, 237, 0.96) 100%);
  border-radius: 6px;
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(163, 123, 123, 0.2);
  border: 2px solid rgba(163, 123, 123, 0.38);
  text-align: center;
}

.maes-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(163, 123, 123, 0.22);
  border-radius: 3px;
  pointer-events: none;
}

.maes__tag {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.maes__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 4.5vw, 1.85rem);
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.maes__text {
  margin: 0;
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}

.maes__link {
  margin-top: 1.35rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}

/* ARTS Extraordinário */
.section--arts {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.arts-shell {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(163, 123, 123, 0.08) 0%, transparent 45%),
    linear-gradient(-35deg, rgba(163, 123, 123, 0.06) 0%, transparent 40%);
  border: 1px solid rgba(163, 123, 123, 0.22);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.arts-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(163, 123, 123, 0.45),
    rgba(163, 123, 123, 0.75),
    rgba(163, 123, 123, 0.45),
    transparent
  );
  pointer-events: none;
}

.arts-split {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: stretch;
}

.arts-split__photo img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.arts-split__content {
  position: relative;
  padding-left: 0;
  border-left: none;
}

.arts__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.arts__title {
  margin: 0 0 1rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.85rem, 5.5vw, 2.65rem);
  line-height: 1.15;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.arts__text {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
}

.arts__cta {
  min-height: 3.15rem;
  padding: 0 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

/* Galeria masonry */
.section--gallery {
  padding-bottom: 2.5rem;
}

.masonry {
  column-count: 2;
  column-gap: var(--media-gap);
}

.masonry__item {
  break-inside: avoid;
  margin-bottom: var(--media-gap);
}

.masonry__item--img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
}

.quote-tile {
  margin: 0;
  padding: 1.35rem 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(163, 123, 123, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.quote-tile__mark {
  display: block;
  font-family: var(--font-title);
  font-size: 2.75rem;
  line-height: 0.9;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 0.15rem;
}

.quote-tile__text {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.quote-tile__author {
  display: block;
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.quote-tile__stars {
  margin-top: 0.65rem;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

/* Sobre */
.section__split {
  display: flex;
  flex-direction: column;
  gap: var(--media-gap);
  align-items: stretch;
  max-width: 48rem;
}

.section__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.section__copy .section__title {
  margin-bottom: 0.85rem;
}

/* Serviços */
.section--servicos {
  padding-top: 2rem;
}

.servicos--grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--media-gap);
}

.servicos__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(163, 123, 123, 0.12);
  opacity: 1;
  transform: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .section--servicos:not(.is-visible) .servicos__card {
  opacity: 0;
  transform: translateY(1.15rem);
}

html.js .section--servicos.is-visible .servicos__card {
  opacity: 1;
  transform: translateY(0);
}

html.js .section--servicos.is-visible .servicos__card:nth-child(1) {
  transition-delay: 0.06s;
}

html.js .section--servicos.is-visible .servicos__card:nth-child(2) {
  transition-delay: 0.12s;
}

html.js .section--servicos.is-visible .servicos__card:nth-child(3) {
  transition-delay: 0.18s;
}

html.js .section--servicos.is-visible .servicos__card:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  html.js .section--servicos:not(.is-visible) .servicos__card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.servicos__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.servicos__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.servicos__body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  row-gap: 0.2rem;
  align-items: start;
}

.servicos__icon {
  grid-row: 1 / span 2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(163, 123, 123, 0.12);
  color: var(--accent);
  font-size: 1.05rem;
}

.servicos__name {
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--accent);
}

.servicos__desc {
  margin: 0;
  grid-column: 2;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Depoimentos — carrossel horizontal */
.section--depo {
  padding-bottom: 2.25rem;
}

.carousel {
  margin: 0 -1.35rem 2rem;
  padding: 0 1.35rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.carousel__track {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.35rem;
}

.depo-card {
  flex: 0 0 min(88vw, 20rem);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(163, 123, 123, 0.15);
  box-shadow: var(--shadow-soft);
}

.depo-card__stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
}

.depo-card__text {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.depo-card__name {
  margin: 0;
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--accent);
}

.depo-send {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.form__textarea {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.5;
}

.depo-send__btn {
  min-height: 3.15rem;
  border-radius: 12px;
  font-size: 0.95rem;
}

.depo-send__msg {
  margin: 0;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
}

/* Formulário */
.section--form {
  padding-bottom: 3rem;
}

.form-head {
  text-align: center;
  margin-bottom: 0.5rem;
}

.form-head__logo-wrap {
  display: inline-block;
  padding: 0.55rem 1.1rem 0.65rem;
  margin-bottom: 0.35rem;
  background: var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.form-head__logo {
  width: auto;
  max-width: 150px;
  height: auto;
  margin: 0 auto;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.form__input {
  min-height: 3.15rem;
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(163, 123, 123, 0.28);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(163, 123, 123, 0.2);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A37B7B' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__submit {
  margin-top: 0.35rem;
  min-height: 3.35rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  width: 100%;
}

.form__submit i {
  font-size: 1.2rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: calc(var(--footer-h) + 0.85rem);
  z-index: 50;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border-radius: 50%;
  font-size: 1.55rem;
  box-shadow: var(--shadow-accent);
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  min-height: var(--footer-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  background: rgba(245, 240, 237, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(163, 123, 123, 0.2);
  box-shadow: 0 -4px 20px rgba(74, 62, 62, 0.06);
}

.site-footer__text {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  color: var(--text);
}

@media (min-width: 640px) {
  .hero {
    min-height: 78vh;
  }

  .hero__cover {
    min-height: 78vh;
  }

  .brand-bar {
    margin-top: -4rem;
  }

  .section {
    padding: 3rem 2rem;
  }

  .carousel {
    margin: 0 0 2rem;
    padding: 0;
  }

  .depo-card {
    flex: 0 0 18rem;
  }

  .masonry {
    column-count: 3;
  }

  .section__split {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .section__figure {
    flex: 0 0 42%;
    max-width: 42%;
  }

  .section__copy {
    flex: 1;
  }

  .servicos--grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section__maes-grid {
    flex-direction: row;
    align-items: stretch;
    gap: 1.75rem;
  }

  .maes__photo {
    flex: 0 0 38%;
    max-width: 38%;
  }

  .maes-frame {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .arts-split {
    flex-direction: row;
    align-items: center;
    gap: 2.25rem;
  }

  .arts-split__photo {
    flex: 0 0 44%;
    max-width: 44%;
  }

  .arts-split__content {
    flex: 1;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(163, 123, 123, 0.28);
  }

  .arts-shell {
    padding: 2rem 1.75rem;
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: 85vh;
  }

  .hero__cover {
    min-height: 85vh;
  }

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

  .servicos__photo {
    aspect-ratio: 1 / 1;
  }

  body {
    padding-bottom: calc(var(--footer-h) + 3rem);
  }

  .form-head__logo {
    max-width: 170px;
  }

  .masonry {
    column-gap: 1.5rem;
  }
}
