:root {
  --verde: #1B5E3F;
  --verde-escuro: #0D3D26;
  --verde-claro: #7A9B6E;
  --areia: #C9A961;
  --areia-clara: #E8DCC0;
  --creme: #F0E8D5;
  --off-white: #FAF7F2;
  --branco: #FFFFFF;
  --texto: #2A2419;
  --suave: #6B5840;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--texto);
  background: var(--off-white);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--verde);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.overline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--areia);
  margin-bottom: 1rem;
  text-align: center;
}

/* TOPO */
.topo {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,94,63,0.08);
  padding: 0.75rem 0;
}
.topo-flex { display: flex; justify-content: space-between; align-items: center; }
.topo-logo img { display: block; }
.topo-cta {
  background: var(--verde);
  color: var(--off-white);
  padding: 0.7rem 1.4rem;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}
.topo-cta:hover { background: var(--verde-escuro); transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: heroZoom 25s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,61,38,0.5) 0%, rgba(13,61,38,0.2) 40%, rgba(13,61,38,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--off-white);
  padding: 0 1.5rem;
  max-width: 720px;
  animation: fadeUp 1.2s ease-out 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-marca {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--areia);
  margin-bottom: 2rem;
  opacity: 0.95;
}
.hero-titulo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  color: var(--off-white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  color: var(--areia-clara);
  margin-bottom: 3rem;
  font-weight: 300;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--off-white);
  color: var(--verde);
  padding: 1.1rem 2.5rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-hero:hover {
  background: var(--areia-clara);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.btn-hero .arrow { transition: transform 0.3s; }
.btn-hero:hover .arrow { transform: translateX(6px); }
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--off-white);
  font-size: 1.5rem;
  text-decoration: none;
  opacity: 0.7;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-10px); }
}

/* SECOES */
section { padding: 6rem 0; }
section h2 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-anim].visivel { opacity: 1; transform: translateY(0); }

/* MANIFESTO */
.manifesto { background: var(--creme); text-align: center; }
.manifesto-h em { font-style: italic; color: var(--areia); }
.manifesto-p {
  max-width: 580px;
  margin: 2rem auto 0;
  font-size: 1.15rem;
  color: var(--suave);
  line-height: 1.8;
}

/* PROMESSAS */
.promessas { background: var(--off-white); padding: 5rem 0; }
.promessas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 720px) {
  .promessas-grid { grid-template-columns: repeat(3, 1fr); }
}
.promessa { text-align: center; padding: 1rem; }
.promessa-icone { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.promessa h3 { font-size: 1.35rem; margin-bottom: 0.75rem; font-weight: 500; }
.promessa p { color: var(--suave); font-size: 0.95rem; line-height: 1.7; }

/* CERTIFICACOES */
.certificacoes { background: var(--creme); text-align: center; }
.cert-intro {
  max-width: 540px;
  margin: 0 auto 3rem;
  color: var(--suave);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  font-family: var(--serif);
}
.selos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .selos-grid { grid-template-columns: repeat(2, 1fr); }
}
.selo-card {
  background: var(--branco);
  padding: 2rem 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--areia-clara);
  text-align: center;
}
.selo-img { max-width: 140px; height: auto; margin: 0 auto 1rem; display: block; }
.selo-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; font-weight: 500; }
.selo-card p { font-size: 0.9rem; color: var(--suave); line-height: 1.7; }

/* GALERIA */
.galeria { background: var(--verde-escuro); color: var(--off-white); }
.galeria h2 { color: var(--off-white); font-weight: 400; }
.galeria .overline { color: var(--areia); }
.galeria-titulo { margin-bottom: 3rem; }
.galeria-mosaico {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) {
  .galeria-mosaico {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 1rem;
  }
  .galeria-item:nth-child(1) { grid-row: 1 / 3; grid-column: 1; }
  .galeria-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .galeria-item:nth-child(3) { grid-column: 3; grid-row: 1; }
  .galeria-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
}
.galeria-item {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 4px;
  position: relative;
}
@media (min-width: 720px) { .galeria-item { aspect-ratio: auto; } }
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.galeria-item:hover img { transform: scale(1.05); }
.galeria-legenda {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--areia-clara);
  font-weight: 400;
  line-height: 1.5;
}

/* COBERTURA */
.cobertura { background: var(--verde); color: var(--off-white); text-align: center; }
.cobertura h2 { color: var(--off-white); font-weight: 400; }
.cobertura .overline { color: var(--areia-clara); }
.cidades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}
@media (min-width: 600px) {
  .cidades-grid { grid-template-columns: repeat(3, 1fr); }
}
.cidade-card {
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}
.cidade-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.cidade-card h3 { color: var(--off-white); font-size: 1.4rem; margin-bottom: 0.75rem; font-weight: 500; }
.cidade-card .dias { font-size: 0.95rem; color: var(--areia-clara); letter-spacing: 0.05em; }
.cobertura-nota {
  font-style: italic;
  color: var(--areia-clara);
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-top: 2rem;
}

/* COMO FUNCIONA */
.como-funciona { background: var(--creme); text-align: center; }
.passos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 720px) { .passos-grid { grid-template-columns: repeat(3, 1fr); } }
.passo { padding: 1rem; }
.passo-numero {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--areia);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1;
}
.passo h3 { font-size: 1.35rem; margin-bottom: 0.75rem; font-weight: 500; }
.passo p { color: var(--suave); font-size: 0.95rem; line-height: 1.7; }

