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

.empadao-gtm-frame {
  display: none;
  visibility: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
  color: #2c1810;
  background-color: #faf6f1;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

/* ====================================
   EMPADÃO HERO - SEÇÃO PRINCIPAL
   ==================================== */

.empadao-hero {
  background: linear-gradient(135deg, #faf6f1 0%, #f5ede1 100%);
  min-height: 100svh;
  background-image: linear-gradient(90deg, rgba(250, 246, 241, 1) 0%, rgba(250, 246, 241, 0.4) 50%, rgba(250, 246, 241, 0) 85%), url("assets/planodefundodesktop.webp");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empadao-hero__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "intro   video"
    "details video";
  column-gap: clamp(40px, 5vw, 60px);
  row-gap: 24px;
  align-items: center;
}

/* ====================================
   CONTEÚDO (ESQUERDA) — intro fica acima do vídeo, details abaixo dele;
   no mobile o vídeo entra ENTRE os dois (ver grid-template-areas abaixo)
   ==================================== */

.empadao-hero__intro,
.empadao-hero__details {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.empadao-hero__details {
  grid-area: details;
  gap: 16px;
}

.empadao-hero__pre-headline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c85a17;
}

.empadao-hero__headline {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #2c1810;
  text-wrap: balance;
}

.empadao-hero__subheadline {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: #6b4423;
  text-wrap: pretty;
}

/* Bullets */
.empadao-hero__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.empadao-hero__bullets li {
  font-size: 15px;
  color: #5a3a24;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.empadao-hero__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c85a17;
  font-weight: bold;
  font-size: 18px;
}

/* Preço e Badges */
.empadao-hero__price {
  display: flex;
  align-items: baseline;
  gap: 4px 12px;
  flex-wrap: wrap;
}

.empadao-hero__price-old {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.empadao-hero__price-new {
  font-size: 24px;
  font-weight: 700;
  color: #8b4513;
}

.empadao-hero__price-installments {
  flex-basis: 100%;
  font-size: 12px;
  line-height: 1.05;
  text-align: center;
  color: #6b4423;
}

/* Trust Badges */
.empadao-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.empadao-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  background-color: #fbf3e3;
  color: #8b4513;
  border-radius: 20px;
  border: 1px solid #e8dcc8;
}

.empadao-hero__badge::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #d4a574;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
}

/* CTA Principal */
.empadao-hero__cta {
  align-self: flex-start;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  background-color: #8b4513;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.empadao-hero__cta:hover {
  background-color: #6b3410;
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.3);
  transform: translateY(-2px);
}

.empadao-hero__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.empadao-hero__cta:focus {
  outline: 2px solid #8b4513;
  outline-offset: 2px;
}

/* CTA Secundário */
.empadao-hero__cta-secondary {
  font-size: 13px;
  color: #6b4423;
  font-weight: 500;
}

/* ====================================
   VÍDEO (DIREITA)
   ==================================== */

.empadao-hero__video-wrapper {
  grid-area: video;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.empadao-hero__video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background-color: #f5ede1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.15);
  border: 1px solid #e8dcc8;
}

