/*
Theme Name: Belbalisa
Template: generatepress
Version: 1.0.0
*/

:root {
  --bb-brown: #3b2415;
  --bb-brown-soft: #6f421f;
  --bb-beige: #b78a55;
  --bb-cream: #f8f0e6;
  --bb-border: #dec6a8;
  --bb-white: #ffffff;
  --bb-text: #2b1b10;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.bb-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.bb-header {
  width: 100%;
  background: var(--bb-white);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 5px 25px rgba(43, 27, 16, .08);
}

.bb-topbar {
  background: var(--bb-brown);
  color: #fff;
}

.bb-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
}

.bb-topbar a {
  color: #fff !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.bb-mainbar {
  background: #fff;
}

.bb-mainbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.bb-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bb-logo img {
  display: block;
  width: auto;
  max-height: 76px;
}

.bb-nav {
  margin-left: auto;
}

.bb-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bb-menu li {
  position: relative;
  margin: 0;
}

.bb-menu a,
.bb-product-row > a {
  color: var(--bb-text) !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.bb-menu a:hover,
.bb-product-row > a:hover {
  color: var(--bb-beige) !important;
}

.bb-product-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.bb-submenu-toggle,
.bb-submenu-toggle:hover,
.bb-submenu-toggle:focus,
.bb-submenu-toggle:active {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--bb-text) !important;
  cursor: pointer;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
}

.bb-submenu-toggle span {
  display: block;
  color: var(--bb-text) !important;
  font-size: 16px;
  line-height: 1;
  transition: transform .25s ease;
}

.bb-submenu {
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  min-width: 315px;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  border: 1px solid var(--bb-border);
  box-shadow: 0 16px 35px rgba(43, 27, 16, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s ease;
  z-index: 99999;
}

.bb-has-submenu:hover > .bb-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bb-submenu li {
  border-bottom: 1px solid var(--bb-border);
}

.bb-submenu li:last-child {
  border-bottom: 0;
}

.bb-submenu a {
  display: block;
  padding: 13px 22px;
  font-size: 14px !important;
  line-height: 1.3;
  background: #fff;
}

.bb-submenu a:hover {
  background: var(--bb-cream);
  color: var(--bb-brown-soft) !important;
}

.bb-contact-btn {
  background: var(--bb-beige);
  color: #fff !important;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 800;
  white-space: nowrap;
}

.bb-contact-btn:hover {
  background: var(--bb-brown-soft);
  color: #fff !important;
}

.bb-menu-toggle {
  display: none;
  appearance: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
  cursor: pointer;
}

.bb-menu-toggle span {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--bb-brown);
  margin: 6px 0;
  border-radius: 20px;
}

.bb-mobile-contact {
  display: none;
}

@media (max-width: 980px) {
  .bb-topbar {
    display: none;
  }

  .bb-mainbar-inner {
    min-height: 82px;
  }

  .bb-logo img {
    max-height: 68px;
  }

  .bb-menu-toggle {
    display: block;
    margin-left: auto;
    order: 3;
  }

  .bb-contact-btn {
    display: none;
  }

  .bb-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 16px 30px rgba(43, 27, 16, .12);
    padding: 22px 0;
  }

  .bb-nav.is-open {
    display: block;
  }

  .bb-menu {
    width: min(1180px, 88%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .bb-menu > li {
    border-bottom: 1px solid var(--bb-border);
  }

  .bb-menu > li > a,
  .bb-product-row > a {
    display: block;
    padding: 18px 0;
    font-size: 18px;
    letter-spacing: 2px;
  }

  .bb-product-row {
    justify-content: space-between;
    width: 100%;
  }

  .bb-submenu-toggle,
  .bb-submenu-toggle:hover,
  .bb-submenu-toggle:focus,
  .bb-submenu-toggle:active {
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    color: var(--bb-text) !important;
  }

  .bb-submenu-toggle span {
    font-size: 22px;
  }

  .bb-submenu {
    display: none;
    position: static;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-top: 1px solid var(--bb-border);
    padding: 0 0 8px 16px;
    background: var(--bb-cream);
  }

  .bb-has-submenu:hover > .bb-submenu {
    display: none;
  }

  .bb-has-submenu.submenu-open > .bb-submenu {
    display: block;
  }

  .bb-has-submenu.submenu-open .bb-submenu-toggle span {
    transform: rotate(180deg);
  }

  .bb-submenu li {
    border-bottom: 1px solid var(--bb-border);
  }

  .bb-submenu a {
    background: var(--bb-cream);
    padding: 14px 0;
    font-size: 14px !important;
  }

  .bb-mobile-contact {
    display: block;
  }
}




@media (max-width: 980px) {

  .bb-nav {
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bb-nav::-webkit-scrollbar {
    width: 6px;
  }

  .bb-nav::-webkit-scrollbar-thumb {
    background: var(--bb-beige);
    border-radius: 20px;
  }

}






/* =========================
   FOOTER
========================= */

.bb-footer {
  background: var(--bb-brown);
  color: #fff;
  margin-top: 80px;
}

.bb-footer-top {
  padding: 70px 0 50px;
}

.bb-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}

.bb-footer-logo img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.bb-footer-text {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  font-size: 15px;
}

.bb-footer-title {
  font-size: 20px;
  margin: 0 0 26px;
  color: #fff;
}

.bb-footer-contact,
.bb-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bb-footer-contact li,
.bb-footer-links li {
  margin-bottom: 14px;
}

.bb-footer-contact a,
.bb-footer-links a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: .25s ease;
}

.bb-footer-contact a:hover,
.bb-footer-links a:hover {
  color: var(--bb-beige);
}

.bb-footer-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 13px 22px;
  background: var(--bb-beige);
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}

.bb-footer-more-btn:hover {
  background: var(--bb-brown-soft);
}

.bb-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
}

.bb-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bb-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.bb-footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
}

.bb-footer-legal a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
}

.bb-footer-legal a:hover {
  color: var(--bb-beige);
}

@media (max-width: 980px) {

  .bb-footer-top {
    padding: 55px 0 35px;
  }

  .bb-footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .bb-footer-logo img {
    max-width: 150px;
  }

  .bb-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .bb-footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

}




/* AJUSTES FOOTER RESPONSIVE */

.bb-footer-grid {
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
}

.bb-footer-col:first-child {
  max-width: 430px;
}

.bb-footer-logo {
  display: block;
  width: fit-content;
  margin-bottom: 18px;
}

.bb-footer-logo img {
  max-width: 165px;
  margin: 0;
}

.bb-footer-text {
  max-width: 440px;
  margin: 0;
}

.bb-footer-contact li {
  line-height: 1.6;
  word-break: normal;
}

.bb-footer-contact a {
  word-break: break-word;
}

@media (min-width: 981px) and (max-width: 1250px) {

  .bb-footer-grid {
    grid-template-columns: .95fr 1.05fr .95fr;
    gap: 45px;
  }

  .bb-footer-logo img {
    max-width: 150px;
  }

  .bb-footer-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .bb-footer-title {
    font-size: 19px;
  }

  .bb-footer-contact li,
  .bb-footer-links li {
    font-size: 15px;
    line-height: 1.55;
  }

  .bb-footer-more-btn {
    padding: 12px 20px;
  }
}

@media (max-width: 980px) {

  .bb-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .bb-footer-col:first-child {
    max-width: 100%;
  }

  .bb-footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .bb-footer-logo img {
    max-width: 145px;
    margin: 0 auto;
  }

  .bb-footer-text {
    max-width: 520px;
    margin: 0 auto;
  }

  .bb-footer-contact {
    max-width: 520px;
    margin: 0 auto;
  }

  .bb-footer-contact li {
    text-align: center;
  }

  .bb-footer-links {
    max-width: 520px;
    margin: 0 auto;
  }
}




.entry-header,
.page-header,
.entry-title,
.comments-area,
#comments,
.sidebar,
.widget-area,
.entry-meta,
.post-navigation,
.site-info {
  display: none !important;
}

.site-content,
.content-area,
.inside-article,
.entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

.bb-home {
  overflow: hidden;
}

.bb-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
}

.bb-hero-bg,
.bb-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bb-hero-bg img {
  object-fit: cover;
}

.bb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43,27,16,.82), rgba(43,27,16,.45));
}

.bb-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: bbFadeUp .9s ease both;
}

.bb-hero-subtitle,
.bb-section-subtitle {
  display: inline-block;
  color: var(--bb-beige);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.bb-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  margin: 0 0 24px;
  color: #fff;
}

.bb-hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 620px;
}

.bb-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.bb-btn-primary,
.bb-btn-secondary,
.bb-link-btn {
  display: inline-flex;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 800;
  transition: .25s ease;
}

.bb-btn-primary {
  background: var(--bb-beige);
  color: #fff !important;
}

.bb-btn-primary:hover {
  background: var(--bb-brown-soft);
  transform: translateY(-3px);
}

.bb-btn-secondary {
  background: #fff;
  color: var(--bb-text) !important;
}

.bb-btn-secondary:hover {
  background: var(--bb-cream);
  transform: translateY(-3px);
}

.bb-values,
.bb-about,
.bb-featured-products,
.bb-gallery {
  padding: 90px 0;
}

.bb-values {
  background: var(--bb-cream);
}

.bb-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bb-value-card {
  background: #fff;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(43,27,16,.08);
  animation: bbFloat 4s ease-in-out infinite;
}

.bb-value-card span {
  color: var(--bb-beige);
  font-size: 28px;
}

.bb-value-card h3 {
  margin: 12px 0;
  color: var(--bb-text);
}

.bb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bb-about-content h2,
.bb-section-heading h2,
.bb-home-cta h2 {
  font-size: clamp(34px, 4vw, 54px);
  color: var(--bb-text);
  margin: 0 0 24px;
}

.bb-about-content p {
  line-height: 1.8;
  color: #5f5046;
}

.bb-link-btn {
  margin-top: 18px;
  background: var(--bb-brown);
  color: #fff !important;
}

.bb-about-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(43,27,16,.18);
}

.bb-section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.bb-featured-products {
  background: #fff;
}

.bb-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bb-feature-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(43,27,16,.1);
  transition: .3s ease;
}

.bb-feature-card:hover {
  transform: translateY(-8px);
}

.bb-feature-image {
  height: 260px;
  overflow: hidden;
}

.bb-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.bb-feature-card:hover img {
  transform: scale(1.08);
}

.bb-feature-content {
  padding: 28px;
}

.bb-feature-content h3 {
  color: var(--bb-text);
  font-size: 24px;
  margin: 0 0 12px;
}

.bb-feature-content p {
  color: #6a5b50;
  line-height: 1.7;
}

.bb-feature-content a {
  color: var(--bb-beige);
  font-weight: 800;
  text-decoration: none;
}

.bb-more-products {
  margin-top: 55px;
  padding: 44px;
  border-radius: 30px;
  background: var(--bb-cream);
  text-align: center;
}

.bb-more-products h3 {
  font-size: 32px;
  color: var(--bb-text);
  margin: 0 0 12px;
}

.bb-gallery {
  background: var(--bb-cream);
}

.bb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bb-gallery-item {
  height: 230px;
  border-radius: 22px;
  overflow: hidden;
}

.bb-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-home-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--bb-brown);
  color: #fff;
}

.bb-home-cta h2 {
  color: #fff;
}

.bb-home-cta p {
  max-width: 660px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
}

