.header-nav {
  background: linear-gradient(180deg, #003AB3 0%, #002a8a 100%);
}

/* ── Hero ──────────────────────────────────── */
.hero-aprenda {
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #002a8a 0%, #001a5e 50%, #001447 100%);

  & h1 {
    font-family: "Syne", sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;

    & b:first-of-type {
      color: #FF69B4;
      font-weight: bold;
    }

    & b:last-of-type {
      color: #FDB33D;
      font-weight: bold;
    }
  }

  & p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
  }
}

/* ── Seção de vídeo ────────────────────────── */
.video-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #001447 0%, #1a1a2e 50%, #1a1a1a 100%);
  color: #fff;
}

.video-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 385px;
  margin: 0 auto;
  padding-bottom: 100.77%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow:
    0 2px 15px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(249, 150, 216, 0.5);
  transition: all 0.3s ease;

  &:hover {
    transform: scale(1.02);
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.5),
      0 0 60px rgba(249, 150, 216, 0.7);
  }

  & iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

.history-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;

  & p { margin-bottom: 1.5rem; }
}

/* ── Seção de receitas ─────────────────────── */
.recipes-section {
  padding: 4rem 2rem;
  background-color: #1a1a1a;
  color: #fff;

  & h2 {
    font-family: "Syne", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #F996D8;
  }
}

.recipe-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.recipe-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;

  &:hover { transform: translateY(-5px); }

  & h3 {
    font-family: "Syne", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #F996D8;
    position: relative;
    padding-left: 2.5rem;

    &::before {
      content: "❤";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
      color: #FF69B4;
    }
  }

  & p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  & h4 {
    font-family: "Syne", sans-serif;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #D0A7F4;
  }

  & strong {
    font-family: "Syne", sans-serif;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #FDB33D;
  }

  & ul, & ol {
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;

    & li { margin-bottom: 0.5rem; }
  }
}

/* ── Responsividade ────────────────────────── */
@media (max-width: 768px) {
  .hero-aprenda {
    & h1 { font-size: 2.5rem; }
    & p  { font-size: 1rem; }
  }

  .video-section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .history-text { font-size: 1rem; }

  .recipes-section h2 { font-size: 2rem; }

  .recipe-card {
    padding: 1.5rem;

    & h3 { font-size: 1.5rem; }
  }
}