.empadao-hero__video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(200, 90, 23, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.empadao-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* ====================================
   RESPONSIVO - MOBILE
   ==================================== */

@media (max-width: 768px) {
  .empadao-hero {
    min-height: 100svh;
    padding: 24px 0;
    background-image: none;
  }

  .empadao-hero__container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "video"
      "details";
    row-gap: 20px;
    padding: 24px 16px;
    text-align: center;
  }

  .empadao-hero__intro,
  .empadao-hero__details {
    gap: 12px;
    align-items: center;
  }

  .empadao-hero__headline {
    line-height: 1.25;
  }

  .empadao-hero__bullets {
    display: none;
  }

  .empadao-hero__price {
    justify-content: center;
  }

  .empadao-hero__price-new {
    font-size: 20px;
  }

  .empadao-hero__cta {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .empadao-hero__badges {
    gap: 6px;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .empadao-hero__badge {
    font-size: 11px;
    padding: 6px 10px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .empadao-hero {
    padding: 20px 12px;
  }

  .empadao-hero__container {
    row-gap: 16px;
  }

  .empadao-hero__pre-headline {
    font-size: 12px;
  }

  .empadao-hero__bullets {
    gap: 10px;
  }

  .empadao-hero__bullets li {
    font-size: 13px;
  }

  .empadao-hero__price-new {
    font-size: 18px;
  }

  .empadao-hero__price-installments {
    font-size: 11px;
  }

  .empadao-hero__badges {
    gap: 4px;
    flex-wrap: nowrap;
  }

  .empadao-hero__badge {
    font-size: 10px;
    padding: 5px 8px;
    white-space: nowrap;
  }

  .empadao-hero__badge::before {
    width: 13px;
    height: 13px;
    font-size: 8px;
  }
}

/* ====================================
   SEÇÃO: O QUE VOCÊ VAI DOMINAR
   Colagem editorial assimétrica (bento quebrado), 100% CSS Grid — sem
   JS, sem cálculo de posição. Cabe em 100svh como a hero.
   ==================================== */

.empadao-mastery {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #faf6f1 0%, #f5ede1 55%, #f0e4d3 100%);
  padding: clamp(32px, 5vh, 56px) 24px;
}

.empadao-mastery::before {
  content: "21";
  position: absolute;
  top: 50%;
  right: -0.06em;
  transform: translateY(-50%);
  font-size: clamp(220px, 30vw, 420px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #2c1810;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

.empadao-mastery__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.empadao-mastery__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.empadao-mastery__eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #c85a17;
  display: flex;
  align-items: center;
  gap: 10px;
}

.empadao-mastery__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #8b4513;
  flex-shrink: 0;
}

.empadao-mastery__headline {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: #2c1810;
  text-wrap: balance;
}

.empadao-mastery__subheadline {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: #6b4423;
  max-width: 46ch;
  text-wrap: pretty;
}

/* Colagem — grid uniforme 7x3 = 21 fotos, todas do mesmo tamanho
   (sem span/hand-placement: garante que nenhuma fique fina/espremida
   e que as 21 sempre caibam, em qualquer tela). */
.empadao-mastery__collage {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: clamp(6px, 0.9vw, 12px);
  height: min(60svh, 600px);
}

.empadao-mastery__cta-block {
  display: none;
}

.empadao-mastery__tile {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(44, 24, 16, 0.18);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: empadao-tile-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 22ms);
}

/* destaque rítmico a cada 4ª foto — anel de acento na paleta do site */
.empadao-mastery__tile:nth-child(4n + 1) {
  box-shadow: 0 0 0 3px #d4a574, 0 10px 22px rgba(44, 24, 16, 0.22);
}

.empadao-mastery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.empadao-mastery__tile:hover img {
  transform: scale(1.08);
}

@keyframes empadao-tile-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .empadao-mastery {
    display: block;
    padding: 48px 20px;
  }

  .empadao-mastery::before {
    font-size: 160px;
    opacity: 0.05;
    right: -0.02em;
  }

  .empadao-mastery__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .empadao-mastery__header {
    text-align: center;
    align-items: center;
  }

  .empadao-mastery__eyebrow {
    justify-content: center;
  }

  .empadao-mastery__subheadline {
    margin: 0 auto;
  }

  .empadao-mastery__collage {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    height: auto;
    min-height: 0;
  }

  .empadao-mastery__tile {
    aspect-ratio: 1 / 1;
  }

  .empadao-mastery__cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    text-align: center;
  }

  .empadao-mastery__cta-block .empadao-hero__badges {
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
  }

  .empadao-mastery__cta-block .empadao-hero__cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .empadao-mastery__tile {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .empadao-mastery__tile img {
    transition: none;
  }
}

@media (prefers-color-scheme: dark) {
  .empadao-mastery {
    background: linear-gradient(160deg, #241c16 0%, #2f251d 55%, #201812 100%);
  }

  .empadao-mastery::before {
    color: #f4a948;
    opacity: 0.05;
  }

  .empadao-mastery__eyebrow {
    color: #f4a948;
  }

  .empadao-mastery__eyebrow::before {
    background: #d4a574;
  }

  .empadao-mastery__headline {
    color: #f5ede1;
  }

  .empadao-mastery__subheadline {
    color: #d4a574;
  }

  .empadao-mastery__tile {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  }
}

/* ====================================
   SEÇÃO: PROVAS SOCIAIS
   Mural de prints estilo scrapbook em grid de altura fixa (cabe em
   100svh, como as demais seções). Os prints são screenshots em retrato,
   então usamos object-fit:contain nas imagens — elas encolhem para
   caber na célula, mas nunca são cortadas.
   ==================================== */

.empadao-proof {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle, rgba(139, 69, 19, 0.09) 1.4px, transparent 1.4px) 0 0 / 22px 22px,
    linear-gradient(175deg, #f0e4d3 0%, #ece0cb 100%);
  padding: clamp(24px, 4vh, 40px) 24px;
  overflow: hidden;
}

.empadao-proof__container {
  position: relative;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.empadao-proof__header {
  max-width: 620px;
  margin: 0 auto clamp(22px, 3.4vh, 34px);
  text-align: center;
}

.empadao-proof__eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #c85a17;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.empadao-proof__eyebrow::before,
.empadao-proof__eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: #8b4513;
  flex-shrink: 0;
}

.empadao-proof__headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: #2c1810;
  text-wrap: balance;
  margin-bottom: 8px;
}

.empadao-proof__subheadline {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.55;
  color: #6b4423;
  text-wrap: pretty;
}

/* Mural em 1 fileira só — as 8 imagens ficam juntas lado a lado. */
.empadao-proof__slider {
  position: relative;
}

.empadao-proof__wall {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: clamp(8px, 1vw, 14px);
}

.empadao-proof__card {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: 6px 6px 9px;
  background-color: #fffdf8;
  border-radius: 3px;
  box-shadow: 0 14px 26px rgba(44, 24, 16, 0.16);
  transform: rotate(var(--r, 0deg));
  opacity: 0;
  animation: empadao-proof-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.empadao-proof__card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 42px;
  height: 15px;
  background: rgba(212, 165, 116, 0.55);
  border: 1px solid rgba(139, 69, 19, 0.12);
  transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 2px 4px rgba(44, 24, 16, 0.12);
}

.empadao-proof__card:nth-child(3n)::before {
  background: rgba(200, 90, 23, 0.4);
  transform: translateX(-50%) rotate(2.5deg);
}

.empadao-proof__card:hover,
.empadao-proof__card:focus-within {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow: 0 22px 38px rgba(44, 24, 16, 0.24);
  z-index: 2;
}

.empadao-proof__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 2px;
}

