:root {
  --bb-cream: #FAF7F2;
  --bb-beige: #F3E5C0;
  --bb-chocolate: #3B1F1F;
  --bb-caramel: #C47A3A;
  --bb-beige-transp: rgba(243, 229, 192, 0.475);
  --bb-black: #111111;
  --bb-flavor-classic: #E6C9A8;
  --bb-flavor-redvelvet: #C85A63;
  --bb-flavor-doubletrouble: #4A2A24;
  --bb-flavor-pistachio: #9DB8A0;
  --nav-height: 76px;
  --container-w: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--bb-chocolate);
  background: var(--bb-cream);
}

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 230px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn--primary {
  background: var(--bb-caramel);
  color: var(--bb-cream);
  box-shadow: 0 6px 16px rgba(196, 122, 58, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(196, 122, 58, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--bb-chocolate);
  border: 1.5px solid var(--bb-chocolate);
}
.btn--outline:hover {
  background: rgba(250, 247, 242, 0.1);
  border-color: var(--bb-chocolate);
}
.btn:focus-visible {
  outline: 3px solid var(--bb-caramel);
  outline-offset: 3px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  transition: box-shadow 0.25s ease;
}
.nav.is-scrolled {
  box-shadow: 0 4px 18px rgba(17, 17, 17, 0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  position: relative;
}
.nav__logo img {
  height: 32px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a:not(.btn) {
  color: var(--bb-chocolate);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav__links a:not(.btn):hover {
  opacity: 1;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--bb-caramel);
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 860px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 247, 242, 0.9);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav__links.is-open {
    max-height: 320px;
  }
  .nav__links li {
    width: 100%;
  }
  .nav__links a:not(.btn) {
    display: block;
    padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  }
  .nav__links .btn--primary {
    margin: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1rem;
  }
  .nav__toggle {
    display: block;
  }
}
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url("../assets/images/bb_home_hero.png");
  /* color del modo */
  /* modo de color */
  background-blend-mode: luminosity;
  height: 700px;
  /* profundidad */
  box-shadow: inset 0 0 0 1000px rgba(243, 229, 192, 0.6);
  padding: 100px clamp(1.5rem, 6vw, 100px);
}
.hero__logo {
  max-width: min(480px, 78vw);
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}
.hero__title {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  opacity: 0.85;
  margin: 0 0 2.25rem;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.section-head__eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bb-caramel);
  margin-bottom: 0.75rem;
}
.section-head__title {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2.1rem, 4.5vw, 2.85rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
}
.section-head__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0 auto;
}
.section-head--on-dark .section-head__title, .section-head--on-dark .section-head__subtitle {
  color: var(--bb-cream);
}
.section-head--on-light .section-head__title, .section-head--on-light .section-head__subtitle {
  color: var(--bb-chocolate);
}

.section-divider {
  height: 2px;
  max-width: 320px;
  margin: 0 auto;
  background: var(--bb-cream);
  background-image: linear-gradient(to right, transparent, var(--bb-caramel), transparent);
}

.promise {
  background: var(--bb-cream);
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 2.5rem);
}
.promise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--container-w);
  margin: 0 auto;
  text-align: center;
}
.promise__item {
  padding: 0 1rem;
}
.promise__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bb-beige);
  color: var(--bb-caramel);
}
.promise__icon svg {
  width: 22px;
  height: 22px;
}
.promise__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bb-chocolate);
  opacity: 0.85;
  margin: 0;
}

.menu-teaser {
  background: var(--bb-cream);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}
.menu-teaser__intro {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.menu-teaser__eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bb-caramel);
  margin-bottom: 0.75rem;
}
.menu-teaser__title {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--bb-chocolate);
  margin: 0 0 0.75rem;
  line-height: 1;
}
.menu-teaser__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bb-chocolate);
  opacity: 0.75;
  margin: 0 auto;
  max-width: 46ch;
}
.menu-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: var(--container-w);
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.menu-teaser__cta {
  text-align: center;
}
.menu-teaser__cta-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--bb-chocolate);
  opacity: 0.65;
}

.cookie-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 1.9rem 1.5rem 1.5rem;
  border-top: 5px solid var(--flavor-color, var(--bb-caramel));
  box-shadow: 0 1px 3px rgba(59, 31, 31, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cookie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(59, 31, 31, 0.14);
}
.cookie-card[data-flavor=classic] {
  --flavor-color: var(--bb-flavor-classic);
}
.cookie-card[data-flavor=redvelvet] {
  --flavor-color: var(--bb-flavor-redvelvet);
}
.cookie-card[data-flavor=doubletrouble] {
  --flavor-color: var(--bb-flavor-doubletrouble);
}
.cookie-card[data-flavor=pistachio] {
  --flavor-color: var(--bb-flavor-pistachio);
}
.cookie-card__badge {
  display: none;
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  background: var(--bb-caramel);
  color: var(--bb-cream);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.cookie-card.is-featured .cookie-card__badge {
  display: inline-block;
}
.cookie-card__name {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--bb-chocolate);
  margin: 0.25rem 0 0.5rem;
}
.cookie-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--bb-chocolate);
  opacity: 0.75;
  margin: 0 0 1rem;
  min-height: 3.2em;
}
.cookie-card__price {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bb-caramel);
}

