/* =========================================================
   Café & Prosa — style.css
   Identidade visual: cores tiradas direto da logo (azul, laranja
   e verde vibrantes). Loja online, tom animado e comercial —
   referência em lojas tipo Nuvemshop, não landing page de evento.
   ========================================================= */

:root {
  --azul-escuro: #0B2E9E;   /* azul da logo — títulos, header, seções de destaque */
  --azul-escuro-2: #071F72; /* azul mais profundo — gradientes, rodapé */
  --dourado: #FF7A1A;       /* laranja da logo — CTA principal, preços, destaques */
  --dourado-claro: #FFA64D; /* laranja claro — hover, gradiente do botão */
  --branco: #ffffff;
  --bege: #F4F7FF;          /* fundo neutro claro, levemente azulado */
  --bege-2: #E8EEFF;        /* fundo secundário claro */
  --cafe: #1FA34C;          /* verde da logo — selos, "inclui ingresso", sucesso */
  --cafe-claro: #3FC46C;
  --rose: #FF3B3B;          /* vermelho da logo — urgência, "mais vendido", tags */
  --rose-claro: #FFD9D9;
  --texto: #16213E;
  --texto-suave: #57628A;
  --sombra: 0 12px 32px rgba(11, 46, 158, 0.14);
  --raio: 999px;
  --raio-card: 18px;
  --serif: "Baloo 2", "Poppins", "Helvetica Neue", Arial, sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--texto);
  background: var(--bege);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--azul-escuro);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

p {
  margin: 0 0 1em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--bege2 { background: var(--bege-2); }
.section--azul {
  background: linear-gradient(160deg, var(--azul-escuro), var(--azul-escuro-2));
  color: var(--bege);
}
.section--azul h2, .section--azul h3 { color: var(--dourado-claro); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--dourado);
  margin-bottom: 14px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.section-lead {
  max-width: 680px;
  color: var(--texto-suave);
  font-size: 1.08rem;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--raio);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(120deg, var(--dourado), var(--dourado-claro));
  color: var(--azul-escuro-2);
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.35);
}
.btn--primary:hover { box-shadow: 0 14px 30px rgba(255, 122, 26, 0.45); }

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--azul-escuro);
}
.btn--outline:hover { background: rgba(11, 46, 158, 0.06); }

.section--azul .btn--outline { color: var(--branco); border-color: rgba(255, 255, 255, 0.55); }
.section--azul .btn--outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

.btn--small { padding: 10px 22px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- Header / Navegação ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  color: var(--texto);
  box-shadow: 0 2px 18px rgba(11, 46, 158, 0.08);
}

/* ---------- Barra de anúncio (agora abaixo do menu, rola junto com a página) ---------- */
.promo-bar {
  background: var(--azul-escuro);
  color: var(--branco);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 16px;
  position: relative;
  z-index: 10;
}
.promo-bar strong { color: var(--dourado-claro); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
}
.nav__logo {
  height: 48px;
  width: auto;
  display: block;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--azul-escuro);
  font-size: 1.6rem;
  cursor: pointer;
}

.nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.nav__menu > li {
  position: relative;
}

.nav__menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--texto);
  border-radius: var(--raio);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__menu > li > a:hover,
.nav__menu > li > a.active {
  background: var(--bege-2);
  color: var(--azul-escuro);
}

.nav__menu .btn--primary {
  padding: 10px 22px;
  margin-left: 6px;
}

.has-submenu > a::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 4px;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--branco);
  border-radius: 16px;
  box-shadow: var(--sombra);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
}

.has-submenu:hover .submenu,
.has-submenu.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  color: var(--texto);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.submenu a:hover { background: var(--bege-2); color: var(--cafe); }

