/* ==============================================
   SR. WAFFLE — Landing Page
   Mobile-first, responsive, premium warm design
   ============================================== */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Montserrat:wght@400;500;600;700&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --teal: #0E7C79;
  --teal-dark: #0b6b68;
  --aqua: #A8E1DD;
  --gold: #FFD978;
  --orange: #F28C38;
  --cream: #FFF6E8;
  --cream-dark: #F5EBDA;
  --charcoal: #2E2E2E;
  --white: #FFFFFF;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 12px rgba(46, 46, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(46, 46, 46, 0.08);
  --shadow-lg: 0 8px 32px rgba(46, 46, 46, 0.10);
  --shadow-btn: 0 4px 16px rgba(14, 124, 121, 0.25);

  --max-width: 420px;
  --header-h: 68px;
  --cta-bar-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  padding-bottom: calc(var(--cta-bar-h) + 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* --- UTILITY --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   HEADER
   ============================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 232, 0.92);
  border-bottom: 1px solid rgba(46, 46, 46, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease;
}

.header__logo:hover {
  opacity: 0.8;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px 4px;
}

.header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  padding: 24px 0 40px;
  text-align: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__emblem {
  width: 192px;
  height: 192px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  animation: fadeIn 0.8s ease both;
}

.hero__text {
  animation: fadeInUp 0.7s ease 0.15s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.2;
  color: var(--charcoal);
  margin-top: -6px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

.hero__subtitle {
  font-size: 0.95rem;
  color: rgba(46, 46, 46, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.hero__image {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero__image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero__image:hover img {
  transform: scale(1.03);
}

.hero__cta-wrapper {
  animation: fadeInUp 0.7s ease 0.45s both;
}

.hero__delivery-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  margin-top: 14px;
}

.hero__delivery-note svg {
  flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

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

.btn--primary {
  background: var(--teal);
  color: var(--white);
  font-size: 1.05rem;
  padding: 16px 36px;
  box-shadow: var(--shadow-btn);
  width: 100%;
  max-width: 340px;
}

.btn--primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 24px rgba(14, 124, 121, 0.35);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--white);
  color: var(--teal);
  font-size: 0.95rem;
  padding: 14px 32px;
  border: 2px solid var(--teal);
  width: 100%;
  max-width: 340px;
}

.btn--secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  padding: 14px 28px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #22c35e;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn__icon {
  flex-shrink: 0;
}

/* ==============================================
   PRODUCTS SECTION
   ============================================== */
.products {
  padding: 56px 0 64px;
}

.section__header {
  text-align: center;
  margin-bottom: 36px;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(242, 140, 56, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
  line-height: 1.3;
}

/* --- Product Cards --- */
.products__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 18px 20px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.product-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-card__icon {
  background: var(--teal);
  transform: scale(1.1);
}

.product-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  transition: color 0.3s ease;
}

.product-card:hover .product-card__icon svg {
  color: var(--white);
}

.product-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.product-card__info p {
  font-size: 0.85rem;
  color: rgba(46, 46, 46, 0.65);
  line-height: 1.5;
}

.products__cta {
  text-align: center;
}

/* ==============================================
   HOW IT WORKS
   ============================================== */
.how-it-works {
  padding: 56px 0 64px;
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.2s ease;
}

.step:hover {
  transform: translateX(4px);
}

.step__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.step:hover .step__icon {
  background: var(--aqua);
  transform: scale(1.08);
}

.step__icon svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.step__number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.step__desc {
  font-size: 0.85rem;
  color: rgba(46, 46, 46, 0.65);
  line-height: 1.5;
}

/* ==============================================
   HOURS
   ============================================== */
.hours {
  padding: 56px 0 64px;
  background: var(--white);
}

.hours__card {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14, 124, 121, 0.08);
  position: relative;
  overflow: hidden;
}

.hours__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--aqua), var(--orange));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hours__text {
  font-size: 0.9rem;
  color: rgba(46, 46, 46, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hours__schedule {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 36px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hours__days {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
}

.hours__time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.hours__note {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  padding: 40px 0 32px;
  text-align: center;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--aqua);
  margin-bottom: 8px;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ==============================================
   STICKY CTA BAR
   ============================================== */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--teal);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(14, 124, 121, 0.2);
}

.cta-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-decoration: none;
  color: var(--white);
  -webkit-tap-highlight-color: transparent;
  border-radius: var(--radius-sm);
  padding: 6px 4px;
  transition: background 0.15s ease;
}

.cta-bar__inner:active {
  background: rgba(255, 255, 255, 0.08);
}

