:root {
  --evt-ink: #1c1914;
  --evt-soft: #6b655c;
  --evt-yellow: #ffc400;
  --evt-yellow-deep: #f0a500;
  --evt-yellow-soft: #fff3bf;
  --evt-blush: #f8d9d4;
  --evt-paper: #fffdf8;
  --evt-white: #ffffff;
  --evt-display: "Sora", "Segoe UI", sans-serif;
  --evt-body: "Outfit", "Segoe UI", sans-serif;
}

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

body.evt-body {
  margin: 0;
  font-family: var(--evt-body);
  color: var(--evt-ink);
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, rgba(255, 196, 0, .28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(248, 217, 212, .45), transparent 50%),
    linear-gradient(180deg, #fffaf0 0%, var(--evt-paper) 40%, #fff 100%);
  min-height: 100vh;
}

.evt-flash {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(92vw, 420px);
}
.evt-alert {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.evt-alert--ok { background: #d8f5e5; color: #0b7a4b; }
.evt-alert--err { background: #ffe3e3; color: #c92a2a; }

/* —— Hero —— */
.evt-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 255, 255, .55), transparent 28%),
    radial-gradient(ellipse 70% 80% at 85% 60%, rgba(255, 196, 0, .55), transparent 55%),
    linear-gradient(145deg, #fff8e1 0%, #ffe566 38%, #ffc400 72%, #ffb300 100%);
}

.evt-hero__glow {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 200deg at 70% 40%,
      rgba(255, 255, 255, .0) 0deg,
      rgba(255, 255, 255, .35) 40deg,
      rgba(255, 255, 255, .0) 90deg,
      rgba(255, 255, 255, .2) 160deg,
      rgba(255, 255, 255, .0) 220deg);
  animation: evt-spin 28s linear infinite;
  pointer-events: none;
}

.evt-hero__sun {
  position: absolute;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  right: 4%;
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, #fff9e0 0%, #ffd84d 38%, #ffc400 68%, rgba(255, 179, 0, .2) 100%);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, .18),
    0 0 0 40px rgba(255, 255, 255, .08);
  animation: evt-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.evt-hero__sparkles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: .0;
  animation: evt-sparkle 3.6s ease-in-out infinite;
  pointer-events: none;
}
.evt-hero__sparkles span:nth-child(1) { top: 22%; left: 18%; animation-delay: 0s; }
.evt-hero__sparkles span:nth-child(2) { top: 38%; left: 42%; width: 6px; height: 6px; animation-delay: .7s; }
.evt-hero__sparkles span:nth-child(3) { top: 58%; left: 28%; animation-delay: 1.4s; }
.evt-hero__sparkles span:nth-child(4) { top: 30%; right: 28%; width: 10px; height: 10px; animation-delay: .3s; }
.evt-hero__sparkles span:nth-child(5) { bottom: 22%; right: 18%; animation-delay: 1.9s; }

.evt-nav {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(18px, 4vw, 56px) 0;
}

.evt-brand {
  text-decoration: none;
  color: var(--evt-ink);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.evt-brand__mark {
  font-family: var(--evt-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.03em;
}
.evt-brand__tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(28, 25, 20, .55);
}

.evt-nav__cta {
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: var(--evt-ink);
  padding: 11px 18px;
  border-radius: 14px;
  transition: transform .2s ease, background .2s ease;
}
.evt-nav__cta:hover {
  transform: translateY(-1px);
  background: #000;
}

.evt-hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 24px;
  padding: 40px clamp(18px, 4vw, 56px) 64px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.evt-hero__copy {
  animation: evt-rise .85s cubic-bezier(.22, 1, .36, 1) both;
}

.evt-kicker {
  margin: 0 0 14px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(28, 25, 20, .58);
}

.evt-brand-hero {
  margin: 0 0 12px;
  font-family: var(--evt-display);
  font-size: clamp(3rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .92;
  color: var(--evt-ink);
}

.evt-hero__title {
  margin: 0 0 12px;
  font-family: var(--evt-display);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 22ch;
  color: rgba(28, 25, 20, .88);
}

.evt-hero__sub {
  margin: 0 0 28px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(28, 25, 20, .68);
  max-width: 38ch;
}

.evt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  padding: 15px 26px;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: var(--evt-ink);
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 14px 30px rgba(28, 25, 20, .18);
}
.evt-btn:hover { transform: translateY(-2px); }
.evt-btn--ghost {
  background: transparent;
  color: var(--evt-ink);
  border: 2px solid rgba(28, 25, 20, .14);
  box-shadow: none;
}
.evt-btn--block { width: 100%; margin-top: 8px; border-radius: 16px; }

/* Visual âncora: sorvete animado */
.evt-hero__visual {
  position: relative;
  height: min(52vh, 420px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: evt-rise .9s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.evt-scoop {
  position: absolute;
  border-radius: 50%;
  animation: evt-bob 4s ease-in-out infinite;
}
.evt-scoop--a {
  width: 150px; height: 150px;
  bottom: 150px; left: calc(50% - 110px);
  background: radial-gradient(circle at 35% 30%, #fff 0%, #ffe566 40%, #ffc400 100%);
  z-index: 3;
}
.evt-scoop--b {
  width: 130px; height: 130px;
  bottom: 165px; left: calc(50% - 20px);
  background: radial-gradient(circle at 35% 30%, #fff 0%, #ffd0d6 45%, #f4a5ae 100%);
  z-index: 2;
  animation-delay: -.8s;
}
.evt-scoop--c {
  width: 110px; height: 110px;
  bottom: 200px; left: calc(50% - 70px);
  background: radial-gradient(circle at 35% 30%, #fff 0%, #ffe8a3 50%, #f0a500 100%);
  z-index: 1;
  animation-delay: -1.6s;
}
.evt-cone {
  width: 92px;
  height: 150px;
  background: linear-gradient(180deg, #f6d7a5 0%, #e8b56a 55%, #d4924a 100%);
  clip-path: polygon(8% 0, 92% 0, 50% 100%);
  position: relative;
  z-index: 0;
  filter: drop-shadow(0 18px 24px rgba(28, 25, 20, .16));
}

/* —— Conteúdo —— */
.evt-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 18px 48px;
}

.evt-section {
  padding: 64px 0 8px;
  animation: evt-rise .7s cubic-bezier(.22, 1, .36, 1) both;
}
.evt-section h2 {
  font-family: var(--evt-display);
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  margin: 0 0 10px;
  letter-spacing: -.03em;
}
.evt-lead {
  margin: 0 0 32px;
  color: var(--evt-soft);
  font-weight: 500;
  font-size: 1.05rem;
  max-width: 44ch;
  line-height: 1.5;
}

.evt-products {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(28, 25, 20, .12);
}
.evt-products li {
  display: grid;
  grid-template-columns: minmax(120px, 170px) 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(28, 25, 20, .1);
  transition: padding-left .2s ease;
}
.evt-products li:hover { padding-left: 8px; }
.evt-products strong {
  font-family: var(--evt-display);
  font-size: 1.35rem;
  letter-spacing: -.02em;
  position: relative;
  padding-left: 16px;
}
.evt-products strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--evt-yellow);
  transform: translateY(-50%);
}
.evt-products span {
  color: var(--evt-soft);
  font-weight: 500;
}

.evt-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.evt-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}
.evt-steps__n {
  font-family: var(--evt-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--evt-yellow-deep);
  letter-spacing: -.03em;
}
.evt-steps strong { display: block; margin-bottom: 3px; font-size: 1.05rem; }
.evt-steps span { color: var(--evt-soft); font-size: .97rem; font-weight: 500; line-height: 1.45; }

/* —— Formulário —— */
.evt-book {
  margin-top: 48px;
  background: var(--evt-white);
  border: 1px solid rgba(28, 25, 20, .08);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 24px 60px rgba(28, 25, 20, .06);
  position: relative;
  overflow: hidden;
}
.evt-book::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--evt-yellow), #ffe566, var(--evt-blush));
}
.evt-book__head { margin-bottom: 22px; }
.evt-book__head h2 {
  font-family: var(--evt-display);
  font-size: 1.65rem;
  margin: 0 0 6px;
  letter-spacing: -.02em;
}
.evt-book__head p {
  margin: 0;
  color: var(--evt-soft);
  font-weight: 500;
}

.evt-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.evt-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.evt-cat {
  border: 2px solid rgba(28, 25, 20, .1);
  background: #fffaf0;
  border-radius: 16px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  font-weight: 800;
  font-family: inherit;
  color: var(--evt-ink);
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.evt-cat:hover { transform: translateY(-1px); }
.evt-cat.is-on {
  border-color: var(--evt-ink);
  background: var(--evt-yellow);
}

.evt-field { margin-bottom: 14px; }
.evt-field label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--evt-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.evt-field input,
.evt-field select,
.evt-field textarea {
  width: 100%;
  border: 1.5px solid rgba(28, 25, 20, .12);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 500;
  background: #fff;
  color: var(--evt-ink);
}
.evt-field input:focus,
.evt-field textarea:focus {
  outline: 2px solid rgba(255, 196, 0, .55);
  border-color: rgba(28, 25, 20, .35);
}

.evt-packages { display: grid; gap: 8px; }
.evt-pkg {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border: 2px solid rgba(28, 25, 20, .1);
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.evt-pkg.is-on {
  border-color: var(--evt-ink);
  background: var(--evt-yellow-soft);
}
.evt-pkg strong { display: block; }
.evt-pkg span { color: var(--evt-soft); font-size: .88rem; font-weight: 500; }

.evt-flavors { display: grid; gap: 8px; }
.evt-flavor {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 10px;
  align-items: center;
  background: #fffaf0;
  border-radius: 12px;
  padding: 10px 12px;
}
.evt-flavor input { text-align: center; }

.evt-sum {
  font-weight: 700;
  margin: 8px 0 14px;
  color: var(--evt-soft);
}
.evt-sum.is-ok { color: #0b7a4b; }
.evt-sum.is-bad { color: #c92a2a; }
.evt-avail { font-weight: 700; margin: 6px 0 12px; min-height: 1.2em; }
.evt-avail.is-ok { color: #0b7a4b; }
.evt-avail.is-bad { color: #c92a2a; }

.evt-foot {
  text-align: center;
  padding: 40px 18px 56px;
  color: var(--evt-soft);
}
.evt-foot strong {
  display: block;
  font-family: var(--evt-display);
  font-size: 1.15rem;
  color: var(--evt-ink);
  margin-bottom: 4px;
}
.evt-foot span { font-weight: 500; font-size: .92rem; }

/* —— Sucesso —— */
.evt-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 18px 64px;
}
.evt-success {
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(28, 25, 20, .08);
  box-shadow: 0 24px 60px rgba(28, 25, 20, .06);
  position: relative;
  overflow: hidden;
}
.evt-success::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--evt-yellow), #ffe566, var(--evt-blush));
}
.evt-success h1 {
  font-family: var(--evt-display);
  font-size: 2rem;
  margin: 0 0 10px;
}
.evt-success p {
  color: var(--evt-soft);
  font-weight: 500;
}
.evt-success__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

@keyframes evt-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes evt-spin {
  to { transform: rotate(360deg); }
}
@keyframes evt-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes evt-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes evt-sparkle {
  0%, 100% { opacity: 0; transform: scale(.4); }
  40% { opacity: .9; transform: scale(1); }
  70% { opacity: .2; transform: scale(.7); }
}

@media (max-width: 860px) {
  .evt-hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }
  .evt-hero__visual {
    height: 260px;
    order: -1;
    margin-top: 8px;
  }
  .evt-scoop--a { width: 120px; height: 120px; bottom: 120px; left: calc(50% - 90px); }
  .evt-scoop--b { width: 100px; height: 100px; bottom: 130px; left: calc(50% - 10px); }
  .evt-scoop--c { width: 86px; height: 86px; bottom: 155px; left: calc(50% - 55px); }
  .evt-cone { width: 72px; height: 118px; }
  .evt-hero__sun {
    width: 280px;
    height: 280px;
    top: auto;
    bottom: -40px;
    right: -40px;
    opacity: .55;
  }
}

@media (max-width: 720px) {
  .evt-cats,
  .evt-grid2 { grid-template-columns: 1fr; }
  .evt-products li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .evt-kicker { font-size: .7rem; }
}
