/* =============================================
   CUCAS BETH — Estilos Principais
   ============================================= */

/* ── RESET & VARIÁVEIS ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --vinho: #6B1A2E;
  --vinho-escuro: #3D0D1A;
  --vinho-mid: #8B2A42;
  --rosa: #C4667A;
  --rosa-claro: #E8A0AC;
  --rosa-pale: #F5D0D8;
  --creme: #FAF3EC;
  --creme-escuro: #F0E0D0;
  --creme-mid: #E8D0BC;
  --texto: #3A1A20;
  --texto-muted: #7A5060;
  --verde: #3B6D11;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--creme);
  color: var(--texto);
  overflow-x: hidden;
}

/* ── UTILITÁRIOS ── */
.section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rosa);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rosa-claro);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--vinho);
  line-height: 1.12;
  margin-bottom: 28px;
}

.btn-primary {
  background: var(--rosa-claro);
  color: var(--vinho-escuro);
  font-weight: 900;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  border-color: var(--rosa-claro);
  color: var(--rosa-claro);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(61, 13, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding .3s;
}

nav.scrolled {
  padding: 12px 40px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--rosa-claro);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--rosa-claro);
}

.nav-cta {
  background: var(--rosa) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--rosa-claro) !important;
  color: var(--vinho-escuro) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--vinho-escuro) 0%, var(--vinho) 55%, var(--vinho-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 102, 122, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--rosa-claro);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 50px;
  margin-bottom: 36px;
  display: inline-block;
  animation: fadeUp .8s ease forwards;
}

.hero-logo-wrap {
  width: 230px;
  height: 220px;
  border-radius: 100%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 36px;
  overflow: hidden;
  animation: fadeUp .8s .1s ease both;
  background: var(--creme-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap img {
  width: 150%;
  height: 150%;
  object-fit: contain;
}

.hero-logo-placeholder {
  font-size: 72px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 9vw, 96px);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 12px;
  animation: fadeUp .8s .2s ease both;
}

.hero h1 em {
  color: var(--rosa-claro);
  font-style: italic;
}

.hero-tagline {
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 24px;
  animation: fadeUp .8s .3s ease both;
}

.hero-subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
  animation: fadeUp .8s .4s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .8s .5s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: ' ↓';
}

/* ── STATS ── */
.stats-strip {
  background: var(--creme-escuro);
  border-top: 1px solid var(--creme-mid);
  border-bottom: 1px solid var(--creme-mid);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--vinho);
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: var(--texto-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── HISTÓRIA ── */
.historia-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.historia-text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--texto-muted);
  margin-bottom: 20px;
}

.historia-text p strong {
  color: var(--vinho);
  font-weight: 700;
}

.historia-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: var(--creme-mid);
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vinho);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--vinho);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--texto-muted);
  line-height: 1.6;
}

.historia-card {
  background: linear-gradient(140deg, var(--vinho), var(--vinho-mid));
  border-radius: 28px;
  padding: 48px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.historia-card::before {
  content: '❝';
  position: absolute;
  top: -20px;
  right: 24px;
  font-size: 140px;
  color: rgba(255, 255, 255, 0.06);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.historia-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-style: italic;
  line-height: 1.65;
  color: var(--creme-escuro);
  position: relative;
  z-index: 1;
}

.historia-card cite {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--rosa-claro);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.historia-card cite::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--rosa-claro);
}

.heart-deco {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.heart-deco span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rosa-claro);
  opacity: 0.4;
}

.heart-deco span:nth-child(2) {
  opacity: 0.65;
}

.heart-deco span:nth-child(3) {
  opacity: 1;
}

/* ── SABORES ── */
.sabores-section {
  background: linear-gradient(160deg, var(--vinho-escuro) 0%, var(--vinho) 100%);
  padding: 100px 40px;
}

.sabores-section .section-tag {
  color: var(--rosa-claro);
}

.sabores-section .section-tag::before,
.sabores-section .section-tag::after {
  background: rgba(255, 255, 255, 0.3);
}

.sabores-section .section-title {
  color: #fff;
}

.sabores-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  margin-top: -16px;
  margin-bottom: 56px;
}

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

.sabor-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.sabor-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rosa), var(--rosa-claro));
  transform: scaleX(0);
  transition: transform .3s;
}