/* ---------- Hero (Início) — banner de loja, não de landing page ---------- */
.hero {
  position: relative;
  padding: 64px 24px 70px;
  display: flex;
  align-items: center;
  color: var(--branco);
  background: linear-gradient(115deg, var(--azul-escuro) 0%, #0B3FC9 45%, #0E8A4E 100%);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(3px 3px at 10% 25%, rgba(255, 255, 255, 0.5) 40%, transparent 41%),
    radial-gradient(3px 3px at 85% 65%, rgba(255, 166, 77, 0.55) 40%, transparent 41%),
    radial-gradient(2px 2px at 60% 15%, rgba(255, 255, 255, 0.4) 40%, transparent 41%),
    radial-gradient(2px 2px at 30% 80%, rgba(255, 255, 255, 0.35) 40%, transparent 41%);
  pointer-events: none;
}

/* ---------- Vídeo de capa (produção do café) ---------- */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(11,46,158,0.88) 0%, rgba(11,63,201,0.8) 45%, rgba(14,138,78,0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--branco);
  padding: 7px 18px;
  border-radius: var(--raio);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  color: var(--branco);
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero__tagline {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero__logo {
  display: block;
  max-width: min(360px, 70vw);
  width: 100%;
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 26px rgba(7, 20, 48, 0.45));
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero__actions .btn--outline {
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.55);
}
.hero__actions .btn--outline:hover { background: rgba(255, 255, 255, 0.14); }

/* ---------- Placeholder de imagem/vídeo ---------- */
.img-placeholder {
  position: relative;
  border-radius: var(--raio-card);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(160deg, rgba(20,33,58,0.55), rgba(92,66,48,0.55)),
    repeating-linear-gradient(135deg, var(--rose-claro), var(--rose-claro) 12px, var(--bege-2) 12px, var(--bege-2) 24px);
  color: var(--branco);
}
.img-placeholder__caption {
  position: relative;
  padding: 16px 18px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  background: linear-gradient(0deg, rgba(13,22,38,0.75), transparent);
  width: 100%;
}

.img-placeholder--tall { min-height: 340px; }
.img-placeholder--short { min-height: 160px; }

/* ---------- Cards de vídeo do Instagram ---------- */
.ig-video-card {
  position: relative;
  border-radius: var(--raio-card);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--branco);
  background:
    linear-gradient(160deg, rgba(20,33,58,0.55), rgba(92,66,48,0.55)),
    linear-gradient(135deg, #405DE6 0%, #5B51D8 20%, #833AB4 40%, #C13584 60%, #E1306C 80%, #FD1D1D 100%);
}
.ig-video-card__icon { font-size: 1.6rem; margin-bottom: auto; }
.ig-video-card__caption { font-weight: 600; margin-bottom: 12px; }
.ig-video-card .btn { align-self: flex-start; }

/* ---------- Grids genéricos ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--branco);
  border-radius: var(--raio-card);
  padding: 32px 28px;
  box-shadow: var(--sombra);
}

/* ---------- Sobre / listras de conteúdo ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse .split__media { order: 2; }

.pill-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-list li {
  background: var(--bege-2);
  border: 1px solid var(--dourado-claro);
  color: var(--cafe);
  padding: 8px 16px;
  border-radius: var(--raio);
  font-size: 0.82rem;
}

/* ---------- Depoimentos ---------- */
.quote-card {
  background: var(--branco);
  border-left: 4px solid var(--dourado);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: var(--sombra);
  font-style: italic;
  color: var(--texto-suave);
}
.quote-card cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--serif);
  color: var(--azul-escuro);
  font-size: 0.92rem;
}

/* ---------- Galeria / Lightbox ---------- */
.gallery-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.gallery-tab {
  padding: 10px 22px;
  border-radius: var(--raio);
  border: 1px solid var(--dourado);
  background: transparent;
  color: var(--azul-escuro);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.gallery-tab.active {
  background: var(--dourado);
  color: var(--branco);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  text-align: left;
}
.gallery-item .img-placeholder { min-height: 180px; }

.gallery-section { margin-bottom: 56px; }
.gallery-section:last-child { margin-bottom: 0; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 31, 114, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox__inner {
  max-width: 720px;
  width: 100%;
  color: var(--bege);
  text-align: center;
}
.lightbox .img-placeholder { min-height: 380px; }
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bege);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--raio);
  cursor: pointer;
}
.lightbox__caption { margin-top: 16px; color: var(--bege-2); }