@keyframes bbFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bbFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 980px) {
  .bb-hero {
    min-height: 620px;
    text-align: center;
  }

  .bb-hero-overlay {
    background: rgba(43,27,16,.68);
  }

  .bb-hero-content {
    margin: 0 auto;
  }

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

  .bb-values-grid,
  .bb-about-grid,
  .bb-featured-grid,
  .bb-gallery-grid {
    grid-template-columns: 1fr;
  }

  .bb-values,
  .bb-about,
  .bb-featured-products,
  .bb-gallery {
    padding: 65px 0;
  }

  .bb-feature-image,
  .bb-gallery-item {
    height: 240px;
  }

  .bb-more-products {
    padding: 34px 22px;
  }
}




/* FORZAR HOME A ANCHO COMPLETO */
body.home .site-content,
body.page .site-content,
body.home .content-area,
body.page .content-area,
body.home .inside-article,
body.page .inside-article,
body.home .entry-content,
body.page .entry-content,
body.home .container.grid-container,
body.page .container.grid-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.home #primary,
body.page #primary {
  width: 100% !important;
  float: none !important;
}

body.home .bb-home,
body.page .bb-home {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}


/* FULL WIDTH REAL GENERATEPRESS */

body.home .site,
body.home .site-content,
body.home .content-area,
body.home .inside-article,
body.home .entry-content,
body.home .site-main,
body.home #primary,
body.home .content-area,
body.home .grid-container,
body.home .inside-site-info,
body.home .inside-header,
body.home .inside-navigation {
  width: 100% !important;
  max-width: 100% !important;
}

body.home .site-content {
  padding: 0 !important;
  margin: 0 !important;
}

body.home .inside-article {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

body.home .entry-content {
  margin: 0 !important;
}

body.home .separate-containers .inside-article,
body.home .one-container .site-content,
body.home .separate-containers .comments-area,
body.home .separate-containers .page-header,
body.home .separate-containers .paging-navigation,
body.home .inside-page-header {
  background: transparent !important;
}

body.home .bb-home {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

body.home .bb-hero {
  margin-top: 0 !important;
}


/* QUITAR ESPACIO ENTRE HEADER Y HOME */
body.home .site-content,
body.home #content,
body.home #page,
body.home #primary,
body.home main.site-main,
body.home .inside-article,
body.home .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.home .bb-home,
body.home .bb-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.home .bb-header {
  margin-bottom: 0 !important;
}

body.home .entry-content > *:first-child {
  margin-top: 0 !important;
}


/* =========================
   HOME 
========================= */

.bb-home {
  background:
    radial-gradient(circle at 10% 10%, rgba(183, 138, 85, .12), transparent 28%),
    radial-gradient(circle at 90% 40%, rgba(248, 240, 230, .8), transparent 30%),
    #fff;
}

/* HERO MÁS MODERNO */
.bb-hero {
  min-height: 760px;
  isolation: isolate;
}

.bb-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  background: rgba(183, 138, 85, .28);
  filter: blur(70px);
  border-radius: 50%;
  z-index: 1;
  animation: bbBlob 7s ease-in-out infinite;
}

.bb-hero-content {
  background: rgba(43, 27, 16, .28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 46px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.bb-hero-subtitle {
  background: rgba(255,255,255,.12);
  padding: 9px 16px;
  border-radius: 999px;
}

.bb-hero h1 {
  text-wrap: balance;
}

.bb-hero p {
  color: rgba(255,255,255,.88);
}

/* BOTONES MÁS ACTUALES */
.bb-btn-primary,
.bb-btn-secondary,
.bb-link-btn {
  position: relative;
  overflow: hidden;
}

.bb-btn-primary::before,
.bb-btn-secondary::before,
.bb-link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: .55s ease;
}

.bb-btn-primary:hover::before,
.bb-btn-secondary:hover::before,
.bb-link-btn:hover::before {
  left: 130%;
}

/* TARJETAS DE VALORES MÁS VISUALES */
.bb-values {
  position: relative;
  overflow: hidden;
}

.bb-values::before {
  content: "🍦";
  position: absolute;
  left: 4%;
  top: 18%;
  font-size: 90px;
  opacity: .08;
  animation: bbFloatIcon 6s ease-in-out infinite;
}

.bb-values::after {
  content: "🥤";
  position: absolute;
  right: 6%;
  bottom: 12%;
  font-size: 90px;
  opacity: .08;
  animation: bbFloatIcon 7s ease-in-out infinite reverse;
}

.bb-value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183, 138, 85, .18);
}

.bb-value-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 140px;
  height: 140px;
  background: var(--bb-cream);
  border-radius: 50%;
  transition: .3s ease;
}

.bb-value-card:hover::before {
  transform: scale(1.45);
}

.bb-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(43,27,16,.14);
}

/* SOBRE NOSOTROS PREMIUM */
.bb-about {
  position: relative;
}

.bb-about-content {
  position: relative;
}

.bb-about-content::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0;
  width: 5px;
  height: 92px;
  background: linear-gradient(var(--bb-beige), var(--bb-brown-soft));
  border-radius: 20px;
}

.bb-about-video {
  position: relative;
}

.bb-about-video::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(135deg, var(--bb-beige), var(--bb-cream));
  border-radius: 36px;
  z-index: -1;
  transform: rotate(-2deg);
}

.bb-about-video iframe {
  transition: .35s ease;
}

.bb-about-video:hover iframe {
  transform: scale(1.02);
}

/* PRODUCTOS MÁS HELADERÍA */
.bb-featured-products {
  position: relative;
  background:
    linear-gradient(180deg, #fff, var(--bb-cream));
}

.bb-feature-card {
  position: relative;
  border: 1px solid rgba(183, 138, 85, .18);
}

.bb-feature-card::after {
  content: "Ver producto";
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,.88);
  color: var(--bb-brown);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-8px);
  transition: .25s ease;
}

.bb-feature-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.bb-feature-content {
  background: #fff;
}

.bb-feature-content h3::before {
  content: "🍨 ";
}

.bb-feature-card:nth-child(2) .bb-feature-content h3::before {
  content: "⚙️ ";
}

.bb-feature-card:nth-child(3) .bb-feature-content h3::before {
  content: "🥛 ";
}

/* BLOQUE MÁS PRODUCTOS */
.bb-more-products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--bb-brown), var(--bb-brown-soft));
  color: #fff;
}

.bb-more-products::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}

.bb-more-products::after {
  content: "🍦";
  position: absolute;
  right: 45px;
  bottom: 24px;
  font-size: 90px;
  opacity: .12;
  animation: bbFloatIcon 5s ease-in-out infinite;
}

.bb-more-products h3,
.bb-more-products p {
  position: relative;
  z-index: 2;
}

.bb-more-products h3 {
  color: #fff;
}

.bb-more-products p {
  color: rgba(255,255,255,.78);
}

/* GALERÍA MODERNA */
.bb-gallery-grid {
  min-height: 120px;
}

.bb-gallery-item {
  box-shadow: 0 18px 40px rgba(43,27,16,.12);
  transition: .35s ease;
}

.bb-gallery-item:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.bb-gallery-item img {
  transition: .45s ease;
}

.bb-gallery-item:hover img {
  transform: scale(1.08);
}

/* CTA FINAL IMPACTANTE */
.bb-home-cta {
  position: relative;
  overflow: hidden;
}

.bb-home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(183,138,85,.35), transparent 28%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.08), transparent 26%);
}

.bb-home-cta::after {
  content: "🍧";
  position: absolute;
  right: 10%;
  top: 22%;
  font-size: 120px;
  opacity: .09;
  animation: bbFloatIcon 6s ease-in-out infinite;
}

.bb-home-cta .bb-container {
  position: relative;
  z-index: 2;
}

/* ANIMACIONES */
.bb-value-card,
.bb-about-content,
.bb-about-video,
.bb-feature-card,
.bb-more-products,
.bb-gallery,
.bb-home-cta {
  animation: bbFadeUp .9s ease both;
}

.bb-feature-card:nth-child(1) {
  animation-delay: .1s;
}

.bb-feature-card:nth-child(2) {
  animation-delay: .2s;
}

.bb-feature-card:nth-child(3) {
  animation-delay: .3s;
}

@keyframes bbBlob {
  0%, 100% {
    transform: translate(0,0) scale(1);
  }
  50% {
    transform: translate(-40px,-30px) scale(1.15);
  }
}

@keyframes bbFloatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-18px) rotate(5deg);
  }
}

/* RESPONSIVE MÁS LIMPIO */
@media (max-width: 980px) {
  .bb-hero {
    min-height: 670px;
  }

  .bb-hero-content {
    padding: 30px 24px;
    border-radius: 26px;
  }

  .bb-hero h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .bb-about-content::before {
    display: none;
  }

  .bb-more-products::after,
  .bb-home-cta::after {
    font-size: 70px;
    right: 20px;
  }
}



/* AJUSTES HERO FINAL */

/* Quitamos el cuadrado del hero */
.bb-hero-content {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Hacemos el texto más limpio */
.bb-hero-content {
  max-width: 820px;
}

/* Responsive móvil: texto a la izquierda */
@media (max-width: 980px) {

  .bb-hero {
    min-height: 560px;
    text-align: left !important;
    align-items: center;
  }

  .bb-hero-content {
    margin: 0 !important;
    text-align: left !important;
    max-width: 92%;
  }

  .bb-hero h1 {
    font-size: 38px !important;
    line-height: 1.08;
    text-align: left !important;
  }

  .bb-hero p {
    display: none !important;
  }

  .bb-hero-buttons {
    justify-content: flex-start !important;
  }

  .bb-hero-subtitle {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

}



/* AJUSTES MÓVIL HOME */

/* Tarjetas de valores en móvil más parecidas a PC */
@media (max-width: 980px) {

  .bb-values-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .bb-value-card {
    text-align: left !important;
    padding: 30px 28px !important;
    border-radius: 24px !important;
    background: #fff !important;
    box-shadow: 0 15px 35px rgba(43,27,16,.08) !important;
  }

  .bb-value-card span {
    display: inline-block;
    font-size: 30px !important;
    margin-bottom: 8px;
  }

  .bb-value-card h3 {
    font-size: 22px !important;
    margin: 8px 0 10px !important;
  }

  .bb-value-card p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  /* CTA menos alto en móvil */
  .bb-home-cta {
    padding: 60px 0 !important;
  }

  .bb-home-cta h2 {
    font-size: 36px !important;
    line-height: 1.15 !important;
    margin-bottom: 18px !important;
  }

  .bb-home-cta p {
    font-size: 17px !important;
    line-height: 1.6 !important;
    margin-bottom: 26px !important;
  }

}



/* GALERÍA MODERNA */

.bb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.bb-gallery-item {
  position: relative;
  height: 320px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(43,27,16,.12);
}

.bb-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.bb-gallery-item:hover img {
  transform: scale(1.08);
}

.bb-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,27,16,.32), transparent);
  opacity: 0;
  transition: .3s ease;
}

.bb-gallery-item:hover::after {
  opacity: 1;
}

/* Tablet */
@media (max-width: 1200px) {

  .bb-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* GALERÍA CARRUSEL EN MÓVIL */
@media (max-width: 980px) {

  .bb-gallery-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 6px 18px 22px 0;
    margin-right: -8%;
  }

  .bb-gallery-item {
    flex: 0 0 82%;
    height: 280px;
    scroll-snap-align: start;
    border-radius: 24px;
  }

  .bb-gallery-grid::-webkit-scrollbar {
    height: 6px;
  }

  .bb-gallery-grid::-webkit-scrollbar-track {
    background: rgba(183, 138, 85, .18);
    border-radius: 20px;
  }

  .bb-gallery-grid::-webkit-scrollbar-thumb {
    background: var(--bb-beige);
    border-radius: 20px;
  }

  .bb-gallery::after {
    content: "Desliza para ver más →";
    display: block;
    width: min(1180px, 92%);
    margin: 14px auto 0;
    color: var(--bb-brown-soft);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
  }

}




