:root {
  --pink: #a51056;
  --pink-dark: #6f0738;
  --blush: #f6e6ed;
  --ink: #20181c;
  --muted: #756a70;
  --line: #e8dde2;
  --white: #fff;
  --serif: "Italiana", serif;
  --sans: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font: 16px/1.5 var(--sans);
}

button,
a {
  font: inherit;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Barra superior */

.topbar {
  padding: 9px 16px;
  color: #fff;
  background: var(--pink);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Cabeçalho */

.header {
  position: sticky;
  top: 0;
  z-index: 20;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  height: 86px;
  padding: 0 clamp(20px, 5vw, 72px);

  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font: 2rem/1 var(--serif);
  letter-spacing: 0.11em;
  text-align: center;
}

.brand span {
  display: block;
  margin-left: 0.44em;

  font: 500 0.55rem/1.8 var(--sans);
  letter-spacing: 0.44em;
}

.nav {
  display: flex;
  gap: 30px;
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--pink);
}

.icon-button {
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Menu 3 pontinhos Inicio */ 
.menu-button {
  position: absolute;
  left: clamp(20px, 2.5vw, 40px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;

  width: 34px;
  height: 34px;
  padding: 5px;

  background: transparent;
  border: 0;

  cursor: pointer;
}
/* Menu 3 pontinhos Fim */

.menu-button span {
  display: block;

  width: 24px;
  height: 2px;

  background: var(--ink);
  border-radius: 2px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-button:hover span {
  background: var(--pink);
}

.cart-button {
  justify-self: end;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-button span {
  display: inline-grid;
  place-items: center;

  width: 22px;
  height: 22px;
  margin-left: 6px;

  color: white;
  background: var(--pink);
  border-radius: 50%;
}

/* Banner principal */

.hero {
  position: relative;

  display: grid;
  grid-template-columns: 42% 58%;

  min-height: 690px;

  background: var(--blush);
  overflow: hidden;
}

.hero-copy {
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 70px clamp(24px, 6vw, 92px);
}

.eyebrow {
  margin: 0 0 18px;

  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.hero h1,
.section h2,
.editorial h2,
.about h2 {
  margin: 0;
  font: 400 clamp(3rem, 5vw, 5.8rem) / 0.95 var(--serif);
}

.hero h1 em {
  color: var(--pink);
  font-style: normal;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 28px 0 34px;
  color: var(--muted);
}

.hero-image {
  height: 690px;
}

/* Bolinha Anaq Inicio */
.hero-stamp {
  position: absolute;
  right: 40px;
  bottom: 45px;
/* Bolinha Anaq Fim */

  display: grid;
  place-content: center;

  width: 106px;
  height: 106px;

  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 10px 30px #70133d44;

  font: 1.2rem var(--serif);
  letter-spacing: 0.1em;
  text-align: center;
}

.hero-stamp small {
  font: 0.48rem var(--sans);
  letter-spacing: 0.16em;
}

/* Botões */

.primary-button {
  display: inline-block;

  padding: 15px 24px;

  color: white;
  background: var(--pink);
  border: 0;

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  cursor: pointer;
}

.primary-button:hover {
  background: var(--pink-dark);
}

/* Benefícios */

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  padding: 26px clamp(20px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}

.trust div {
  text-align: center;
}

.trust strong,
.trust span {
  display: block;
}

.trust strong {
  font-size: 0.85rem;
}

.trust span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Seção de produtos */

.section {
  padding: 100px clamp(20px, 6vw, 90px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;

  margin-bottom: 42px;
}

.section h2 {
  font-size: clamp(2.8rem, 4vw, 4.6rem);
}

.section-heading > p {
  max-width: 330px;
  color: var(--muted);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
}

.product-image {
  margin-bottom: 16px;
  aspect-ratio: 3 / 4;

  background: #f0ecee;
  overflow: hidden;
}

.product-image img {
  transition: transform 0.55s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;

  padding: 7px 10px;

  background: #fff;

  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.product-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.product-info h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.product-info p {
  margin: 0;
  color: var(--pink);
  font-weight: 600;
}

.product-info small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.add-button {
  width: 100%;
  margin-top: 13px;
  padding: 11px;

  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);

  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  cursor: pointer;
}

.add-button:hover {
  color: white;
  background: var(--ink);
}

/* Seção editorial */

.editorial {
  display: grid;
  grid-template-columns: 42% 58%;

  min-height: 420px;

  color: white;
  background: var(--pink);
}

.editorial-image {
  min-height: 420px;
}

.editorial-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  max-width: 760px;
  padding: 48px clamp(32px, 7vw, 110px) 48px 55px;
  text-align: right;
}

.editorial .eyebrow {
  color: #f8bed9;
}

.editorial h2 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
}

.editorial-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: #f5dce8;
}

.text-link {
  padding-bottom: 8px;

  border-bottom: 1px solid #ffffff88;

  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 10px;
}

.editorial-detail {
  grid-column: 1;
  grid-row: 1;
  align-self: stretch;
  height: 420px;
  margin: 0;
  overflow: hidden;
}

/* Sobre a loja */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;

  min-height: 650px;

  background: #f8f3f5;
}

.about > img {
  max-height: 600px;
  margin-top: 30px; /* Aumente o número para descer mais */
}

.about > div {
  align-self: center;
  padding: 80px clamp(30px, 7vw, 110px);
  text-align: center;
}

.about h2 {
  font-size: clamp(2.6rem, 4vw, 4.7rem);
}

.about > div > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
}

.light {
  background: var(--ink);
}

/* Rodapé */

footer {
  padding: 65px clamp(20px, 6vw, 90px) 30px;

  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-brand {
  display: inline-block;
}

.footer-brand + p {
  color: var(--muted);
}

footer > div {
  display: flex;
  justify-content: center;
  gap: 28px;

  margin: 28px 0;
  font-size: 0.86rem;
}

footer small {
  color: #9b9296;
}

/* WhatsApp */

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;

  padding: 13px 18px;

  color: #fff;
  background: #1e1a1c;
  border: 0;
  border-radius: 30px;
  box-shadow: 0 8px 26px rgba(251, 126, 205, 0.2);

  cursor: pointer;
}

.whatsapp span {
  margin-left: 7px;
  font-size: 0.82rem;
}

/* Carrinho */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 29;

  background: #0007;
}

.cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;

  display: flex;
  flex-direction: column;

  width: min(440px, 100%);
  height: 100dvh;
  padding: 26px;

  background: #fff;

  transform: translateX(105%);
  transition: transform 0.35s ease;
}

