:root {
  --black: #171717;
  --ink: #2d2b28;
  --muted: #77716b;
  --champagne: #d9c1a2;
  --champagne-dark: #b8996a;
  --off-white: #f8f6f2;
  --sand: #e9e2d8;
  --white: #ffffff;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 18px 44px rgba(31, 25, 18, 0.1);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(248, 246, 242, 0.88);
  border-bottom: 1px solid rgba(217, 193, 162, 0.36);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--black);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--off-white) !important;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--black);
  transition: transform 0.2s ease;
}

.section,
.hero {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: center;
  min-height: calc(100vh - 81px);
  padding: 68px 0 78px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background-image:
    linear-gradient(90deg, rgba(248, 246, 242, 0.98) 0%, rgba(248, 246, 242, 0.88) 48%, rgba(248, 246, 242, 0.72) 100%),
    url("assets/images/hero-feminino.webp");
  background-position: center 38%;
  background-size: cover;
  opacity: 1;
  filter: saturate(0.9) contrast(0.96);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 50%;
  z-index: -1;
  width: calc(100vw - 48px);
  max-width: 1320px;
  transform: translateX(-50%);
  border-top: 1px solid rgba(217, 193, 162, 0.44);
  border-bottom: 1px solid rgba(217, 193, 162, 0.32);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  max-width: 660px;
  padding: 28px 0 24px;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: -26px;
  width: 1px;
  background: var(--champagne);
  opacity: 0.64;
}

.hero-copy::after {
  content: "Divas";
  position: absolute;
  top: -34px;
  left: -18px;
  z-index: 0;
  color: rgba(184, 153, 106, 0.11);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9rem;
  line-height: 1;
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--champagne-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 4.8rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.6rem;
}

h3 {
  color: var(--black);
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-copy p,
.section-copy p,
.showcase-copy p,
.promo-copy p,
.location-card p,
.faq p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy p {
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--off-white);
  background: var(--black);
  border: 1px solid var(--black);
}

.button.secondary {
  color: var(--black);
  background: transparent;
  border: 1px solid var(--champagne);
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-info span {
  padding: 8px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 999px;
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 34px 34px -24px -28px;
  border: 1px solid var(--champagne);
  border-radius: var(--radius);
  z-index: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 92px -32px 48px 48px;
  z-index: 0;
  background: rgba(217, 193, 162, 0.2);
  border-radius: var(--radius);
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.72fr);
  gap: 64px;
  align-items: center;
  border-top: 1px solid rgba(217, 193, 162, 0.42);
}

.section-copy {
  max-width: 680px;
}

.about-video {
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-video video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  background: var(--sand);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.categories .section-heading h2 {
  max-width: 620px;
  font-size: 2.35rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  min-height: 340px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(31, 25, 18, 0.06);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 308px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.category-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px 12px 0;
}

.category-card span {
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 12px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 400;
}

.category-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.category-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--black);
  border: 1px solid var(--champagne);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
}

.showcase-copy {
  max-width: 440px;
}

.look-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.9fr;
  gap: 14px;
  align-items: end;
}

.look-row img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.look-row img:nth-child(2) {
  height: 510px;
}

.promo {
  display: block;
  width: 100%;
  padding: 66px max(24px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.promo-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.promo h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.14;
}

.promo .eyebrow {
  color: var(--champagne-dark);
}

.promo-copy p {
  max-width: 430px;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.promo .button.primary {
  color: var(--off-white);
  background: var(--black);
  border-color: var(--black);
}

.promo-frame {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.promo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: var(--sand);
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(31, 25, 18, 0.12);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 64px;
  padding-bottom: 28px;
}

.service-item {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}

.service-item span {
  color: var(--champagne-dark);
  font-weight: 800;
}

.service-item h3 {
  margin: 18px 0 10px;
}

.service-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.week-looks {
  padding-top: 54px;
  padding-bottom: 68px;
  border-top: 1px solid rgba(217, 193, 162, 0.42);
}

.week-looks-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.week-looks-heading h2 {
  margin-bottom: 12px;
  font-size: 3rem;
}

.week-looks-heading p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.week-looks-groups {
  display: grid;
  gap: 18px;
}

.week-looks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.week-looks-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(31, 25, 18, 0.08);
}

.location {
  padding-top: 34px;
  padding-bottom: 54px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
}

.location-card,
.hours-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}