.empadao-proof__dots {
  display: none;
}

.empadao-proof__cta-wrap {
  text-align: center;
  margin-top: clamp(18px, 3vh, 28px);
}

.empadao-proof__price,
.empadao-proof__badges,
.empadao-proof__secondary {
  display: none;
}

.empadao-proof__cta {
  display: inline-block;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  background-color: #8b4513;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.empadao-proof__cta:hover {
  background-color: #6b3410;
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.3);
  transform: translateY(-2px);
}

.empadao-proof__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.empadao-proof__cta:focus {
  outline: 2px solid #8b4513;
  outline-offset: 2px;
}

@keyframes empadao-proof-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.92) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--r, 0deg));
  }
}

@media (max-width: 768px) {
  .empadao-proof {
    padding: 18px 18px;
  }

  .empadao-proof__header {
    margin-bottom: 14px;
  }

  .empadao-proof__eyebrow {
    margin-bottom: 6px;
  }

  .empadao-proof__headline {
    margin-bottom: 5px;
  }

  .empadao-proof__subheadline {
    line-height: 1.4;
  }

  .empadao-proof__container {
    overflow: hidden;
  }

  .empadao-proof__wall {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2px 10% 6px;
    scrollbar-width: none;
  }

  .empadao-proof__wall::-webkit-scrollbar {
    display: none;
  }

  .empadao-proof__card {
    display: block;
    flex: 0 0 80%;
    max-width: 80%;
    margin: 0;
    padding: 4px 4px 6px;
    animation: none;
    opacity: 1;
    transform: none;
    scroll-snap-align: center;
  }

  .empadao-proof__card:hover,
  .empadao-proof__card:focus-within {
    transform: none;
  }

  .empadao-proof__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 4px;
  }

  .empadao-proof__cta-wrap {
    margin-top: 14px;
  }

  .empadao-proof__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background-color: #b98a5d;
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
  }

  .empadao-proof__dot.is-active,
  .empadao-proof__dot[aria-current="true"] {
    width: 18px;
    background-color: #c85a17;
  }

  .empadao-proof__cta {
    display: block;
    width: 100%;
    padding: 12px 22px;
    font-size: 15px;
  }

  .empadao-proof__price {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .empadao-proof__badges {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 10px;
  }

  .empadao-proof__secondary {
    display: block;
    margin-top: 9px;
  }
}