.cart.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
  font: 2rem var(--serif);
}

.cart-head button {
  font-size: 2rem;
}

.cart-items {
  flex: 1;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 14px;

  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 75px;
  height: 96px;
}

.cart-item h3 {
  margin: 6px 0;
  font-size: 0.86rem;
}

.cart-item p {
  margin: 0;
  color: var(--pink);
  font-size: 0.84rem;
  font-weight: 600;
}

.remove {
  align-self: start;

  background: none;
  border: 0;

  font-size: 1.3rem;
  cursor: pointer;
}

.cart-empty {
  margin: auto;
  text-align: center;
}

.cart-empty a {
  color: var(--pink);
  text-decoration: underline;
}

.cart-footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cart-footer .primary-button {
  width: 100%;
}

.cart-footer small {
  display: block;
  margin-top: 10px;

  color: var(--muted);
  text-align: center;
}

/* Fundo escuro do menu lateral */

.side-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 39;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

/* Menu lateral */

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;

  display: flex;
  flex-direction: column;

  width: min(400px, 90%);
  height: 100dvh;
  padding: 30px;

  background: #fff;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.15);

  transform: translateX(-105%);
  transition: transform 0.35s ease;
}

.side-menu.open {
  transform: translateX(0);
}

/* Cabeçalho do menu */

.side-menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.side-menu-label {
  margin: 0 0 5px;

  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.side-menu-header h2 {
  margin: 0;
  font: 2.4rem var(--serif);
}

.side-menu-close {
  padding: 0;

  color: var(--ink);
  background: transparent;
  border: 0;

  font-size: 2rem;
  line-height: 1;

  cursor: pointer;
}

/* Categorias */

.side-menu-nav {
  display: flex;
  flex-direction: column;

  margin-top: 20px;
}

.side-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  padding: 20px 5px;

  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);

  font-size: 1rem;
  text-align: left;

  cursor: pointer;
}

.side-category-link span {
  color: var(--pink);
  font-size: 1.2rem;

  transition: transform 0.25s ease;
}

.side-category-link:hover {
  color: var(--pink);
}

.side-category-link:hover span {
  transform: translateX(5px);
}

/* Rodapé do menu */

.side-menu-footer {
  margin-top: auto;
  padding-top: 25px;

  border-top: 1px solid var(--line);
}

.side-menu-footer p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.side-menu-footer a {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
}

/* Inicio do menu lateral*/
/* Fundo escuro do menu lateral */

.side-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 39;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

/* Menu lateral */

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;

  display: flex;
  flex-direction: column;

  width: min(400px, 90%);
  height: 100dvh;
  padding: 30px;

  background: #fff;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.15);

  transform: translateX(-105%);
  transition: transform 0.35s ease;
}

.side-menu.open {
  transform: translateX(0);
}

/* Cabeçalho do menu */

.side-menu-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.side-menu-label {
  margin: 0 0 5px;

  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.side-menu-header h2 {
  margin: 0;
  font: 2.4rem var(--serif);
}

.side-menu-close {
  padding: 0;

  color: var(--ink);
  background: transparent;
  border: 0;

  font-size: 2rem;
  line-height: 1;

  cursor: pointer;
}

/* Categorias */

.side-menu-nav {
  display: flex;
  flex-direction: column;

  margin-top: 20px;
}

.side-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  padding: 20px 5px;

  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);

  font-size: 1rem;
  text-align: left;

  cursor: pointer;
}

