/* ── TOKENS ── */
:root {
  --rose:        #D4718A;
  --rose-light:  #E8A0B2;
  --rose-dark:   #B85A72;
  --gold:        #C9A87A;
  --gold-light:  #EAD5B0;
  --dark:        #1A1214;
  --warm-white:  #FEF9F6;
  --light-rose:  #FDF0F4;
  --gray:        #7A636B;
  --border:      #F0D8E4;
  --grad:        linear-gradient(135deg, #B85A72 0%, #D4718A 60%, #E8A0B2 100%);
  --grad-gold:   linear-gradient(135deg, #C9A87A 0%, #EAD5B0 100%);
  --grad-light:  linear-gradient(135deg, #FDF0F4 0%, #FEF9F6 100%);

  --text-sm:   clamp(0.8rem,  0.75rem + 0.2vw, 0.9rem);
  --text-base: clamp(1rem,    0.92rem + 0.4vw, 1.125rem);
  --text-lg:   clamp(1.2rem,  1rem   + 1vw,   1.6rem);
  --text-xl:   clamp(1.6rem,  1rem   + 2.5vw, 2.5rem);
  --text-hero: clamp(2.4rem,  1rem   + 4.5vw, 4.5rem);

  --sp-xs: clamp(0.5rem,  0.4rem + 0.4vw, 0.75rem);
  --sp-sm: clamp(0.75rem, 0.6rem + 0.8vw, 1.25rem);
  --sp-md: clamp(1.25rem, 0.8rem + 2vw,   2.5rem);
  --sp-lg: clamp(2.5rem,  1rem   + 4vw,   5rem);
  --sp-xl: clamp(4rem,    2rem   + 5vw,   8rem);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 16px rgba(212,113,138,0.08);
  --shadow-md: 0 8px 40px rgba(212,113,138,0.13);
  --shadow-lg: 0 20px 60px rgba(212,113,138,0.18);
  --shadow-gold: 0 4px 24px rgba(201,168,122,0.22);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── LANGUAGE TOGGLE ── */
html[data-lang="en"] [lang="pt"] { display: none !important; }
html[data-lang="pt"] [lang="en"] { display: none !important; }

/* ── CONTAINER ── */
.container { width: min(1200px, 92%); margin-inline: auto; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-sm);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,32,104,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(196,32,104,0.45); }

.btn-secondary {
  background: #fff;
  color: var(--rose);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(201,168,122,0.12);
}
.btn-secondary:hover { background: var(--light-rose); border-color: var(--rose-light); }

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-outline:hover { background: var(--rose); color: #fff; }

.btn-white {
  background: #fff;
  color: var(--rose);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--sp-md);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin-inline: auto;
}

.logo-link img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  gap: var(--sp-md);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dark);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--rose); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--gray);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lang-toggle:hover { border-color: var(--rose); color: var(--rose); }

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100svh;
  padding-top: 72px;
  background: var(--grad-light);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,113,138,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 80px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,122,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
  padding: var(--sp-lg) var(--sp-md);
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.hero-text { display: flex; flex-direction: column; gap: var(--sp-sm); }

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
}
.hero-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2rem);
  color: var(--rose);
  line-height: 1.3;
  font-weight: 600;
}

.hero-desc {
  font-size: var(--text-base);
  color: var(--gray);
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--sp-xs);
}

/* ── Hero Visual (bento grid) ── */
.hero-visual { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 160px;
  gap: 14px;
}

.hero-card {
  background: var(--bg, #FDEAF0);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
}
.hero-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-md); }
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.05));
  pointer-events: none;
}

.hero-card.card-tall { grid-row: span 2; }
.hero-card.card-wide { grid-column: span 2; }

.card-emoji { font-size: 52px; line-height: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }

.hero-card-photo { padding: 0; overflow: hidden; }
.hero-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
  display: block;
}
.hero-card-photo:hover img { transform: scale(1.06); }
.card-label-over {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 5px 14px;
  border-radius: 100px;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.card-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* ── Wave ── */
.hero-wave {
  position: relative;
  height: 80px;
  margin-top: auto;
}
.hero-wave svg { position: absolute; bottom: 0; width: 100%; }
.hero-wave path { fill: #fff; }

/* ══════════════════════════════
   PRODUCTS SECTION
══════════════════════════════ */
.products {
  padding: var(--sp-xl) 0;
  background: #fff;
}

.section-header .eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 2px;
}
.section-header .eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
  margin-top: var(--sp-xs);
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 14px auto 0;
}

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

.product-card {
  background: var(--bg, #FDF0F4);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--dark);
  border: 1px solid transparent;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.product-card-icon {
  font-size: 56px;
  line-height: 1;
  text-align: center;
  padding: var(--sp-md) 0;
}

.product-card-img {
  height: 190px;
  overflow: hidden;
  border-radius: var(--r-md);
  margin: -2px -2px 0;
  flex-shrink: 0;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
  display: block;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card:hover .carousel-track img  { transform: none; }

/* ── CAROUSEL ── */
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  color: var(--dark);
  padding: 0;
}
.carousel-btn:hover { background: #fff; }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.product-card-img:hover .carousel-btn { opacity: 1; }
.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: #fff;
  transform: scale(1.4);
}

.product-card-body {}
.product-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card-desc {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.6;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--sp-xs);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.product-card-price {
  font-size: var(--text-sm);
  color: var(--rose);
  font-weight: 700;
}
.product-card-link {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.product-card:hover .product-card-link { color: var(--rose); }

.products-cta { text-align: center; margin-top: var(--sp-lg); }

/* ══════════════════════════════
   CUSTOM ORDER CTA
══════════════════════════════ */
.order-cta {
  background: var(--grad);
  padding: var(--sp-xl) 0;
  position: relative;
  overflow: hidden;
}
.order-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.order-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(201,168,122,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.order-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-lg);
  align-items: center;
}

.order-text { color: #fff; }
.order-text .eyebrow { color: rgba(255,255,255,0.8); letter-spacing: 2px; }

.order-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-sm);
  line-height: 1.2;
}
.order-desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--sp-md);
  max-width: 520px;
  line-height: 1.7;
}

.order-sparkles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  opacity: 0.2;
}
.order-sparkles svg { fill: #fff; }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  padding: var(--sp-xl) 0;
  background: var(--warm-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
}

.about-visual {
  background: var(--grad-light);
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 2px solid var(--border);
}
.about-photo-placeholder { font-size: 80px; opacity: 0.5; }
.about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,18,20,0.18));
  pointer-events: none;
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-gold);
  text-align: center;
  z-index: 2;
}
.about-badge-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.about-badge-label { font-size: 11px; color: var(--gray); }

.about-text { display: flex; flex-direction: column; gap: var(--sp-sm); }
.about-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
.about-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-p {
  font-size: var(--text-base);
  color: var(--gray);
  line-height: 1.8;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--sp-xs);
}
.about-tag {
  background: var(--light-rose);
  color: var(--rose);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ══════════════════════════════
   INSTAGRAM
══════════════════════════════ */
.instagram {
  padding: var(--sp-xl) 0;
  background: #fff;
  text-align: center;
}
.instagram-placeholder {
  background: var(--grad-light);
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  color: var(--gray);
  font-size: var(--text-sm);
  margin-top: var(--sp-md);
}
.instagram-placeholder a { color: var(--rose); font-weight: 600; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-lg) 0 var(--sp-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tagline {
  margin-top: 12px;
  font-size: var(--text-sm);
  font-family: 'Dancing Script', cursive;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--gold); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-menu-btn { display: block; }

  .hero-content { grid-template-columns: 1fr; padding-top: var(--sp-md); }
  .hero-visual   { order: -1; }
  .hero-grid     { grid-template-rows: 160px 130px; }

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

  .order-inner     { grid-template-columns: 1fr; }
  .order-sparkles  { display: none; }

  .about-inner  { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 3/2; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-md); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