/* ---------- Convites / Preços ---------- */
.ticket-card {
  background: var(--branco);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--sombra);
  border: 1px solid var(--bege-2);
}
.ticket-card__price {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--azul-escuro);
  margin: 12px 0 4px;
}
.ticket-card__price small {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--texto-suave);
}
.ticket-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 30px;
}
.ticket-card ul li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--bege-2);
  display: flex;
  gap: 10px;
}
.ticket-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--dourado);
  flex-shrink: 0;
}

.combo-card {
  background: linear-gradient(165deg, var(--branco), var(--bege-2));
  border-radius: 26px;
  padding: 34px 30px;
  box-shadow: var(--sombra);
  border-top: 4px solid var(--dourado);
  display: flex;
  flex-direction: column;
}
.combo-card--destaque {
  border-top-color: var(--rose);
  transform: scale(1.03);
}
.combo-card__tag {
  align-self: flex-start;
  background: var(--cafe);
  color: var(--branco);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--raio);
  margin-bottom: 14px;
}
.combo-card__price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--azul-escuro);
  margin: 6px 0 16px;
}
.combo-card p { color: var(--texto-suave); font-size: 0.95rem; }
.combo-card .btn { margin-top: auto; }

/* ---------- Loja: Kits Box e Itens Avulsos ---------- */
.kit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 122, 26, 0.15);
  border: 1px solid var(--dourado);
  color: var(--cafe);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: var(--raio);
  margin-bottom: 14px;
}

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

.product-card {
  background: var(--branco);
  border-radius: 20px;
  box-shadow: var(--sombra);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card .img-placeholder {
  min-height: 150px;
  border-radius: 0;
}
.product-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card__body h3 {
  font-size: 1.02rem;
  margin-bottom: 0;
}
.product-card__price {
  font-family: var(--serif);
  color: var(--azul-escuro);
  font-size: 1.2rem;
  margin: 2px 0 10px;
}
.product-card__body p {
  font-size: 0.85rem;
  color: var(--texto-suave);
  flex: 1;
}
.product-card .btn { margin-top: 10px; }

@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

.info-banner {
  background: var(--bege-2);
  border: 1px dashed var(--dourado);
  border-radius: 20px;
  padding: 26px 30px;
  font-size: 0.94rem;
  color: var(--cafe);
}
.info-banner ul { margin: 10px 0 0; padding-left: 20px; }
.info-banner li { margin-bottom: 6px; }

/* ---------- Detalhes do evento (3ª edição) ---------- */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 34px 0;
}
.detail-item {
  background: rgba(248, 242, 231, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}
.section--bege2 .detail-item,
.section:not(.section--azul) .detail-item {
  background: var(--branco);
  border-color: var(--bege-2);
  box-shadow: var(--sombra);
}
.detail-item__icon { font-size: 1.6rem; margin-bottom: 10px; }
.detail-item strong { display: block; font-family: var(--serif); color: var(--azul-escuro); margin-bottom: 4px; }
.section--azul .detail-item strong { color: var(--dourado-claro); }
.detail-item span { font-size: 0.88rem; color: var(--texto-suave); }
.section--azul .detail-item span { color: var(--bege-2); }

/* ---------- Parceiros ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.partner-logo {
  background: var(--branco);
  border-radius: 18px;
  box-shadow: var(--sombra);
  padding: 26px 16px;
  text-align: center;
  color: var(--texto-suave);
  font-family: var(--serif);
  font-size: 0.95rem;
}

/* ---------- Contato ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dourado-claro);
  color: var(--azul-escuro-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}
.contact-item strong { display: block; color: var(--azul-escuro); font-family: var(--serif); }

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center;
  padding: 90px 24px;
  background: linear-gradient(150deg, var(--cafe), var(--azul-escuro-2));
  color: var(--bege);
}
.cta-final h2 { color: var(--dourado-claro); }
.cta-final p { color: var(--bege-2); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Rodapé ---------- */
.site-footer {
  background: var(--azul-escuro-2);
  color: var(--bege-2);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--serif);
  color: var(--dourado-claro);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.footer-col h4 {
  color: var(--dourado-claro);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--dourado-claro); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-social a {
  padding: 8px 16px;
  border-radius: var(--raio);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.14); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--cafe-claro);
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--raio);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Cabeçalho de página interna ---------- */
.page-hero {
  padding: 150px 0 70px;
  text-align: center;
  background: linear-gradient(160deg, var(--azul-escuro), var(--azul-escuro-2));
  color: var(--bege);
}
.page-hero h1 { color: var(--branco); font-size: clamp(2.3rem, 5vw, 3.2rem); }
.page-hero p { color: var(--bege-2); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dourado-claro);
  margin-bottom: 14px;
}