.location-card h2 {
  max-width: 620px;
  font-size: 2.3rem;
}

.hours-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.hours-card strong {
  display: block;
  color: var(--black);
  font-size: 1.28rem;
}

.map-card {
  height: 310px;
  margin-top: 22px;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(0.98);
}

.faq {
  max-width: 940px;
  padding-top: 54px;
  padding-bottom: 44px;
}

.faq .section-heading {
  margin-bottom: 24px;
}

.faq .section-heading h2 {
  font-size: 2.15rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  color: var(--black);
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.footer {
  width: 100%;
  margin-top: 20px;
  padding: 54px 0 26px;
  color: var(--off-white);
  background: var(--black);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: 36px;
  width: var(--container);
  margin: 0 auto;
}

.footer img {
  width: 150px;
  margin-bottom: 16px;
  filter: invert(1);
}

.footer p {
  margin-bottom: 0;
  color: rgba(248, 246, 242, 0.72);
}

.footer-column a,
.footer-column strong {
  display: block;
}

.footer-column strong {
  margin-bottom: 10px;
  color: var(--champagne);
}

.footer-column a {
  margin-top: 7px;
  color: rgba(248, 246, 242, 0.72);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  margin: 42px auto 0;
  padding-top: 18px;
  color: rgba(248, 246, 242, 0.5);
  border-top: 1px solid rgba(217, 193, 162, 0.28);
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--off-white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.22);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 20px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(35deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-35deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(248, 246, 242, 0.98);
    border-bottom: 1px solid var(--sand);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    padding: 13px 0;
  }

  .nav-cta {
    width: max-content;
    margin-top: 10px;
    padding-inline: 18px !important;
  }

  .hero,
  .about,
  .showcase,
  .promo,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding-top: 46px;
  }

  .hero::before {
    background-position: 60% center;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    height: min(680px, 92vw);
  }

  .about-video {
    max-width: 520px;
  }

  .category-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .category-card {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .showcase {
    align-items: start;
  }

  .promo {
    padding: 42px 24px;
  }

  .promo-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .promo-copy p {
    max-width: 620px;
  }

  .promo-frame {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .week-looks-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .week-looks-heading .button {
    width: max-content;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 112px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .section {
    padding: 54px 0;
  }

  .hero::after {
    top: 18px;
    bottom: 18px;
    width: calc(100vw - 28px);
  }

  .hero-copy {
    padding: 18px 0 12px;
  }

  .hero-copy::before {
    left: -12px;
  }

  .hero-copy::after {
    top: -22px;
    left: -8px;
    font-size: 5.3rem;
  }

  .hero-media::after {
    inset: 50px -12px 34px 28px;
  }

  .categories .section-heading h2,
  .promo h2,
  .location-card h2,
  .faq .section-heading h2 {
    font-size: 1.9rem;
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .category-card {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: 380px;
    min-height: 0;
  }

  .category-card div {
    padding: 6px 4px 8px;
  }

  .look-row {
    grid-template-columns: 1fr;
  }

  .look-row img,
  .look-row img:nth-child(2) {
    height: 430px;
  }

  .promo-frame {
    grid-template-columns: 1fr;
  }

  .week-looks {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .week-looks-heading {
    margin-bottom: 22px;
  }

  .week-looks-heading h2 {
    font-size: 2.2rem;
  }

  .week-looks-heading .button {
    width: 100%;
  }

  .week-looks-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .week-looks-grid img {
    padding: 8px;
  }

  .promo {
    gap: 28px;
    padding: 30px 16px;
  }

  .promo h2 {
    max-width: 100%;
  }

  .promo-copy {
    margin-bottom: 22px;
  }

  .service-item,
  .location-card,
  .hours-card {
    padding: 24px;
  }

  .map-card {
    height: 260px;
  }

  .footer-inner,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 84px;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
  }
}