.cta-bar__icon {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-bar__icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.cta-bar__text {
  flex: 1;
  min-width: 0;
}

.cta-bar__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.cta-bar__sub {
  font-size: 0.7rem;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cta-bar__arrow {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ==============================================
   WHATSAPP FLOAT (desktop fallback)
   ============================================== */
.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 2.5s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

/* ==============================================
   RESPONSIVE — Tablet
   ============================================== */
@media (min-width: 640px) {
  :root {
    --max-width: 600px;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .products__grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .product-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 260px;
  }

  .steps {
    flex-direction: row;
    gap: 20px;
  }

  .step {
    flex: 1;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .step:hover {
    transform: translateY(-4px);
  }
}

/* ==============================================
   RESPONSIVE — Desktop
   ============================================== */
@media (min-width: 1024px) {
  :root {
    --max-width: 960px;
  }

  .hero {
    padding: 40px 0 56px;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "emblem image"
      "text   image"
      "cta    image";
    gap: 0 48px;
    align-items: center;
    text-align: left;
  }

  .hero__emblem {
    grid-area: emblem;
    margin: 0;
    align-self: end;
  }

  .hero__text {
    grid-area: text;
  }

  .hero__title {
    font-size: 2.8rem;
    margin-top: 0;
  }

  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .hero__image {
    grid-area: image;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero__cta-wrapper {
    grid-area: cta;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__cta-wrapper .btn--primary {
    max-width: 300px;
  }

  .hero__delivery-note {
    justify-content: flex-start;
  }

  .section__title {
    font-size: 1.85rem;
  }

  .products__grid {
    gap: 24px;
  }

  .product-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  /* Hide sticky bar on desktop, show float button */
  .cta-bar {
    display: none;
  }

  .whatsapp-float {
    display: flex;
  }

  body {
    padding-bottom: 0;
  }
}

/* ==============================================
   RESPONSIVE — Large Desktop
   ============================================== */
@media (min-width: 1200px) {
  :root {
    --max-width: 1040px;
  }

  .hero__title {
    font-size: 3.2rem;
  }
}

/* ==============================================
   SR. WAFFLE — HERO PREMIUM NUEVO
   Pegar al final del style.css
   ============================================== */

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 217, 120, 0.18), transparent 32%),
    radial-gradient(circle at 0% 72%, rgba(168, 225, 221, 0.38), transparent 34%),
    radial-gradient(circle at 100% 76%, rgba(255, 217, 120, 0.34), transparent 36%),
    linear-gradient(180deg, #FFF9EF 0%, #FFF6E8 58%, #FFF9EF 100%);
}

/* Header más limpio */
.header {
  background: rgba(255, 249, 239, 0.88);
  border-bottom: 1px solid rgba(14, 124, 121, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header__logo img {
  height: 40px;
}

/* HERO */
.hero--premium {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  padding: 34px 0 104px;
  text-align: center;
}

/* Fondo decorativo suave */
.hero--premium::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 217, 120, 0.13);
  z-index: 0;
}

.hero--premium::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -130px;
  bottom: 170px;
  border-radius: 999px;
  background: rgba(255, 217, 120, 0.32);
  filter: blur(2px);
  z-index: 0;
}

.hero--premium .container {
  position: relative;
  z-index: 2;
  padding-inline: 24px;
  max-width: 430px;
}

/* Logo emblema */
.hero__brand-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero--premium .hero__emblem {
  width: 138px;
  height: 138px;
  object-fit: contain;
  border-radius: 999px;
  filter: drop-shadow(0 14px 26px rgba(14, 124, 121, 0.14));
  animation: fadeIn 0.7s ease both;
}

/* Eyebrow WAFFLES */
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 8px auto 22px;
  color: var(--teal);
  animation: fadeInUp 0.7s ease 0.08s both;
}

.hero__eyebrow span {
  display: block;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
  border-radius: 999px;
}

.hero__eyebrow span:last-child {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero__eyebrow strong {
  position: relative;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.58em;
  text-indent: 0.58em;
}

.hero__eyebrow strong::before,
.hero__eyebrow strong::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateY(-50%);
}

.hero__eyebrow strong::before {
  left: -18px;
}

.hero__eyebrow strong::after {
  right: -18px;
}

/* Título */
.hero--premium .hero__text {
  animation: fadeInUp 0.7s ease 0.16s both;
}

.hero--premium .hero__title {
  max-width: 390px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 12vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: #252525;
}

.hero--premium .hero__title span {
  color: var(--orange);
}

/* Ornamento corazón */
.hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 18px;
}

.hero__ornament span {
  display: block;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0.85;
}

.hero__ornament i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  color: var(--orange);
  font-size: 1.2rem;
  line-height: 1;
}

/* Subtítulo */
.hero--premium .hero__subtitle {
  max-width: 350px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(46, 46, 46, 0.66);
}

.hero--premium .hero__subtitle strong {
  color: var(--teal);
  font-weight: 800;
}

/* Imagen del waffle */
.hero__image-wrap {
  position: relative;
  margin-top: 30px;
  animation: fadeInUp 0.75s ease 0.28s both;
}