.menu-cta-button-wrap {
  position: relative;
  display: inline-block;
}
.menu-cta-button-wrap:hover .btn-drip__d--1 {
  height: 14px;
}
.menu-cta-button-wrap:hover .btn-drip__d--2 {
  height: 22px;
}
.menu-cta-button-wrap:hover .btn-drip__d--3 {
  height: 10px;
}

.btn-drip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  display: flex;
  justify-content: center;
  gap: 18px;
  pointer-events: none;
}
.btn-drip__d {
  display: block;
  width: 6px;
  background: var(--bb-caramel);
  border-radius: 0 0 50% 50%;
  transition: height 0.3s ease;
}
.btn-drip__d--1 {
  height: 8px;
}
.btn-drip__d--2 {
  height: 14px;
  margin-top: 2px;
}
.btn-drip__d--3 {
  height: 6px;
}

.how-to-order {
  background: var(--bb-chocolate);
  color: var(--bb-cream);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 2.5rem);
}
.how-to-order__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: var(--container-w);
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.how-to-order__step {
  text-align: center;
  padding: 0 1rem;
}
.how-to-order__num {
  width: 52px;
  height: 52px;
  line-height: 49px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 247, 242, 0.35);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
}
.how-to-order__step-title {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}
.how-to-order__step-text {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.75;
  margin: 0;
}
.how-to-order__cta {
  text-align: center;
}

.contact {
  background: var(--bb-cream);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 2.5rem);
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 940px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 560px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}
.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 14px;
  border-left: 3px solid transparent;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 1px 3px rgba(59, 31, 31, 0.08);
  text-align: left;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact__card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 24px rgba(59, 31, 31, 0.14);
  border-left-color: var(--bb-caramel);
}
.contact.is-visible .contact__card {
  animation: contact-card-rise 0.6s ease forwards;
}
.contact.is-visible .contact__card:nth-child(2) {
  animation-delay: 0.08s;
}
.contact.is-visible .contact__card:nth-child(3) {
  animation-delay: 0.16s;
}
.contact.is-visible .contact__card:nth-child(4) {
  animation-delay: 0.24s;
}
.contact__icon {
  flex: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bb-beige);
  color: var(--bb-caramel);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.contact__icon svg {
  width: 20px;
  height: 20px;
}
.contact__card:hover .contact__icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--bb-caramel);
  color: var(--bb-cream);
}
.contact__body {
  min-width: 0;
}
.contact__label {
  display: block;
  font-weight: 600;
  font-size: clamp(0.56rem, 2vw, 0.72rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bb-caramel);
  margin-bottom: 0.45rem;
}
.contact__value {
  display: block;
  font-size: clamp(0.76rem, 2.3vw, 0.95rem);
  line-height: 1.4;
  color: var(--bb-chocolate);
  font-weight: 500;
  overflow-wrap: anywhere;
}
.contact__value + .contact__value {
  margin-top: 0.3rem;
}
.contact__value[href] {
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact__value[href]:hover {
  color: var(--bb-caramel);
  text-decoration: underline;
}
.contact__value--plain:hover {
  color: inherit;
  text-decoration: none;
}

@keyframes contact-card-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.footer {
  background: var(--bb-black);
  color: var(--bb-cream);
  padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 5vw, 2.5rem) 2rem;
  text-align: center;
}
.footer__logo img {
  height: 90px;
  margin: 0 auto 1.25rem;
}
.footer__tagline {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 0 0 1.5rem;
}
.footer__subtitle {
  font-size: 0.8rem;
  opacity: 0.65;
  padding-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 247, 242, 0.25);
  color: var(--bb-cream);
  opacity: 0.75;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer__social a svg {
  width: 18px;
  height: 18px;
}
.footer__social a:hover {
  opacity: 1;
  background: var(--bb-caramel);
  border-color: var(--bb-caramel);
  transform: translateY(-2px);
}
.footer__bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.65;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__credit a {
  color: var(--bb-caramel);
  text-decoration: none;
  opacity: 1;
  font-weight: 500;
}
.footer__credit a:hover {
  text-decoration: underline;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cookie-card, .btn, .btn-drip__d, .contact__card, [data-reveal] {
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .contact__card {
    opacity: 1;
    animation: none !important;
  }
}/*# sourceMappingURL=site.css.map */