/* ==========================================================================
   Araujo Pizzaria e Esfiharia — Stylesheet
   Mobile-first | Fontes: Anton + Inter
   ========================================================================== */

/* ---------- Reset & tokens ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #c1121f;
  --red-deep: #8f0d16;
  --ember: #f77f00;
  --gold: #ffc53d;
  --gold-deep: #f5a623;
  --cream: #fdf6ec;
  --cream-soft: #f7ecd9;
  --ink: #1a1512;
  --ink-soft: #2b2320;
  --muted: #756a5c;
  --muted-light: #a89b8a;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(26, 21, 18, .10);
  --shadow-md: 0 14px 34px rgba(26, 21, 18, .16);
  --shadow-lg: 0 26px 60px rgba(26, 21, 18, .28);
  --radius: 18px;
  --radius-lg: 26px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .8, .28, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  transition: top .2s;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
  white-space: nowrap;
}

.btn:active {
  transform: scale(.96);
}

.btn--lg {
  padding: 1.05rem 2.1rem;
  font-size: 1.15rem;
}

.btn--xl {
  padding: 1.25rem 3rem;
  font-size: 1.35rem;
}

.btn--sm {
  padding: .55rem 1.15rem;
  font-size: .85rem;
  letter-spacing: .05em;
}

.btn--primary {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(193, 18, 31, .38);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(193, 18, 31, .5);
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #2a1804;
  box-shadow: 0 10px 24px rgba(245, 166, 35, .42);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(245, 166, 35, .55);
}

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .18);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn--block {
  width: 100%;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(247, 127, 0, .14), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(193, 18, 31, .22), transparent 60%),
    linear-gradient(180deg, #221a17 0%, #191210 100%);
  color: var(--cream);
}

.section__head {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: .01em;
  margin: .4rem 0 .7rem;
  text-transform: uppercase;
}

.section--cream .section__head h2 {
  color: var(--ink);
}

.section--dark .section__head h2 {
  color: #fff;
}

.section__head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section--dark .section__head p {
  color: var(--muted-light);
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(193, 18, 31, .1);
  padding: .35rem 1rem;
  border-radius: 999px;
}

.eyebrow--light {
  color: var(--gold);
  background: rgba(255, 197, 61, .12);
}

.section__cta {
  text-align: center;
  margin-top: 2.75rem;
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

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

.grid--5 {
  grid-template-columns: 1fr;
}

.grid--menu {
  grid-template-columns: 1fr;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: .9rem 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}

.header.is-scrolled {
  background: rgba(24, 17, 15, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
  padding: .55rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
}

.logo__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .08em;
}

.logo__text span {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .24em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(22, 15, 13, .98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}

.nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: .2rem 0;
  transition: color .2s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transform: translateX(-50%);
  transition: width .25s var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__cta {
  display: none;
}

.nav-toggle {
  position: relative;
  z-index: 101;
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
}

.nav-toggle span {
  width: 22px;
  height: 2.5px;
  border-radius: 3px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(18, 12, 10, .92) 0%, rgba(18, 12, 10, .72) 40%, rgba(18, 12, 10, .28) 100%),
    url("https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
  animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 8rem 0 6rem;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 197, 61, .12);
  border: 1px solid rgba(255, 197, 61, .4);
  padding: .5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 5.6rem);
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .45);
}

.hero__title span {
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2.6vw, 1.22rem);
  color: rgba(255, 255, 255, .88);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .8);
  animation: bounce 2.2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red);
  overflow: hidden;
  padding: .8rem 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.marquee__track i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.08);
}

.card__body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}

.card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
}

.card__body p {
  color: var(--muted);
  font-size: .95rem;
  flex: 1;
}

.card__body .btn {
  align-self: flex-start;
  margin-top: .5rem;
}

.card--menu .card__body h3 {
  font-size: 1.2rem;
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.2rem;
}

.tab {
  font-weight: 700;
  font-size: .92rem;
  color: var(--muted-light);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: .65rem 1.25rem;
  border-radius: 999px;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}

.tab:hover {
  color: #fff;
  border-color: rgba(255, 197, 61, .5);
}

.tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #2a1804;
  transform: translateY(-2px);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: fadeUp .5s var(--ease);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Promo ---------- */