/* TARJETAS VALORES EN FILA EN MÓVIL */
@media (max-width: 980px) {

  .bb-values-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .bb-value-card {
    min-height: auto !important;
    padding: 18px 14px !important;
    border-radius: 18px !important;
    text-align: center !important;
  }

  .bb-value-card span {
    font-size: 24px !important;
    margin-bottom: 6px;
  }

  .bb-value-card h3 {
    font-size: 16px !important;
    line-height: 1.2;
    margin: 8px 0 !important;
  }

  .bb-value-card p {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

}


/* VALORES MÓVIL COMPACTO SIN CORTES */
@media (max-width: 980px) {

  .bb-values {
    padding: 45px 0 !important;
  }

  .bb-values-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    overflow: visible !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .bb-value-card {
    min-height: 135px !important;
    padding: 18px 8px !important;
    border-radius: 18px !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .bb-value-card::before {
    width: 70px !important;
    height: 70px !important;
    right: -28px !important;
    bottom: -28px !important;
  }

  .bb-value-card span {
    font-size: 24px !important;
    margin-bottom: 8px !important;
  }

  .bb-value-card h3 {
    font-size: 14px !important;
    line-height: 1.2 !important;
    margin: 6px 0 0 !important;
  }

  .bb-value-card p {
    display: none !important;
  }

}


/* REDUCIR ESPACIOS GENERALES */

.bb-values,
.bb-about,
.bb-featured-products,
.bb-gallery,
.bb-home-cta {
  padding: 70px 0 !important;
}

/* HERO MÁS COMPACTO */
.bb-hero {
  min-height: 640px !important;
}

/* MENOS ESPACIO EN TÍTULOS */
.bb-section-heading {
  margin-bottom: 34px !important;
}

.bb-about-content h2,
.bb-section-heading h2,
.bb-home-cta h2 {
  margin-bottom: 18px !important;
}

/* MENOS ESPACIO EN ABOUT */
.bb-about-grid {
  gap: 40px !important;
}

/* MENOS ESPACIO PRODUCTOS */
.bb-featured-grid {
  gap: 20px !important;
}

.bb-feature-content {
  padding: 22px !important;
}

/* MENOS ESPACIO CTA */
.bb-home-cta {
  padding: 75px 0 !important;
}

.bb-home-cta p {
  margin-bottom: 22px !important;
}

/* FOOTER MÁS COMPACTO */
.bb-footer-top {
  padding: 55px 0 38px !important;
}

/* MOBILE */
@media (max-width: 980px) {

  .bb-hero {
    min-height: 520px !important;
  }

  .bb-values,
  .bb-about,
  .bb-featured-products,
  .bb-gallery {
    padding: 45px 0 !important;
  }

  .bb-home-cta {
    padding: 55px 0 !important;
  }

  .bb-about-grid,
  .bb-featured-grid {
    gap: 26px !important;
  }

  .bb-feature-content {
    padding: 18px !important;
  }

  .bb-section-heading {
    margin-bottom: 24px !important;
  }

}



@media (max-width: 980px) {

  /* Hero con más aire lateral */
  .bb-hero-content {
    padding-left: 22px !important;
    padding-right: 22px !important;
    max-width: 100% !important;
  }

  .bb-hero h1 {
    font-size: 32px !important;
    line-height: 1.12 !important;
    margin-bottom: 22px !important;
  }

  .bb-hero-subtitle {
    font-size: 11px !important;
    padding: 8px 12px !important;
    margin-bottom: 14px !important;
  }

  .bb-hero-buttons {
    gap: 10px !important;
  }

  .bb-hero-buttons .bb-btn-primary,
  .bb-hero-buttons .bb-btn-secondary {
    padding: 11px 18px !important;
    font-size: 14px !important;
  }


  .bb-footer-grid {
    text-align: left !important;
  }

  .bb-footer-col:first-child {
    text-align: center !important;
  }

  .bb-footer-col:first-child .bb-footer-text {
    text-align: center !important;
  }

  .bb-footer-logo {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bb-footer-contact,
  .bb-footer-links {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }

  .bb-footer-contact li,
  .bb-footer-links li {
    text-align: left !important;
  }

  .bb-footer-title {
    text-align: left !important;
  }

}




/* =========================
   PÁGINA PRODUCTOS MODERNA
========================= */

.bb-products-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(183,138,85,.13), transparent 28%),
    radial-gradient(circle at 92% 38%, rgba(248,240,230,.9), transparent 32%),
    #fff;
}

/* Ocultar estructura WordPress */
body.page .entry-header,
body.page .page-header,
body.page .entry-title,
body.page .comments-area,
body.page #comments,
body.page .entry-meta,
body.page .post-navigation,
body.page .widget-area,
body.page .sidebar {
  display: none !important;
}

body.page .site-content,
body.page #content,
body.page #primary,
body.page .inside-article,
body.page .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* HERO */
.bb-products-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.bb-products-hero-bg,
.bb-products-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bb-products-hero-bg img {
  object-fit: cover;
}

.bb-products-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43,27,16,.84), rgba(43,27,16,.42)),
    radial-gradient(circle at 78% 38%, rgba(183,138,85,.26), transparent 35%);
}

.bb-products-hero::after {
  content: "🍦";
  position: absolute;
  right: 8%;
  bottom: 10%;
  font-size: 120px;
  opacity: .08;
  animation: bbFloatIcon 6s ease-in-out infinite;
}

.bb-products-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: bbFadeUp .9s ease both;
}

.bb-products-hero h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.06;
  margin: 0 0 22px;
  color: #fff;
}

.bb-products-hero p {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
}

/* INTRO */
.bb-products-intro {
  padding: 62px 0 20px;
}

.bb-products-intro-box {
  max-width: 960px;
  margin: 0 auto;
  padding: 38px 44px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, #fff, var(--bb-cream));
  text-align: center;
  box-shadow: 0 18px 45px rgba(43,27,16,.08);
  border: 1px solid rgba(183,138,85,.18);
}

.bb-products-intro-box h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  margin: 0 0 16px;
  color: var(--bb-text);
}

.bb-products-intro-box p {
  max-width: 760px;
  margin: 0 auto;
  color: #6a5b50;
  line-height: 1.75;
  font-size: 17px;
}

/* GRID PRODUCTOS */
.bb-products-grid-section {
  padding: 58px 0 82px;
}

.bb-products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

/* TARJETAS */
.bb-product-item {
  position: relative;
  width: calc(33.333% - 19px);
  max-width: 370px;
  min-width: 300px;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(43,27,16,.1);
  border: 1px solid rgba(183,138,85,.18);
  transition: .35s ease;
  animation: bbFadeUp .8s ease both;
}

.bb-product-item:hover {
  transform: translateY(-9px);
  box-shadow: 0 26px 60px rgba(43,27,16,.16);
}

.bb-product-image {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.bb-product-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 22px;
  z-index: 2;
  opacity: 0;
  transition: .3s ease;
}

.bb-product-item:hover .bb-product-image::before {
  opacity: 1;
}

.bb-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,27,16,.36), transparent 55%);
  z-index: 1;
}

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

.bb-product-item:hover img {
  transform: scale(1.08);
}

.bb-product-info {
  position: relative;
  padding: 24px 24px 26px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.bb-product-info::before {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  background: var(--bb-cream);
  border-radius: 50%;
  z-index: 0;
}

.bb-product-info span,
.bb-product-info h3,
.bb-product-info p,
.bb-product-info a {
  position: relative;
  z-index: 1;
}

.bb-product-info span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 13px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--bb-cream);
  color: var(--bb-brown-soft);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(43,27,16,.07);
}

.bb-product-info h3 {
  margin: 0 0 11px;
  color: var(--bb-text);
  font-size: 25px;
  line-height: 1.15;
}

.bb-product-info p {
  color: #6a5b50;
  line-height: 1.65;
  margin: 0 0 20px;
  font-size: 15px;
}

.bb-product-info a {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bb-cream);
  color: var(--bb-brown-soft) !important;
  font-weight: 800;
  text-decoration: none !important;
  transition: .25s ease;
}

.bb-product-info a::after {
  content: "→";
  margin-left: 8px;
  transition: .25s ease;
}

.bb-product-info a:hover {
  background: var(--bb-beige);
  color: #fff !important;
}

.bb-product-info a:hover::after {
  transform: translateX(5px);
}

/* Icono decorativo diferente por tarjeta */
.bb-product-item::before {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 58px;
  opacity: .055;
  pointer-events: none;
  z-index: 1;
}

.bb-product-item:nth-child(1)::before { content: "🥛"; }
.bb-product-item:nth-child(2)::before { content: "🍹"; }
.bb-product-item:nth-child(3)::before { content: "🍦"; }
.bb-product-item:nth-child(4)::before { content: "🍧"; }
.bb-product-item:nth-child(5)::before { content: "🍫"; }
.bb-product-item:nth-child(6)::before { content: "⚙️"; }
.bb-product-item:nth-child(7)::before { content: "🎉"; }

/* CTA IGUAL QUE INICIO */
.bb-products-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 75px 0;
  text-align: center;
  background: var(--bb-brown);
  color: #fff;
}

.bb-products-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(183,138,85,.4), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.09), transparent 26%);
}

.bb-products-cta::after {
  content: "🍧";
  position: absolute;
  right: 10%;
  top: 20%;
  font-size: 110px;
  opacity: .08;
  animation: bbFloatIcon 6s ease-in-out infinite;
}

.bb-products-cta .bb-container {
  position: relative;
  z-index: 2;
}

.bb-products-cta h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 18px;
}

.bb-products-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.7;
}

/* Animación escalonada */
.bb-product-item:nth-child(1) { animation-delay: .05s; }
.bb-product-item:nth-child(2) { animation-delay: .1s; }
.bb-product-item:nth-child(3) { animation-delay: .15s; }
.bb-product-item:nth-child(4) { animation-delay: .2s; }
.bb-product-item:nth-child(5) { animation-delay: .25s; }
.bb-product-item:nth-child(6) { animation-delay: .3s; }
.bb-product-item:nth-child(7) { animation-delay: .35s; }

/* TABLET */
@media (max-width: 1200px) {
  .bb-product-item {
    width: calc(50% - 14px);
    max-width: 430px;
  }
}