/* ---------- Responsivo ---------- */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split__media { order: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Formulários (integração Supabase) ---------- */
.form-card {
  background: var(--branco);
  border-radius: var(--raio-card);
  padding: 40px;
  box-shadow: var(--sombra);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.form-grid .field--full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.82rem;
  color: var(--texto-suave);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid var(--bege-2);
  background: var(--bege);
  color: var(--texto);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }

.option-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}
.option-card {
  position: relative;
  border: 1px solid var(--bege-2);
  border-radius: 16px;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--texto);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.option-card input {
  position: absolute;
  opacity: 0;
}
.option-card:has(input:checked) {
  border-color: var(--dourado);
  background: var(--bege-2);
  font-weight: 500;
}
.option-card strong { display: block; font-family: var(--serif); color: var(--azul-escuro); font-size: 0.95rem; }

.form-note {
  font-size: 0.8rem;
  color: var(--texto-suave);
  margin-top: 10px;
}

.form-alert {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
}
.form-alert.show { display: block; }
.form-alert--success {
  background: rgba(31, 163, 76, 0.12);
  color: var(--cafe);
  border: 1px solid var(--cafe);
}
.form-alert--error {
  background: rgba(217, 83, 79, 0.1);
  color: #9a3b36;
  border: 1px solid rgba(217, 83, 79, 0.4);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

#form-pedido-whatsapp { display: none; }
#form-pedido-whatsapp.show { display: inline-flex; }

@media (max-width: 720px) {
  .form-grid,
  .option-group { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--azul-escuro);
    padding: 12px;
    gap: 4px;
    display: none;
    box-shadow: var(--sombra);
  }
  .nav__menu.open { display: flex; }
  .nav__menu .btn--primary { margin: 8px 0 0; text-align: center; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(248, 242, 231, 0.06);
    margin-top: 4px;
  }
  .has-submenu.open .submenu { display: block; }
  .has-submenu > a::after { float: right; }

  .section { padding: 60px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .combo-card--destaque { transform: none; }
  .page-hero { padding: 130px 0 56px; }
}

/* =========================================================
   MOTION & LOJA VIVA — animações e reforço de "loja online"
   ========================================================= */

@media (prefers-reduced-motion: no-preference) {

/* ---------- Keyframes ---------- */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-22px, 22px) scale(1.12); }
}
@keyframes floatBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(18px, -18px) scale(1.08); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes badgePop {
  0%   { transform: scale(0.4) rotate(-8deg); opacity: 0; }
  70%  { transform: scale(1.08) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(-3deg); opacity: 1; }
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 8px 18px rgba(255, 59, 59, 0.4); }
  50%      { box-shadow: 0 8px 26px rgba(255, 59, 59, 0.65); }
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 10px 24px rgba(255, 122, 26, 0.35); }
  50%      { box-shadow: 0 12px 34px rgba(255, 122, 26, 0.6); }
}

