/* === HERO === */
/* Desktop: 100dvh — banner nunca ultrapassa a tela */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #0a0a0a;
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: -2px; /* leve sangria — evita frestas por arredondamento do aspect-ratio */
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* === Conteúdo sobreposto === */
/* Desktop: zona escura à esquerda em ambos os banners */
.hero__content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  max-width: 30%;
  z-index: 5;
}

.hero__content--right {
  left: auto;
  right: 6%;
  text-align: right;
}

/* === Frase minimalista === */
.hero__phrase {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #1a1a1a 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__content--right .hero__phrase {
  background: linear-gradient(270deg, #1a1a1a 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__phrase strong {
  font-weight: 500;
  font-style: italic;
}


/* === Dots === */
.hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.hero__dot.active {
  background: var(--color-gold);
  transform: scale(1.4);
}

/* === Mobile === */
@media (max-width: 768px) {
  .hero {
    height: auto;
    aspect-ratio: 853 / 1844;
  }

  .hero__content,
  .hero__content--right {
    top: 17%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 92%;
    text-align: center;
    z-index: 2;
  }

  .hero__phrase {
    /* escala com a viewport — mesmas cores e efeito do desktop (gradiente em texto, sem sombra) */
    font-size: clamp(1.3rem, 7.28vw, 2.6rem);
    line-height: 1.55;
  }

  /* Banner 2 — mantém "Em um só lugar." em uma única linha no mobile */
  .hero__phrase-nowrap {
    display: inline-block;
    white-space: nowrap;
  }

  /* Banner 1 — zoom uniforme (mantém as proporções da foto) ancorado
     perto do cabelo dela: afasta o rosto do texto e corta o pé, e o
     excesso horizontal é cortado do lado direito (fundo vazio), não
     do cabelo solto à esquerda */
  .hero__slider .hero__slide:first-child .hero__img {
    transform: scale(1.55);
    transform-origin: 38% top;
  }
}

/* === PROVA SOCIAL === */
.social-proof {
  background: var(--color-gold);
  padding: 2rem 1.5rem;
}

.social-proof__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-proof__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-dark);
  transition: opacity var(--transition);
}

a.social-proof__item:hover { opacity: 0.8; }

.social-proof__number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
}

.social-proof__label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.social-proof__divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
  .social-proof__divider { display: none; }
  .social-proof__grid { gap: 1.5rem; }
}

