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

:root {
  --marrom: #6f321f;
  --marrom-escuro: #4d2114;
  --terra: #b95a34;
  --barro: #a94f32;
  --creme: #fbf2e2;
  --creme-claro: #fffaf0;
  --creme-medio: #f4dfbd;
  --creme-escuro: #ddb978;
  --dourado: #d79a3e;
  --amarelo-cta: #e5aa52;
  --verde: #25d366;
  --verde-escuro: #137a3e;
  --tomate: #cf4c2d;
  --text-dark: #35180d;
  --text-mid: #61331f;
  --text-muted: #9a7352;
  --white: #fff;
  --shadow-soft: 0 12px 28px rgba(119, 50, 26, 0.14);
  --shadow-strong: 0 20px 56px rgba(58, 21, 8, 0.28);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--creme);
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.is-modal-open {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: 76svh;
  overflow: hidden;
  place-items: center;
  padding: clamp(2.6rem, 5vw, 4.2rem) 1.5rem 3.2rem;
  background:
    linear-gradient(90deg, rgba(45, 14, 6, 0.95) 0%, rgba(67, 24, 11, 0.88) 34%, rgba(70, 26, 12, 0.62) 58%, rgba(33, 10, 3, 0.62) 100%),
    linear-gradient(180deg, rgba(28, 8, 2, 0.24) 0%, rgba(28, 8, 2, 0.4) 100%),
    url("../../img/hero.webp") center / cover no-repeat;
  text-align: center;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 10px;
  background: var(--creme-claro);
  content: "";
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.07;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-copy {
  display: grid;
  max-width: 560px;
  justify-items: start;
  text-align: left;
}

.hero-logo {
  width: min(180px, 48vw);
  height: auto;
  margin-bottom: 1.15rem;
  animation: fadeUp 0.85s 0.05s ease forwards;
  filter: drop-shadow(0 18px 22px rgba(38, 12, 3, 0.28));
  opacity: 0;
}

.hero-eyebrow,
.section-kicker {
  color: var(--dourado);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: 0.7rem;
  animation: fadeUp 0.85s 0.15s ease forwards;
  color: #ffe2a8;
  font-size: clamp(0.82rem, 1.2vw, 0.94rem);
  text-shadow: 0 1px 2px rgba(77, 33, 20, 0.42);
  opacity: 0;
}

.hero-tagline {
  max-width: 620px;
  margin-bottom: 0.85rem;
  animation: fadeUp 0.85s 0.25s ease forwards;
  color: #fff8eb;
  font-size: clamp(2rem, 4.7vw, 4.2rem);
  font-weight: 800;
  line-height: 0.98;
  opacity: 0;
  text-shadow: 2px 2px 0 rgba(77, 33, 20, 0.7), 5px 5px 0 rgba(77, 33, 20, 0.34);
}

.hero-location {
  margin-bottom: 1.8rem;
  animation: fadeUp 0.85s 0.35s ease forwards;
  color: rgba(255, 248, 235, 0.82);
  font-size: clamp(0.76rem, 1.4vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.8rem;
  animation: fadeUp 0.85s 0.45s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.45rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}

.btn:hover {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.btn:active {
  box-shadow: none;
  transform: scale(0.98);
}

.btn-whatsapp {
  background: #fff4dc;
  color: var(--marrom-escuro);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 10px 22px rgba(77, 33, 20, 0.18);
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.btn-whatsapp .icon-sm {
  color: var(--verde);
  transition: transform 0.15s, color 0.15s;
}

.btn-whatsapp:hover {
  background: #fff8eb;
  color: #35180d;
  box-shadow: 0 18px 34px rgba(54, 18, 4, 0.34);
  transform: translateY(-3px) scale(1.02);
}

.btn-whatsapp:hover .icon-sm {
  color: #159447;
  transform: scale(1.16);
}

.btn-cardapio {
  background: rgba(77, 33, 20, 0.18);
  color: #fff8eb;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 235, 0.32);
}

.btn-cardapio:hover {
  background: #fff4dc;
  color: var(--marrom-escuro);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 10px 22px rgba(77, 33, 20, 0.18);
}

.icon-sm {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  fill: currentColor;
}

section {
  padding: clamp(4.5rem, 8vw, 7rem) 1.5rem;
}

.section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-title {
  margin: 0.3rem 0 0.45rem;
  color: var(--marrom);
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.section-copy {
  max-width: 560px;
  margin: 0.25rem auto 0.9rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.section-line {
  width: 46px;
  height: 3px;
  margin: 0 auto 3rem;
  border-radius: 2px;
  background: var(--dourado);
}

.nossas-batatas {
  position: relative;
  background: var(--creme-claro);
}

.nossas-batatas::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  height: 1px;
  background: rgba(224, 201, 154, 0.85);
  content: "";
  transform: translateX(-50%);
}

.batatas-grid {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.batata-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(212, 184, 122, 0.88);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(119, 50, 26, 0.08), var(--shadow-soft);
  cursor: pointer;
  text-align: inherit;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.batata-card:hover {
  border-color: rgba(186, 86, 36, 0.42);
  box-shadow: 0 18px 36px rgba(119, 50, 26, 0.2);
  transform: translateY(-6px);
}

.batata-card:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.55);
  outline-offset: 4px;
}

.batata-foto {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.82;
  padding: 0;
  background: #1b0e08;
}

.batata-foto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.18s;
}

.batata-card:hover .batata-foto img {
  transform: scale(1.04);
}

.batata-foto-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--marrom);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.batata-foto-placeholder svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--terra);
  stroke-width: 1.5;
}