.sabor-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sabor-card:hover::after {
  transform: scaleX(1);
}

.sabor-card.especial {
  background: rgba(196, 102, 122, 0.15);
  border-color: rgba(196, 102, 122, 0.3);
}

.sabor-card.vegan {
  background: rgba(59, 109, 17, 0.15);
  border-color: rgba(59, 109, 17, 0.3);
}

.sabor-emoji {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.sabor-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sabor-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--rosa-claro);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.sabor-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}

.sabor-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 700;
  background: rgba(196, 102, 122, 0.25);
  color: var(--rosa-claro);
  border: 1px solid rgba(196, 102, 122, 0.35);
}

.sabor-badge.especial-badge {
  background: rgba(232, 160, 172, 0.2);
  color: var(--rosa-pale);
  border-color: rgba(232, 160, 172, 0.3);
}

.sabor-badge.vegan-badge {
  background: rgba(59, 109, 17, 0.25);
  color: #9fe070;
  border-color: rgba(59, 109, 17, 0.4);
}

.sabores-note {
  text-align: center;
  margin-top: 48px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

/* ── INGREDIENTES ── */
.ingredientes-section {
  background: var(--creme-escuro);
  padding: 100px 40px;
}

.ingredientes-intro {
  color: var(--texto-muted);
  font-size: 16px;
  margin-top: 8px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-align: center;
}

.ing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}

.ing-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border-top: 4px solid var(--vinho);
  box-shadow: 0 4px 24px rgba(107, 26, 46, 0.07);
}

.ing-card.vegan {
  border-top-color: var(--verde);
}

.ing-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.ing-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--vinho);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ing-card.vegan .ing-card-icon {
  background: var(--verde);
}

.ing-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--vinho);
}

.ing-card.vegan .ing-card-title {
  color: var(--verde);
}

.ing-group {
  margin-bottom: 24px;
}

.ing-group-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rosa);
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--creme-mid);
}

.ing-card.vegan .ing-group-title {
  color: var(--verde);
}

.ing-list {
  list-style: none;
}

.ing-list li {
  font-size: 15px;
  color: var(--texto-muted);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--creme);
  transition: color .2s;
}

.ing-list li:hover {
  color: var(--vinho);
}

.ing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rosa-claro);
}

.ing-card.vegan .ing-list li::before {
  background: #9fe070;
}

/* ── PROCESSO ── */
.processo-section {
  background: var(--creme);
}

.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.processo-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 24px;
  background: var(--creme-escuro);
  position: relative;
}

.processo-card::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--rosa-claro);
}

.processo-card:last-child::after {
  display: none;
}

.processo-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--rosa);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.processo-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.processo-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--vinho);
  margin-bottom: 10px;
}

.processo-desc {
  font-size: 14px;
  color: var(--texto-muted);
  line-height: 1.6;
}

/* ── CONTATO ── */
.contato-section {
  background: linear-gradient(160deg, var(--vinho-escuro), var(--vinho));
  padding: 100px 40px;
  text-align: center;
}

.contato-section .section-tag {
  color: var(--rosa-claro);
  justify-content: center;
}

.contato-section .section-tag::before,
.contato-section .section-tag::after {
  background: rgba(255, 255, 255, 0.25);
}

.contato-section .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.contato-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.contato-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 36px 24px;
  transition: all .3s;
}

.contato-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.contato-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}

.contato-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rosa-claro);
  margin-bottom: 8px;
}

.contato-value {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.pix-block {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 20px 40px;
  margin-bottom: 48px;
}

.pix-block-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pix-block-key {
  font-size: 22px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  padding: 20px 52px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}

.whatsapp-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
}

/* ── FOOTER ── */
footer {
  background: var(--vinho-escuro);
  padding: 48px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--rosa-claro);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--rosa-claro);
}

.footer-bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: all .3s;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 76px;
  background: var(--vinho-escuro);
  color: #fff;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .historia-grid,
  .ing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .processo-card::after {
    display: none;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {

  .section,
  .sabores-section,
  .ingredientes-section,
  .processo-section,
  .contato-section {
    padding: 64px 24px;
  }

  .sabores-grid,
  .processo-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .pix-block {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }
}