/* === SERVIÇOS === */
.services {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.services::before {
  content: '';
  position: absolute;
  width: 230px;
  height: 230px;
  top: 55px;
  right: -145px;
  border: 1px solid rgba(168, 146, 109, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.services > .container { position: relative; z-index: 1; }

/* Header */
.services .container {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.services__header {
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #2b2b2b;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.services__title em {
  font-style: normal;
  background: linear-gradient(90deg, #1a1a1a 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.services__intro {
  max-width: 850px;
  margin: 1.5rem auto 0;
  color: #555;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.services__intro strong {
  color: #252525;
  font-weight: 600;
}

/* Cards */
.services__grid.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  padding-top: 0;
  padding-bottom: 7rem;
}

.services__card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.4;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.services__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s ease;
}

.services__card-img[src*="unhas"] {
  object-position: center 25%;
}

.services__card:hover .services__card-img {
  transform: scale(1.05);
}

.services__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
}

.services__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  gap: 0.7rem;
  padding: 2rem;
}

.services__card-eye {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.services__card-desc {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
  text-wrap: balance;
}

.services__card-btn {
  margin-top: 0.3rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  background: var(--color-gold);
  color: var(--color-dark);
}

.services__card-btn:hover {
  background: var(--color-gold-dark);
}

/* Responsive */
@media (max-width: 900px) {
  .services__grid.container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services .container { padding-top: 4rem; padding-bottom: 2.5rem; }
  .services__grid.container { grid-template-columns: 1fr; gap: 1rem; padding-bottom: 4rem; }
  .services__card { aspect-ratio: 4 / 5; }
}

/* === PARALLAX === */
.parallax {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/sessao3.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.parallax__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.65) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.parallax__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.parallax__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.parallax__title strong {
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.parallax__text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.parallax__btn {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .parallax {
    min-height: 60vh;
    background-attachment: scroll;
  }

  .parallax__content {
    padding: 3rem 1.5rem;
  }
}

/* === DEPOIMENTOS === */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
  background: var(--color-offwhite);
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  left: -105px;
  bottom: 16%;
  border: 1px solid rgba(168, 146, 109, 0.12);
  transform: rotate(45deg);
  pointer-events: none;
}

.testimonials > .container { position: relative; z-index: 1; }

.testimonials__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #2b2b2b;
  line-height: 1.3;
}

.testimonials__title em {
  font-style: normal;
  background: linear-gradient(90deg, #1a1a1a 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Body row: badge + carousel */
.testimonials__body {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
}

/* Selo de confiança (Google + Facebook) */
.trust-badge {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.4rem;
  box-shadow: 0 14px 34px rgba(26,26,26,0.12), 0 0 0 1px rgba(201,176,138,0.3);
  overflow: hidden;
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
}

.trust-badge__seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.trust-badge__seal-icon {
  width: 56px;
  height: 56px;
}

.trust-badge__seal span {
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.trust-badge__row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.trust-badge__logo { width: 26px; height: 26px; flex-shrink: 0; }

.trust-badge__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 0.15rem;
}

.trust-badge__brand {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
}

.trust-badge__stars {
  display: inline-block;
  width: 65px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5a623' d='M12 2l2.9 6.9 7.1.6-5.4 4.7L18 21l-6-3.9L6 21l1.4-6.8L2 9.5l7.1-.6L12 2z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 13px 13px;
}

.trust-badge__rec {
  font-family: var(--font-primary);
  font-size: 0.74rem;
  font-weight: 600;
  color: #1877F2;
}

.trust-badge__score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  flex-shrink: 0;
}

.trust-badge__count {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  color: #9a9a9a;
  margin-left: calc(26px + 0.7rem);
}

.trust-badge__divider {
  height: 1px;
  background: rgba(26,26,26,0.08);
  margin: 1rem 0;
}

/* Carousel */
.testimonials__carousel-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.testimonials__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.testimonials__track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  /* width set by JS */
}

/* Card */
.t-card {
  flex-shrink: 0;
  height: 340px;
  background: #fff;
  border-radius: 14px;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(26,26,26,0.08);
  border: 1px solid rgba(201,176,138,0.14);
  overflow: hidden;
  /* width set by JS */
}

.t-card__stars {
  display: inline-block;
  width: 100px;
  height: 19px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5a623' d='M12 2l2.9 6.9 7.1.6-5.4 4.7L18 21l-6-3.9L6 21l1.4-6.8L2 9.5l7.1-.6L12 2z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 20px 19px;
}

.t-card__tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-gold-dark);
  text-transform: uppercase;
  margin-top: 0.85rem;
}

.t-card__divider {
  height: 1px;
  background: rgba(26,26,26,0.1);
  margin: 0.9rem 0;
}

.t-card__text {
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  line-height: 1.65;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.t-card__footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.t-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.t-card__avatar[data-color="moss"] { background: var(--color-moss); }
.t-card__avatar[data-color="gold"] { background: var(--color-gold-dark); }
.t-card__avatar[data-color="dark"] { background: #3a3a3a; }

.t-card__name {
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* Nav buttons */
.testimonials__nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(201,176,138,0.4);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.testimonials__nav:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials__body { flex-direction: column; }
  .trust-badge { width: 100%; }
}

@media (max-width: 640px) {
  .testimonials__carousel-wrap { position: relative; gap: 0; }
  .testimonials__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
    box-shadow: 0 4px 12px rgba(26,26,26,0.18);
  }
  .testimonials__nav--prev { left: 6px; }
  .testimonials__nav--next { right: 6px; }
}

/* === TRANSFORMAÇÕES === */
.transformations {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
  background: var(--color-dark);
}

.transformations::before,
.transformations::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(201, 176, 138, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.transformations::before {
  width: 360px;
  height: 360px;
  top: 5%;
  left: -210px;
  box-shadow: 0 0 0 72px rgba(201, 176, 138, 0.025);
}

.transformations::after {
  width: 210px;
  height: 210px;
  right: -55px;
  bottom: 8%;
}

.transformations > .container { position: relative; z-index: 1; }

.transformations__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.transformations__header .section-eyebrow { color: var(--color-gold); }

.transformations__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-white);
  line-height: 1.3;
  margin-top: 0.5rem;
}

.transformations__title em {
  font-style: normal;
  background: linear-gradient(90deg, #ffffff 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.transformations__carousel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.transformations__viewport {
  overflow: hidden;
  max-width: 100%;
}

.transformations__track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  transition: transform 0.45s ease;
}

.tf-card {
  position: relative;
  flex-shrink: 0;
  width: min(360px, 86vw);
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: none;
  transition: width var(--transition);
}

