/* Identidad Cinnabyte. Estilos mobile-first, sin dependencias. */
:root {
  --cinna-mint: #74d69c;
  --byte-pink: #ff3e86;
  --cinnamon: #c66a32;
  --espresso: #211713;
  --cream: #fff7ee;
  --white: #ffffff;

  --text-primary: var(--espresso);
  --text-secondary: #6b5d55;
  --bg-primary: var(--white);
  --bg-secondary: var(--cream);
  --primary: var(--byte-pink);
  --secondary: var(--cinna-mint);
  --accent: var(--cinnamon);
  --mint-soft: #eef9f2;
  --pink-soft: #fff0f5;
  --link-color: #a92154;
  --border-color: rgba(33, 23, 19, 0.12);
  --font: "Space Grotesk", system-ui, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
}
body:has(dialog[open]) {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--byte-pink);
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 400;
  padding: 1rem;
  background: var(--espresso);
  color: white;
}
.skip-link:focus {
  top: 1rem;
}
.t-label {
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.t-body {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.section-space {
  padding: 4.5rem 1.25rem;
}
.section-heading {
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  line-height: 1.09;
  letter-spacing: -0.055em;
  font-weight: 700;
  margin: 1.1rem 0 1.5rem;
  text-wrap: balance;
}
em {
  font-style: normal;
  color: inherit;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 46px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--primary);
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-pill:hover {
  background: var(--espresso);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-pill.rose {
  background: var(--primary);
  color: var(--espresso);
}
.btn-pill.rose:hover {
  background: var(--espresso);
  color: var(--white);
}
.btn-pill.outline {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--espresso);
}
.btn-pill.outline:hover {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.8rem 1.1rem;
  background: rgba(255, 247, 238, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
}
.header-logo img {
  width: 160px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}
.footer-brand .header-logo img {
  width: 220px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-actions .btn-pill {
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
}
.header-nav {
  display: none;
  gap: 2rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.header-nav a:hover {
  color: var(--espresso);
  text-decoration: underline;
  text-decoration-color: var(--byte-pink);
  text-underline-offset: 0.4rem;
  text-decoration-thickness: 2px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
}
.hamburger span {
  width: 21px;
  height: 2px;
  background: var(--espresso);
}
.mobile-nav {
  border: 0;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100dvh;
  background: var(--cream);
  color: var(--espresso);
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 100%;
  font-size: 1.8rem;
}
.mobile-close {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  font-size: 2rem;
}
.hero {
  padding-top: 78px;
  background: var(--bg-secondary);
}
.hero-copy {
  text-align: center;
  max-width: 800px;
  margin: auto;
  padding: 2.5rem 1.25rem 2.4rem;
}
.welcome {
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(3.25rem, 8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 700;
}
.hero-subtitle {
  max-width: 535px;
  margin: 1.5rem auto;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.hero-note {
  margin: 1.2rem auto 0.65rem;
  max-width: 440px;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.hero-availability {
  font-size: 0.7rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--espresso);
  background: var(--mint-soft);
  border: 1px solid var(--cinna-mint);
  border-radius: 99px;
  padding: 0.45rem 0.85rem;
  width: fit-content;
  margin: 0.8rem auto 0;
}
.hero-visual {
  padding: 1.5rem 1.25rem 2.5rem;
  background: var(--bg-secondary);
}
.video-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 940px;
  margin: 0 auto 1rem;
}
.video-heading .t-label {
  font-size: 0.62rem;
  color: var(--text-secondary);
}
.hero-video-frame {
  max-width: 940px;
  margin: auto;
  padding: 0.45rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 45px #21171312;
  border: 1px solid var(--border-color);
}
.hero-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  border-radius: 17px;
  background: var(--espresso);
}
.value-grid {
  display: grid;
  border-bottom: 1px solid var(--border-color);
}
.value-item {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.value-item:last-child {
  border: 0;
}
.value-num {
  display: block;
  color: var(--espresso);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.value-title {
  font-size: 1.03rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.value-item .t-body {
  font-size: 0.83rem;
  max-width: 360px;
}
.experience-section {
  background: var(--espresso);
  color: var(--cream);
  display: grid;
  gap: 2.5rem;
}
.experience-content .t-label {
  color: var(--cinna-mint);
}
.experience-content em {
  color: var(--cream);
}
.experience-copy {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #d1c9c2;
  margin-bottom: 1.15rem;
  max-width: 520px;
}
.experience-content .btn-pill {
  margin-top: 0.8rem;
}
.experience-carousel {
  width: min(100%, 380px);
  min-width: 0;
  margin: auto;
  border-radius: 18px;
}
.carousel-viewport {
  touch-action: pan-y pinch-zoom;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 18px;
}
.carousel-slide figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.carousel-slide figcaption span + span {
  color: #c7bfb8;
  font-size: 0.75rem;
  font-weight: 400;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #ffffff30;
}
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #ffffff66;
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 1.35rem;
}
.carousel-arrow:hover {
  background: var(--cinna-mint);
  border-color: var(--cinna-mint);
  color: var(--espresso);
}
.experience-carousel:focus-visible,
.carousel-arrow:focus-visible {
  outline-color: var(--byte-pink);
}
.carousel-status {
  color: #d1c9c2;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.section-intro {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 365px;
}
.section-intro strong {
  font-weight: 500;
  color: var(--espresso);
}
.flavors-grid {
  display: grid;
  gap: 1.25rem;
}
.flavor-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-visual {
  position: relative;
  overflow: hidden;
}
.card-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: 50% 48%;
  transition: transform 0.4s;
}
.flavor-card:hover .card-visual img {
  transform: scale(1.025);
}
.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cinna-mint);
  padding: 0.4rem 0.7rem;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 600;
}
.upcoming .card-tag {
  background: var(--cream);
}
.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body .t-label {
  font-size: 0.59rem;
  margin-bottom: 0.4rem;
}
.card-body h3 {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
}
.card-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex: 1;
}
.pack-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-bottom: 0.5rem;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}
.card-price {
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: -0.055em;
  white-space: nowrap;
  color: var(--byte-pink);
}
.card-price span {
  color: var(--espresso);
  font-size: 0.65rem;
  letter-spacing: 0;
  font-weight: 500;
}
.card-footer .btn-pill {
  font-size: 0.72rem;
  padding: 0.7rem 1rem;
}
.coming-soon {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.8;
}
.coming-soon span {
  font-weight: 400;
  font-size: 0.76rem;
  color: var(--text-secondary);
}
.flavors-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 750px;
  margin: 2rem auto 0;
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: left;
}
.flavors-note > span {
  font-size: 2rem;
  color: var(--cinnamon);
}
.product-story {
  background: var(--bg-secondary);
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.product-story-media {
  max-width: 430px;
  margin: auto;
  position: relative;
  transform: rotate(-2deg);
}
.product-story-media img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 15px 35px #21171312;
}
.product-story-media figcaption {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 0.8rem;
  color: var(--text-secondary);
}
.product-story-copy .t-body {
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
}
.story-signature {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.6;
  margin: 1.5rem 0;
  border-left: 3px solid var(--cinnamon);
  padding-left: 1rem;
}
.story-details {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.story-details span {
  font-size: 0.64rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--cinna-mint);
  border-radius: 20px;
  background: var(--mint-soft);
}
.order-section {
  background: var(--bg-primary);
}
.order-intro {
  text-align: center;
  max-width: 650px;
  margin: auto;
}
.order-intro .t-body {
  max-width: 565px;
  margin: auto;
  font-size: 0.88rem;
}
.delivery-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin: 1.8rem auto;
  font-size: 0.73rem;
  line-height: 1.8;
  max-width: 650px;
}
.delivery-info strong {
  font-weight: 600;
}
.delivery-info > span {
  color: var(--cinnamon);
  font-size: 1.4rem;
}
.flyer-preview {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 2rem;
  padding: 0.6rem 1rem 0.6rem 0.6rem;
  border: 1px solid var(--cinna-mint);
  border-radius: 12px;
  background: var(--mint-soft);
}
.flyer-preview > img {
  width: 48px;
  height: 60px;
  border-radius: 5px;
}
.flyer-preview > span {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.75rem;
}
.flyer-preview > span > span {
  color: var(--text-secondary);
  font-size: 0.68rem;
}
.flyer-preview:hover {
  background: var(--cinna-mint);
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  max-width: 680px;
  margin: auto;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 16px 48px #2117130d;
  border-top: 3px solid var(--cinna-mint);
}
.form-caption {
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}
.form-caption span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.field-label {
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.5;
}
.field-label span {
  font-weight: 400;
  color: var(--text-secondary);
}
.field-input {
  min-height: 48px;
  width: 100%;
  min-width: 0;
  background: var(--white);
  border: 1px solid #b5aaa3;
  border-radius: 10px;
  padding: 0.8rem;
  font-size: 1rem;
  color: var(--espresso);
}
.field-input:focus {
  outline: 2px solid var(--byte-pink);
  outline-offset: 2px;
}
textarea.field-input {
  resize: vertical;
  min-height: 90px;
}
.form-row {
  display: grid;
  gap: 1.2rem;
}
.field-hint {
  font-size: 0.71rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
#pack-help {
  margin-top: -0.6rem;
}
.delivery-fieldset {
  border: 0;
}
.delivery-fieldset legend {
  margin-bottom: 0.7rem;
}
.delivery-grid {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}
.delivery-opt {
  position: relative;
  cursor: pointer;
}
.delivery-opt input {
  position: absolute;
  top: 1rem;
  left: 0.8rem;
  width: 16px;
  height: 16px;
  accent-color: var(--byte-pink);
}
.delivery-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid #b5aaa3;
  border-radius: 12px;
  padding: 0.8rem 0.8rem 0.8rem 2.4rem;
  font-size: 0.7rem;
  height: 100%;
}
.delivery-label strong {
  font-size: 0.78rem;
  font-weight: 600;
}
.delivery-label b {
  color: var(--espresso);
  font-weight: 600;
}
.delivery-opt input:checked + .delivery-label {
  border-color: var(--byte-pink);
  background: var(--pink-soft);
  box-shadow: inset 0 0 0 1px var(--byte-pink);
}
.delivery-opt input:focus-visible + .delivery-label {
  outline: 3px solid var(--byte-pink);
  outline-offset: 3px;
}
.order-summary {
  background: var(--cream);
  padding: 1.15rem;
  border-radius: 13px;
}
#summary-detail {
  font-size: 0.77rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.order-summary > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  font-size: 0.85rem;
  font-weight: 600;
}
#summary-total {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
#form-error {
  background: #fff0f0;
  border: 1px solid #b91c1c;
  color: #9d1717;
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.82rem;
}
.submit-order {
  width: 100%;
  padding: 1rem;
  font-size: 0.85rem;
}
.form-note {
  font-size: 0.69rem;
  text-align: center;
  line-height: 1.8;
  color: var(--text-secondary);
}
.form-note a,
.order-form noscript a {
  text-decoration: underline;
  color: var(--byte-pink);
}
.flyer-dialog {
  border: 0;
  border-radius: 20px;
  padding: 1rem;
  width: min(94vw, 620px);
  max-height: 90dvh;
  max-width: 94vw;
  margin: auto;
  background: var(--cream);
  color: var(--espresso);
}
dialog::backdrop {
  background: #211713c9;
  backdrop-filter: blur(5px);
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.dialog-heading h2 {
  font-size: 0.9rem;
}
.dialog-heading button {
  width: 44px;
  height: 44px;
  border: 0;
  font-size: 2rem;
  background: none;
  color: var(--espresso);
  flex-shrink: 0;
}
.flyer-dialog > img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.site-footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 3.5rem 1.25rem 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.8;
  color: #c7bfb8;
  margin: 1rem 0;
}
.footer-brand > a:last-child {
  font-size: 0.78rem;
  color: var(--byte-pink);
}
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #bcb4ad;
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #d5cec7;
}
.footer-grid a:hover {
  color: var(--byte-pink);
}
.instagram-profile-card {
  align-self: start;
  padding: 1.25rem;
  border: 1px solid rgba(116, 214, 156, 0.42);
  border-radius: 16px;
  background: var(--cream);
  color: var(--espresso);
}
.instagram-profile-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.instagram-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--byte-pink);
  color: var(--espresso);
}
.instagram-avatar svg {
  width: 23px;
  height: 23px;
}
.instagram-profile-head h2 {
  font-size: 0.92rem;
  line-height: 1.3;
}
.instagram-profile-head p {
  margin-top: 0.18rem;
  color: var(--text-secondary);
  font-size: 0.7rem;
}
.instagram-profile-copy {
  margin: 1rem 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.65;
}
.instagram-profile-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: var(--byte-pink);
  color: var(--espresso);
  font-size: 0.76rem;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.instagram-profile-cta:hover {
  background: var(--espresso);
  color: var(--white);
  transform: translateY(-1px);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid #ffffff24;
  padding-top: 1.5rem;
  font-size: 0.65rem;
  color: #bcb4ad;
}
@media (min-width: 540px) {
  .form-row {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
  .delivery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .delivery-label {
    padding: 2.6rem 0.7rem 1rem;
    text-align: center;
  }
  .delivery-opt input {
    left: calc(50% - 8px);
  }
  .order-form {
    padding: 2.2rem;
  }
  .delivery-info {
    gap: 2rem;
    font-size: 0.82rem;
  }
  .hero-copy {
    padding-top: 3.25rem;
  }
}
@media (min-width: 768px) {
  .site-header {
    padding: 0.9rem 2rem;
  }
  .header-nav {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .header-actions .btn-pill {
    padding: 0.75rem 1.25rem;
  }
  .section-space {
    padding: 5.5rem 2.5rem;
  }
  .hero-copy {
    padding-bottom: 2.75rem;
  }
  .hero-visual {
    padding: 1.75rem 2.5rem 3rem;
  }
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .value-item {
    padding: 2.5rem 2rem;
    border-bottom: 0;
    border-right: 1px solid var(--border-color);
  }
  .flavors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .card-body {
    padding: 1.25rem;
  }
  .card-footer {
    flex-wrap: wrap;
  }
  .card-body h3 {
    font-size: 1.35rem;
  }
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
  }
  .section-intro {
    margin-bottom: 1.5rem;
  }
  .product-story {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3.5rem;
  }
  .footer-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
  .site-footer {
    padding: 4rem 2.5rem 2rem;
  }
}
@media (min-width: 1100px) {
  .site-header {
    padding-inline: max(3rem, calc((100vw - 1300px) / 2));
  }
  .section-space {
    padding: 6.5rem max(4rem, calc((100vw - 1200px) / 2));
  }
  .experience-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: center;
  }
  .card-body {
    padding: 1.6rem;
  }
  .card-footer {
    flex-wrap: nowrap;
  }
  .value-grid {
    padding-inline: max(1rem, calc((100vw - 1300px) / 2));
  }
  .value-item {
    padding: 2.75rem 3rem;
  }
  .hero-note {
    max-width: none;
  }
  .hero-availability {
    font-size: 0.74rem;
  }
  .product-story {
    gap: 5rem;
  }
  .footer-grid {
    grid-template-columns: 1.15fr 0.65fr 0.85fr 1.15fr;
    gap: 2.5rem;
  }
}
@media (max-width: 359px) {
  .site-header {
    padding-inline: 0.6rem;
  }
  .header-logo {
    font-size: 0.92rem;
    gap: 0.35rem;
  }
  .header-logo img {
    width: 132px;
    height: auto;
  }
  .header-actions .btn-pill {
    padding: 0.6rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-pill {
    width: 100%;
  }
  .delivery-info {
    font-size: 0.66rem;
    gap: 0.6rem;
  }
  .order-form {
    padding: 1rem;
  }
  .order-summary > div {
    flex-wrap: wrap;
  }
  .section-heading {
    font-size: 2.15rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Acentos de marca sobre superficies neutras. */
.hero-title em {
  color: var(--byte-pink);
}
.welcome::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--cinna-mint);
}
.value-num::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 2px;
  vertical-align: middle;
  margin-right: 0.55rem;
  background: var(--cinnamon);
}
.footer-brand .header-logo {
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border-radius: 10px;
  background: var(--cream);
}
.form-note a,
.order-form noscript a {
  color: var(--link-color);
}
