:root {
  --bege-claro: #F5EFE4;
  --bege-medio: #E8DCCB;
  --terracota: #C89B7B;
  --terracota-escuro: #B07A5B;
  --verde-salvia: #A3B18A;
  --verde-escuro: #6B7D52;
  --marrom: #8B5A3C;
  --marrom-escuro: #5C3A24;
  --texto: #4A3828;
  --texto-claro: #7A6855;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bege-claro);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Urgency bar ── */

.urgency-bar {
  background: var(--terracota-escuro);
  color: #FFF;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.urgency-bar span { font-weight: 600; }

/* ── Hero ── */

.hero {
  padding: 32px 24px 40px;
  background:
    radial-gradient(ellipse at top right, rgba(200, 155, 123, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(163, 177, 138, 0.14), transparent 60%),
    var(--bege-claro);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: 100vh;
  justify-content: center;
}

.welcome {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 12px;
  position: relative;
  padding: 0 40px;
}

.welcome::before, .welcome::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--terracota);
}
.welcome::before { left: 0; }
.welcome::after { right: 0; }

.brand {
  font-family: 'Great Vibes', cursive;
  font-size: 72px;
  color: var(--verde-escuro);
  line-height: 1;
  margin: 16px 0 12px;
  font-weight: 400;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--marrom);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 32px;
}

/* ── Hero image ── */

.hero-image {
  width: 100%;
  max-width: 380px;
  height: 240px;
  background: linear-gradient(135deg, #E8DCCB 0%, #D9C9B3 100%);
  border-radius: 12px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 90, 60, 0.15);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  color: var(--terracota-escuro);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

/* ── Headline & description ── */

.headline {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--marrom-escuro);
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 480px;
}

.headline em {
  font-style: italic;
  color: var(--terracota-escuro);
}

.description {
  font-size: 15px;
  color: var(--texto-claro);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ── Benefits list ── */

.benefits {
  max-width: 440px;
  width: 100%;
  margin: 0 auto 36px;
  text-align: left;
  list-style: none;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(200, 155, 123, 0.25);
}

.benefit:last-child { border-bottom: none; }

.check-icon {
  width: 26px;
  height: 26px;
  background: var(--bege-medio);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--terracota-escuro);
  stroke-width: 2.5;
  fill: none;
}

.benefit-text {
  font-size: 14px;
  color: var(--texto);
  line-height: 1.5;
}

.benefit-text strong {
  color: var(--marrom-escuro);
  font-weight: 600;
}

/* ── CTA section ── */

.cta-section {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 24px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(139, 90, 60, 0.1);
  border: 0.5px solid rgba(200, 155, 123, 0.3);
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--marrom-escuro);
  margin-bottom: 6px;
}

.cta-subtitle {
  font-size: 13px;
  color: var(--texto-claro);
  margin-bottom: 20px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: var(--whatsapp);
  color: #FFF;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:hover, .whatsapp-btn:active {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: #FFF;
}

.cta-note {
  text-align: center;
  font-size: 11px;
  color: var(--texto-claro);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ── Trust bar ── */

.trust {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  text-align: center;
  font-size: 11px;
  color: var(--texto-claro);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--marrom);
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0;
}

/* ── Footer ── */

.footer {
  padding: 24px 20px;
  text-align: center;
  font-size: 11px;
  color: var(--texto-claro);
  border-top: 0.5px solid rgba(200, 155, 123, 0.3);
  margin-top: 20px;
  background: var(--bege-claro);
}

.footer a {
  color: var(--terracota-escuro);
  text-decoration: none;
  margin: 0 6px;
}

.footer-links { margin-top: 6px; }

.footer-disclaimer {
  margin-top: 12px;
  font-size: 10px;
}

/* ── Decorative leaves ── */

.leaf-decoration {
  position: absolute;
  opacity: 0.18;
  pointer-events: none;
  width: 90px;
}
.leaf-top-right { top: 80px; right: -15px; transform: rotate(25deg); }
.leaf-bottom-left { bottom: 60px; left: -15px; transform: rotate(-35deg); }

/* ── Floating CTA button ── */

.fab-cta {
  appearance: none;
  border: none;
  cursor: pointer;
  position: fixed;
  bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  right: 36px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 100;
}

.fab-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}

.fab-cta svg {
  width: 28px;
  height: 28px;
  fill: #FFF;
}

.fab-cta:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.08);
}

.fab-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Responsive ── */

@media (min-width: 768px) {
  .fab-cta { bottom: 28px; }
}

@media (min-width: 600px) {
  .brand { font-size: 96px; }
  .tagline { font-size: 26px; }
  .headline { font-size: 32px; }
  .hero-image { max-width: 500px; height: 300px; }
}