@media (max-width: 480px) {
  .empadao-proof__card {
    transform: rotate(0deg);
  }

  .empadao-proof__card:hover,
  .empadao-proof__card:focus-within {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .empadao-proof__card {
    animation: none;
    opacity: 1;
    transform: rotate(var(--r, 0deg));
    transition: none;
  }
}

@media (prefers-color-scheme: dark) {
  .empadao-proof {
    background:
      radial-gradient(circle, rgba(244, 169, 72, 0.08) 1.4px, transparent 1.4px) 0 0 / 22px 22px,
      linear-gradient(175deg, #241c16 0%, #1c150f 100%);
  }

  .empadao-proof__eyebrow {
    color: #f4a948;
  }

  .empadao-proof__eyebrow::before,
  .empadao-proof__eyebrow::after {
    background: #d4a574;
  }

  .empadao-proof__headline {
    color: #f5ede1;
  }

  .empadao-proof__subheadline {
    color: #d4a574;
  }

  .empadao-proof__card {
    background-color: #2a2018;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.4);
  }

  .empadao-proof__card:hover,
  .empadao-proof__card:focus-within {
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.5);
  }
}

@keyframes empadao-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================================
   SEÇÃO: CONTEÚDO DA APOSTILA
   Índice de receitas dentro de uma "página" com pauta sutil, como
   apostila física. Mesma leitura compacta da lista de videoaulas.
   ==================================== */

.empadao-workbook {
  background: linear-gradient(180deg, #f5ede1 0%, #efe0c9 100%);
  padding: clamp(32px, 5vh, 48px) 24px;
}

.empadao-workbook__container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.empadao-workbook__head {
  display: flex;
  flex-direction: column;
}

.empadao-workbook__cover {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.empadao-workbook__cover img {
  max-width: 78%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.empadao-workbook__headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: #2c1810;
  text-wrap: balance;
  margin-bottom: 8px;
}

.empadao-workbook__lede {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #6b4423;
}

.empadao-workbook__page {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background-color: #fffdf8;
  border-radius: 4px 16px 16px 4px;
  padding: clamp(20px, 3vw, 32px) clamp(18px, 3vw, 30px);
  box-shadow: 0 20px 44px rgba(44, 24, 16, 0.16);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 32px,
    rgba(139, 69, 19, 0.07) 33px
  );
}

.empadao-workbook__tab {
  position: absolute;
  top: -14px;
  left: clamp(20px, 3vw, 32px);
  background-color: #8b4513;
  color: #fff8ee;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 6px 6px 0 0;
}

.empadao-workbook__list {
  list-style: none;
  columns: 3;
  column-gap: 16px;
}

.empadao-workbook__item {
  display: block;
  padding: 3px 0;
  border-bottom: 1px solid #e8dcc8;
  break-inside: avoid-column;
  font-size: 14px;
  line-height: 1.18;
  color: #2c1810;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  animation: empadao-fade-up 0.5s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 25ms);
}

.empadao-workbook__item:first-child {
  padding-top: 0;
}

.empadao-workbook__item::before {
  content: none;
}

.empadao-workbook__cta-block {
  margin-top: 22px;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.empadao-workbook__cta-block .empadao-hero__price {
  margin: 0;
}

.empadao-workbook__cta-block .empadao-hero__badges {
  margin: 0;
  justify-content: center;
  max-width: 100%;
}

.empadao-workbook__cta-block .empadao-hero__cta {
  width: min(100%, 420px);
  margin-top: 2px;
  max-width: 100%;
}

.empadao-workbook__cta-block .empadao-hero__cta-secondary {
  margin: 0;
}

@media (max-width: 1024px) {
  .empadao-workbook__list {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .empadao-workbook {
    padding: 32px 18px;
    overflow-x: clip;
  }

  .empadao-workbook__container {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: clip;
  }

  .empadao-workbook__head,
  .empadao-workbook__page,
  .empadao-workbook__list,
  .empadao-workbook__cta-block {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .empadao-workbook__cover {
    flex: none;
    margin-bottom: 20px;
  }

  .empadao-workbook__cover img {
    max-width: 200px;
  }

  .empadao-workbook__list {
    columns: 1;
  }

  .empadao-workbook__page {
    border-radius: 4px 14px 14px 4px;
    padding: 20px 14px;
  }

  .empadao-workbook__item,
  .empadao-workbook__headline,
  .empadao-workbook__lede {
    overflow-wrap: anywhere;
  }

  .empadao-workbook__cta-block .empadao-hero__badges {
    gap: 4px;
    width: calc(100% - 24px);
    flex-wrap: wrap;
  }

  .empadao-workbook__cta-block .empadao-hero__badge {
    padding: 4px 5px;
    font-size: 8.5px;
    gap: 3px;
  }

  .empadao-workbook__cta-block .empadao-hero__badge::before {
    width: 13px;
    height: 13px;
    font-size: 8px;
  }

  .empadao-workbook__cta-block .empadao-hero__cta {
    width: calc(100% - 34px);
    padding: 11px 10px;
    font-size: 13px;
    white-space: normal;
  }

  .empadao-workbook__cta-block .empadao-hero__cta-secondary {
    font-size: 12px;
    padding: 0 10px;
  }

  .empadao-workbook__item {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .empadao-workbook__item {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .empadao-workbook {
    background: linear-gradient(180deg, #241c16 0%, #1c150f 100%);
  }

  .empadao-workbook__headline {
    color: #f5ede1;
  }

  .empadao-workbook__lede {
    color: #d4a574;
  }

  .empadao-workbook__page {
    background-color: #2a2018;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
    background-image: repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 32px,
      rgba(212, 165, 116, 0.08) 33px
    );
  }

  .empadao-workbook__tab {
    background-color: #c85a17;
  }

  .empadao-workbook__item {
    border-bottom-color: #4a3a2a;
    color: #f0e4d3;
  }

  .empadao-workbook__item::before {
    background-color: #f4a948;
  }
}

/* ====================================
   SEÇÃO: CERTIFICADO
   Cartão do certificado real inclinado + selo, e um bloco de vendas
   com os mesmos pontos e preço já usados na hero (R$ 49,90 / 7x R$ 8,16).
   ==================================== */

.empadao-certificate {
  background: linear-gradient(160deg, #faf6f1 0%, #f0e4d3 100%);
  padding: clamp(56px, 8vh, 96px) 24px;
}

.empadao-certificate__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.empadao-certificate__photo {
  position: relative;
  margin: 0;
  max-width: 330px;
  justify-self: center;
  transform: rotate(-4deg);
  opacity: 0;
  animation: empadao-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.empadao-certificate__photo img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 6px solid #fffdf8;
  box-shadow: 0 22px 44px rgba(44, 24, 16, 0.22);
}

.empadao-certificate__seal {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c85a17;
  box-shadow: 0 10px 22px rgba(139, 69, 19, 0.35), 0 0 0 5px #faf6f1;
}

.empadao-certificate__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  min-height: 390px;
  gap: 2px;
  opacity: 0;
  transform: translateY(10px);
  animation: empadao-fade-up 0.5s ease-out 0.15s forwards;
}

.empadao-certificate__badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8b4513;
  background-color: #fbf3e3;
  border: 1px solid #e8dcc8;
  border-radius: 20px;
  padding: 7px 16px;
  margin-bottom: 6px;
}

.empadao-certificate__headline {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #c85a17;
  text-wrap: balance;
  margin-bottom: 4px;
}

.empadao-certificate__lede {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 700;
  line-height: 1.4;
  color: #2c1810;
  text-wrap: pretty;
}

.empadao-certificate__desc {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.45;
  color: #6b4423;
  margin-top: 4px;
  text-wrap: pretty;
}

.empadao-certificate__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.empadao-certificate__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #3a2415;
}

.empadao-certificate__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fbf3e3;
  color: #c85a17;
  font-size: 13px;
  font-weight: 700;
}

.empadao-certificate__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.empadao-certificate__cta {
  align-self: stretch;
  margin-top: 14px;
  padding: 16px 36px;
  font-size: clamp(13px, 3.6vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: white;
  background-color: #8b4513;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

.empadao-certificate__cta:hover {
  background-color: #6b3410;
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.3);
  transform: translateY(-2px);
}

.empadao-certificate__cta:focus {
  outline: 2px solid #8b4513;
  outline-offset: 2px;
}

.empadao-certificate__price {
  align-self: center;
  margin-top: auto;
  font-size: 15px;
  color: #3a2415;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.empadao-certificate__price strong {
  font-size: 20px;
  color: #8b4513;
}

.empadao-certificate__price span {
  font-size: 13px;
  color: #6b4423;
}

@media (max-width: 768px) {
  .empadao-certificate__container {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .empadao-certificate__photo {
    transform: rotate(-3deg);
    max-width: 260px;
    margin: 0 auto;
  }

  .empadao-certificate__content {
    align-items: center;
    text-align: center;
    min-height: 0;
  }

  .empadao-certificate__list {
    align-items: flex-start;
  }

  .empadao-certificate__cta {
    width: 100%;
    margin-top: 14px;
  }

  .empadao-certificate__price {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .empadao-certificate {
    padding: 48px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .empadao-certificate__photo,
  .empadao-certificate__content {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .empadao-certificate {
    background: linear-gradient(160deg, #241c16 0%, #201812 100%);
  }

  .empadao-certificate__badge {
    background-color: #3a2f26;
    border-color: #5a4a3a;
    color: #f4a948;
  }

  .empadao-certificate__headline {
    color: #f4a948;
  }

  .empadao-certificate__lede {
    color: #f5ede1;
  }

  .empadao-certificate__desc {
    color: #d4a574;
  }

  .empadao-certificate__list li {
    color: #e8d9c5;
  }

  .empadao-certificate__icon {
    background-color: #3a2f26;
    color: #f4a948;
  }

  .empadao-certificate__price {
    color: #e8d9c5;
  }

  .empadao-certificate__price strong {
    color: #f4a948;
  }

  .empadao-certificate__price span {
    color: #d4a574;
  }
}

/* ====================================
   SEÇÃO: QUEM ENSINA
   Retrato + cartão de identificação da instrutora. Sem estatísticas
   inventadas — só nome, função e o vínculo com o curso/confeitaria.
   ==================================== */

.empadao-expert {
  background: linear-gradient(135deg, #f5ede1 0%, #faf6f1 100%);
  padding: clamp(56px, 8vh, 96px) 24px;
}

.empadao-expert__container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.empadao-expert__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 3px #d4a574, 0 18px 40px rgba(44, 24, 16, 0.2);
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  animation: empadao-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.empadao-expert__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.empadao-expert__stamp {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #8b4513;
  background-color: #fffdf8;
  border: 1px solid #e8dcc8;
  border-radius: 20px;
  padding: 7px 14px;
  box-shadow: 0 6px 16px rgba(44, 24, 16, 0.18);
}

.empadao-expert__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  animation: empadao-fade-up 0.5s ease-out 0.15s forwards;
}

.empadao-expert__eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #c85a17;
  display: flex;
  align-items: center;
  gap: 10px;
}

.empadao-expert__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #8b4513;
  flex-shrink: 0;
}

.empadao-expert__name {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: #2c1810;
  text-wrap: balance;
}

.empadao-expert__desc {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: #2c1810;
  font-weight: 600;
  margin-top: 8px;
  text-wrap: pretty;
}

.empadao-expert__quote {
  position: relative;
  margin: 18px 0 4px;
  padding-left: 0;
  font-size: clamp(16px, 1.6vw, 19px);
  font-style: italic;
  font-weight: 600;
  color: #c85a17;
  text-align: center;
  text-wrap: pretty;
}

.empadao-expert__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}

.empadao-expert__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 16px 10px;
  background-color: #fffdf8;
  border: 1px solid #e8dcc8;
  border-radius: 12px;
}

.empadao-expert__stat-icon {
  width: 24px;
  height: 24px;
  color: #c85a17;
  margin-bottom: 2px;
}

.empadao-expert__stat strong {
  font-size: 14px;
  font-weight: 700;
  color: #2c1810;
  line-height: 1.2;
}

.empadao-expert__stat span {
  font-size: 12px;
  color: #6b4423;
}

.empadao-expert__cta-block {
  margin-top: 26px;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
}

.empadao-expert__cta-block .empadao-hero__price,
.empadao-expert__cta-block .empadao-hero__badges,
.empadao-expert__cta-block .empadao-hero__cta-secondary {
  margin: 0;
}

.empadao-expert__cta-block .empadao-hero__cta {
  width: min(100%, 420px);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .empadao-expert {
    padding: 32px 18px;
  }

  .empadao-expert__container {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 18px;
    text-align: center;
  }

  .empadao-expert__photo {
    aspect-ratio: 1 / 1;
    width: min(100%, 240px);
    margin: 0 auto;
  }

  .empadao-expert__content {
    gap: 7px;
  }

  .empadao-expert__eyebrow {
    align-self: center;
    justify-content: center;
  }

  .empadao-expert__quote {
    margin-top: 10px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .empadao-expert__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
  }

  .empadao-expert__stat {
    padding: 8px 3px;
    min-width: 0;
    gap: 4px;
  }

  .empadao-expert__cta-block {
    margin-top: 14px;
    gap: 9px;
  }

  .empadao-expert__cta-block .empadao-hero__cta {
    margin-top: 0;
    padding: 12px 22px;
  }

  .empadao-expert__stat strong,
  .empadao-expert__stat span {
    max-width: 100%;
    white-space: nowrap;
  }

  .empadao-expert__stat-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
  }

  .empadao-expert__stat strong {
    font-size: 10.5px;
  }

  .empadao-expert__stat span {
    font-size: 9.5px;
  }
}

@media (max-width: 480px) {
  .empadao-expert {
    padding: 28px 18px;
  }

  .empadao-expert__stat strong {
    font-size: 9.5px;
  }

  .empadao-expert__stat span {
    font-size: 8.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .empadao-expert__photo,
  .empadao-expert__content {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .empadao-expert {
    background: linear-gradient(135deg, #241c16 0%, #2a2118 100%);
  }

  .empadao-expert__eyebrow {
    color: #f4a948;
  }

  .empadao-expert__eyebrow::before {
    background: #d4a574;
  }

  .empadao-expert__name {
    color: #f5ede1;
  }

  .empadao-expert__desc {
    color: #f0e4d3;
  }

  .empadao-expert__quote {
    color: #f4a948;
  }

  .empadao-expert__stat {
    background-color: #2a2018;
    border-color: #5a4a3a;
  }

  .empadao-expert__stat-icon {
    color: #f4a948;
  }

  .empadao-expert__stat strong {
    color: #f5ede1;
  }

  .empadao-expert__stat span {
    color: #d4a574;
  }

  .empadao-expert__stamp {
    background-color: #2a2018;
    border-color: #5a4a3a;
    color: #f4a948;
  }
}

/* ====================================
   SEÇÃO: GARANTIA
   Selo real de garantia + texto curto. 7 dias, direto do próprio selo.
   ==================================== */

.empadao-guarantee {
  background: linear-gradient(160deg, #f0e4d3 0%, #faf6f1 100%);
  padding: clamp(56px, 8vh, 96px) 24px;
}

.empadao-guarantee__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.empadao-guarantee__seal {
  flex-shrink: 0;
  width: clamp(140px, 18vw, 200px);
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(44, 24, 16, 0.22));
  opacity: 0;
  transform: translateY(14px) scale(0.94) rotate(-6deg);
  animation: empadao-guarantee-seal-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes empadao-guarantee-seal-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(-6deg);
  }
}

.empadao-guarantee__content {
  opacity: 0;
  transform: translateY(10px);
  animation: empadao-fade-up 0.5s ease-out 0.15s forwards;
}

.empadao-guarantee__eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #c85a17;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.empadao-guarantee__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #8b4513;
  flex-shrink: 0;
}

.empadao-guarantee__headline {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: #2c1810;
  text-wrap: balance;
  margin-bottom: 10px;
}

.empadao-guarantee__desc {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: #6b4423;
  text-wrap: pretty;
}

.empadao-guarantee__cta-block {
  margin-top: 26px;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: 100%;
}

.empadao-guarantee__cta-block .empadao-hero__price,
.empadao-guarantee__cta-block .empadao-hero__badges,
.empadao-guarantee__cta-block .empadao-hero__cta-secondary {
  margin: 0;
}

.empadao-guarantee__cta-block .empadao-hero__cta {
  width: min(100%, 420px);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .empadao-guarantee__container {
    flex-direction: column;
    text-align: center;
  }

  .empadao-guarantee__eyebrow {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .empadao-guarantee {
    padding: 48px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .empadao-guarantee__seal,
  .empadao-guarantee__content {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .empadao-guarantee {
    background: linear-gradient(160deg, #201812 0%, #241c16 100%);
  }

  .empadao-guarantee__eyebrow {
    color: #f4a948;
  }

  .empadao-guarantee__eyebrow::before {
    background: #d4a574;
  }

  .empadao-guarantee__headline {
    color: #f5ede1;
  }

  .empadao-guarantee__desc {
    color: #d4a574;
  }
}

/* ====================================
   SEÇÃO: RESUMO
   ==================================== */

.empadao-summary {
  background: linear-gradient(160deg, #f0e4d3 0%, #faf6f1 100%);
  padding: clamp(42px, 7vh, 72px) 20px;
}

.empadao-summary__container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.empadao-summary__card {
  position: relative;
  overflow: hidden;
  background-color: #fffdf8;
  border: 1px solid rgba(232, 220, 200, 0.9);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 54px) clamp(18px, 5vw, 48px);
  box-shadow: 0 24px 54px rgba(44, 24, 16, 0.13);
}

.empadao-summary__card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border-radius: 18px;
  background-image: radial-gradient(rgba(139, 69, 19, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
}

.empadao-summary__card > * {
  position: relative;
  z-index: 1;
}

.empadao-summary__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #c85a17;
  margin-bottom: 18px;
}

.empadao-summary__eyebrow::before,
.empadao-summary__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background-color: currentColor;
}

.empadao-summary__headline {
  max-width: 680px;
  margin: 0 auto 12px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  color: #2c1810;
  text-wrap: balance;
}

.empadao-summary__subheadline {
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.5;
  color: #5f4632;
}

.empadao-summary__includes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto 28px;
}

.empadao-summary__includes li {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 4px;
  min-height: 86px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #2c1810;
  background-color: rgba(255, 250, 245, 0.82);
  border: 1px solid #e8dcc8;
  border-radius: 14px;
  white-space: nowrap;
}

.empadao-summary__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c85a17;
}

.empadao-summary__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.empadao-summary__price {
  display: grid;
  gap: 2px;
  justify-items: center;
  margin-bottom: 22px;
  color: #5f4632;
}

.empadao-summary__price span {
  font-size: 14px;
  text-decoration: line-through;
}

.empadao-summary__price strong {
  font-size: clamp(50px, 8vw, 76px);
  font-weight: 700;
  line-height: 0.95;
  color: #8b4513;
}

.empadao-summary__price small {
  font-size: 13px;
  color: #5f4632;
}

.empadao-summary__cta {
  width: min(100%, 620px);
  min-height: 58px;
  border: none;
  border-radius: 12px;
  background-color: #8b4513;
  color: #fffdf8;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(139, 69, 19, 0.28), 0 0 0 8px rgba(212, 165, 116, 0.18);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.empadao-summary__cta:hover {
  background-color: #6b3410;
  transform: translateY(-2px);
}

.empadao-summary__trust {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: 12px;
  color: #5f4632;
  white-space: nowrap;
}

.empadao-summary__trust span::before {
  content: "✓";
  margin-right: 5px;
  color: #c85a17;
  font-weight: 700;
}

@media (max-width: 768px) {
  .empadao-summary__card {
    border-radius: 18px;
  }

  .empadao-summary__includes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .empadao-summary__includes li {
    min-height: 64px;
    padding: 8px 2px;
    font-size: 8.5px;
    gap: 2px;
  }

  .empadao-summary__icon {
    width: 19px;
    height: 19px;
  }

  .empadao-summary__eyebrow {
    letter-spacing: 2.4px;
  }

  .empadao-summary__price strong {
    font-size: clamp(46px, 16vw, 60px);
  }

  .empadao-summary__trust {
    gap: 6px;
    font-size: 9px;
  }
}

@media (prefers-color-scheme: dark) {
  .empadao-summary {
    background: linear-gradient(135deg, #1c2014 0%, #241c16 100%);
  }

  .empadao-summary__card {
    background-color: #2a2018;
    border-color: #5a4a3a;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  }

  .empadao-summary__eyebrow,
  .empadao-summary__icon {
    color: #f4a948;
  }

  .empadao-summary__headline,
  .empadao-summary__includes li {
    color: #f5ede1;
  }

  .empadao-summary__subheadline,
  .empadao-summary__price,
  .empadao-summary__price small,
  .empadao-summary__trust {
    color: #d4a574;
  }

  .empadao-summary__includes li {
    background-color: #241c16;
    border-color: #5a4a3a;
  }

  .empadao-summary__price strong {
    color: #f4a948;
  }
}

/* ====================================
   SEÇÃO: PERGUNTAS FREQUENTES
   Acordeão nativo (<details>/<summary>) — sem JS pra abrir/fechar,
   totalmente acessível por teclado e leitor de tela. Um pequeno script
   (ver script.js) só garante que apenas um item fique aberto por vez.
   ==================================== */

.empadao-faq {
  background-color: #fffaf5;
  padding: clamp(56px, 8vh, 96px) 24px;
}

.empadao-faq__container {
  max-width: 760px;
  margin: 0 auto;
}

.empadao-faq__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vh, 48px);
}

.empadao-faq__eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #c85a17;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.empadao-faq__eyebrow::before,
.empadao-faq__eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: #8b4513;
  flex-shrink: 0;
}

.empadao-faq__headline {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: #2c1810;
  text-wrap: balance;
  margin-bottom: 10px;
}

.empadao-faq__subheadline {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: #6b4423;
  text-wrap: pretty;
}

.empadao-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.empadao-faq__item {
  background-color: #fff;
  border: 1px solid #e8dcc8;
  border-radius: 12px;
  padding: 4px 20px;
  opacity: 0;
  transform: translateY(10px);
  animation: empadao-fade-up 0.5s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 40ms);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.empadao-faq__item:hover {
  border-color: #d4a574;
}

.empadao-faq__item[open] {
  border-color: #d4a574;
  box-shadow: 0 8px 20px rgba(44, 24, 16, 0.08);
}

.empadao-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: #2c1810;
}

.empadao-faq__question::-webkit-details-marker {
  display: none;
}

.empadao-faq__question:focus-visible {
  outline: 2px solid #8b4513;
  outline-offset: 4px;
  border-radius: 6px;
}

.empadao-faq__num {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #d4a574;
  transition: color 0.25s ease;
}

.empadao-faq__item[open] .empadao-faq__num {
  color: #c85a17;
}

.empadao-faq__question-text {
  flex: 1;
  text-wrap: pretty;
}

.empadao-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.empadao-faq__icon::before,
.empadao-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #8b4513;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.empadao-faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.empadao-faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.empadao-faq__item[open] .empadao-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.empadao-faq__item[open] .empadao-faq__icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.empadao-faq__answer {
  font-size: 15px;
  line-height: 1.65;
  color: #6b4423;
  padding: 0 0 20px 38px;
  text-wrap: pretty;
  animation: empadao-fade-up 0.35s ease-out forwards;
}

@media (max-width: 768px) {
  .empadao-faq {
    padding: 34px 18px;
  }

  .empadao-faq__header {
    margin-bottom: 18px;
  }

  .empadao-faq__eyebrow {
    margin-bottom: 6px;
  }

  .empadao-faq__headline {
    margin-bottom: 6px;
  }

  .empadao-faq__subheadline {
    line-height: 1.4;
  }

  .empadao-faq__list {
    gap: 8px;
  }

  .empadao-faq__item {
    padding: 2px 16px;
  }

  .empadao-faq__question {
    gap: 12px;
    padding: 13px 0;
  }

  .empadao-faq__answer {
    line-height: 1.45;
    padding: 0 0 14px 34px;
  }
}

@media (max-width: 480px) {
  .empadao-faq {
    padding: 30px 18px;
  }

  .empadao-faq__item {
    padding: 2px 14px;
  }

  .empadao-faq__question {
    gap: 12px;
    font-size: 15px;
    padding: 12px 0;
  }

  .empadao-faq__answer {
    padding-left: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .empadao-faq__item {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .empadao-faq__answer {
    animation: none;
  }
}

@media (prefers-color-scheme: dark) {
  .empadao-faq {
    background-color: #1c150f;
  }

  .empadao-faq__eyebrow {
    color: #f4a948;
  }

  .empadao-faq__eyebrow::before,
  .empadao-faq__eyebrow::after {
    background: #d4a574;
  }

  .empadao-faq__headline {
    color: #f5ede1;
  }

  .empadao-faq__subheadline {
    color: #d4a574;
  }

  .empadao-faq__item {
    background-color: #241c16;
    border-color: #4a3a2a;
  }

  .empadao-faq__item:hover,
  .empadao-faq__item[open] {
    border-color: #8b6a3f;
  }

  .empadao-faq__question {
    color: #f5ede1;
  }

  .empadao-faq__num {
    color: #8b6a3f;
  }

  .empadao-faq__item[open] .empadao-faq__num {
    color: #f4a948;
  }

  .empadao-faq__icon::before,
  .empadao-faq__icon::after {
    background-color: #f4a948;
  }

  .empadao-faq__answer {
    color: #d4a574;
  }
}

/* ====================================
   ACESSIBILIDADE
   ==================================== */

@media (prefers-reduced-motion: reduce) {
  .empadao-hero__cta {
    transition: none;
  }

  .empadao-hero__cta:hover {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .empadao-hero {
    background: linear-gradient(135deg, #2a2420 0%, #3a3028 100%);
  }

  .empadao-hero__headline,
  .empadao-hero__pre-headline {
    color: #f5ede1;
  }

  .empadao-hero__subheadline,
  .empadao-hero__bullets li {
    color: #d4a574;
  }

  .empadao-hero__cta-secondary {
    color: #b8956a;
  }

  .empadao-hero__badge {
    background-color: #3a3028;
    color: #d4a574;
    border-color: #5a4a3a;
  }

  .empadao-hero__video-container {
    background-color: #3a3028;
    border-color: #5a4a3a;
  }
}

/* ====================================
   RODAPÉ
   Fundo escuro fixo (mesmo tom nos dois temas) para fechar a página
   com contraste, ícones de rede social inline (sem libs externas).
   ==================================== */

.empadao-footer {
  background-color: #201812;
  padding: clamp(40px, 6vh, 64px) 24px clamp(24px, 4vh, 32px);
}

.empadao-footer__container {
  max-width: 1100px;
  margin: 0 auto;
}

.empadao-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.18);
}

.empadao-footer__logo {
  font-size: 20px;
  font-weight: 700;
  color: #f5ede1;
}

.empadao-footer__tagline {
  font-size: 13px;
  color: #b8956a;
  margin-top: 2px;
}

.empadao-footer__social {
  list-style: none;
  display: flex;
  gap: 10px;
}

.empadao-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(212, 165, 116, 0.12);
  color: #d4a574;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.empadao-footer__social a svg {
  width: 19px;
  height: 19px;
}

.empadao-footer__social a:hover,
.empadao-footer__social a:focus-visible {
  background-color: #c85a17;
  color: #fff8ee;
  transform: translateY(-3px);
  outline: none;
}

.empadao-footer__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #e8d9c5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.empadao-footer__email svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #d4a574;
}

.empadao-footer__email:hover {
  color: #f4a948;
}

.empadao-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 165, 116, 0.18);
}

.empadao-footer__copyright {
  font-size: 12px;
  color: #8b7355;
}

.empadao-footer__installments-note {
  font-size: 11px;
  color: #8b7355;
}

.empadao-footer__policy {
  font-size: 12px;
  font-weight: 600;
  color: #b8956a;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.empadao-footer__policy:hover {
  color: #f4a948;
}

.empadao-whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background-color: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32), 0 0 0 6px rgba(37, 211, 102, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.empadao-whatsapp-float:hover,
.empadao-whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.38), 0 0 0 7px rgba(37, 211, 102, 0.14);
}

.empadao-whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .empadao-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .empadao-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .empadao-whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .empadao-whatsapp-float svg {
    width: 29px;
    height: 29px;
  }
}