.hero__image-wrap::before {
  content: "";
  position: absolute;
  width: 290px;
  height: 170px;
  left: -150px;
  bottom: 42px;
  background: rgba(168, 225, 221, 0.52);
  border-radius: 999px;
  z-index: 0;
}

.hero--premium .hero__image {
  position: relative;
  z-index: 2;
  width: calc(100% + 68px);
  max-width: none;
  margin-left: -34px;
  margin-right: -34px;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

.hero--premium .hero__image img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 28px 42px rgba(46, 46, 46, 0.18));
}

/* Sello circular sobre imagen */
.hero__seal {
  position: absolute;
  left: -4px;
  top: 26px;
  z-index: 4;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.94);
  border: 1px solid rgba(242, 140, 56, 0.28);
  box-shadow: 0 18px 34px rgba(46, 46, 46, 0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  color: var(--orange);
  pointer-events: none;
}

.hero__seal::before {
  content: "▧";
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__seal span,
.hero__seal strong {
  display: block;
  font-size: 0.58rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero__seal strong {
  margin-top: 5px;
}

/* Oculta el botón antiguo del hero porque ya tienes CTA fijo */
.hero--premium .hero__cta-wrapper {
  display: none;
}

/* CTA inferior más parecido al mockup */
.cta-bar {
  left: 18px;
  right: 18px;
  bottom: 14px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.cta-bar__inner {
  max-width: 430px;
  min-height: 74px;
  padding: 12px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0E7C79 0%, #075F5C 100%);
  box-shadow:
    0 22px 44px rgba(7, 95, 92, 0.36),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.cta-bar__icon {
  width: 48px;
  height: 48px;
  background: #24D366;
  box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.cta-bar__icon svg {
  width: 26px;
  height: 26px;
}

.cta-bar__title {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.15;
}

.cta-bar__sub {
  margin-top: 2px;
  font-size: 0.73rem;
  opacity: 0.9;
}

.cta-bar__arrow {
  opacity: 0.95;
}

/* Ajuste para que no tape contenido */
body {
  padding-bottom: 104px;
}

/* En pantallas muy pequeñas */
@media (max-width: 360px) {
  .hero--premium .hero__title {
    font-size: 2.3rem;
  }

  .hero--premium .hero__emblem {
    width: 120px;
    height: 120px;
  }

  .hero__seal {
    width: 88px;
    height: 88px;
    left: -2px;
    top: 22px;
  }

  .hero__seal span,
  .hero__seal strong {
    font-size: 0.5rem;
  }
}

/* ==============================================
   AJUSTES DE ESPACIADO (MÓVIL) — menos aire muerto
   ============================================== */

/* Hero más compacto en móvil */
.hero--premium {
  min-height: auto;
  padding: 26px 0 56px;
}

.hero--premium::after {
  bottom: 120px;
}

.hero__brand-mark {
  margin-bottom: 14px;
}

.hero__eyebrow {
  margin: 6px auto 16px;
}

.hero__ornament {
  margin: 16px auto 14px;
}

.hero__image-wrap {
  margin-top: 22px;
}

/* Secciones internas más juntas */
.products,
.how-it-works,
.hours {
  padding: 40px 0 44px;
}

.section__header {
  margin-bottom: 24px;
}

.products__grid {
  gap: 16px;
  margin-bottom: 24px;
}

.steps {
  gap: 20px;
}

.footer {
  padding: 28px 0 24px;
}

/* ==============================================
   FRANJA DE BENEFICIOS (trust strip)
   ============================================== */
.trust-strip {
  padding: 10px 0 8px;
}

.trust-strip__list {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14, 124, 121, 0.08);
}

.trust-strip__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  position: relative;
  padding: 2px 4px;
}

.trust-strip__item + .trust-strip__item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(14, 124, 121, 0.12);
}

.trust-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--teal);
}

.trust-strip__icon svg {
  width: 16px;
  height: 16px;
}

.trust-strip__text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* ==============================================
   HOURS — schedule visible (rellena el vacío)
   ============================================== */
.hours__card {
  padding: 26px 22px 24px;
}

.hours__text {
  margin-bottom: 18px;
}

.hours__schedule {
  margin: 0 auto 14px;
}

/* Desktop: mantiene diseño limpio */
@media (min-width: 1024px) {
  .trust-strip {
    padding: 16px 0 12px;
  }

  .trust-strip__list {
    padding: 16px 24px;
  }

  .trust-strip__icon {
    width: 36px;
    height: 36px;
  }

  .trust-strip__icon svg {
    width: 18px;
    height: 18px;
  }

  .trust-strip__text {
    font-size: 0.85rem;
  }

  .products,
  .how-it-works,
  .hours {
    padding: 56px 0 60px;
  }

  .hero--premium {
    padding: 64px 0 90px;
  }

  .hero--premium .container {
    max-width: 960px;
  }

  .hero--premium .hero__title {
    font-size: 4.4rem;
  }

  .hero--premium .hero__image {
    width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__seal {
    left: 120px;
  }
}