/* ---------- Reveal ao rolar a página ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hero animado ---------- */
.hero {
  background-size: 240% 240%;
  animation: gradientShift 9s ease infinite;
}
.hero::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 166, 77, 0.4), transparent 70%);
  animation: floatBlob 8s ease-in-out infinite;
  pointer-events: none;
}
.hero__content::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 196, 108, 0.35), transparent 70%);
  animation: floatBlob2 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero__content > * { position: relative; z-index: 1; }

.hero__eyebrow, .hero__logo, .hero h1, .hero__tagline, .hero__actions {
  animation: revealUp 0.7s ease both;
}
.hero__eyebrow { animation-delay: 0.05s; }
.hero__logo { animation-delay: 0.15s; }
.hero h1 { animation-delay: 0.15s; }
.hero__tagline { animation-delay: 0.28s; }
.hero__actions { animation-delay: 0.4s; }

/* ---------- Barra de anúncio em movimento (marquee) ---------- */
.promo-bar {
  overflow: hidden;
  white-space: nowrap;
}
.promo-bar__track {
  display: inline-flex;
  width: max-content;
  animation: marqueeScroll 16s linear infinite;
}
.promo-bar:hover .promo-bar__track { animation-play-state: paused; }
.promo-bar__item {
  display: inline-flex;
  align-items: center;
  padding: 0 36px;
}

/* ---------- Placeholders de imagem com cara de produto, não de erro ---------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--cafe) 55%, var(--dourado) 100%);
  background-size: 260% 260%;
  animation: gradientShift 9s ease infinite;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.22) 45%, transparent 60%);
  background-size: 220% 220%;
  animation: gradientShift 7s ease infinite;
  opacity: 0.7;
}

.gallery-item:nth-child(4n+2) .img-placeholder,
.product-card:nth-child(4n+2) .img-placeholder,
.split__media .img-placeholder:nth-of-type(2) { background: linear-gradient(135deg, var(--dourado) 0%, var(--rose) 55%, var(--azul-escuro) 100%); }

.gallery-item:nth-child(4n+3) .img-placeholder,
.product-card:nth-child(4n+3) .img-placeholder { background: linear-gradient(135deg, var(--cafe) 0%, var(--azul-escuro) 55%, var(--dourado) 100%); }

.gallery-item:nth-child(4n+4) .img-placeholder,
.product-card:nth-child(4n+4) .img-placeholder { background: linear-gradient(135deg, var(--dourado-claro) 0%, var(--cafe) 55%, var(--azul-escuro-2) 100%); }

.gallery-item:hover .img-placeholder,
.product-card:hover .img-placeholder,
.split__media:hover .img-placeholder { transform: scale(1.06); }

/* ---------- Cards de produto/kit com movimento ---------- */
.product-card, .combo-card, .card, .partner-logo, .quote-card, .detail-item, .ticket-card {
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 44px rgba(11, 46, 158, 0.2);
}
.combo-card { position: relative; }
.combo-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(11, 46, 158, 0.22);
}
.combo-card--destaque:hover { transform: translateY(-7px) scale(1.045); }
.card:hover, .quote-card:hover, .detail-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(11, 46, 158, 0.16);
}
.partner-logo:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 26px rgba(11, 46, 158, 0.14);
}