.tf-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-card__mute {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.tf-card__mute:hover { background: rgba(0,0,0,0.65); }

.tf-card__mute .icon-unmuted { display: none; }
.tf-card__mute[aria-pressed="true"] .icon-muted { display: none; }
.tf-card__mute[aria-pressed="true"] .icon-unmuted { display: block; }

.transformations__nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.transformations__nav:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

.transformations__nav[hidden] { display: none; }

@media (max-width: 640px) {
  .transformations__carousel-wrap { position: relative; }
  .transformations__viewport { width: min(340px, 100%); }
  .transformations__nav {
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: rgba(15,15,15,.68);
  }
  .transformations__nav--prev { left: 0; }
  .transformations__nav--next { right: 0; }
}

/* === SOBRE === */
.about {
  padding: var(--section-padding);
  background: var(--color-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.about__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.about__text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.about__lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--color-dark) !important;
  line-height: 1.5 !important;
  margin-bottom: 1rem !important;
}

.about__deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-offwhite);
}

.about__deliverables li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  aspect-ratio: 1 / 1;
  min-width: 0;
  background: var(--color-offwhite);
  border-radius: 4px;
  border-top: 2px solid var(--color-gold);
}

.about__deliverables strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.about__deliverables span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.about__welcome {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem) !important;
  font-weight: 700;
  color: var(--color-dark) !important;
  line-height: 1.5 !important;
  margin-top: 1.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-offwhite);
}

/* Galeria */
.about__gallery {
  position: sticky;
  top: 110px;
  height: 620px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,26,26,0.18);
}

.about__gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.about__gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.about__gallery-slide.active { opacity: 1; }

.about__gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__gallery-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.about__gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.about__gallery-dot.active {
  width: 20px;
  border-radius: 4px;
  background: var(--color-white);
}

/* === EQUIPE === */
.team {
  padding: var(--section-padding);
  background: var(--color-offwhite);
}

/* Carrossel contínuo (marquee) */
.team__carousel-wrap {
  overflow: hidden;
}

.team__viewport {
  overflow: hidden;
}

.team__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: team-marquee linear infinite;
  animation-play-state: running;
}

.team__carousel-wrap:hover .team__track,
.team__track.is-paused {
  animation-play-state: paused;
}

@keyframes team-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-distance, -50%)); }
}

.team-card {
  position: relative;
  flex-shrink: 0;
  width: min(312px, 68vw);
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-dark);
  box-shadow: 0 10px 28px rgba(26,26,26,0.14);
}

.team-card--featured {
  border: 2px solid var(--color-gold);
  box-shadow: 0 10px 32px rgba(201,176,138,0.35);
}

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

.team-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.1rem 1.1rem;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 45%, transparent 100%);
}

.team-card__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-card__role {
  font-weight: 700;
  color: var(--color-gold);
}

/* === DIFERENCIAIS === */
.differentials {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
  background: var(--color-dark);
}

.differentials::before,
.differentials::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(201, 176, 138, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.differentials::before {
  width: 340px;
  height: 340px;
  left: -205px;
  top: -115px;
  box-shadow: 0 0 0 62px rgba(201, 176, 138, 0.02);
}

.differentials::after {
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -65px;
}

.differentials > .container { position: relative; z-index: 1; }

.differentials .section-title { color: var(--color-white); }

.differentials .section-title em {
  display: inline-block;
  padding-right: 0.12em;
  background: linear-gradient(90deg, #ffffff 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.differentials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.differentials__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.differentials__check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.differentials__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.differentials__item p {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__text { justify-content: flex-start; align-items: center; text-align: center; }
  .about__gallery { position: static; top: auto; height: 320px; }
  .about__deliverables,
  .about__welcome { display: none; }
  .differentials__grid { grid-template-columns: 1fr; }
  .differentials::before { width: 250px; height: 250px; left: -180px; }
  .differentials::after { width: 130px; height: 130px; right: -75px; }
}

/* === FAQ === */
.faq {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
  background: var(--color-white);
}

.faq::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  top: 12%;
  right: -130px;
  border: 1px solid rgba(201, 176, 138, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(201, 176, 138, 0.025);
  pointer-events: none;
}

.faq > .container { position: relative; z-index: 1; }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--color-offwhite);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  border-left: 2px solid var(--color-gold);
}

.faq__question {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-gold-dark);
  transition: transform var(--transition);
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* === LOCALIZAÇÃO === */
.location {
  padding: var(--section-padding-sm);
  background: var(--color-offwhite);
}

.location__card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,26,26,0.1);
}

.location__info {
  padding: 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
}

.location__info .section-title {
  margin-bottom: 1.25rem;
}

.location__address {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.location__pin {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold-dark);
}

.location__pin svg {
  width: 20px;
  height: 20px;
  display: block;
}

.location__address strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
}