.promo {
  background: linear-gradient(160deg, #4a0e12 0%, #7c0e16 55%, var(--red-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 340px at 90% 10%, rgba(255, 197, 61, .18), transparent 65%);
  pointer-events: none;
}

.promo__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.promo__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: .7rem 0 1rem;
}

.promo__info p {
  color: rgba(255, 255, 255, .85);
  max-width: 440px;
  margin-bottom: 1.6rem;
}

.promo__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
}

.promo__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.promo__seal {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--gold);
  color: #2a1804;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
  animation: spin-in 1s var(--ease) .2s both;
}

.promo__seal small {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes spin-in {
  from {
    opacity: 0;
    transform: scale(.4) rotate(-90deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.promo__note {
  text-align: center;
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
  margin-top: 1.4rem;
}

/* ---------- Features ---------- */
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(193, 18, 31, .12), rgba(193, 18, 31, .06));
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s, transform .3s var(--ease);
}

.feature:hover .feature__icon {
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.feature p {
  color: var(--muted);
  font-size: .93rem;
}

/* ---------- Instagram ---------- */
.instagram {
  gap: .75rem;
}

.insta__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}

.insta__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(193, 18, 31, .38);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.insta__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.insta__item:hover::after {
  opacity: 1;
}

.insta__item:hover img {
  transform: scale(1.1);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 5.5rem 0;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 13, 11, .78), rgba(20, 13, 11, .82)),
    url("https://images.unsplash.com/photo-1574071318508-1cdbab80d002?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat scroll;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: .6rem;
}

.cta-band p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 2rem;
}

/* ---------- Place (map + info) ---------- */
.place {
  align-items: stretch;
}

.place__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 300px;
  background: var(--cream-soft);
}

.place__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.place__info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-row__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(193, 18, 31, .12), rgba(193, 18, 31, .05));
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-row h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .1rem;
}

.info-row p {
  color: var(--muted);
  font-size: .97rem;
}

.info-row a {
  color: var(--red);
  font-weight: 600;
}

.info-row a:hover {
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding: 3.5rem 0 2.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-width: 300px;
}

.footer__brand img {
  width: 44px;
  height: 44px;
}

.footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer__brand p {
  color: var(--muted-light);
  font-size: .95rem;
}

.footer h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.footer__nav ul,
.footer__contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__nav a,
.footer__contact a {
  color: var(--muted-light);
  transition: color .2s;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--gold);
}

.footer__order {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 1.4rem 0;
}

.footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  text-align: center;
  font-size: .85rem;
  color: var(--muted-light);
}

/* ---------- WhatsApp float ---------- */
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .25s var(--ease);
}

.whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2.2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee__track,
  .hero__bg,
  .hero__scroll,
  .whatsapp::before,
  .promo__seal {
    animation: none;
  }
}

/* ==========================================================================
   Tablet
   ========================================================================== */
@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .grid--5 .card:last-child {
    grid-column: span 2;
  }

  .promo__card {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    padding: 2.5rem;
  }

  .promo__visual {
    min-height: 320px;
  }

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

  .footer__order {
    grid-column: span 2;
  }
}

/* ==========================================================================
   Desktop
   ========================================================================== */
@media (min-width: 900px) {
  .section {
    padding: 6rem 0;
  }

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

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

  .grid--5 .card:last-child {
    grid-column: auto;
  }

  .nav {
    position: static;
    inset: auto;
    background: none;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    transform: none;
    gap: 1.6rem;
  }

  .nav__list {
    flex-direction: row;
    gap: 1.5rem;
  }

  .nav__link {
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: none;
    color: rgba(255, 255, 255, .9);
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero__inner {
    padding: 10rem 0 7rem;
  }

  .grid--2.place {
    grid-template-columns: 1.05fr .95fr;
  }

  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  }

  .footer__order {
    grid-column: auto;
  }

  .footer__bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .whatsapp {
    right: 26px;
    bottom: 26px;
    width: 64px;
    height: 64px;
  }
}

@media (min-width: 1200px) {
  .grid--4.instagram {
    gap: 1rem;
  }
}