/* ---------- Selo "mais vendido" / avaliação — cara de e-commerce ---------- */
.ribbon-badge {
  position: absolute;
  top: -12px;
  right: 26px;
  background: linear-gradient(120deg, var(--rose), #ff7a5e);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--raio);
  box-shadow: 0 8px 18px rgba(255, 59, 59, 0.4);
  animation: badgePop 0.5s ease both, pulseRing 2.6s ease-in-out infinite 0.6s;
  z-index: 2;
}
.card-rating {
  font-size: 0.82rem;
  color: var(--dourado);
  letter-spacing: 1px;
  margin: -4px 0 6px;
}
.card-rating span {
  color: var(--texto-suave);
  font-weight: 600;
  letter-spacing: normal;
  margin-left: 4px;
  font-family: var(--sans);
}
.card-installment {
  font-size: 0.78rem;
  color: var(--texto-suave);
  margin: -4px 0 12px;
}

/* ---------- Botões com brilho e pulso ---------- */
.btn--primary {
  position: relative;
  overflow: hidden;
  animation: ctaGlow 3s ease-in-out infinite;
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}
.btn--primary:hover::before { left: 130%; }
.btn--primary:hover { animation-play-state: paused; }

.btn--whatsapp {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn--whatsapp:hover { box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45); }

/* ---------- Botão flutuante do WhatsApp com "respiração" ---------- */
.whatsapp-float {
  animation: floatBounce 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { animation-play-state: paused; }

/* ---------- Abas da galeria com leve mola ---------- */
.gallery-tab { transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; }
.gallery-tab:hover { transform: translateY(-2px); }

} /* fim prefers-reduced-motion: no-preference */

@media (prefers-reduced-motion: reduce) {
  .btn--primary, .whatsapp-float, .img-placeholder, .hero, .hero::after, .hero__content::before,
  .hero__eyebrow, .hero__logo, .hero h1, .hero__tagline, .hero__actions,
  .promo-bar__track, .ribbon-badge {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   FOTOS DE PRODUTO, LIGHTBOX E JORNADA DO CAFÉ
   ========================================================= */

.field--mes { display: none; }
.field--mes.show { display: flex; }

/* ---------- Foto de catálogo dos produtos (clicável) ---------- */
.product-photo {
  display: block;
  width: 100%;
  min-height: 190px;
  border: none;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  background: var(--bege-2);
  overflow: hidden;
  position: relative;
}
.product-photo img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.product-photo:hover img { transform: scale(1.08) rotate(-1deg); }
.product-photo::after {
  content: "Ver maior";
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(11, 46, 158, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 11px;
  border-radius: var(--raio);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.product-photo:hover::after { opacity: 1; transform: translateY(0); }

.combo-card .product-photo { border-radius: 16px; min-height: 210px; margin-bottom: 16px; }
.combo-card .product-photo img { min-height: 210px; }

/* ---------- Lightbox de produto (reaproveita overlay .lightbox) ---------- */
.lightbox__product-img {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.lightbox__product-img img { width: 100%; display: block; border-radius: 12px; }
.lightbox__product-name {
  font-family: var(--serif);
  color: #fff;
  font-size: 1.6rem;
  margin: 22px 0 6px;
}
.lightbox__product-price {
  font-family: var(--serif);
  color: var(--dourado-claro);
  font-size: 1.4rem;
  margin: 0 0 10px;
}
.lightbox__product-desc { color: var(--bege-2); max-width: 460px; margin: 0 auto; }

/* ---------- Jornada do café — animação no lugar de vídeo na capa ---------- */
.producao-strip {
  background: var(--azul-escuro-2);
  padding: 30px 24px;
}
.producao-strip__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.producao-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--bege-2);
  flex: 1;
  min-width: 0;
}
.producao-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 166, 77, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dourado-claro);
  animation: stepPulse 6s ease-in-out infinite;
}
.producao-step:nth-child(1) .producao-step__icon { animation-delay: 0s; }
.producao-step:nth-child(3) .producao-step__icon { animation-delay: 1.5s; }
.producao-step:nth-child(5) .producao-step__icon { animation-delay: 3s; }
.producao-step:nth-child(7) .producao-step__icon { animation-delay: 4.5s; }
@keyframes stepPulse {
  0%, 12%, 100% { border-color: rgba(255, 166, 77, 0.4); box-shadow: none; transform: scale(1); }
  4% { border-color: var(--dourado); box-shadow: 0 0 0 8px rgba(255, 122, 26, 0.16); transform: scale(1.1); }
}
.producao-step span.label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em; text-align: center; }
.producao-connector {
  flex: 0.5;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,166,77,0.5) 0 6px, transparent 6px 12px);
  margin-bottom: 22px;
}

@media (max-width: 720px) {
  .producao-step span.label { display: none; }
  .producao-step__icon { width: 42px; height: 42px; font-size: 1.2rem; }
}
