:root {
  --wine: #740E0B;
  --wine-deep: #460705;
  --red: #B71911;
  --orange: #F16816;
  --gold: #FFC52E;
  --cream: #FFF3D6;
  --paper: #FFF9F0;
  --ink: #2A160F;
  --muted: #69554D;
  --line: rgba(116, 14, 11, .14);
  --shadow: 0 22px 55px rgba(67, 13, 6, .20);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* TOPO */

.announcement {
  background: var(--wine-deep);
  color: #fff5dc;
  text-align: center;
  padding: 9px 16px;
  font-size: .9rem;
  letter-spacing: .01em;
}

.announcement a {
  color: var(--gold);
  font-weight: 800;
  margin-left: 9px;
}

.site-header {
  min-height: 84px;
  padding: 10px clamp(18px, 5vw, 76px);
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 249, 240, .95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 6px 16px rgba(88, 16, 5, .15);
}

.brand strong {
  display: block;
  color: var(--wine);
  font-family: "Pacifico", cursive;
  font-size: 1.4rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: .95rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  color: #51251B;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--red);
}

.nav-cta,
.button {
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta {
  background: var(--wine);
  color: white;
  padding: 11px 17px;
  box-shadow: 0 7px 15px rgba(116, 14, 11, .18);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--wine);
  border-radius: 20px;
  margin: 5px 0;
}

/* HERO */

.hero {
  min-height: 610px;
  padding: 66px clamp(18px, 7vw, 120px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: linear-gradient(119deg, #73100A 0%, #A31C11 48%, #67100D 100%);
  color: white;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 203, 58, .32);
  border-radius: 55% 45% 40% 60%;
  z-index: -1;
}

.hero::before {
  width: 680px;
  height: 210px;
  top: -110px;
  left: -110px;
  transform: rotate(-12deg);
}

.hero::after {
  width: 500px;
  height: 200px;
  bottom: -145px;
  right: 20%;
  transform: rotate(16deg);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Roboto Slab", Georgia, serif;
  margin-top: 0;
}

h1 {
  max-width: 730px;
  font-size: clamp(2.55rem, 5vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin-bottom: 22px;
}

h1 em {
  color: var(--gold);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}

h1 em::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  left: 0;
  bottom: -6px;
  border-radius: 30px;
  background: var(--orange);
}

.hero-text {
  max-width: 620px;
  color: #FFECC6;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin: 0 0 29px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 14px 22px;
  font-size: .98rem;
  min-height: 49px;
}

.button-primary {
  background: var(--gold);
  color: #4A1609;
  box-shadow: 0 13px 26px rgba(41, 7, 2, .24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, .5);
  color: white;
  background: rgba(255, 255, 255, .07);
}

.button-light {
  background: var(--cream);
  color: var(--wine);
  box-shadow: 0 15px 28px rgba(52, 6, 2, .2);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 28px;
  color: #FFE6BF;
  font-size: .88rem;
  font-weight: 700;
}

.hero-visual {
  min-height: 420px;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid rgba(255, 194, 42, .9);
  transform: rotate(1.5deg);
  background: #321005;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(57, 7, 3, .64) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  position: absolute;
  inset: 0;
}

.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  background: var(--gold);
  color: var(--wine);
  border: 3px solid var(--wine);
  width: 124px;
  height: 124px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-family: "Pacifico", cursive;
  font-size: 1.1rem;
  line-height: 1.15;
  transform: rotate(-9deg);
  box-shadow: 0 10px 25px rgba(43, 8, 2, .3);
}

/* FAIXA DE DESTAQUES */

.proof-strip {
  margin: -32px auto 0;
  width: min(1120px, calc(100% - 36px));
  position: relative;
  z-index: 4;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 13px 35px rgba(71, 17, 8, .14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.proof-strip > div {
  padding: 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--wine);
  display: block;
  font-size: 1.1rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: .86rem;
}

/* SEÇÕES */

.section {
  padding: 100px clamp(18px, 7vw, 120px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  letter-spacing: -.045em;
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--wine-deep);
  max-width: 720px;
}

.text-link {
  color: var(--wine);
  font-weight: 900;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--red);
}

/* SABORES */

.flavors {
  background: linear-gradient(#fffaf1 0%, #ffeec9 100%);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.flavor-card {
  background: #fff;
  min-height: 345px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  box-shadow: 0 14px 31px rgba(98, 30, 12, .12);
  border: 1px solid rgba(116, 14, 11, .1);
}

.flavor-card::before {
  content: "";
  position: absolute;
  width: 175px;
  height: 175px;
  top: -90px;
  right: -90px;
  background: #FFD251;
  border-radius: 50%;
}

.flavor-card-2::before {
  background: #FD8D33;
}

.flavor-card-3::before {
  background: #E53C23;
}

.flavor-card-4::before {
  background: #B6160D;
}

.flavor-tag {
  z-index: 1;
  align-self: flex-start;
  margin: 17px;
  padding: 7px 10px;
  background: var(--wine);
  color: #fff8e9;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.card-pot {
  position: absolute;
  top: 49px;
  right: 20px;
  width: 128px;
  height: 87px;
  border-radius: 50% 50% 22% 22%;
  background: #fff;
  border: 7px solid #e6d6c3;
  transform: rotate(-7deg);
  box-shadow: 0 9px 15px rgba(52, 17, 7, .18);
  overflow: hidden;
}

.card-pot::before {
  content: "";
  position: absolute;
  width: 118px;
  height: 42px;
  top: -9px;
  left: 0;
  border-radius: 50%;
  background: #A35920;
}

.card-pot span {
  position: absolute;
  top: 7px;
  left: 41px;
  z-index: 1;
  font-size: 42px;
  filter: drop-shadow(0 2px 0 rgba(76, 21, 5, .18));
}

.card-pot i,
.card-pot b {
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #E83A19;
  top: 18px;
  z-index: 2;
}

.card-pot i {
  left: 24px;
}

.card-pot b {
  right: 28px;
  background: #41A340;
}

.flavor-content {
  margin-top: auto;
  padding: 18px;
}

.flavor-content h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  line-height: 1.17;
  color: #54170E;
}

.flavor-content p {
  color: var(--muted);
  font-size: .88rem;
  margin: 0 0 17px;
}

.flavor-content footer {
  border-top: 1px dashed rgba(116, 14, 11, .25);
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.flavor-content strong {
  font-size: .93rem;
  color: var(--wine);
}

.flavor-content footer a {
  color: var(--red);
  font-weight: 900;
  font-size: .9rem;
}

/* COMO PEDIR */

.how {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
  background: #fff;
}

/* ÁREA DA LOGO - SEM BOLA OU FUNDO */

.how-art {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 410px;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.how-art::before,
.how-art::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.how-art img {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  height: auto;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
}

.how-copy ol {
  padding: 0;
  list-style: none;
  margin: 30px 0;
  display: grid;
  gap: 16px;
}

.how-copy li {
  display: flex;
  gap: 17px;
  align-items: flex-start;
}

.how-copy li > span {
  display: grid;
  place-items: center;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--wine);
  background: var(--gold);
  font-weight: 900;
}

.how-copy li strong {
  display: block;
  color: var(--wine);
  font-size: 1.05rem;
}

.how-copy li p {
  margin: 2px 0 0;
  color: var(--muted);
}

/* HISTÓRIA */

.story {
  background: #4D0806;
  color: #FFF3D6;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 50px;
  align-items: stretch;
}

.story h2 {
  color: #fff5da;
}

.story .eyebrow {
  color: var(--gold);
}

.story-card {
  padding: clamp(25px, 4vw, 50px);
  border-radius: 26px;
  background: linear-gradient(145deg, #8D120B, #620706);
  box-shadow: inset 0 0 0 1px rgba(255, 211, 82, .16);
}

.story-card p:not(.eyebrow) {
  color: #FFE8C3;
  max-width: 660px;
}

.story-list {
  display: grid;
  gap: 14px;
}

.story-list > div {
  border: 1px solid rgba(255, 220, 150, .22);
  background: rgba(255, 255, 255, .06);
  padding: 20px;
  border-radius: 18px;
}

.story-list span {
  font-size: 1.65rem;
  float: left;
  margin: 1px 14px 15px 0;
}

.story-list h3 {
  margin: 0 0 4px;
  color: #FFD65A;
  font-size: 1.08rem;
}

.story-list p {
  margin: 0;
  color: #ffe7c8;
  font-size: .9rem;
}

/* CHAMADA FINAL */

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 55px clamp(18px, 7vw, 120px);
  background: linear-gradient(110deg, var(--orange), var(--red));
  color: white;
}

.cta-band h2 {
  color: white;
  max-width: 700px;
}

.cta-band .eyebrow {
  color: #ffe99e;
}

/* RODAPÉ */

.site-footer {
  padding: 52px clamp(18px, 7vw, 120px) 35px;
  background: #250402;
  color: #FFE7BD;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 32px;
}

.footer-brand strong {
  display: block;
  font-family: "Pacifico", cursive;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.footer-brand span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .68rem;
  font-weight: 800;
  margin-top: 5px;
}

.footer-info,
.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: .88rem;
}

.footer-links a:hover,
.footer-info a:hover {
  color: var(--gold);
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 231, 189, .63);
  font-size: .77rem;
}