/* MÓVIL */
@media (max-width: 980px) {

  .bb-products-hero {
    min-height: 450px;
    text-align: left;
  }

  .bb-products-hero-content {
    max-width: 92%;
  }

  .bb-products-hero h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .bb-products-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .bb-products-intro {
    padding: 42px 0 18px;
  }

  .bb-products-intro-box {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .bb-products-grid-section {
    padding: 38px 0 58px;
  }

  .bb-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bb-product-item {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 26px;
  }

  .bb-product-image {
    height: 235px;
  }

  .bb-product-info {
    min-height: auto;
    padding: 23px;
  }

  .bb-products-cta {
    padding: 55px 0;
  }

  .bb-products-cta::after {
    font-size: 72px;
    right: 22px;
  }

}


@media (min-width: 981px) {

  .bb-product-item:nth-child(7) {
    width: min(100%, 1180px) !important;
    max-width: 1180px !important;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    min-height: 340px;
  }

  .bb-product-item:nth-child(7) .bb-product-image {
    height: 100% !important;
    min-height: 340px;
  }

  .bb-product-item:nth-child(7) .bb-product-info {
    min-height: 340px;
    justify-content: center;
    padding: 46px !important;
  }

  .bb-product-item:nth-child(7) .bb-product-info h3 {
    font-size: 36px !important;
  }

  .bb-product-item:nth-child(7) .bb-product-info p {
    max-width: 560px;
    font-size: 17px;
  }

}




body.page .site-content,
body.page #content,
body.page #primary,
body.page .site-main,
body.page .inside-article,
body.page .entry-content,
body.page .container.grid-container,
body.page .content-area {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page .inside-article {
  background: transparent !important;
}

.bb-products-page,
.bb-home {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.bb-products-hero,
.bb-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Quitar espacios laterales */
body.page .grid-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}







.bb-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #4b2610 0%, #5f3115 45%, #6d3b1b 100%);
}


.bb-footer::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}

.bb-footer::after {
  content: "🍦";
  position: absolute;
  right: 6%;
  bottom: 18%;
  font-size: 140px;
  opacity: .05;
  animation: bbFloatIcon 7s ease-in-out infinite;
}


.bb-footer-col {
  position: relative;
  z-index: 2;
}


.bb-footer-logo img {
  filter:
    drop-shadow(0 10px 20px rgba(0,0,0,.12));
}


.bb-footer-text {
  color: rgba(255,255,255,.88) !important;
  line-height: 1.9;
}


.bb-footer-title {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 26px;
  font-size: 24px;
}

.bb-footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--bb-beige), #f4d9b3);
}


.bb-footer-contact li,
.bb-footer-links li {
  margin-bottom: 18px;
}

.bb-footer-contact a,
.bb-footer-links a {
  color: rgba(255,255,255,.86) !important;
  transition: .25s ease;
}

.bb-footer-contact a:hover,
.bb-footer-links a:hover {
  color: #fff !important;
  transform: translateX(4px);
}


.bb-footer-more-btn {
  background:
    linear-gradient(135deg, var(--bb-beige), #ddb177);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.bb-footer-more-btn:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(135deg, #ddb177, var(--bb-beige));
}


.bb-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
}

.bb-footer-bottom p,
.bb-footer-legal a {
  color: rgba(255,255,255,.82) !important;
}


@media (max-width: 980px) {

  .bb-footer {
    background:
      linear-gradient(180deg, #4d2912 0%, #6a391a 100%);
  }

  .bb-footer::after {
    font-size: 90px;
    right: 20px;
    bottom: 14%;
  }

  .bb-footer-title {
    font-size: 22px;
  }

}

/* =========================
   PÁGINAS INTERIORES PRODUCTO
========================= */

.bb-product-detail {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(183,138,85,.12), transparent 28%),
    radial-gradient(circle at 92% 42%, rgba(248,240,230,.95), transparent 32%),
    #fff;
}

/* HERO DETALLE */
.bb-detail-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.bb-detail-hero-bg,
.bb-detail-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bb-detail-hero-bg img {
  object-fit: cover;
}

.bb-detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43,27,16,.86), rgba(43,27,16,.42)),
    radial-gradient(circle at 80% 40%, rgba(183,138,85,.26), transparent 35%);
}

.bb-detail-hero::after {
  content: "🥛";
  position: absolute;
  right: 8%;
  bottom: 10%;
  font-size: 125px;
  opacity: .08;
  animation: bbFloatIcon 6s ease-in-out infinite;
}

.bb-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  animation: bbFadeUp .9s ease both;
}

.bb-detail-hero h1 {
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.06;
  margin: 0 0 22px;
  color: #fff;
}

.bb-detail-hero p {
  max-width: 650px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,.88);
}

/* INTRO */
.bb-detail-intro {
  padding: 85px 0;
}

.bb-detail-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.bb-detail-intro-content {
  position: relative;
}

.bb-detail-intro-content::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 4px;
  width: 5px;
  height: 92px;
  border-radius: 20px;
  background: linear-gradient(var(--bb-beige), var(--bb-brown-soft));
}

.bb-detail-intro-content h2,
.bb-detail-highlight-content h2,
.bb-detail-benefits h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  color: var(--bb-text);
  margin: 0 0 22px;
}

.bb-detail-intro-content p,
.bb-detail-highlight-content p {
  color: #6a5b50;
  line-height: 1.8;
  font-size: 17px;
}

.bb-detail-intro-image {
  position: relative;
}

.bb-detail-intro-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: linear-gradient(135deg, var(--bb-beige), var(--bb-cream));
  border-radius: 38px;
  z-index: 0;
  transform: rotate(-2deg);
}

.bb-detail-intro-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 22px 55px rgba(43,27,16,.16);
}

/* BENEFICIOS */
.bb-detail-benefits {
  padding: 80px 0;
  background: var(--bb-cream);
  position: relative;
  overflow: hidden;
}

.bb-detail-benefits::before {
  content: "🌰";
  position: absolute;
  left: 5%;
  top: 18%;
  font-size: 90px;
  opacity: .08;
  animation: bbFloatIcon 6s ease-in-out infinite;
}

.bb-detail-benefits::after {
  content: "🥛";
  position: absolute;
  right: 6%;
  bottom: 12%;
  font-size: 90px;
  opacity: .08;
  animation: bbFloatIcon 7s ease-in-out infinite reverse;
}

.bb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bb-benefit-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 34px;
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(43,27,16,.09);
  border: 1px solid rgba(183,138,85,.18);
  transition: .3s ease;
}

.bb-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(43,27,16,.14);
}

.bb-benefit-card::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -48px;
  width: 135px;
  height: 135px;
  background: var(--bb-cream);
  border-radius: 50%;
}

.bb-benefit-card span,
.bb-benefit-card h3,
.bb-benefit-card p {
  position: relative;
  z-index: 1;
}

.bb-benefit-card span {
  display: inline-block;
  font-size: 34px;
  margin-bottom: 14px;
}

.bb-benefit-card h3 {
  color: var(--bb-text);
  font-size: 23px;
  margin: 0 0 12px;
}

.bb-benefit-card p {
  color: #6a5b50;
  line-height: 1.7;
  margin: 0;
}

/* BLOQUE DESTACADO */
.bb-detail-highlight {
  padding: 90px 0;
}

.bb-detail-highlight-box {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
  padding: 48px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, #fff, var(--bb-cream));
  box-shadow: 0 20px 60px rgba(43,27,16,.11);
  border: 1px solid rgba(183,138,85,.18);
}

.bb-detail-highlight-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(43,27,16,.14);
}

.bb-detail-highlight-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: .45s ease;
}

.bb-detail-highlight-box:hover .bb-detail-highlight-image img {
  transform: scale(1.06);
}

/* CTA reutiliza .bb-products-cta */

/* FULL WIDTH PARA PÁGINAS DETALLE */
.bb-product-detail {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* RESPONSIVE */
@media (max-width: 980px) {

  .bb-detail-hero {
    min-height: 450px;
    text-align: left;
  }

  .bb-detail-hero-content {
    max-width: 92%;
  }

  .bb-detail-hero h1 {
    font-size: 33px;
    line-height: 1.12;
  }

  .bb-detail-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .bb-detail-intro {
    padding: 55px 0;
  }

  .bb-detail-intro-grid,
  .bb-detail-highlight-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bb-detail-intro-content::before {
    display: none;
  }

  .bb-detail-intro-image img,
  .bb-detail-highlight-image img {
    height: 290px;
  }

  .bb-detail-benefits {
    padding: 55px 0;
  }

  .bb-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bb-benefit-card {
    padding: 28px 24px;
  }

  .bb-detail-highlight {
    padding: 55px 0;
  }

  .bb-detail-highlight-box {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .bb-detail-highlight-content h2,
  .bb-detail-intro-content h2,
  .bb-detail-benefits h2 {
    font-size: 32px;
  }

  .bb-detail-hero .bb-hero-buttons {
    justify-content: flex-start !important;
  }

}



/* BENEFICIOS EN FILA EN MÓVIL */
@media (max-width: 980px) {

  .bb-benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }

  .bb-benefit-card {
    min-height: 150px !important;
    padding: 18px 10px !important;
    border-radius: 18px !important;
    text-align: center !important;
  }

  .bb-benefit-card::before {
    width: 70px !important;
    height: 70px !important;
    right: -25px !important;
    bottom: -28px !important;
  }

  .bb-benefit-card span {
    font-size: 24px !important;
    margin-bottom: 8px !important;
  }

  .bb-benefit-card h3 {
    font-size: 14px !important;
    line-height: 1.2 !important;
    margin: 6px 0 0 !important;
  }

  .bb-benefit-card p {
    display: none !important;
  }

}


/* CTA INTERIORES MÁS ORDENADOS EN MÓVIL */
@media (max-width: 980px) {

  .bb-products-cta {
    text-align: left !important;
    padding: 52px 0 !important;
  }

  .bb-products-cta .bb-container {
    max-width: 92% !important;
    margin: 0 auto !important;
  }

  .bb-products-cta .bb-section-subtitle {
    display: inline-block;
    margin-bottom: 14px !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    letter-spacing: 1.5px !important;
  }

  .bb-products-cta h2 {
    font-size: 34px !important;
    line-height: 1.12 !important;
    text-align: left !important;
    margin: 0 0 18px !important;
    max-width: 100% !important;
  }

  .bb-products-cta p {
    text-align: left !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin: 0 0 24px !important;
    max-width: 100% !important;
  }

  .bb-products-cta .bb-btn-primary {
    padding: 12px 22px !important;
    font-size: 15px !important;
  }

  .bb-products-cta::after {
    opacity: .05 !important;
    right: 10px !important;
    top: 18% !important;
  }

}










/* =========================
   GALERÍA 
========================= */

.bb-carousel-gallery {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden;
  background: #fff;
}


.bb-gallery-party-hero {
  position: relative;
  overflow: hidden;
  padding: 115px 0 90px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.35), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(183,138,85,.25), transparent 24%),
    linear-gradient(135deg, #fff4df 0%, #f9d7d7 45%, #dff4ff 100%);
}

.bb-gallery-party-hero::before {
  content: "🍦";
  position: absolute;
  left: 7%;
  bottom: 14%;
  font-size: 110px;
  opacity: .14;
  animation: bbFloatIcon 6s ease-in-out infinite;
}

.bb-gallery-party-hero::after {
  content: "🍧";
  position: absolute;
  right: 8%;
  top: 22%;
  font-size: 120px;
  opacity: .13;
  animation: bbFloatIcon 7s ease-in-out infinite reverse;
}

.bb-gallery-party-content {
  position: relative;
  z-index: 2;
}

.bb-gallery-party-content h1 {
  max-width: 920px;
  margin: 0 auto 20px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.02;
  color: var(--bb-text);
}

.bb-gallery-party-content p {
  max-width: 720px;
  margin: 0 auto;
  color: #6a5b50;
  font-size: 19px;
  line-height: 1.7;
}


.bb-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bb-confetti span {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 18px;
  border-radius: 4px;
  background: var(--bb-beige);
  animation: bbConfetti 6s linear infinite;
  opacity: .75;
}