/* PEDIDO */
.pedido { background: var(--off-white); padding: 6rem 0 8rem; }
.pedido-titulo { margin-bottom: 3rem; }
.card-pedido {
  background: var(--branco);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 0 12px 60px rgba(27,94,63,0.08);
  border: 1px solid var(--areia-clara);
}
.produto-bloco {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--areia-clara);
  margin-bottom: 1.75rem;
}
.produto-foto { width: 110px; height: 110px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.produto-foto img { width: 100%; height: 100%; object-fit: cover; }
.produto-info h3 { font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 500; line-height: 1.3; }
.produto-preco {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--verde);
  font-weight: 500;
  line-height: 1;
}
.produto-detalhe { font-size: 0.85rem; color: var(--suave); margin-top: 0.25rem; }
.divisor { height: 1px; background: var(--areia-clara); margin: 1.5rem 0; }
.campo { margin-bottom: 1.4rem; }
.campo label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: var(--texto);
  letter-spacing: 0.02em;
}
.campo input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--areia-clara);
  border-radius: 3px;
  font-size: 1rem;
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--texto);
  transition: all 0.2s;
}
.campo input:focus { outline: none; border-color: var(--verde); background: var(--branco); }
.campo input::placeholder { color: #B5A88C; }
.quantidade {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 3px;
}
.quantidade button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--areia-clara);
  background: var(--branco);
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--verde);
}
.quantidade button:hover {
  background: var(--verde);
  color: var(--off-white);
  border-color: var(--verde);
  transform: scale(1.05);
}
.quantidade span {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  min-width: 50px;
  text-align: center;
  color: var(--verde);
}
.opcoes { display: grid; gap: 0.5rem; }
.opcao {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--areia-clara);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.opcao:hover { background: var(--creme); }
.opcao:has(input:checked) { background: var(--creme); border-color: var(--verde); }
.opcao input { margin: 0; cursor: pointer; accent-color: var(--verde); }
.aviso-dias {
  font-style: italic;
  color: var(--suave);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
.total-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.5rem 0;
  margin-top: 1rem;
  border-top: 2px solid var(--verde);
}
.total-label {
  font-size: 0.95rem;
  color: var(--suave);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.total {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--verde);
  letter-spacing: -0.02em;
}
.btn-finalizar {
  width: 100%;
  background: var(--verde);
  color: var(--off-white);
  padding: 1.15rem;
  font-size: 1.05rem;
  font-weight: 500;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  font-family: var(--sans);
}
.btn-finalizar:hover {
  background: var(--verde-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,94,63,0.25);
}
.btn-finalizar:disabled { opacity: 0.5; cursor: not-allowed; }
.alternativa { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--suave); }
.alternativa a {
  color: var(--verde);
  text-decoration: underline;
  text-decoration-color: var(--areia);
  text-underline-offset: 3px;
  font-weight: 500;
}

/* TELA RECEBIDO */
.tela-recebido {
  position: fixed;
  inset: 0;
  background: rgba(13,61,38,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.tela-recebido.oculta { display: none; }
.recebido-card {
  background: var(--branco);
  padding: 3rem 2rem;
  border-radius: 6px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.recebido-icone {
  width: 72px;
  height: 72px;
  background: var(--verde);
  color: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.recebido-card h2 { font-size: 1.7rem; font-weight: 500; line-height: 1.3; margin-bottom: 1rem; }
.recebido-saudacao {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--suave);
  margin-bottom: 1.5rem;
}
.resumo {
  background: var(--creme);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
  text-align: left;
}
.resumo p { margin: 0.5rem 0; font-size: 0.95rem; }
.recebido-mensagem {
  font-style: italic;
  color: var(--suave);
  margin: 1.5rem 0 2rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.recebido-cta {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--verde);
  margin-bottom: 1rem;
  font-style: italic;
}
.recebido-share { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; justify-content: center; }
.share-btn {
  padding: 0.7rem 1.25rem;
  background: var(--creme);
  color: var(--verde);
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--areia-clara);
  transition: all 0.2s;
}
.share-btn:hover { background: var(--verde); color: var(--off-white); border-color: var(--verde); }
.btn-voltar {
  background: transparent;
  border: 1px solid var(--areia-clara);
  padding: 0.75rem 1.5rem;
  font-family: var(--sans);
  color: var(--verde);
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-voltar:hover { background: var(--verde); color: var(--off-white); border-color: var(--verde); }

/* FOOTER */
footer {
  background: var(--verde-escuro);
  color: var(--off-white);
  padding: 3.5rem 0;
  text-align: center;
}
.footer-logo { display: block; margin: 0 auto 1rem; }
.footer-end { font-size: 0.9rem; color: var(--areia-clara); margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--areia-clara);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.footer-social { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; }
.footer-social a {
  color: var(--areia-clara);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--off-white); }
.footer-cnpj { font-size: 0.75rem; color: rgba(232,220,192,0.6); line-height: 1.6; margin-top: 1rem; }

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .hero { min-height: 550px; margin-top: 56px; }
  .card-pedido { padding: 2rem 1.25rem; }
  .produto-bloco { gap: 1rem; }
  .produto-foto { width: 90px; height: 90px; }
  .produto-info h3 { font-size: 1.1rem; }
  .produto-preco { font-size: 1.6rem; }
  .topo-cta { padding: 0.55rem 1rem; font-size: 0.85rem; }
  .topo-logo img { height: 38px; }
}
