:root {
  --bg: #fbf8f6;
  --surface: #ffffff;
  --surface-soft: #f7f1ee;
  --text: #2a2020;
  --muted: #756767;
  --line: #eadeda;
  --brand: #b86f85;
  --brand-dark: #8f4e63;
  --brand-soft: #f4e2e8;
  --brown: #3b2b2b;
  --success: #1f7a4d;
  --shadow: 0 18px 45px rgba(45, 32, 32, 0.08);
  --shadow-soft: 0 8px 24px rgba(45, 32, 32, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #fff 58%, var(--bg) 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: none;
}

img {
  max-width: 100%;
}

.top-alert {
  margin-top: 80px;
  background: var(--brown);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(251, 248, 246, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(234, 222, 218, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  color: var(--brown);
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.cart-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 12px;
}

.section {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(320px, 0.93fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 128px);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.info-split h2,
.contact-card h2 {
  margin: 16px 0 14px;
  color: var(--brown);
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
}

.hero p,
.section-title p,
.info-split p,
.contact-card p,
.mini-cards p,
.product-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero p {
  max-width: 650px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn.primary {
  color: #fff;
  background: var(--brown);
  box-shadow: 0 14px 26px rgba(59, 43, 43, 0.16);
}

.btn.primary:hover {
  background: var(--brand-dark);
}

.btn.secondary {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
}

.btn.secondary:hover {
  border-color: rgba(184, 111, 133, 0.45);
  box-shadow: var(--shadow-soft);
}

.btn.full {
  width: 100%;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.hero-highlights div,
.mini-cards article,
.delivery-grid div,
.contact-card,
.steps-box,
.hero-card,
.product-card,
.filters,
.status-message {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-highlights div {
  border-radius: var(--radius-md);
  padding: 17px;
}

.hero-highlights strong {
  display: block;
  color: var(--brand-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-highlights span {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: clamp(24px, 4vw, 44px);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.94), rgba(247,241,238,0.74)),
    radial-gradient(circle at 40% 22%, rgba(244, 226, 232, 0.72), transparent 32rem);
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(184, 111, 133, 0.1);
}

.hero-card::before {
  width: 230px;
  height: 230px;
  right: -74px;
  top: -74px;
}

.hero-card::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -70px;
}

.hero-card img {
  position: relative;
  z-index: 1;
  width: min(420px, 82%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(59, 43, 43, 0.12));
}

.hero-card-info {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  color: var(--text);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(234, 222, 218, 0.9);
  backdrop-filter: blur(14px);
}

.hero-card-info span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-card-info strong {
  color: var(--brand-dark);
  font-size: 13px;
  white-space: nowrap;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.mini-cards article {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.mini-cards strong {
  color: var(--brand-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-cards h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  color: var(--brown);
}

.mini-cards p {
  margin: 0;
  font-size: 15px;
}

.section-title {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-title h2,
.info-split h2,
.contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

.filters {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
}

.search-box {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-box input,
.search-box select,
.checkout-form input,
.checkout-form textarea,
.custom-form input,
.custom-form textarea,
.custom-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  padding: 12px 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus,
.search-box select:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus {
  border-color: rgba(184, 111, 133, 0.72);
  box-shadow: 0 0 0 4px rgba(184, 111, 133, 0.1);
}

.status-message {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 22px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 111, 133, 0.26);
}

.product-image {
  position: relative;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  background: var(--surface-soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.badges {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--brown);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(45, 32, 32, 0.12);
}

.badge.light {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(184, 111, 133, 0.2);
}

.product-body {
  padding: 22px;
}

.product-category {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 8px 0 8px;
  min-height: 54px;
  color: var(--brown);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.product-card p {
  min-height: 52px;
  margin: 0 0 14px;
  font-size: 14px;
}

.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
}

.price {
  color: var(--brown);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.product-actions {
  display: grid;
  gap: 10px;
}

.info-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.warning {
  padding: 17px 18px;
  border-radius: 18px;
  color: #6a544d !important;
  background: #fff8ed;
  border: 1px solid #f0dfc6;
}

.steps-box {
  display: grid;
  gap: 12px;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.steps-box div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.steps-box strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  background: var(--brown);
}

.steps-box span {
  font-weight: 850;
}

.delivery-section {
  padding-top: 52px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.delivery-grid div {
  border-radius: 18px;
  padding: 18px;
  color: var(--text);
  font-weight: 850;
}

.contact-section {
  padding-top: 48px;
  padding-bottom: 96px;
}

.contact-card {
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,241,238,0.84));
}

.contact-card .pill {
  margin: 0 auto;
}

.contact-card p {
  max-width: 560px;
  margin: 0 auto 26px;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 50;
  width: min(470px, 100%);
  background: #fff;
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-header strong {
  display: block;
  font-size: 22px;
  color: var(--brown);
}

.cart-header span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cart-items {
  padding: 18px 22px;
  overflow: auto;
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.cart-item img {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--surface-soft);
}

.cart-item h4 {
  margin: 0 0 4px;
  color: var(--brown);
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.cart-item button {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.empty-cart {
  padding: 22px;
  border-radius: 18px;
  color: var(--muted);
  background: var(--surface-soft);
  text-align: center;
}

.checkout-form {
  display: grid;
  gap: 12px;
  padding: 18px 22px 24px;
  border-top: 1px solid var(--line);
  overflow: auto;
}

.checkout-form h3,
.custom-form h3 {
  margin: 0 0 4px;
  color: var(--brown);
}

.checkout-form label,
.custom-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.checkout-form textarea,
.custom-form textarea {
  min-height: 88px;
  resize: vertical;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-soft);
}

.cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total strong {
  color: var(--brown);
  font-size: 22px;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(22, 17, 17, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.product-modal {
  width: min(1040px, calc(100% - 28px));
  max-height: min(92vh, 900px);
  overflow: auto;
  border: 0;
  border-radius: 34px;
  padding: 0;
  color: var(--text);
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.product-modal::backdrop {
  background: rgba(22, 17, 17, 0.52);
}

.close-modal {
  position: sticky;
  top: 16px;
  left: calc(100% - 58px);
  z-index: 4;
  margin: 16px 16px 0 0;
}

.modal-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 0 28px 28px;
}

.modal-image {
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface-soft);
  min-height: 520px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 8px 0;
}

.modal-info h2 {
  margin: 14px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--brown);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.modal-info p {
  color: var(--muted);
  line-height: 1.68;
}

.custom-form {
  display: grid;
  gap: 13px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
}

.qty-line input {
  max-width: 140px;
}

.upload-preview {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.upload-preview.show {
  display: flex;
}

.upload-preview img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--surface-soft);
}

.upload-preview span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--success);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(31, 122, 77, 0.28);
}

/* ==============================
   RESPONSIVIDADE REVISADA
   Foco: mobile-first, sem quebra horizontal, menu mobile e checkout confortável
   ============================== */

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

input,
select,
textarea,
button {
  min-width: 0;
}

.site-header {
  flex-wrap: wrap;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}

.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.mobile-nav {
  display: none;
  flex-basis: 100%;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 14px;
  color: var(--text);
  background: var(--surface-soft);
  font-size: 14px;
  font-weight: 850;
}

.mobile-nav a:active {
  transform: scale(0.99);
}

.section,
.hero,
.products-section,
.info-split,
.delivery-section,
.contact-section {
  max-width: 100%;
}

.products-grid,
.filters,
.mini-cards,
.delivery-grid,
.hero-highlights,
.modal-grid,
.info-split {
  min-width: 0;
}

.product-card,
.mini-cards article,
.delivery-grid div,
.contact-card,
.steps-box,
.filters,
.hero-card {
  min-width: 0;
}

.product-card h3,
.product-card p,
.cart-item h4,
.cart-item p {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .section {
    width: min(100% - 32px, var(--max-width));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    max-width: 850px;
  }

  .hero-card {
    min-height: auto;
    padding: 28px;
  }

  .hero-card img {
    width: min(360px, 72vw);
  }

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

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .site-header {
    width: 100%;
    position: fixed;
    padding-inline: 18px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand div {
    min-width: 0;
  }

  .brand strong,
  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .filters {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .mini-cards,
  .delivery-grid,
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-modal {
    width: min(720px, calc(100vw - 24px));
  }

  .modal-image {
    min-height: 320px;
    max-height: 430px;
  }

  .modal-image img {
    object-fit: contain;
  }
}

@media (max-width: 700px) {
  :root {
    --radius-lg: 22px;
    --radius-md: 16px;
  }

  .top-alert {
    font-size: 11px;
    margin-top: 62px;
    line-height: 1.35;
  }

  .site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .cart-button,
  .mobile-menu-button {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 12px;
    box-shadow: none;
  }

  .cart-button span {
    min-width: 22px;
    height: 22px;
  }

  .section {
    width: min(100% - 24px, var(--max-width));
    padding: 44px 0;
  }

  .hero {
    padding-top: 34px;
    gap: 24px;
  }

  .pill {
    padding: 7px 10px;
    font-size: 10.5px;
    letter-spacing: 0.035em;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(32px, 10.5vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .section-title h2,
  .info-split h2,
  .contact-card h2,
  .modal-info h2 {
    font-size: clamp(29px, 8.8vw, 38px);
    letter-spacing: -0.035em;
  }

  .hero p,
  .section-title p,
  .info-split p,
  .contact-card p,
  .mini-cards p,
  .product-card p {
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions,
  .product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
  }

  .hero-highlights,
  .mini-cards,
  .delivery-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights div,
  .mini-cards article,
  .delivery-grid div {
    padding: 16px;
  }

  .hero-card {
    min-height: auto;
    border-radius: 24px;
    padding: 18px;
  }

  .hero-card img {
    width: min(280px, 82vw);
  }

  .hero-card-info {
    position: static;
    display: grid;
    gap: 5px;
    width: 100%;
    margin-top: 14px;
    padding: 13px;
    text-align: center;
  }

  .hero-card-info strong {
    white-space: normal;
  }

  .product-image {
    aspect-ratio: 4 / 3;
  }

  .product-body {
    padding: 18px;
  }

  .product-card h3 {
    margin: 7px 0;
    min-height: auto;
    font-size: 20px;
  }

  .product-card p {
    min-height: auto;
  }

  .price-line {
    margin: 14px 0;
  }

  .price {
    font-size: 22px;
  }

  .steps-box {
    padding: 16px;
  }

  .steps-box div {
    grid-template-columns: 44px 1fr;
    padding: 12px;
  }

  .steps-box strong {
    width: 38px;
    height: 38px;
  }

  .contact-section {
    padding-bottom: 86px;
  }

  .contact-card {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-width: auto;
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .cart-button {
    font-size: 0;
    gap: 0;
    padding-inline: 10px;
  }

  .cart-button::before {
    content: "Carrinho";
    font-size: 12px;
    margin-right: 7px;
  }

  .mobile-nav {
    margin-top: 6px;
  }

  .products-section .section-title,
  .section-title {
    margin-bottom: 20px;
  }

  .status-message {
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    text-align: center;
  }

  .cart-drawer {
    inset: auto 0 0 0;
    width: 100%;
    height: min(92dvh, 720px);
    max-height: 100dvh;
    border-radius: 24px 24px 0 0;
    transform: translateY(105%);
  }

  .cart-drawer.open {
    transform: translateY(0);
  }

  .cart-header {
    padding: 18px 16px;
  }

  .cart-header strong {
    font-size: 20px;
  }

  .cart-items,
  .checkout-form {
    padding-inline: 16px;
  }

  .cart-item {
    grid-template-columns: 62px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .cart-item img {
    width: 62px;
    height: 62px;
  }

  .cart-item button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 36px;
  }

  .checkout-form textarea,
  .custom-form textarea {
    min-height: 78px;
  }

  .product-modal {
    width: calc(100vw - 14px);
    max-height: 92dvh;
    border-radius: 22px;
  }

  .close-modal {
    top: 10px;
    left: calc(100% - 50px);
    width: 38px;
    height: 38px;
    margin: 10px 10px 0 0;
  }

  .modal-grid {
    gap: 18px;
    padding: 0 14px 18px;
  }

  .modal-image {
    min-height: 210px;
    max-height: 300px;
    border-radius: 18px;
  }

  .custom-form {
    padding: 14px;
    border-radius: 18px;
  }

  .qty-line input {
    max-width: 100%;
  }

  .upload-preview {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 10px;
  }

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

  .brand strong {
    font-size: 17px;
  }

  .cart-button::before {
    content: "Carrinho";
    font-size: 11px;
    margin-right: 5px;
  }

  .mobile-menu-button {
    padding-inline: 9px;
    font-size: 11px;
  }

  .section {
    width: min(100% - 18px, var(--max-width));
  }

  .hero h1 {
    font-size: 31px;
  }
}