.bb-confetti span:nth-child(1) { left: 8%; animation-delay: 0s; background: #f7b267; }
.bb-confetti span:nth-child(2) { left: 18%; animation-delay: 1s; background: #70d6ff; }
.bb-confetti span:nth-child(3) { left: 28%; animation-delay: .4s; background: #ff70a6; }
.bb-confetti span:nth-child(4) { left: 38%; animation-delay: 1.7s; background: #b8f2e6; }
.bb-confetti span:nth-child(5) { left: 48%; animation-delay: .9s; background: #ffd670; }
.bb-confetti span:nth-child(6) { left: 58%; animation-delay: 2s; background: #cdb4db; }
.bb-confetti span:nth-child(7) { left: 68%; animation-delay: .2s; background: #ffc8dd; }
.bb-confetti span:nth-child(8) { left: 78%; animation-delay: 1.4s; background: #a2d2ff; }
.bb-confetti span:nth-child(9) { left: 88%; animation-delay: .7s; background: #fdffb6; }
.bb-confetti span:nth-child(10) { left: 96%; animation-delay: 2.3s; background: #ffafcc; }

@keyframes bbConfetti {
  0% {
    transform: translateY(-30px) rotate(0deg);
  }
  100% {
    transform: translateY(480px) rotate(360deg);
  }
  }


.bb-carousel-section {
  padding: 85px 0 95px;
  background:
    radial-gradient(circle at 10% 20%, rgba(183,138,85,.12), transparent 25%),
    #fff;
}

.bb-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-gallery-carousel {
  width: 100%;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 38px 70px 48px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.bb-gallery-carousel::-webkit-scrollbar {
  height: 8px;
}

.bb-gallery-carousel::-webkit-scrollbar-track {
  background: rgba(183,138,85,.16);
  border-radius: 20px;
}

.bb-gallery-carousel::-webkit-scrollbar-thumb {
  background: var(--bb-beige);
  border-radius: 20px;
}

.bb-carousel-card {
  flex: 0 0 360px;
  height: 470px;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 38px;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: center;
  box-shadow: 0 20px 55px rgba(43,27,16,.13);
  transform: scale(.9);
  opacity: .62;
  transition: .35s ease;
}

.bb-carousel-card.is-center {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 35px 90px rgba(43,27,16,.22);
}

.bb-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: #fff !important;
  color: var(--bb-brown) !important;
  font-size: 48px;
  line-height: .8;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(43,27,16,.18);
}

.bb-gallery-prev {
  left: 0;
}

.bb-gallery-next {
  right: 0;
}

.bb-gallery-help {
  text-align: center;
  color: var(--bb-brown-soft);
  font-weight: 700;
  margin: 10px 0 0;
}

/* LIGHTBOX */
.bb-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 8, 5, .92);
  backdrop-filter: blur(18px);
}

.bb-gallery-lightbox.active {
  display: flex;
}

.bb-gallery-lightbox img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
}

.bb-gallery-close,
.bb-lightbox-prev,
.bb-lightbox-next {
  position: fixed;
  z-index: 1000000;
  border: 0;
  background: #fff !important;
  color: var(--bb-brown) !important;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.bb-gallery-close {
  top: 24px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 38px;
}

.bb-lightbox-prev,
.bb-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 52px;
  line-height: .8;
}

.bb-lightbox-prev {
  left: 28px;
}

.bb-lightbox-next {
  right: 28px;
}

/* MÓVIL */
@media (max-width: 980px) {

  .bb-gallery-party-hero {
    padding: 75px 0 55px;
    text-align: left;
  }

  .bb-gallery-party-content h1 {
    font-size: 39px;
  }

  .bb-gallery-party-content p {
    font-size: 16px;
    margin: 0;
  }

  .bb-gallery-party-hero::before,
  .bb-gallery-party-hero::after {
    font-size: 72px;
  }

  .bb-carousel-section {
    padding: 55px 0 65px;
  }

  .bb-gallery-carousel {
    gap: 16px;
    padding: 30px 12px 42px;
  }

  .bb-carousel-card {
    flex: 0 0 78%;
    height: 410px;
    border-radius: 30px;
  }

  .bb-gallery-arrow {
    width: 44px;
    height: 44px;
    font-size: 38px;
  }

  .bb-gallery-prev {
    left: 8px;
  }

  .bb-gallery-next {
    right: 8px;
  }

  .bb-lightbox-prev,
  .bb-lightbox-next {
    display: none;
  }

  .bb-gallery-lightbox img {
    max-width: 94vw;
    max-height: 78vh;
    border-radius: 20px;
  }

  .bb-gallery-close {
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

}



.bb-gallery-arrow,
.bb-gallery-close,
.bb-lightbox-prev,
.bb-lightbox-next {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.bb-gallery-arrow {
  font-size: 42px !important;
  padding-bottom: 4px !important;
}

.bb-lightbox-prev,
.bb-lightbox-next {
  font-size: 44px !important;
  padding-bottom: 6px !important;
}

.bb-gallery-close {
  font-size: 34px !important;
  padding-bottom: 4px !important;
}

@media (max-width: 980px) {

  .bb-gallery-arrow {
    font-size: 34px !important;
    padding-bottom: 3px !important;
  }

  .bb-gallery-close {
    font-size: 30px !important;
    padding-bottom: 2px !important;
  }

}



.bb-gallery-party-hero {
  padding: 85px 0 60px !important;
  text-align: left !important;
  min-height: auto !important;
}

.bb-gallery-party-content {
  max-width: 760px !important;
  margin: 0 !important;
}

.bb-gallery-party-content .bb-section-subtitle {
  margin-bottom: 14px !important;
}

.bb-gallery-party-content h1 {
  font-size: clamp(42px, 5vw, 74px) !important;
  line-height: .98 !important;
  max-width: 720px !important;
  margin: 0 0 22px !important;
}

.bb-gallery-party-content p {
  max-width: 620px !important;
  margin: 0 0 30px !important;
  font-size: 18px !important;
}


.bb-gallery-scroll {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: var(--bb-brown);
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(43,27,16,.1);
  transition: .3s ease;
}

.bb-gallery-scroll:hover {
  transform: translateY(-4px);
  background: #fff;
}

.bb-gallery-scroll span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bb-beige);
  color: #fff;
  font-size: 18px;
}


@media (max-width: 980px) {

  .bb-gallery-party-hero {
    padding: 70px 0 50px !important;
  }

  .bb-gallery-party-content h1 {
    font-size: 42px !important;
    max-width: 100% !important;
  }

  .bb-gallery-party-content p {
    font-size: 16px !important;
    max-width: 100% !important;
  }

  .bb-gallery-scroll {
    padding: 12px 18px !important;
    font-size: 14px !important;
  }

  .bb-gallery-scroll span {
    width: 28px !important;
    height: 28px !important;
    font-size: 14px !important;
  }

}



.bb-gallery-party-hero {
  position: relative;
  padding: 95px 0 60px !important;
  margin-top: -1px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #f7f5f2 0%,
      #fff4df 14%,
      #f9d7d7 52%,
      #dff4ff 100%
    ) !important;
}

.bb-gallery-party-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 180px;
  background:
    linear-gradient(
      180deg,
      #f7f5f2 0%,
      rgba(247,245,242,0) 100%
    );
  z-index: 1;
}

.bb-gallery-party-content {
  position: relative;
  z-index: 3;
  padding-left: 35px !important;
}

.bb-gallery-party-content .bb-section-subtitle {
  margin-bottom: 18px !important;
}

.bb-gallery-party-content h1 {
  margin: 0 0 24px !important;
  max-width: 780px !important;
  font-size: clamp(44px, 5vw, 76px) !important;
  line-height: .96 !important;
  letter-spacing: -2px;
}

.bb-gallery-party-content p {
  max-width: 640px !important;
  margin: 0 0 34px !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}


.bb-gallery-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px !important;
  border-radius: 999px;
  background: rgba(255,255,255,.45) !important;
  border: 1px solid rgba(183,138,85,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(43,27,16,.06);
  color: var(--bb-brown) !important;
  font-size: 14px !important;
  font-weight: 700;
  text-decoration: none;
  transition: .28s ease;
}

.bb-gallery-scroll:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.72) !important;
}

.bb-gallery-scroll span {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50%;
  background: var(--bb-beige);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px !important;
}

@media (max-width: 980px) {

  .bb-gallery-party-hero {
    padding: 75px 0 50px !important;
  }

  .bb-gallery-party-content {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .bb-gallery-party-content h1 {
    font-size: 42px !important;
    letter-spacing: -1px;
  }

  .bb-gallery-party-content p {
    font-size: 16px !important;
    margin-bottom: 24px !important;
  }

}



.bb-gallery-party-hero {
  margin-top: -22px !important;
  padding-top: 120px !important;
  border-top: 0 !important;
}

.site-header,
.main-header,
.bb-gallery-party-hero {
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.bb-gallery-party-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background:
    linear-gradient(
      180deg,
      #f7f5f2 0%,
      rgba(247,245,242,.96) 20%,
      rgba(247,245,242,.72) 42%,
      rgba(247,245,242,0) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.bb-gallery-party-content {
  position: relative;
  z-index: 3;
}

@media (max-width: 980px) {

  .bb-gallery-party-hero {
    margin-top: -16px !important;
    padding-top: 95px !important;
  }

  .bb-gallery-party-hero::after {
    height: 85px;
  }

}



.bb-gallery-party-hero {
  background:
    linear-gradient(
      180deg,
      #f7f5f2 0%,
      #fff4df 15%,
      #f9d7d7 50%,
      #dff4ff 78%,
      #ffffff 100%
    ) !important;
  padding-bottom: 120px !important;
  margin-bottom: -70px !important;
}

.bb-carousel-section {
  position: relative;
  z-index: 2;
  padding-top: 120px !important;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      #ffffff 18%,
      #ffffff 100%
    ) !important;
}

.bb-gallery-party-hero::after {
  display: none !important;
}


.bb-gallery-party-hero::before {
  content: "🍦" !important;
  position: absolute;
  left: 7%;
  bottom: 20%;
  font-size: 110px;
  opacity: .10;
  animation: bbFloatIcon 6s ease-in-out infinite;
  z-index: 1;
}


@media (max-width: 980px) {

  .bb-gallery-party-hero {
    padding-bottom: 95px !important;
    margin-bottom: -55px !important;
  }

  .bb-carousel-section {
    padding-top: 90px !important;
  }

  .bb-gallery-party-hero::before {
    font-size: 70px;
    bottom: 18%;
  }

}









/* HELADO ANIMADO EN HERO DE GALERÍA */

.bb-gallery-party-hero {
  position: relative !important;
  overflow: hidden !important;
}

.bb-gallery-party-hero .bb-gallery-party-content::after {
  content: "🍦";
  position: absolute;
  right: -120px;
  top: 10px;
  font-size: 130px;
  line-height: 1;
  opacity: .18;
  pointer-events: none;
  animation: bbGalleryIceFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 35px rgba(43,27,16,.12));
}

@keyframes bbGalleryIceFloat {
  0% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(-16px) rotate(8deg);
  }

  100% {
    transform: translateY(0) rotate(-8deg);
  }
}

@media (max-width: 980px) {
  .bb-gallery-party-hero .bb-gallery-party-content::after {
    right: 12px;
    top: -28px;
    font-size: 80px;
    opacity: .14;
  }
}







.bb-contact-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #fff;
}

.bb-contact-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;

  background:
    linear-gradient(
      rgba(43,27,16,.58),
      rgba(43,27,16,.58)
    ),
    url('https://belbalisa.dasebuseo.es/wp-content/uploads/2026/05/contacto-valencia-helado-scaled.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bb-contact-pattern::before {
  content: "🍦";
  position: absolute;
  right: 8%;
  top: 24%;
  font-size: 120px;
  opacity: .13;
  animation: bbFloatIcon 6s ease-in-out infinite;
}

.bb-contact-pattern::after {
  content: "✉️";
  position: absolute;
  left: 7%;
  bottom: 16%;
  font-size: 85px;
  opacity: .1;
  animation: bbFloatIcon 7s ease-in-out infinite reverse;
}

.bb-contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.bb-contact-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
  margin: 0 0 24px;
  color: var(--bb-text);
}

.bb-contact-hero p {
  max-width: 650px;
  color: #6a5b50;
  font-size: 18px;
  line-height: 1.8;
}

.bb-contact-section {
  padding: 80px 0;
}

.bb-contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 45px;
  align-items: start;
}

