/* ===== Fontes ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* fontes tipográficas */
.font-serif-zenix { font-family: 'Cormorant Garamond', serif; }
.font-sans-zenix { font-family: 'Montserrat', sans-serif; }

:root {
  --coral: #E58B8B;
  --coral-dark: #D06F72;
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --cream: #F7F3EE;
  --dark: #1a1a1a;
  --gray: #7a726a;
}

html, body { height: 100%; }

body {
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(circle at 80% 10%, rgba(201,169,110,.10), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(229,139,139,.10), transparent 45%),
    linear-gradient(160deg, #FBF8F3 0%, var(--cream) 100%);
  min-height: 100vh;
}

/* ===== CONTAINER HERO ===== */
.hero-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 32px 90px;
  min-height: 100vh;
  align-items: center;
  position: relative;
}

/* ===== COLUNA ESQUERDA: CARROSSEL VERTICAL ===== */
.carousel {
  height: 560px;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.carousel-track {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 32s linear infinite;
}

.carousel:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes scrollVertical {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.prod-card {
  margin-bottom: 20px;
}

.prod-photo {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border: 1px solid #111;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-photo .icon-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: rgba(0,0,0,.35);
}

.prod-tag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 8px 6px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* ===== BOTÕES ===== */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  cursor: pointer;
  padding: 18px 32px;
  border-radius: 9999px; /* pílula */
  background: linear-gradient(135deg, #E58B8B 0%, #D06F72 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.3;
  box-shadow: 0 12px 30px rgba(208,111,114,.35);
  transition: all .3s ease;
  text-decoration: none;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(208,111,114,.45);
}

/* ===== BOTÃO PÍLULA "CONTATO" (NAV) ===== */
.btn-pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 60px;
  background: #111;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .3s ease;
  text-decoration: none;
}
.btn-pill-dark:hover { background: #333; }

/* ===== BARRA SAC (rodapé curto) ===== */
.sac-bar {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  border-radius: 60px;
  padding: 12px 34px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.sac-bar span { color: #999; font-weight: 400; margin: 0 4px; }

/* ===== LOGO ÍCONE FLOR / COROA ===== */
.logo-icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }

/* ===== IMAGEM CENTRAL DO HERO ===== */
.hero-center-photo {
  width: 100%;
  max-width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  border: 4px solid #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  margin: 30px auto 34px;
  display: block;
}
@media (max-width: 860px){
  .hero-center-photo { max-width: 260px; height: 260px; margin: 24px auto; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 860px) {
  .hero-shell { grid-template-columns: 1fr; padding: 90px 18px 110px; }
  .carousel { height: 260px; display: none; }
  .sac-bar { font-size: 0.7rem; padding: 10px 18px; white-space: normal; max-width: 92%; }
}