/* Ateli� DIDU � identidade visual */

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

:root {
  /* Cores oficiais */
  --azul-yale: #0d3b66;
  --amarelo-lemon: #faf0ca;
  --azul-sky: #bed9f4;
  --amarelo-butter: #fefdd0;

  /* Aliases */
  --cor-primaria: var(--azul-yale);
  --cor-fundo: var(--amarelo-lemon);
  --cor-secundaria-azul: var(--azul-sky);
  --cor-secundaria-amarelo: var(--amarelo-butter);

  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow: 0 16px 40px rgba(13, 59, 102, 0.12);
  --radius: 20px;
  --font-primary: "Ahsing", "Berkshire Swash", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --header-h: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  background: var(--cor-fundo);
  color: var(--cor-primaria);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Flor decorativa */
.flower {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 240, 202, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 59, 102, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 52px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cor-primaria);
  margin: 6px 0;
  transition: 0.3s;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.site-nav a:hover {
  opacity: 0.6;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--cor-primaria);
  color: var(--white) !important;
  border-radius: 999px;
  opacity: 1 !important;
}

.nav-cta:hover {
  background: #0a2f52;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  background:
    radial-gradient(ellipse at 50% 0%, var(--azul-sky), transparent 55%),
    var(--cor-fundo);
}

.hero-inner {
  text-align: center;
}

.hero-logo {
  width: min(420px, 85vw);
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 24px rgba(13, 59, 102, 0.08));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* BOT�ES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--cor-primaria);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--cor-primaria);
  border: 2px solid var(--cor-primaria);
}

.btn-outline:hover {
  background: var(--cor-primaria);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

/* SE��ES */
.section {
  padding: 80px 0;
}

.section-banner {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-banner img {
  width: 100%;
}

.section-text {
  max-width: 680px;
  margin: -8px auto 44px;
  text-align: center;
  line-height: 1.85;
}

/* SOBRE */
.about {
  background: var(--amarelo-butter);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-grid img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 14px;
  line-height: 1.85;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat {
  padding: 16px 20px;
  background: var(--azul-sky);
  border-radius: 16px;
}

.stat strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 400;
}

.stat span {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* PRODUTOS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--amarelo-butter);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card__image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  position: relative;
  display: block;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.product-card__image--placeholder {
  background: linear-gradient(145deg, var(--amarelo-lemon) 0%, var(--amarelo-butter) 45%, var(--azul-yale) 100%);
}

.product-card__image--bucket {
  background: linear-gradient(160deg, var(--amarelo-butter) 0%, var(--azul-sky) 50%, var(--azul-yale) 100%);
}

.product-card__image--top {
  background: linear-gradient(135deg, var(--amarelo-lemon) 0%, var(--azul-sky) 45%, var(--azul-yale) 100%);
}

.product-card__image--premium {
  background: linear-gradient(150deg, var(--amarelo-butter) 0%, var(--azul-sky) 40%, var(--azul-yale) 100%);
}

.product-card__image--essencia {
  background: linear-gradient(120deg, var(--azul-sky) 0%, var(--amarelo-butter) 40%, var(--azul-yale) 100%);
}

.product-card__image--placeholder::after {
  content: "Ver fotos no Instagram";
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(13, 59, 102, 0.88));
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.product-card__image--bolsa {
  padding: 22px 24px 26px;
}

.product-card__body h3 {
  font-family: var(--font-primary);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.product-card__body p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
  opacity: 0.85;
}

.product-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card__actions .btn {
  padding: 10px 18px;
  font-size: 0.85rem;
}

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

.product-card__price,
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cor-primaria);
}

/* CAT�LOGO / CATEGORIAS */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.category-card {
  display: block;
  background: var(--amarelo-butter);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.category-card__body {
  padding: 18px 20px 22px;
}

.category-card__body h3 {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.category-card__body p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.catalog-page h1 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 48px 0 24px;
  text-align: center;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* CLIENTES */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.client-card {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, var(--azul-sky), var(--azul-yale));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 24px;
  transition: transform 0.3s;
}

.client-card:hover {
  transform: scale(1.02);
}

.client-card p {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  line-height: 1.4;
}

/* INSTAGRAM */
.instagram-section {
  background: var(--cor-secundaria-amarelo);
}

.instagram-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--amarelo-butter);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.instagram-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cor-fundo);
  border: 3px solid var(--cor-primaria);
  display: grid;
  place-items: center;
}

.instagram-avatar svg {
  width: 36px;
  height: 36px;
  fill: var(--cor-primaria);
}

.instagram-info h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 400;
}

.instagram-info .handle {
  font-weight: 700;
  margin: 4px 0 8px;
}

.instagram-embed-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.instagram-embed-wrap iframe {
  max-width: 100%;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: white;
}

.instagram-cta {
  text-align: center;
}

.instagram-cta--top {
  margin-top: 0;
}

/* CONTATO */
.contact-section {
  text-align: center;
  background: var(--azul-sky);
}

.contact-section h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 14px;
}

.contact-section p {
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.85;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* FOOTER */
.site-footer {
  background: var(--cor-primaria);
  color: var(--white);
  text-align: center;
  padding: 48px 20px 32px;
}

.site-footer img {
  height: 64px;
  width: auto;
  margin: 0 auto 16px;
  opacity: 0.95;
}

.site-footer p {
  opacity: 0.85;
  font-size: 0.9rem;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.site-footer .footer-links a {
  opacity: 0.85;
  font-size: 0.88rem;
  transition: opacity 0.2s;
}

.site-footer .footer-links a:hover {
  opacity: 1;
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1001;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* P�GINA DE PRODUTO */
.product-page {
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.product-gallery__main {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.product-detail h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.product-detail .price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.product-detail p {
  margin-bottom: 16px;
  line-height: 1.85;
}

.product-detail .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-weight: 600;
  opacity: 0.8;
}

.back-link:hover {
  opacity: 1;
}

/* COLE��O */
.collection-page-hero {
  padding-top: 0;
  text-align: center;
  margin-bottom: 40px;
}

.collection-page-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.collection-page-hero p {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.85;
}

.collection-gallery {
  margin-bottom: 48px;
}

.collection-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.collection-hero-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: var(--azul-sky);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.collection-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.section-cta {
  margin-top: 32px;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cor-fundo);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(13, 59, 102, 0.1);
    box-shadow: 0 12px 30px rgba(13, 59, 102, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
  }

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

  .site-nav a {
    padding: 8px 0;
  }

  .nav-cta {
    text-align: center;
  }

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

  .instagram-header {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .products-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-actions,
  .product-card__actions,
  .section-cta,
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .product-card__actions .btn,
  .section-cta .btn,
  .contact-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 72px;
  }

  .logo img {
    height: 44px;
  }

  .container {
    width: min(1140px, 94vw);
  }

  .section {
    padding-block: 56px;
  }
}