.bb-contact-info h2,
.bb-contact-form-box h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  margin: 0 0 22px;
  color: var(--bb-text);
}

.bb-contact-info p {
  color: #6a5b50;
  line-height: 1.8;
}

.bb-contact-cards {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bb-contact-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff, var(--bb-cream));
  border: 1px solid rgba(183,138,85,.18);
  box-shadow: 0 16px 38px rgba(43,27,16,.08);
}

.bb-contact-card span {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(183,138,85,.12);
  font-size: 26px;
}

.bb-contact-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--bb-text);
}

.bb-contact-card p {
  margin: 0;
}

.bb-contact-card a {
  color: var(--bb-brown-soft);
  text-decoration: none;
  font-weight: 700;
}

.bb-contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bb-contact-form-image {
  height: 260px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 22px 55px rgba(43,27,16,.12);
}

.bb-contact-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bb-contact-form-box {
  padding: 42px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(43,27,16,.1);
  border: 1px solid rgba(183,138,85,.16);
}

.bb-contact-form input,
.bb-contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(183,138,85,.22);
  background: #fff;
  font-size: 15px;
  color: var(--bb-text);
  margin-bottom: 18px;
}

.bb-contact-form input:focus,
.bb-contact-form textarea:focus {
  outline: none;
  border-color: var(--bb-beige);
  box-shadow: 0 0 0 4px rgba(183,138,85,.12);
}

.bb-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.bb-contact-form button {
  border: 0;
  border-radius: 999px;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--bb-beige), #ddb177);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(43,27,16,.14);
}

.bb-form-message {
  margin-top: 16px;
  font-weight: 700;
}

.bb-form-message.success {
  color: #3b7f38;
}

.bb-form-message.error {
  color: #b83b3b;
}

.bb-contact-map-section {
  padding: 0 0 90px;
}

.bb-contact-map {
  height: 520px;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 24px 65px rgba(43,27,16,.12);
}

@media (max-width: 980px) {
  .bb-contact-hero {
    padding: 75px 0 55px;
  }

  .bb-contact-hero h1 {
    font-size: 42px;
  }

  .bb-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bb-contact-section {
    padding: 55px 0;
  }

  .bb-contact-form-box {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .bb-contact-form-image {
    height: 190px;
    border-radius: 24px;
  }

  .bb-contact-map {
    height: 360px;
    border-radius: 24px;
  }
}


.bb-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.12), transparent 25%),
    radial-gradient(circle at 85% 35%, rgba(183,138,85,.22), transparent 30%);

  z-index: 1;
}

.bb-contact-hero-content {
  position: relative;
  z-index: 3;
}

.bb-contact-hero .bb-section-subtitle {
  color: #ddb177;
}

.bb-contact-hero h1 {
  color: #fff !important;
  max-width: 760px;
}

.bb-contact-hero p {
  color: rgba(255,255,255,.88) !important;
  max-width: 650px;
}

/* decoración */
.bb-contact-pattern::before {
  content: "🍦";
  position: absolute;
  right: 7%;
  top: 20%;
  font-size: 120px;
  opacity: .14;
  animation: bbFloatIcon 6s ease-in-out infinite;
  z-index: 2;
}

.bb-contact-pattern::after {
  content: "✉️";
  position: absolute;
  left: 8%;
  bottom: 14%;
  font-size: 85px;
  opacity: .12;
  animation: bbFloatIcon 7s ease-in-out infinite reverse;
  z-index: 2;
}

/* móvil */
@media (max-width: 980px) {

  .bb-contact-hero {
    padding: 90px 0 75px;
    background-position: center;
  }

  .bb-contact-hero h1 {
    font-size: 42px;
  }

  .bb-contact-pattern::before {
    font-size: 70px;
    right: 4%;
    top: 12%;
  }

  .bb-contact-pattern::after {
    font-size: 58px;
    left: 4%;
    bottom: 10%;
  }

}







.bb-contact-hero {
  position: relative;
  padding-bottom: 140px !important;
  margin-bottom: -75px !important;
}


.bb-contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 220px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.35) 28%,
      rgba(255,255,255,.75) 58%,
      #ffffff 100%
    );

  z-index: 2;
  pointer-events: none;
}


.bb-contact-hero-content {
  position: relative;
  z-index: 5 !important;
}

.bb-contact-section {
  position: relative;
  z-index: 4;
  padding-top: 120px !important;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      #ffffff 18%,
      #ffffff 100%
    ) !important;
}

/* móvil */
@media (max-width: 980px) {

  .bb-contact-hero {
    padding-bottom: 105px !important;
    margin-bottom: -55px !important;
  }

  .bb-contact-hero::after {
    height: 120px;
  }

  .bb-contact-section {
    padding-top: 80px !important;
  }

}




@media (max-width: 980px) {

  .bb-contact-page {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden !important;
  }

  .bb-contact-page .bb-container,
  .bb-contact-hero-content,
  .bb-contact-grid,
  .bb-contact-info,
  .bb-contact-form-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
    box-sizing: border-box !important;
  }

  .bb-contact-grid {
    display: block !important;
  }

  .bb-contact-info h2,
  .bb-contact-form-box h2 {
    font-size: 34px !important;
    line-height: 1.12 !important;
    word-break: normal !important;
  }

  .bb-contact-card {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .bb-contact-card a,
  .bb-contact-card p {
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .bb-contact-form-box {
    width: 100% !important;
    box-sizing: border-box !important;
  }

}




@media (max-width: 980px) {

  .bb-contact-page .bb-container,
  .bb-contact-hero-content,
  .bb-contact-grid,
  .bb-contact-info,
  .bb-contact-form-wrap {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .bb-contact-card {
    padding: 20px 18px !important;
    border-radius: 24px !important;
    gap: 14px !important;
  }

  .bb-contact-card span {
    width: 54px !important;
    height: 54px !important;
    font-size: 24px !important;
  }

  .bb-contact-card h3 {
    font-size: 18px !important;
    margin-bottom: 6px !important;
  }

  .bb-contact-card p,
  .bb-contact-card a {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .bb-contact-form-box {
    padding: 26px 18px !important;
    border-radius: 26px !important;
  }

  .bb-contact-form-box h2 {
    font-size: 48px !important;
    line-height: .95 !important;
    margin-bottom: 22px !important;
  }

  .bb-contact-form input,
  .bb-contact-form textarea {
    padding: 16px 18px !important;
    border-radius: 18px !important;
    font-size: 15px !important;
  }

  .bb-contact-form textarea {
    min-height: 150px !important;
  }

  .bb-contact-form button {
    width: 100% !important;
    justify-content: center !important;
    padding: 16px 22px !important;
    font-size: 15px !important;
  }

}



@media (max-width: 980px) {

  .bb-contact-page,
  .bb-contact-page * {
    box-sizing: border-box !important;
  }

  .bb-contact-page {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow-x: hidden !important;
  }

  .bb-contact-page .bb-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .bb-contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .bb-contact-info,
  .bb-contact-form-wrap {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .bb-contact-cards {
    display: block !important;
    width: 100% !important;
    margin-top: 24px !important;
    padding: 24px 20px !important;
    border-radius: 30px !important;
    background: linear-gradient(135deg, #fff, var(--bb-cream)) !important;
    border: 1px solid rgba(183,138,85,.18) !important;
    box-shadow: 0 18px 45px rgba(43,27,16,.08) !important;
  }

  .bb-contact-card {
    display: grid !important;
    grid-template-columns: 48px 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    padding: 0 0 20px !important;
    margin: 0 0 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(183,138,85,.16) !important;
  }

  .bb-contact-card:last-child {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  .bb-contact-card span {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    font-size: 22px !important;
  }

  .bb-contact-card h3 {
    font-size: 18px !important;
    margin: 0 0 6px !important;
  }

  .bb-contact-card p,
  .bb-contact-card a {
    font-size: 15px !important;
    line-height: 1.55 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .bb-contact-form-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 20px !important;
    border-radius: 30px !important;
  }

  .bb-contact-form input,
  .bb-contact-form textarea {
    width: 100% !important;
  }

  .bb-contact-form button {
    width: 100% !important;
  }
}


@media (max-width: 980px) {

  .bb-contact-page .bb-container,
  .bb-contact-grid,
  .bb-contact-info,
  .bb-contact-form-wrap,
  .bb-contact-hero-content {
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bb-contact-form-box,
  .bb-contact-cards {
    width: 100% !important;
    max-width: 100% !important;
  }

}




@media (max-width: 980px) {

  .bb-contact-form-box h2 {
    font-size: 28px !important;
    line-height: 1.08 !important;
    margin-bottom: 18px !important;
  }

}


.bb-contact-card p,
.bb-contact-card a {
  color: #6a5b50 !important;
  font-weight: 400 !important;
}

.bb-contact-card a:hover {
  color: #6a5b50 !important;
}




/* =========================
   PÁGINA BLOG 
========================= */

.bb-blog-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #fff;
}

.bb-blog-hero {
  position: relative;
  padding: 125px 0 145px;
  background:
    url('https://belbalisa.dasebuseo.es/wp-content/uploads/2026/05/blog-helado-valencia.webp') center/cover no-repeat;
  overflow: hidden;
}

.bb-blog-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43,27,16,.72), rgba(43,27,16,.32)),
    linear-gradient(180deg, rgba(255,255,255,0) 68%, #fff 100%);
}

.bb-blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.bb-blog-hero .bb-section-subtitle {
  color: #ddb177;
}

.bb-blog-hero h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  margin: 0 0 24px;
  color: #fff;
}

.bb-blog-hero p {
  max-width: 630px;
  color: rgba(255,255,255,.9);
  font-size: 19px;
  line-height: 1.8;
}

.bb-blog-section {
  padding: 85px 0 95px;
  background:
    radial-gradient(circle at 8% 10%, rgba(183,138,85,.1), transparent 24%),
    #fff;
}

.bb-blog-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.bb-blog-heading h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 18px;
  color: var(--bb-text);
}

.bb-blog-heading p {
  color: #6a5b50;
  font-size: 17px;
  line-height: 1.7;
}

.bb-blog-list {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bb-blog-list.active {
  display: grid;
}

.bb-blog-card {
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(183,138,85,.16);
  box-shadow: 0 22px 55px rgba(43,27,16,.09);
  transition: .35s ease;
}

.bb-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 75px rgba(43,27,16,.14);
}

.bb-blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.bb-blog-card div {
  padding: 28px;
}

.bb-blog-card span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--bb-cream);
  color: var(--bb-brown);
  font-size: 13px;
  font-weight: 800;
}

.bb-blog-card h3 {
  margin: 0 0 14px;
  color: var(--bb-text);
  font-size: 24px;
  line-height: 1.18;
}

.bb-blog-card p {
  color: #6a5b50;
  line-height: 1.7;
  margin: 0 0 22px;
}