/* BOTÃO FLUTUANTE */

.floating-ifood {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 32;
  padding: 14px 18px;
  background: var(--gold);
  color: var(--wine-deep);
  box-shadow: 0 13px 27px rgba(45, 5, 1, .25);
  border: 2px solid var(--wine);
  border-radius: 999px;
  font-weight: 900;
}

/* TABLET */

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-visual {
    max-width: 670px;
    width: 100%;
    min-height: 350px;
  }

  .flavor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how,
  .story {
    grid-template-columns: 1fr;
  }

  .how-art {
    min-height: 330px;
    max-width: 460px;
    width: 100%;
    margin: auto;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    align-self: start;
  }
}

/* CELULAR */

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 8px 16px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1.22rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px;
    background: #fff9f0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 13px 28px rgba(75, 18, 6, .12);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a {
    padding: 10px;
  }

  .nav-cta {
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 50px 18px 60px;
  }

  .hero-visual {
    min-height: 292px;
    transform: none;
    border-radius: 24px;
  }

  .hero-badge {
    width: 100px;
    height: 100px;
    font-size: .9rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: -15px;
  }

  .proof-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px;
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link {
    white-space: normal;
  }

  .flavor-grid {
    grid-template-columns: 1fr;
  }

  .flavor-card {
    min-height: 310px;
  }

  .how {
    gap: 26px;
  }

  .how-art {
    min-height: 260px;
  }

  .how-art img {
    width: min(100%, 330px);
  }

  .story {
    gap: 24px;
  }

  .cta-band {
    padding: 48px 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding: 42px 18px 26px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .floating-ifood span {
    display: none;
  }

  .floating-ifood {
    width: 52px;
    height: 52px;
    padding: 0;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
  }
}