.location__address p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.location__address-sub { color: var(--color-gold-dark) !important; margin-top: 0.15rem; }

.location__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.75rem;
  margin-top: auto;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--color-offwhite);
}

.location__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold-dark);
}

.location__icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.location__item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.location__item p, .location__item a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.location__item a { color: var(--color-gold-dark); font-weight: 600; }

.location__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition);
  align-self: flex-start;
}

.location__cta:hover { background: #000; }

.location__map {
  min-height: 380px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .location__card { grid-template-columns: 1fr; }
  .location__map { min-height: 280px; }
  .location__info { padding: 2rem 1.5rem; }
}

/* === CTA FINAL === */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
  background: var(--color-moss);
}

.cta-final::before,
.cta-final::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(232, 215, 187, 0.16);
}

.cta-final::before {
  width: 260px;
  height: 260px;
  left: -145px;
  top: -155px;
  border-radius: 50%;
}

.cta-final::after {
  width: 170px;
  height: 170px;
  right: -70px;
  bottom: -115px;
  border-radius: 50% 0 0 0;
  transform: rotate(18deg);
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.cta-final__title em {
  font-style: normal;
  background: linear-gradient(90deg, #ffffff 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.cta-final__text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* === FOOTER === */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 1.5rem 0;
}

.footer::before,
.footer::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(201, 176, 138, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.footer::before {
  width: 280px;
  height: 280px;
  top: -190px;
  right: 6%;
}

.footer::after {
  width: 150px;
  height: 150px;
  left: -90px;
  bottom: -80px;
}

.footer__inner,
.footer__bottom { position: relative; z-index: 1; }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

.footer__logo-hair {
  color: var(--color-gold);
}

.footer__brand p {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 0.25rem;
}

.footer__links,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links strong,
.footer__contact strong {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.footer__links a,
.footer__contact a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover { opacity: 1; }

.footer__contact p {
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer__bottom {
  text-align: center;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .cta-final__inner { flex-direction: column; text-align: center; }
  .cta-final__inner .btn { width: 100%; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .transformations::before { width: 250px; height: 250px; left: -175px; }
  .transformations::after { width: 140px; height: 140px; right: -80px; }
  .cta-final::before { width: 190px; height: 190px; left: -125px; top: -105px; }
  .footer::before { width: 210px; height: 210px; right: -95px; }
}

/* Teste editorial: tipografia do blog aplicada aos títulos da home */
.services__title,
.parallax__title,
.testimonials__title,
.transformations__title,
.section-title,
.cta-final__title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.services__title em,
.parallax__title strong,
.testimonials__title em,
.transformations__title em,
.section-title em,
.section-title strong,
.cta-final__title em {
  font-weight: 500;
  font-style: italic;
}

/* Galeria coverflow - adaptação em JavaScript puro do componente de referência */
.about { overflow: hidden; }

.about__inner {
  display: block;
  max-width: 1320px;
}

.about__text {
  display: block;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about__text .section-title { margin-bottom: 1.1rem; }

.about__lead {
  max-width: 720px;
  margin: 0 auto !important;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-muted) !important;
  line-height: 1.75 !important;
}

.about__gallery {
  position: relative;
  top: auto;
  width: 100%;
  height: 470px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
  touch-action: pan-y;
  user-select: none;
}

.about__gallery-track { position: absolute; inset: 0; }

.about__gallery-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translate(-50%, -50%);
  box-shadow: none;
  transition: transform .48s cubic-bezier(.22,.78,.28,1), width .48s cubic-bezier(.22,.78,.28,1), height .48s cubic-bezier(.22,.78,.28,1), opacity .3s ease, border-radius .48s ease, box-shadow .48s ease;
  will-change: transform, width, height, opacity;
  cursor: pointer;
}

.about__gallery-slide.active {
  box-shadow: none;
  cursor: default;
}

.about__gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.about__gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201,176,138,.65);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--color-dark);
  box-shadow: 0 8px 24px rgba(26,26,26,.15);
  transform: translateY(-50%);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.about__gallery-nav--prev { left: 1rem; }
.about__gallery-nav--next { right: 1rem; }
.about__gallery-nav svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.about__gallery-nav:hover { background: var(--color-gold); transform: translateY(-50%) scale(1.06); }

@media (max-width: 768px) {
  .about__text { margin-bottom: 1.75rem; }
  .about__lead { font-size: .98rem; }
  .about__gallery { height: 360px; }
  .about__gallery-nav { width: 38px; height: 38px; }
  .about__gallery-nav--prev { left: .25rem; }
  .about__gallery-nav--next { right: .25rem; }
}