.bb-blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bb-brown);
  font-weight: 800;
  text-decoration: none;
}

.bb-blog-card a::after {
  content: "→";
  transition: .25s ease;
}

.bb-blog-card a:hover::after {
  transform: translateX(5px);
}

.bb-blog-placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
}

.bb-blog-pagination {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.bb-blog-page-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--bb-cream);
  color: var(--bb-brown);
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}

.bb-blog-page-btn.active,
.bb-blog-page-btn:hover {
  background: var(--bb-beige);
  color: #fff;
}

/* MÓVIL */
@media (max-width: 980px) {

  .bb-blog-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .bb-blog-hero {
    padding: 90px 0 100px;
  }

  .bb-blog-hero h1 {
    font-size: 42px;
  }

  .bb-blog-hero p {
    font-size: 16px;
  }

  .bb-blog-section {
    padding: 58px 0 70px;
  }

  .bb-blog-list,
  .bb-blog-list.active {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bb-blog-card {
    border-radius: 28px;
  }

  .bb-blog-card img {
    height: 220px;
  }

  .bb-blog-card div {
    padding: 24px;
  }

  .bb-blog-card h3 {
    font-size: 22px;
  }

}





/* HERO BLOG */

.bb-blog-hero {
  position: relative;
  overflow: hidden;

  padding: 95px 0 120px !important;
  margin-bottom: -70px !important;

  background-position: center !important;
}

.bb-blog-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(43,27,16,.72),
      rgba(43,27,16,.34)
    );

  z-index: 1;
}


.bb-blog-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 240px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.18) 32%,
      rgba(255,255,255,.55) 58%,
      rgba(255,255,255,.86) 82%,
      #ffffff 100%
    );

  z-index: 2;
  pointer-events: none;
}


.bb-blog-hero-content {
  position: relative;
  z-index: 5;
}

/* unión con contenido */
.bb-blog-section {
  position: relative;
  z-index: 4;

  padding-top: 110px !important;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      #ffffff 18%,
      #ffffff 100%
    ) !important;
}

/* contenido hero */
.bb-blog-hero-content {
  position: relative;
  z-index: 5;
}

.bb-blog-hero h1 {
  max-width: 760px;
  margin-bottom: 20px !important;
}

.bb-blog-hero p {
  max-width: 620px;
}

/* móvil */
@media (max-width: 980px) {

  .bb-blog-hero {
    padding: 78px 0 92px !important;
    margin-bottom: -50px !important;
  }

  .bb-blog-section {
    padding-top: 72px !important;
  }

  .bb-blog-hero h1 {
    font-size: 42px !important;
  }

}






/* =========================
   ENTRADA BLOG
========================= */

/* quitar cosas wordpress */
.single .entry-header,
.single .entry-title,
.single .comments-area,
.single #comments,
.single .comment-respond,
.single .post-navigation,
.single .sidebar,
.single .widget-area,
.single .entry-meta,
.single .inside-article > header {
  display: none !important;
}

.single .site-content,
.single #content,
.single #primary,
.single .site-main,
.single .inside-article,
.single .entry-content,
.single .content-area {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bb-single-post-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(183,138,85,.12), transparent 25%),
    #fff;
}

/* HERO */
.bb-single-post-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 150px;
  margin-bottom: -75px;
}

.bb-single-post-bg,
.bb-single-post-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bb-single-post-bg img {
  object-fit: cover;
}

.bb-single-post-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(43,27,16,.78),
      rgba(43,27,16,.38)
    );

  z-index: 1;
}

.bb-single-post-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 240px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.18) 30%,
      rgba(255,255,255,.55) 58%,
      rgba(255,255,255,.88) 82%,
      #ffffff 100%
    );

  z-index: 2;
}

.bb-single-post-hero-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
}

.bb-single-post-hero .bb-section-subtitle {
  color: #ddb177;
}

.bb-single-post-hero h1 {
  font-size: clamp(46px, 6vw, 84px);
  line-height: .98;
  margin: 0 0 26px;
  color: #fff;
}

.bb-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bb-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 700;
}

/* CONTENIDO */
.bb-single-post-content-section {
  position: relative;
  z-index: 4;
  padding: 110px 0 90px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0) 0%,
      #ffffff 18%,
      #ffffff 100%
    );
}

.bb-single-post-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, #fff, var(--bb-cream));
  box-shadow: 0 24px 70px rgba(43,27,16,.1);
  border: 1px solid rgba(183,138,85,.16);
}

.bb-single-post-image {
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 38px;
}

.bb-single-post-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.bb-single-post-content p,
.bb-single-post-content li {
  color: #5f5348;
  font-size: 17px;
  line-height: 1.9;
}

.bb-single-post-content p {
  margin: 0 0 24px;
}

.bb-single-post-content strong {
  color: var(--bb-text);
}

.bb-single-post-content h2 {
  margin: 54px 0 22px;
  color: var(--bb-text);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.bb-post-list {
  padding: 0;
  margin: 0 0 36px;
  list-style: none;
}

.bb-post-list li {
  margin-bottom: 14px;
}

.bb-post-highlight {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 40px 0;
  padding: 28px;
  border-radius: 28px;
  background: rgba(183,138,85,.1);
}

.bb-post-highlight span {
  font-size: 38px;
}

.bb-post-highlight p {
  margin: 0;
  font-weight: 600;
}

/* CTA */
.bb-post-cta {
  padding: 85px 0;
  text-align: center;
  background: var(--bb-brown);
  color: #fff;
}

.bb-post-cta h2 {
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  margin: 0 0 20px;
}

.bb-post-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

/* MÓVIL */
@media (max-width: 980px) {

  .bb-single-post-hero {
    padding: 85px 0 105px;
    margin-bottom: -50px;
  }

  .bb-single-post-hero h1 {
    font-size: 42px;
  }

  .bb-post-meta {
    gap: 10px;
  }

  .bb-post-meta span {
    font-size: 12px;
    padding: 8px 13px;
  }

  .bb-single-post-content-section {
    padding: 70px 0 60px;
  }

  .bb-single-post-content {
    padding: 26px 20px;
    border-radius: 28px;
  }

  .bb-single-post-image {
    border-radius: 22px;
    margin-bottom: 28px;
  }

  .bb-single-post-image img {
    height: 240px;
  }

  .bb-single-post-content p,
  .bb-single-post-content li {
    font-size: 16px;
    line-height: 1.8;
  }

  .bb-single-post-content h2 {
    font-size: 34px;
    margin: 42px 0 18px;
  }

  .bb-post-highlight {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .bb-post-cta {
    padding: 58px 0;
  }

}



/* AJUSTES ENTRADA BLOG */

/* ocultar autor */
.bb-post-meta span:nth-child(2) {
  display: none !important;
}

/* título más elegante */
.bb-single-post-hero h1 {
  max-width: 760px !important;
  font-size: clamp(38px, 4.8vw, 66px) !important;
  line-height: 1.05 !important;
}

/* imagen contenido más proporcionada */
.bb-single-post-image {
  max-width: 720px !important;
  margin: 0 auto 36px !important;
}

.bb-single-post-image img {
  height: 320px !important;
  border-radius: 24px !important;
}

/* CTA igual que el resto de páginas */
.bb-post-cta {
  padding: 70px 0 !important;
  text-align: left !important;
  background:
    radial-gradient(circle at 12% 20%, rgba(183,138,85,.16), transparent 26%),
    linear-gradient(135deg, var(--bb-cream), #fff) !important;
  color: var(--bb-text) !important;
}

.bb-post-cta h2 {
  color: var(--bb-text) !important;
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 1.08 !important;
}

.bb-post-cta p {
  margin: 0 0 28px !important;
  color: #6a5b50 !important;
  max-width: 680px !important;
}

/* móvil */
@media (max-width: 980px) {

  .bb-single-post-hero h1 {
    font-size: 34px !important;
  }

  .bb-single-post-image img {
    height: 220px !important;
  }

  .bb-post-cta {
    padding: 52px 0 !important;
  }

}


.single .post-image,
.single .featured-image,
.single .inside-article .post-image,
.single .inside-article .featured-image,
.single .wp-post-image {
  display: none !important;
}


/* =========================================================
   PÁGINA NOTICIAS
========================================================= */

.bb-news-page{
  position:relative;
  overflow:hidden;
  background:
  linear-gradient(180deg,#fff8f3 0%,#ffffff 35%,#fffaf7 100%);
}

/* HERO */

.bb-news-hero{
  position:relative;
  min-height:58vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:180px 0 150px;
}

.bb-news-hero-bg{
  position:absolute;
  inset:0;
}

.bb-news-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bb-news-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(135deg,
  rgba(36,25,18,.82) 0%,
  rgba(68,45,30,.55) 50%,
  rgba(255,255,255,.08) 100%);
}

.bb-news-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:180px;
  background:
  linear-gradient(to bottom,
  rgba(255,248,243,0) 0%,
  #fff8f3 75%,
  #fffdfb 100%);
  z-index:3;
}

.bb-news-hero-content{
  position:relative;
  z-index:5;
  max-width:760px;
}

.bb-news-hero .bb-section-subtitle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:22px;
}

.bb-news-hero h1{
  color:#fff;
  font-size:clamp(44px,6vw,82px);
  line-height:.95;
  font-weight:900;
  margin-bottom:26px;
  max-width:850px;
}

.bb-news-hero p{
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.7;
  max-width:640px;
}

/* LISTADO */

.bb-news-list-section{
  position:relative;
  z-index:4;
  padding:10px 0 120px;
}

.bb-news-list{
  display:none;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:30px;
}

.bb-news-list.active{
  display:grid;
}

.bb-news-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.6);
  box-shadow:
  0 20px 50px rgba(94,58,28,.08);
  transition:.45s ease;
}

.bb-news-card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 30px 60px rgba(94,58,28,.16);
}

.bb-news-card-image{
  position:relative;
  height:260px;
  overflow:hidden;
}

.bb-news-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.bb-news-card:hover .bb-news-card-image img{
  transform:scale(1.08);
}

.bb-news-card-content{
  padding:34px 30px;
}

.bb-news-date{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:#f8efe7;
  color:#9a6d47;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.bb-news-card h2{
  font-size:28px;
  line-height:1.12;
  color:#2d1f17;
  margin-bottom:18px;
  font-weight:800;
}

.bb-news-card p{
  color:#6e5a4d;
  line-height:1.8;
  margin-bottom:26px;
  font-size:16px;
}

.bb-news-card a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#9a6d47;
  font-weight:700;
  text-decoration:none;
  transition:.3s ease;
}

.bb-news-card a::after{
  content:"→";
  transition:.3s ease;
}

.bb-news-card a:hover{
  color:#c58b5d;
}

.bb-news-card a:hover::after{
  transform:translateX(5px);
}

/* PAGINACIÓN */

.bb-news-pagination{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:70px;
}

.bb-news-pagination button{
  width:52px;
  height:52px;
  border-radius:50%;
  border:none;
  background:#fff;
  color:#9a6d47;
  font-weight:800;
  cursor:pointer;
  transition:.3s ease;
  box-shadow:
  0 10px 25px rgba(94,58,28,.08);
}

.bb-news-pagination button.active,
.bb-news-pagination button:hover{
  background:#c58b5d;
  color:#fff;
  transform:translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 1100px){

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

}