.side-category-link span {
  color: var(--pink);
  font-size: 1.2rem;

  transition: transform 0.25s ease;
}

.side-category-link:hover {
  color: var(--pink);
}

.side-category-link:hover span {
  transform: translateX(5px);
}

/* Rodapé do menu */

.side-menu-footer {
  margin-top: auto;
  padding-top: 25px;

  border-top: 1px solid var(--line);
}

.side-menu-footer p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.side-menu-footer a {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
}

/*  Fim do menu lateral*/

/* Tablets */

@media (max-width: 900px) {
  .header {
    grid-template-columns: 1fr auto 1fr;
    height: 72px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;

    padding: 24px;

    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .brand {
    font-size: 1.65rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 65px 24px;
  }

  .hero-image {
    height: 540px;
  }

  .hero-stamp {
    right: 20px;
    bottom: 500px;
  }

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

  .editorial {
    grid-template-columns: 1fr 1fr;
    min-height: 390px;
  }

  .editorial-copy {
    grid-row: 1;
    grid-column: 2;
    padding: 42px 32px;
  }

  .editorial-detail {
    display: block;
    grid-row: 1;
    grid-column: 1;
    height: 390px;
  }

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

  .about > img {
    height: 520px;
  }

  .section-heading {
    align-items: start;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 260px;
  }

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

.category-banner {
  height: 350px;
}

.category-banner:last-child {
  grid-column: 1 / -1;
}
}

/* Celulares */

@media (max-width: 600px) {
  .topbar {
    font-size: 0.67rem;
  }

  .header {
    padding: 0 16px;
  }

  .cart-button {
    font-size: 0;
  }

  .cart-button span {
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-image {
    height: 470px;
  }

  .hero-stamp {
    right: 16px;
    bottom: 435px;

    width: 84px;
    height: 84px;
  }

  .trust {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section {
    padding: 72px 16px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-bottom: 0;
  }

  .products {
    gap: 12px;
  }

  .product-info {
    display: block;
  }

  .product-info p {
    margin-top: 4px;
  }

  .product-info small {
    font-size: 0.69rem;
  }

  .editorial {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .editorial-image {
    min-height: 320px;
  }

  .editorial-copy {
    grid-row: 2;
    grid-column: 1;
    max-width: none;
    padding: 48px 24px;
    text-align: left;
  }

  .editorial-detail {
    grid-row: 1;
    grid-column: 1;
    height: 320px;
  }

  .about > img {
    height: 440px;
  }

  .about > div {
    padding: 60px 24px;
  }

  .whatsapp span {
    display: none;
  }

  .whatsapp {
    padding: 15px 19px;
  }

  .category-showcase {
  padding: 60px 16px;
}

.category-banners {
  grid-template-columns: 1fr;
  gap: 12px;
}

.category-banner {
  height: 300px;
}

.category-banner:last-child {
  grid-column: auto;
}

.category-banner-content {
  right: 18px;
  bottom: 18px;
  left: 18px;
}
}

/* Reduz animações para quem utiliza essa configuração */

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

  .product-image img,
  .cart {
    transition: none;
  }
}

/* Cores disponíveis do produto Inicio*/

.product-colors {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.colors-title {
  display: block;
  margin-bottom: 7px;

  color: var(--muted);
  font-size: 0.75rem;
}

.color-options {
  display: flex;
  align-items: center;
  gap: 8px;
}

.color-option {
  width: 22px;
  height: 22px;
  padding: 0;

  background: var(--color);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #cfc6ca;

  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.color-option:hover {
  transform: scale(1.12);
}

.color-option.selected {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--pink);

  transform: scale(1.05);
}

.selected-color {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Cores disponíveis do produto Fim */


/* Categorias principais */

.category-showcase {
  padding: 75px clamp(20px, 6vw, 90px);
  background: #fff;
}

.category-showcase-heading {
  margin-bottom: 32px;
  text-align: center;
}

.category-showcase-heading .eyebrow {
  margin-bottom: 10px;
}

.category-showcase-heading h2 {
  margin: 0;
  font: 400 clamp(2.2rem, 3.5vw, 3.8rem) / 1 var(--serif);
}

/* Organização dos três banners */

.category-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Banner individual */

.category-banner {
  position: relative;

  height: 390px;
  padding: 0;

  background: var(--blush);
  border: 0;

  overflow: hidden;
  cursor: pointer;
}

.category-banner img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-banner:hover img {
  transform: scale(1.04);
}

/* Escurecimento da imagem */

.category-banner-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.02) 65%
  );
}

/* Nome da categoria */

.category-banner-content {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;

  display: flex;
  align-items: end;
  justify-content: space-between;

  color: #fff;
  text-align: left;
}

.category-banner-content strong {
  font: 400 clamp(1.6rem, 2.3vw, 2.6rem) var(--serif);
}

.category-banner-content small {
  padding-bottom: 5px;

  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}