.batata-info {
  display: grid;
  min-height: 106px;
  align-content: center;
  gap: 0.52rem;
  padding: 0.9rem 0.78rem 1rem;
  border-top: 2px solid var(--amarelo-cta);
  background: linear-gradient(180deg, #4f2417 0%, #35180d 100%);
  color: #fffbed;
  text-align: center;
}

.batata-nome {
  display: block;
  color: #fffbed;
  font-size: clamp(0.78rem, 1.15vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.batata-card-cta {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: var(--amarelo-cta);
  color: #2c1309;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.sabor-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(34, 13, 3, 0.84);
  backdrop-filter: blur(8px);
}

.sabor-overlay.open {
  display: flex;
}

.sabor-modal {
  position: relative;
  display: grid;
  overflow: hidden;
  width: min(760px, 100%);
  max-height: min(860px, calc(100svh - 32px));
  grid-template-columns: 0.86fr 1.14fr;
  border: 1px solid rgba(255, 251, 237, 0.32);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.sabor-esquerda {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.7rem);
  background:
    linear-gradient(180deg, rgba(255, 251, 237, 0.7), rgba(242, 228, 204, 0.96)),
    var(--creme-medio);
}

.sabor-personagem {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.sabor-personagem img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(119, 50, 26, 0.18));
}

.sabor-direita {
  overflow-y: auto;
  padding: clamp(1.4rem, 4vw, 2.2rem);
}

.sabor-nome {
  margin: 0 2.4rem 0.45rem 0;
  color: var(--marrom);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.05;
}

.sabor-precos {
  display: block;
  margin-bottom: 1.05rem;
}

.sabor-descricao {
  margin-bottom: 1.45rem;
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.75;
}

.sabor-ingredientes-titulo {
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sabor-ingredientes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
  margin-bottom: 1.45rem;
}

.sabor-tag {
  padding: 0.34rem 0.7rem;
  border: 1px solid rgba(224, 201, 154, 0.9);
  border-radius: 999px;
  background: #fff8e9;
  color: var(--text-mid);
  font-size: 0.74rem;
  font-weight: 700;
}

.sabor-tamanhos {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.05rem;
}

.sabor-tamanho-btn {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--creme-escuro);
  border-radius: var(--radius);
  background: var(--creme);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.sabor-tamanho-btn:hover {
  transform: translateY(-1px);
}

.sabor-tamanho-btn.ativo {
  border-color: var(--terra);
  background: #fff5f0;
  box-shadow: inset 0 0 0 1px rgba(186, 86, 36, 0.22);
}

.sabor-tamanho-info {
  display: grid;
  gap: 0.12rem;
  text-align: left;
}

.sabor-tamanho-label {
  display: block;
  color: var(--marrom);
  font-size: 0.86rem;
  font-weight: 800;
}

.sabor-tamanho-peso {
  color: var(--text-muted);
  font-size: 0.66rem;
  font-weight: 600;
}

.sabor-tamanho-preco {
  display: block;
  color: var(--terra);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.sabor-pedir {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--verde);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.sabor-pedir:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.sabor-fechar {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  z-index: 10;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 201, 154, 0.9);
  border-radius: 999px;
  background: rgba(255, 251, 237, 0.94);
  color: var(--text-mid);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  transition: background 0.15s, transform 0.15s;
}

.sabor-fechar:hover {
  background: var(--creme-escuro);
  transform: rotate(6deg);
}

.sobre {
  position: relative;
  background: var(--marrom);
}

.sobre-inner {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.sobre-media {
  display: grid;
  min-height: 320px;
  place-items: center;
}

.sobre-mascote {
  display: block;
  width: min(250px, 75%);
  height: auto;
  filter: drop-shadow(0 22px 26px rgba(27, 8, 1, 0.25));
}

.sobre-copy {
  text-align: left;
}

.sobre .section-title {
  color: #fff7e6;
  text-align: left;
}

.sobre .section-line {
  margin-right: auto;
  margin-left: 0;
  background: var(--dourado);
}

.sobre-copy p:not(.section-kicker) {
  color: rgba(251, 245, 236, 0.82);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}

.sobre-copy p + p {
  margin-top: 1rem;
}

.sobre-tagline {
  max-width: 34rem;
  color: var(--dourado) !important;
  font-style: italic;
  font-weight: 700 !important;
}

.depoimentos {
  background: var(--creme-claro);
}

.depo-grid {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-carousel {
  max-width: 980px;
  margin: 0 auto;
}

.reviews-viewport {
  min-height: 220px;
}

.depo-card {
  display: grid;
  min-height: 220px;
  align-content: space-between;
  padding: 1.45rem;
  border: 1px solid rgba(224, 201, 154, 0.95);
  border-left: 4px solid var(--dourado);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(119, 50, 26, 0.08);
}

.depo-stars {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--dourado);
  font-size: 0.82rem;
  letter-spacing: 3px;
}

.depo-text {
  margin-bottom: 1.25rem;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.75;
}

.depo-author {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.reviews-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(215, 154, 62, 0.42);
  border-radius: 999px;
  background: var(--white);
  color: var(--marrom);
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  transition: background 0.15s, color 0.15s, opacity 0.15s, transform 0.15s;
}

.reviews-button:hover:not(:disabled) {
  background: var(--marrom);
  color: #fff8eb;
  transform: translateY(-1px);
}

.reviews-button:disabled {
  cursor: default;
  opacity: 0.38;
}

.reviews-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.reviews-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(119, 50, 26, 0.26);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, width 0.15s;
}

.reviews-dots button.is-active {
  width: 22px;
  background: var(--dourado);
}

.horario {
  padding-bottom: 1.45rem;
  background: var(--marrom);
  color: var(--creme);
  text-align: left;
}

.horario-inner {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.horario .section-title {
  color: var(--dourado);
  text-align: left;
}

.horario .section-line {
  margin-right: auto;
  margin-left: 0;
  background: var(--dourado);
}

.horario-box {
  display: grid;
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(232, 180, 90, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 34px rgba(36, 10, 1, 0.12);
}

.horario-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(232, 180, 90, 0.1);
  font-size: 0.92rem;
}

.horario-row:last-of-type {
  border-bottom: 0;
}

.horario-label {
  color: var(--dourado);
  font-weight: 800;
}

.horario-valor {
  color: rgba(251, 245, 236, 0.68);
  font-weight: 600;
}

.horario-nota {
  margin-top: 1.25rem;
  color: rgba(251, 245, 236, 0.42);
  font-size: 0.73rem;
  font-style: italic;
  text-align: center;
}

.social-block {
  max-width: 900px;
  margin: 2.2rem auto 0;
  text-align: center;
}

.delivery-note {
  color: rgba(251, 245, 236, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.delivery-note strong {
  color: #fff7e6;
  font-weight: 800;
}

.social-title {
  margin-bottom: 0.8rem;
  color: rgba(251, 245, 236, 0.58);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(251, 245, 236, 0.78);
  font-size: 2.5rem;
  text-decoration: none;
  transition: color 0.15s, transform 0.15s;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer {
  display: block;
  width: 100%;
  padding: 0 1.5rem 1.45rem;
  border-top: 0;
  background: var(--marrom);
  text-align: center;
}

.footer p {
  color: rgba(251, 245, 236, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.footer p + p {
  margin-top: 0.3rem;
  font-size: 0.72rem;
}

.footer strong,
.footer a {
  font-weight: 800;
}

.footer a {
  color: #fff8eb;
  text-decoration: none;
}

@media (max-width: 940px) {
  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    background:
      linear-gradient(180deg, rgba(49, 18, 8, 0.82) 0%, rgba(55, 20, 9, 0.84) 48%, rgba(70, 26, 12, 0.88) 100%),
      url("../../img/hero.webp") 56% center / cover no-repeat;
  }

  .hero-inner,
  .sobre-inner,
  .horario-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .sobre-copy,
  .horario {
    text-align: center;
  }

  .hero-copy {
    justify-items: center;
  }

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

  .sobre .section-title,
  .horario .section-title {
    text-align: center;
  }

  .sobre .section-line,
  .horario .section-line {
    margin-right: auto;
    margin-left: auto;
  }

  .sobre-media {
    min-height: auto;
  }

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

  .reviews-viewport {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .batatas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sabor-modal {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 24px);
  }

  .sabor-esquerda {
    min-height: 188px;
  }

  .sabor-personagem img {
    width: auto;
    max-height: 168px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 2.2rem 1.1rem 2.6rem;
    background:
      linear-gradient(180deg, rgba(57, 21, 10, 0.86) 0%, rgba(57, 21, 10, 0.88) 56%, rgba(75, 28, 13, 0.92) 100%),
      url("../../img/hero.webp") 54% center / cover no-repeat;
  }

  .hero-logo {
    width: min(150px, 46vw);
    margin-bottom: 0.65rem;
  }

  .hero-tagline {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .hero-location {
    max-width: 270px;
    line-height: 1.45;
  }

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

  section {
    padding: 4.2rem 0.9rem;
  }

  .section-line {
    margin-bottom: 2.35rem;
  }

  .batatas-grid {
    gap: 0.7rem;
  }

  .batata-info {
    min-height: 106px;
    padding: 0.72rem 0.55rem 0.82rem;
  }

  .batata-nome {
    font-size: 0.78rem;
  }

  .batata-card-cta {
    min-height: 25px;
    padding: 0.26rem 0.48rem;
    font-size: 0.56rem;
    line-height: 1.25;
  }

  .sobre-copy p:not(.section-kicker),
  .depo-text {
    font-size: 0.88rem;
  }

  .sabor-overlay {
    padding: 0.75rem;
  }

  .sabor-direita {
    padding: 1.25rem;
  }

  .sabor-tamanhos {
    gap: 0.55rem;
  }

  .horario-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
  }
}