@media (max-width: 768px){

  .bb-news-hero{
    min-height:auto;
    padding:145px 0 110px;
  }

  .bb-news-hero h1{
    font-size:42px;
    line-height:1.02;
    margin-bottom:20px;
    max-width:95%;
  }

  .bb-news-hero p{
    font-size:15px;
    line-height:1.7;
    max-width:100%;
  }

  .bb-news-list{
    grid-template-columns:1fr;
    gap:24px;
  }

  .bb-news-card{
    border-radius:26px;
  }

  .bb-news-card-image{
    height:220px;
  }

  .bb-news-card-content{
    padding:26px 22px;
  }

  .bb-news-card h2{
    font-size:24px;
  }

  .bb-news-pagination{
    margin-top:50px;
  }

}



/* ENLACES DE INTERÉS */

.bb-links-page{
  background:linear-gradient(180deg,#fff8f2 0%,#ffffff 45%,#fffaf7 100%);
  overflow:hidden;
}

.bb-links-hero{
	 position:relative;
  padding:125px 0 85px;
  background:
    radial-gradient(circle at 85% 20%,rgba(255,207,173,.55),transparent 34%),
    radial-gradient(circle at 15% 70%,rgba(216,238,255,.7),transparent 32%),
    linear-gradient(135deg,#fff2e7 0%,#f8e8df 48%,#eaf7ff 100%);
}

.bb-links-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:110px;
  background:linear-gradient(to bottom,rgba(255,255,255,0),#fff 82%);
}

.bb-links-hero-content{
  position:relative;
  z-index:2;
  max-width:780px;
}

.bb-links-hero h1{
  font-size:clamp(44px,6vw,76px);
  line-height:.98;
  color:#2f1d12;
  margin:0 0 24px;
  font-weight:800;
}

.bb-links-hero p{
  font-size:18px;
  line-height:1.75;
  color:#6e5a4d;
  max-width:680px;
}

.bb-links-grid-section{
  padding:30px 0 120px;
}

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

.bb-link-card{
  position:relative;
  overflow:hidden;
  min-height:250px;
  padding:34px 30px;
  border-radius:32px;
  text-decoration:none;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(214,176,141,.32);
  box-shadow:0 22px 48px rgba(72,43,24,.07);
  transition:.4s ease;
}

.bb-link-card::after{
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  right:-45px;
  bottom:-45px;
  border-radius:50%;
  background:rgba(246,236,223,.85);
  transition:.4s ease;
}

.bb-link-card:hover{
  transform:translateY(-8px);
  box-shadow:0 32px 65px rgba(72,43,24,.14);
}

.bb-link-card:hover::after{
  transform:scale(1.2);
  background:rgba(213,174,128,.22);
}

.bb-link-card span{
  position:relative;
  z-index:2;
  display:block;
  font-size:38px;
  margin-bottom:18px;
}

.bb-link-card h2{
  position:relative;
  z-index:2;
  font-size:25px;
  line-height:1.18;
  color:#2f1d12;
  margin:0 0 14px;
  font-weight:800;
}

.bb-link-card p{
  position:relative;
  z-index:2;
  color:#6e5a4d;
  line-height:1.65;
  margin:0;
  font-size:15.5px;
}

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

@media (max-width:768px){

  .bb-links-hero{
    padding:110px 0 70px;
  }

  .bb-links-hero h1{
    font-size:38px;
    line-height:1.05;
  }

  .bb-links-hero p{
    font-size:15px;
  }

  .bb-links-grid-section{
    padding:20px 0 80px;
  }

  .bb-links-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .bb-link-card{
    min-height:auto;
    padding:28px 24px;
    border-radius:26px;
  }

  .bb-link-card h2{
    font-size:23px;
  }
}



.bb-interest-page{
  overflow:hidden;
  background:
  linear-gradient(180deg,#fff8f3 0%,#ffffff 40%,#fffaf7 100%);
}



.bb-interest-hero{
  position:relative;
  min-height:52vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:150px 0 110px;
}

.bb-interest-hero-bg{
  position:absolute;
  inset:0;
}

.bb-interest-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.bb-interest-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(135deg,
  rgba(36,25,18,.82) 0%,
  rgba(68,45,30,.58) 55%,
  rgba(255,255,255,.08) 100%);
}

.bb-interest-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:150px;

  background:
  linear-gradient(to bottom,
  rgba(255,248,243,0),
  #fff8f3 80%,
  #fff 100%);
}

.bb-interest-hero-content{
  position:relative;
  z-index:5;
  max-width:760px;
}

.bb-interest-hero h1{
  color:#fff;
  font-size:clamp(42px,6vw,78px);
  line-height:.98;
  margin-bottom:22px;
}

.bb-interest-hero p{
  color:rgba(255,255,255,.9);
  font-size:18px;
  line-height:1.75;
  max-width:620px;
}



.bb-interest-content-section{
  padding:20px 0 110px;
}

.bb-interest-content{
  max-width:900px;
  margin:0 auto 50px;
}

.bb-interest-content p{
  font-size:18px;
  line-height:1.9;
  color:#5f5146;
  margin-bottom:24px;
}



.bb-faq-wrapper{
  max-width:950px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.bb-faq-item{
  overflow:hidden;
  border-radius:28px;

  background:
  rgba(255,255,255,.85);

  border:
  1px solid rgba(214,176,141,.25);

  box-shadow:
  0 18px 40px rgba(94,58,28,.06);
}

.bb-faq-question{
  width:100%;
  border:none;
  background:none;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:30px 34px;

  font-size:24px;
  line-height:1.3;
  font-weight:800;

  color:#2f1d12;
  text-align:left;
}

.bb-faq-question span{
  min-width:42px;
  height:42px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#f6ece2;

  color:#b67b4d;

  font-size:28px;

  transition:.35s ease;
}

.bb-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .5s ease;
}

.bb-faq-answer p{
  padding:0 34px 24px;
  color:#65574b;
  line-height:1.9;
  font-size:17px;
}

.bb-faq-item.active .bb-faq-answer{
  max-height:800px;
}

.bb-faq-item.active .bb-faq-question span{
  transform:rotate(45deg);
  background:#c79367;
  color:#fff;
}



@media (max-width:768px){

  .bb-interest-hero{
    min-height:auto;
    padding:120px 0 90px;
  }

  .bb-interest-hero h1{
    font-size:38px;
    line-height:1.05;
  }

  .bb-interest-hero p{
    font-size:15px;
  }

  .bb-interest-content p{
    font-size:16px;
    line-height:1.85;
  }

  .bb-faq-question{
    padding:24px 22px;
    font-size:20px;
  }

  .bb-faq-answer p{
    padding:0 22px 20px;
    font-size:15px;
  }

}


.bb-faq-question:focus,
.bb-faq-question:active{
  background:#fff7f1 !important;
  outline:none;
  box-shadow:none;
}





.bb-faq-question span,
.bb-faq-icon{
  width:58px;
  height:58px;
  min-width:58px;
  border-radius:50%;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  position:relative;
  font-size:38px;
  font-weight:700;
  line-height:1 !important;
  padding:0 !important;
  margin:0 !important;
  text-align:center;
}

.bb-faq-question span::before,
.bb-faq-icon::before{
  position:relative;
  top:-2px;
}

.bb-faq-question{
  align-items:center !important;
}




.bb-faq-question,
.bb-faq-question:hover,
.bb-faq-question:focus,
.bb-faq-question:active{
  background:#fffaf5 !important;
  color:#3b2417 !important;
  border:1px solid #ead9c8 !important;
  box-shadow:none !important;
  text-decoration:none !important;
}


.bb-faq-question h3,
.bb-faq-question p,
.bb-faq-question span{
  color:#3b2417 !important;
}


.bb-faq-question:hover h3,
.bb-faq-question:hover p,
.bb-faq-question:hover span{
  color:#3b2417 !important;
}


.bb-faq-question.active{
  background:#f7efe6 !important;
  border-color:#e5cfb8 !important;
}


.bb-faq-question .bb-faq-icon{
  width:48px;
  height:48px;
  min-width:48px;
  border-radius:50%;
  background:#efe4d7 !important;
  color:#c9985d !important;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;
  font-weight:700;
  line-height:1;

  transition:all .3s ease;
}

.bb-faq-question.active .bb-faq-icon{
  background:#c9985d !important;
  color:#fff !important;
}


.bb-faq-question *{
  text-decoration:none !important;
}

/* móvil */
@media (max-width:768px){

  .bb-faq-question{
    padding:22px 18px !important;
  }

  .bb-faq-question h3{
    font-size:18px !important;
    line-height:1.35 !important;
  }

  .bb-faq-question .bb-faq-icon{
    width:42px;
    height:42px;
    min-width:42px;
    font-size:26px;
  }
}





.bb-footer-logo{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.bb-socials{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:18px auto 22px;
  width:100%;
}

.bb-socials a{
  width:46px;
  height:46px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.14);

  color:#f6e8d8 !important;

  text-decoration:none;

  font-size:18px;

  transition:
  transform .3s ease,
  background .3s ease,
  border-color .3s ease;
}

.bb-socials a:hover{

  background:
  linear-gradient(135deg,
  #c9985d 0%,
  #d7aa74 100%);

  border-color:
  transparent;

  color:#fff !important;

  transform:
  translateY(-4px);
}

.bb-socials i{
  line-height:1;
}



@media (max-width:768px){


  .bb-interest-buttons,
  .bb-cta-buttons{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    margin-top:24px;
  }

  .bb-interest-buttons a,
  .bb-cta-buttons a,
  .bb-btn,
  .bb-btn-primary,
  .bb-btn-secondary{

    width:auto !important;

    min-width:unset !important;

    padding:14px 22px !important;

    font-size:15px !important;

    border-radius:999px;

    line-height:1.1;

    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

 

  .bb-post-cta .bb-btn-primary,
  .bb-post-cta .bb-btn-secondary{
    padding:14px 24px !important;
    font-size:15px !important;
  }


  .bb-post-cta .bb-cta-buttons{
    margin-top:20px;
  }

}




.bb-legal-page{
  background:#fffaf4;
  overflow:hidden;
}

.bb-legal-hero{
  padding:90px 0 70px;
  background:
    linear-gradient(180deg,#f8efe4 0%,#fffaf4 100%);
}

.bb-legal-hero h1{
  font-size:clamp(42px,6vw,76px);
  line-height:1;
  margin:16px 0 22px;
  color:#2b1b12;
}

.bb-legal-hero p{
  max-width:720px;
  font-size:20px;
  line-height:1.7;
  color:#6f5b4e;
}

.bb-legal-content{
  padding:40px 0 90px;
}

.bb-legal-box{
  background:#fff;
  border:1px solid #ead8c4;
  border-radius:34px;
  padding:55px;
  box-shadow:0 24px 70px rgba(66,37,22,.08);
}

.bb-legal-box h2{
  font-size:26px;
  color:#3b2417;
  margin:34px 0 14px;
}

.bb-legal-box h2:first-child{
  margin-top:0;
}

.bb-legal-box p{
  font-size:17px;
  line-height:1.9;
  color:#6f5b4e;
  margin-bottom:18px;
}

.bb-legal-box strong{
  color:#4a2a19;
}

@media(max-width:768px){

  .bb-legal-hero{
    padding:58px 0 46px;
  }

  .bb-legal-hero h1{
    font-size:40px;
  }

  .bb-legal-hero p{
    font-size:17px;
  }

  .bb-legal-content{
    padding:28px 0 60px;
  }

  .bb-legal-box{
    border-radius:24px;
    padding:28px 22px;
  }

  .bb-legal-box h2{
    font-size:22px;
  }

  .bb-legal-box p{
    font-size:16px;
    line-height:1.75;
  }

}



