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

:root {
  --yellow: #f5b400;
  --yellow-light: #ffd33d;
  --black: #080808;
  --dark: #101010;
  --card: #161616;
  --border: #2a2a2a;
  --text: #f5f5f5;
  --muted: #aaa;
  --max: 1160px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, .92);
  border-bottom: 1px solid #222;
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.45rem;
  font-weight: 900;
}

.brand img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
}

.brand span span {
  color: var(--yellow);
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 24px;
}

nav a {
  color: #ddd;
  font-weight: 700;
  transition: .2s;
}

nav a:hover {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  background: #171717;
  border: 1px solid #333;
  color: white;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 1.3rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 40%, rgba(245,180,0,.11), transparent 30%),
    radial-gradient(circle at 80% 60%, rgba(245,180,0,.08), transparent 32%),
    linear-gradient(180deg, #111, #070707);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 55px;
  padding: 70px 0;
}

.eyebrow {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: .82rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .98;
  margin-bottom: 25px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-text {
  color: #ccc;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 21px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s, background .2s, border-color .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: #111;
}

.btn-primary:hover {
  background: var(--yellow-light);
}

.btn-outline {
  border: 1px solid #555;
  background: #151515;
}

.btn-outline:hover {
  border-color: var(--yellow);
}

.btn-dark {
  background: #101010;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #111;
}

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
}

.hero-logo {
  width: min(340px, 72vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 35px rgba(245,180,0,.22));
}

.ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(245,180,0,.35);
  border-radius: 50%;
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(.94); opacity: .4; }
  50% { transform: scale(1.05); opacity: .9; }
}

.stats {
  background: #111;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 25px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border-right: 1px solid #252525;
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  font-size: 1.35rem;
}

.stats-grid span {
  color: #ccc;
  font-weight: 700;
}

.section {
  padding: 90px 0;
}

.dark-section {
  background: #0d0d0d;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 13px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.info-grid,
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 22px;
  text-align: center;
  transition: .2s;
}

.info-card:hover,
.recipe-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,180,0,.5);
}

.card-icon {
  font-size: 2.6rem;
  margin-bottom: 13px;
}

.info-card h3 {
  margin-bottom: 8px;
}

.info-card p {
  color: #aaa;
}

.recipe-card {
  background: #151515;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: .2s;
}

.recipe-image {
  min-height: 190px;
  display: grid;
  place-items: center;
  font-size: 5.5rem;
}

.recipe-one { background: linear-gradient(135deg, #3b2008, #a04c0c); }
.recipe-two { background: linear-gradient(135deg, #24150a, #78421c); }
.recipe-three { background: linear-gradient(135deg, #102316, #255f39); }

.recipe-body {
  padding: 22px;
}

.tag {
  display: inline-block;
  color: #111;
  background: var(--yellow);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  margin-bottom: 9px;
}

.recipe-body h3 {
  font-size: 1.35rem;
  margin-bottom: 5px;
}

.recipe-body p {
  color: #aaa;
}

.youtube-panel {
  max-width: 850px;
  min-height: 350px;
  margin: auto;
  border: 1px solid #303030;
  border-radius: 28px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 40px;
  background:
    radial-gradient(circle at center, rgba(245,180,0,.12), transparent 55%),
    #111;
}

.youtube-play {
  width: 88px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #e62117;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 18px;
}

.youtube-panel h3 {
  font-size: 2rem;
}

.youtube-panel p {
  color: #aaa;
  margin: 5px 0 20px;
}

.family-section {
  background:
    linear-gradient(rgba(8,8,8,.9), rgba(8,8,8,.96)),
    radial-gradient(circle at 80% 30%, rgba(245,180,0,.2), transparent 35%);
}

.family-box {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 40px;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 28px;
  padding: 55px;
}

.family-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 15px;
}

.family-box p {
  color: #bbb;
  max-width: 700px;
}

.family-emoji {
  text-align: center;
  font-size: 4.2rem;
  line-height: 1.45;
}

.cta {
  text-align: center;
  background: var(--yellow);
  color: #111;
  border-radius: 30px;
  padding: 55px 25px;
}

.cta .eyebrow {
  color: #111;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 13px auto 24px;
}

.cta-logo {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
}

.recipe-card .ingredientes{
color: green;

}
footer {
  background: #070707;
  border-top: 1px solid #222;
  padding: 30px 0;
  color: #888;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand span {
  font-size: .8rem;
}

@media (max-width: 850px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-logo-wrap {
    min-height: 300px;
  }

  .ring {
    width: 300px;
    height: 300px;
  }

  .info-grid,
  .recipe-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .family-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 38px 25px;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 47px;
    height: 47px;
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 68px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #111;
    border: 1px solid #292929;
    border-radius: 16px;
    overflow: hidden;
  }

  nav ul.open {
    display: flex;
  }

  nav li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 15px 18px;
  }

  nav a:hover {
    background: #1a1a1a;
  }

  .section {
    padding: 65px 0;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid #252525;
  }

  .stats-grid div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-logo {
    width: 250px;
  }

  .ring {
    width: 270px;
    height: 270px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    width: 100%;
  }
}
