/* [project]/_Pages/Main/contenido/contenido.module.css [app-client] (css) */
.contenido-module__91e5vG__mainContent {
  background: #fff;
  width: 100%;
  min-height: 100vh;
  padding-top: 140px;
  font-family: Poppins, sans-serif;
}

.contenido-module__91e5vG__heroSection {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin-top: -140px;
  padding: 140px 0 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contenido-module__91e5vG__section {
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  display: flex;
  position: relative;
}

.contenido-module__91e5vG__section:nth-child(2n) {
  background: #f8f9fa;
}

.contenido-module__91e5vG__section h2 {
  color: #5a3317;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.contenido-module__91e5vG__section p {
  text-align: center;
  color: #6b4423;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.contenido-module__91e5vG__topNavigation {
  z-index: 900;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(184, 134, 11, .2);
  height: 50px;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
}

.contenido-module__91e5vG__navContainer {
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
}

.contenido-module__91e5vG__navButton {
  cursor: pointer;
  color: #b8860b;
  white-space: nowrap;
  background: none;
  border: 2px solid #b8860b;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contenido-module__91e5vG__navButton:before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(184, 134, 11, .1), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  transition: left .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.contenido-module__91e5vG__navButton:hover:before {
  left: 100%;
}

.contenido-module__91e5vG__navButton:hover {
  color: #fff;
  background: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.contenido-module__91e5vG__navButton.contenido-module__91e5vG__active {
  color: #fff;
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  border-color: #daa520;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .4);
}

.contenido-module__91e5vG__navButton.contenido-module__91e5vG__active:before {
  display: none;
}

.contenido-module__91e5vG__navButton ion-icon {
  font-size: 1.1rem;
}

.contenido-module__91e5vG__rightSidebar {
  z-index: 1000;
  flex-direction: column;
  gap: 12px;
  display: flex;
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.contenido-module__91e5vG__arrowButton {
  color: #b8860b;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .95);
  border: 2px solid #b8860b;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.contenido-module__91e5vG__arrowButton:before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(184, 134, 11, .3), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  transition: left .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.contenido-module__91e5vG__arrowButton:hover:before {
  left: 100%;
}

.contenido-module__91e5vG__arrowButton:hover {
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-color: #daa520;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(184, 134, 11, .3);
}

.contenido-module__91e5vG__arrowButton:active {
  transition: all .15s;
  transform: scale(1.02);
}

.contenido-module__91e5vG__arrowButton ion-icon {
  z-index: 2;
  font-size: 1.3rem;
  font-weight: bold;
  transition: transform .3s;
  position: relative;
}

.contenido-module__91e5vG__arrowButton:hover ion-icon {
  transform: translateY(-1px);
}

.contenido-module__91e5vG__sideButton {
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border: 3px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(184, 134, 11, .3);
}

.contenido-module__91e5vG__sideButton:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(184, 134, 11, .3);
}

.contenido-module__91e5vG__sideButton ion-icon {
  z-index: 1;
  font-size: 1.4rem;
}

.contenido-module__91e5vG__contador {
  color: #fff;
  z-index: 10;
  letter-spacing: -.5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border: 2px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  height: 20px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s;
  animation: 3s ease-in-out infinite contenido-module__91e5vG__contadorPulse;
  display: flex;
  position: absolute;
  top: -6px;
  right: -6px;
  transform: scale(1);
  box-shadow: 0 2px 8px rgba(220, 38, 38, .5);
}

@keyframes contenido-module__91e5vG__contadorPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(220, 38, 38, .5);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(220, 38, 38, .6);
  }
}

.contenido-module__91e5vG__contador.contenido-module__91e5vG__large {
  border-radius: 11px;
  min-width: 24px;
  height: 22px;
  font-size: 10px;
  top: -7px;
  right: -8px;
}

.contenido-module__91e5vG__contador.contenido-module__91e5vG__extraLarge {
  border-radius: 10px;
  min-width: 28px;
  height: 20px;
  font-size: 9px;
  font-weight: 800;
  top: -6px;
  right: -10px;
}

.contenido-module__91e5vG__sideButton:hover .contenido-module__91e5vG__contador {
  animation-play-state: paused;
  transform: scale(1.05);
}

.contenido-module__91e5vG__sideButton:active {
  transform: scale(.98);
}

.contenido-module__91e5vG__sideButton:active .contenido-module__91e5vG__contador {
  transform: scale(1);
}

.contenido-module__91e5vG__backToTop {
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all .3s;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translateY(20px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.contenido-module__91e5vG__backToTop.contenido-module__91e5vG__visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contenido-module__91e5vG__backToTop:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(184, 134, 11, .3);
}

.contenido-module__91e5vG__backToTop ion-icon {
  font-size: 1.2rem;
}

.contenido-module__91e5vG__heroContainer {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.contenido-module__91e5vG__sectionContainer {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
}

.contenido-module__91e5vG__sectionContainer > *, .contenido-module__91e5vG__heroContainer > * {
  width: 100% !important;
  max-width: 100% !important;
}

.contenido-module__91e5vG__animateItem {
  opacity: 0;
  transition: all .6s;
  transform: translateY(30px);
}

.contenido-module__91e5vG__animateItem.contenido-module__91e5vG__animated {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .contenido-module__91e5vG__mainContent {
    padding-top: 130px;
  }

  .contenido-module__91e5vG__heroSection {
    margin-top: -130px;
    padding-top: 130px;
  }

  .contenido-module__91e5vG__topNavigation {
    height: 45px;
  }

  .contenido-module__91e5vG__navButton span {
    display: none;
  }

  .contenido-module__91e5vG__navButton {
    padding: 6px 10px;
    font-size: .8rem;
  }

  .contenido-module__91e5vG__navContainer {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .contenido-module__91e5vG__mainContent {
    padding-top: 120px;
  }

  .contenido-module__91e5vG__heroSection {
    min-height: 100vh;
    margin-top: -120px;
    padding-top: 120px;
  }

  .contenido-module__91e5vG__section {
    min-height: 100vh;
  }

  .contenido-module__91e5vG__section h2 {
    font-size: 2rem;
  }

  .contenido-module__91e5vG__topNavigation {
    height: 40px;
    top: 80px;
  }

  .contenido-module__91e5vG__navContainer {
    gap: 10px;
    padding: 0 15px;
  }

  .contenido-module__91e5vG__navButton {
    padding: 6px 8px;
    font-size: .75rem;
  }

  .contenido-module__91e5vG__rightSidebar {
    gap: 10px;
    right: 15px;
  }

  .contenido-module__91e5vG__arrowButton {
    width: 45px;
    height: 45px;
  }

  .contenido-module__91e5vG__arrowButton ion-icon {
    font-size: 1.2rem;
  }

  .contenido-module__91e5vG__sideButton {
    width: 50px;
    height: 50px;
  }

  .contenido-module__91e5vG__sideButton ion-icon {
    font-size: 1.3rem;
  }

  .contenido-module__91e5vG__backToTop {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }

  .contenido-module__91e5vG__contador {
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    top: -5px;
    right: -5px;
  }

  .contenido-module__91e5vG__contador.contenido-module__91e5vG__large {
    min-width: 22px;
    height: 20px;
    font-size: 9px;
    top: -6px;
    right: -7px;
  }

  .contenido-module__91e5vG__contador.contenido-module__91e5vG__extraLarge {
    min-width: 26px;
    height: 18px;
    font-size: 8px;
    top: -5px;
    right: -9px;
  }
}

@media (max-width: 480px) {
  .contenido-module__91e5vG__mainContent {
    padding-top: 110px;
  }

  .contenido-module__91e5vG__heroSection {
    margin-top: -110px;
    padding-top: 110px;
  }

  .contenido-module__91e5vG__section {
    min-height: 100vh;
  }

  .contenido-module__91e5vG__section h2 {
    font-size: 1.6rem;
  }

  .contenido-module__91e5vG__topNavigation {
    height: 40px;
    top: 70px;
  }

  .contenido-module__91e5vG__navContainer {
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    gap: 5px;
    padding: 0 10px;
    overflow-x: auto;
  }

  .contenido-module__91e5vG__navContainer::-webkit-scrollbar {
    display: none;
  }

  .contenido-module__91e5vG__navButton {
    border-width: 1px;
    flex-shrink: 0;
    padding: 5px 8px;
    font-size: .7rem;
  }

  .contenido-module__91e5vG__navButton span {
    display: none;
  }

  .contenido-module__91e5vG__rightSidebar {
    gap: 8px;
    right: 10px;
  }

  .contenido-module__91e5vG__arrowButton {
    width: 40px;
    height: 40px;
  }

  .contenido-module__91e5vG__arrowButton ion-icon {
    font-size: 1.1rem;
  }

  .contenido-module__91e5vG__sideButton {
    width: 45px;
    height: 45px;
  }

  .contenido-module__91e5vG__sideButton ion-icon {
    font-size: 1.2rem;
  }

  .contenido-module__91e5vG__backToTop {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }

  .contenido-module__91e5vG__backToTop ion-icon {
    font-size: 1.1rem;
  }

  .contenido-module__91e5vG__contador {
    border-width: 1px;
    min-width: 16px;
    height: 16px;
    font-size: 9px;
    top: -4px;
    right: -4px;
  }

  .contenido-module__91e5vG__contador.contenido-module__91e5vG__large {
    min-width: 20px;
    height: 18px;
    font-size: 8px;
    top: -5px;
    right: -6px;
  }

  .contenido-module__91e5vG__contador.contenido-module__91e5vG__extraLarge {
    min-width: 24px;
    height: 16px;
    font-size: 7px;
    top: -4px;
    right: -8px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .contenido-module__91e5vG__section, .contenido-module__91e5vG__heroSection {
    min-height: 100vh;
  }
}

@media (prefers-color-scheme: dark) {
  .contenido-module__91e5vG__mainContent {
    background: #fff;
  }

  .contenido-module__91e5vG__section:nth-child(2n) {
    background: #f8f9fa;
  }

  .contenido-module__91e5vG__section h2 {
    color: #5a3317;
  }

  .contenido-module__91e5vG__section p {
    color: #6b4423;
  }
}

@media (hover: hover) {
  .contenido-module__91e5vG__navButton:hover, .contenido-module__91e5vG__arrowButton:hover, .contenido-module__91e5vG__sideButton:hover, .contenido-module__91e5vG__backToTop:hover {
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contenido-module__91e5vG__animateItem, .contenido-module__91e5vG__navButton, .contenido-module__91e5vG__arrowButton, .contenido-module__91e5vG__sideButton, .contenido-module__91e5vG__backToTop {
    transition: none !important;
    animation: none !important;
  }

  .contenido-module__91e5vG__arrowButton:before, .contenido-module__91e5vG__contador {
    animation: none !important;
  }
}

@media (pointer: coarse) {
  .contenido-module__91e5vG__arrowButton, .contenido-module__91e5vG__sideButton, .contenido-module__91e5vG__navButton {
    min-width: 44px;
    min-height: 44px;
  }

  .contenido-module__91e5vG__contador {
    min-width: 18px;
    height: 18px;
    font-size: 10px;
  }
}

@media (min-width: 1400px) {
  .contenido-module__91e5vG__rightSidebar {
    right: 30px;
  }

  .contenido-module__91e5vG__navContainer {
    gap: 25px;
  }

  .contenido-module__91e5vG__navButton {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .contenido-module__91e5vG__sideButton {
    width: 60px;
    height: 60px;
  }

  .contenido-module__91e5vG__sideButton ion-icon {
    font-size: 1.5rem;
  }

  .contenido-module__91e5vG__contador {
    min-width: 22px;
    height: 22px;
    font-size: 12px;
    top: -7px;
    right: -7px;
  }

  .contenido-module__91e5vG__contador.contenido-module__91e5vG__large {
    min-width: 26px;
    height: 24px;
    top: -8px;
    right: -9px;
  }

  .contenido-module__91e5vG__contador.contenido-module__91e5vG__extraLarge {
    min-width: 30px;
    height: 22px;
    top: -7px;
    right: -11px;
  }
}

.contenido-module__91e5vG__heroSection, .contenido-module__91e5vG__section {
  contain: layout style paint;
}

.contenido-module__91e5vG__sectionContainer, .contenido-module__91e5vG__heroContainer {
  will-change: transform;
}

.contenido-module__91e5vG__mainContent {
  scroll-behavior: smooth;
}

.contenido-module__91e5vG__topNavigation {
  z-index: 900;
}

.contenido-module__91e5vG__rightSidebar {
  z-index: 950;
}

.contenido-module__91e5vG__backToTop {
  z-index: 975;
}

html {
  scroll-behavior: smooth;
}

.contenido-module__91e5vG__contador {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: inherit;
  will-change: transform;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-animation: 3s ease-in-out infinite contenido-module__91e5vG__contadorPulse;
  -moz-animation: 3s ease-in-out infinite contenido-module__91e5vG__contadorPulse;
  -webkit-box-shadow: 0 2px 8px rgba(220, 38, 38, .5);
  -moz-box-shadow: 0 2px 8px rgba(220, 38, 38, .5);
}

@supports not (background: linear-gradient(135deg, #dc2626, #ef4444)) {
  .contenido-module__91e5vG__contador {
    background: #dc2626;
  }
}

.contenido-module__91e5vG__sideButton * {
  pointer-events: none;
}

.contenido-module__91e5vG__sideButton {
  pointer-events: auto;
}

/* [project]/_Pages/Main/contenido/Componentes/hero/hero.module.css [app-client] (css) */
.hero-module__qRpCMq__hero {
  background: #fff;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-module__qRpCMq__backgroundImage {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  transition: all 1.5s;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.1);
}

.hero-module__qRpCMq__overlay {
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2) 0%, rgba(248, 248, 248, .88) 50%, rgba(255, 255, 255, .92) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-module__qRpCMq__container {
  z-index: 2;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  position: relative;
}

.hero-module__qRpCMq__loading {
  text-align: center;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-module__qRpCMq__spinner {
  border: 4px solid #f3f3f3;
  border-top-color: #daa520;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  animation: 1s linear infinite hero-module__qRpCMq__spin;
}

@keyframes hero-module__qRpCMq__spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero-module__qRpCMq__loading p {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

.hero-module__qRpCMq__content {
  flex: 1;
  max-width: 500px;
  padding-right: 60px;
}

.hero-module__qRpCMq__storeName {
  color: #333;
  margin: 0 0 40px;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-module__qRpCMq__productInfo {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.hero-module__qRpCMq__badge {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #daa520;
  border-radius: 20px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
}

.hero-module__qRpCMq__productName {
  color: #222;
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-module__qRpCMq__productDescription {
  color: #666;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.hero-module__qRpCMq__price {
  align-items: center;
  gap: 15px;
  margin: 10px 0;
  display: flex;
}

.hero-module__qRpCMq__oldPrice {
  color: #999;
  font-size: 1.2rem;
  text-decoration: line-through;
}

.hero-module__qRpCMq__currentPrice {
  color: #daa520;
  font-size: 2.5rem;
  font-weight: 800;
}

.hero-module__qRpCMq__stockInfo {
  margin: 15px 0;
}

.hero-module__qRpCMq__stockWarning {
  color: #e65100;
  background: linear-gradient(135deg, rgba(255, 152, 0, .1), rgba(255, 152, 0, .15));
  border: 1px solid rgba(255, 152, 0, .3);
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 600;
  animation: 2s ease-in-out infinite hero-module__qRpCMq__pulseWarning;
  display: inline-flex;
  box-shadow: 0 4px 12px rgba(255, 152, 0, .1), inset 0 1px rgba(255, 255, 255, .2);
}

@keyframes hero-module__qRpCMq__pulseWarning {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255, 152, 0, .1), inset 0 1px rgba(255, 255, 255, .2);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(255, 152, 0, .15), inset 0 1px rgba(255, 255, 255, .3);
  }
}

.hero-module__qRpCMq__buttons {
  gap: 15px;
  margin-top: 20px;
  display: flex;
}

.hero-module__qRpCMq__btnView, .hero-module__qRpCMq__btnAdd, .hero-module__qRpCMq__btnInCart {
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.hero-module__qRpCMq__btnView {
  color: #333;
  background: none;
  border: 2px solid #ddd;
}

.hero-module__qRpCMq__btnView:hover {
  color: #daa520;
  border-color: #daa520;
}

.hero-module__qRpCMq__btnAdd {
  color: #fff;
  background: #daa520;
}

.hero-module__qRpCMq__btnAdd:hover:not(:disabled) {
  background: #b8860b;
}

.hero-module__qRpCMq__btnAdd:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.hero-module__qRpCMq__btnInCart {
  color: #fff;
  background: #28a745;
  border: 2px solid #28a745;
}

.hero-module__qRpCMq__btnInCart:hover {
  background: #218838;
  border-color: #218838;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, .3);
}

.hero-module__qRpCMq__imageSection {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-module__qRpCMq__productImage {
  object-fit: contain;
  border-radius: 12px;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  transition: transform .3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

.hero-module__qRpCMq__productImage:hover {
  transform: scale(1.05);
}

.hero-module__qRpCMq__prev, .hero-module__qRpCMq__next {
  color: #daa520;
  cursor: pointer;
  z-index: 5;
  background: rgba(255, 255, 255, .9);
  border: 2px solid #daa520;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-module__qRpCMq__prev {
  left: 30px;
}

.hero-module__qRpCMq__next {
  right: 30px;
}

.hero-module__qRpCMq__prev:hover, .hero-module__qRpCMq__next:hover {
  color: #fff;
  background: #daa520;
}

.hero-module__qRpCMq__dots {
  z-index: 5;
  gap: 12px;
  display: flex;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-module__qRpCMq__dot {
  cursor: pointer;
  background: #ddd;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: all .3s;
}

.hero-module__qRpCMq__dot.hero-module__qRpCMq__active {
  background: #daa520;
  transform: scale(1.2);
}

.hero-module__qRpCMq__dot:hover:not(.hero-module__qRpCMq__active) {
  background: #bbb;
}

.hero-module__qRpCMq__empty {
  text-align: center;
  width: 100%;
}

.hero-module__qRpCMq__empty h1 {
  color: #333;
  margin: 0 0 20px;
  font-size: 3rem;
  font-weight: 800;
}

.hero-module__qRpCMq__empty p {
  color: #666;
  margin: 0;
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .hero-module__qRpCMq__container {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    padding: 40px;
  }

  .hero-module__qRpCMq__content {
    flex-direction: column;
    flex: 1;
    justify-content: center;
    max-width: 100%;
    margin-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .hero-module__qRpCMq__storeName {
    margin-bottom: 20px;
    font-size: 2.5rem;
  }

  .hero-module__qRpCMq__productName {
    font-size: 2rem;
  }

  .hero-module__qRpCMq__imageSection {
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hero-module__qRpCMq__productImage {
    max-height: 400px;
  }

  .hero-module__qRpCMq__stockWarning {
    padding: 8px 14px;
    font-size: .85rem;
  }
}

@media (max-width: 768px) {
  .hero-module__qRpCMq__container {
    justify-content: flex-start;
    gap: 20px;
    height: 100vh;
    padding: 20px;
  }

  .hero-module__qRpCMq__content {
    flex: none;
    margin-bottom: 0;
  }

  .hero-module__qRpCMq__storeName {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }

  .hero-module__qRpCMq__productName {
    font-size: 1.8rem;
  }

  .hero-module__qRpCMq__currentPrice {
    font-size: 2.2rem;
  }

  .hero-module__qRpCMq__buttons {
    flex-direction: column;
  }

  .hero-module__qRpCMq__btnView, .hero-module__qRpCMq__btnAdd, .hero-module__qRpCMq__btnInCart {
    width: 100%;
  }

  .hero-module__qRpCMq__imageSection {
    flex: none;
  }

  .hero-module__qRpCMq__productImage {
    max-height: 300px;
  }

  .hero-module__qRpCMq__prev, .hero-module__qRpCMq__next {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .hero-module__qRpCMq__prev {
    left: 20px;
  }

  .hero-module__qRpCMq__next {
    right: 20px;
  }

  .hero-module__qRpCMq__dots {
    bottom: 30px;
  }

  .hero-module__qRpCMq__stockWarning {
    text-align: center;
    flex-direction: column;
    gap: 4px;
    padding: 8px 12px;
    font-size: .8rem;
  }
}

@media (max-width: 480px) {
  .hero-module__qRpCMq__container {
    justify-content: flex-start;
    gap: 15px;
    height: 100vh;
    padding: 15px;
  }

  .hero-module__qRpCMq__content {
    flex: none;
    margin-bottom: 0;
  }

  .hero-module__qRpCMq__storeName {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .hero-module__qRpCMq__productName {
    font-size: 1.6rem;
  }

  .hero-module__qRpCMq__currentPrice {
    font-size: 2rem;
  }

  .hero-module__qRpCMq__btnView, .hero-module__qRpCMq__btnAdd, .hero-module__qRpCMq__btnInCart {
    padding: 12px 24px;
    font-size: .9rem;
  }

  .hero-module__qRpCMq__imageSection {
    flex: none;
  }

  .hero-module__qRpCMq__productImage {
    max-height: 220px;
  }

  .hero-module__qRpCMq__prev, .hero-module__qRpCMq__next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .hero-module__qRpCMq__prev {
    left: 15px;
  }

  .hero-module__qRpCMq__next {
    right: 15px;
  }

  .hero-module__qRpCMq__dots {
    gap: 8px;
    bottom: 20px;
  }

  .hero-module__qRpCMq__dot {
    width: 10px;
    height: 10px;
  }

  .hero-module__qRpCMq__stockWarning {
    padding: 6px 10px;
    font-size: .75rem;
  }
}

.hero-module__qRpCMq__btnView:focus, .hero-module__qRpCMq__btnAdd:focus, .hero-module__qRpCMq__btnInCart:focus, .hero-module__qRpCMq__prev:focus, .hero-module__qRpCMq__next:focus, .hero-module__qRpCMq__dot:focus {
  outline-offset: 2px;
  outline: 3px solid rgba(218, 165, 32, .5);
}

@media (prefers-reduced-motion: reduce) {
  .hero-module__qRpCMq__spinner, .hero-module__qRpCMq__productImage:hover, .hero-module__qRpCMq__stockWarning {
    animation: none !important;
    transform: none !important;
  }

  .hero-module__qRpCMq__backgroundImage, .hero-module__qRpCMq__productImage, .hero-module__qRpCMq__btnView, .hero-module__qRpCMq__btnAdd, .hero-module__qRpCMq__btnInCart, .hero-module__qRpCMq__prev, .hero-module__qRpCMq__next, .hero-module__qRpCMq__dot {
    transition: none !important;
  }
}

@media (prefers-contrast: high) {
  .hero-module__qRpCMq__overlay {
    background: rgba(255, 255, 255, .98) !important;
  }

  .hero-module__qRpCMq__storeName, .hero-module__qRpCMq__productName {
    color: #000 !important;
  }

  .hero-module__qRpCMq__productDescription {
    color: #333 !important;
  }

  .hero-module__qRpCMq__btnView {
    color: #000 !important;
    border-color: #000 !important;
  }

  .hero-module__qRpCMq__btnAdd {
    background: #b8860b !important;
  }

  .hero-module__qRpCMq__btnInCart {
    background: #218838 !important;
    border-color: #218838 !important;
  }

  .hero-module__qRpCMq__prev, .hero-module__qRpCMq__next {
    color: #b8860b !important;
    border-color: #b8860b !important;
  }

  .hero-module__qRpCMq__dot.hero-module__qRpCMq__active {
    background: #b8860b !important;
  }

  .hero-module__qRpCMq__stockWarning {
    color: #000 !important;
    background: rgba(255, 152, 0, .2) !important;
    border-color: #e65100 !important;
  }
}

/* [project]/_Pages/Main/contenido/Componentes/categorias/categorias.module.css [app-client] (css) */
.categorias-module__lAOlIG__categoriasSection {
  background: #fff;
  padding: 80px 0;
  position: relative;
}

.categorias-module__lAOlIG__container {
  box-sizing: border-box;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.categorias-module__lAOlIG__loading {
  color: #b8860b;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 200px;
  display: flex;
}

.categorias-module__lAOlIG__loading ion-icon {
  font-size: 3rem;
  animation: 2s ease-in-out infinite categorias-module__lAOlIG__sparkle;
}

.categorias-module__lAOlIG__loading p {
  color: #6b4423;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

@keyframes categorias-module__lAOlIG__sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.1);
  }
}

.categorias-module__lAOlIG__sectionHeader {
  text-align: center;
  margin-bottom: 50px;
}

.categorias-module__lAOlIG__sectionTitle {
  color: #5a3317;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #5a3317, #b8860b);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  font-size: 2.8rem;
  font-weight: 800;
  display: flex;
}

.categorias-module__lAOlIG__sectionTitle ion-icon {
  color: #b8860b;
  -webkit-text-fill-color: #b8860b;
  background: none;
  font-size: 3rem;
  animation: 3s ease-in-out infinite categorias-module__lAOlIG__sparkle;
}

.categorias-module__lAOlIG__sectionDescription {
  color: #6b4423;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 400;
}

.categorias-module__lAOlIG__contadorResultados {
  background: linear-gradient(135deg, rgba(184, 134, 11, .05), rgba(90, 51, 23, .05));
  border: 1px solid rgba(184, 134, 11, .2);
  border-radius: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px;
  display: flex;
}

.categorias-module__lAOlIG__contadorInfo {
  color: #6b4423;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
}

.categorias-module__lAOlIG__contadorInfo ion-icon {
  color: #b8860b;
  font-size: 1.3rem;
}

.categorias-module__lAOlIG__resetBtn {
  color: #b8860b;
  cursor: pointer;
  background: rgba(184, 134, 11, .1);
  border: 2px solid #b8860b;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.categorias-module__lAOlIG__resetBtn:hover {
  color: #fff;
  background: #b8860b;
  transform: translateY(-2px);
}

.categorias-module__lAOlIG__resetBtn ion-icon {
  font-size: 1.1rem;
}

.categorias-module__lAOlIG__filtros {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  display: flex;
}

.categorias-module__lAOlIG__filtroBtn {
  color: #b8860b;
  cursor: pointer;
  background: none;
  border: 2px solid #b8860b;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.categorias-module__lAOlIG__filtroBtn:before {
  content: "";
  z-index: -1;
  background: #b8860b;
  width: 100%;
  height: 100%;
  transition: left .4s;
  position: absolute;
  top: 0;
  left: -100%;
}

.categorias-module__lAOlIG__filtroBtn:hover:before, .categorias-module__lAOlIG__filtroBtn.categorias-module__lAOlIG__active:before {
  left: 0;
}

.categorias-module__lAOlIG__filtroBtn:hover, .categorias-module__lAOlIG__filtroBtn.categorias-module__lAOlIG__active {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.categorias-module__lAOlIG__filtroBtn ion-icon {
  font-size: 1.2rem;
}

.categorias-module__lAOlIG__contador {
  background: rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 2px 8px;
  font-size: .85rem;
  font-weight: 700;
}

.categorias-module__lAOlIG__filtroBtn.categorias-module__lAOlIG__active .categorias-module__lAOlIG__contador {
  background: rgba(255, 255, 255, .3);
}

.categorias-module__lAOlIG__categoriasGrid {
  box-sizing: border-box;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  min-height: 400px;
  margin-bottom: 40px;
  display: grid;
}

@media (min-width: 1200px) {
  .categorias-module__lAOlIG__categoriasGrid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto 40px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .categorias-module__lAOlIG__categoriasGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .categorias-module__lAOlIG__categoriasGrid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto 40px;
  }
}

.categorias-module__lAOlIG__categoriaCard {
  height: -moz-fit-content;
  height: fit-content;
  color: inherit;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid rgba(184, 134, 11, .1);
  border-radius: 20px;
  width: 100%;
  text-decoration: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  animation: .6s ease-out categorias-module__lAOlIG__fadeInUp;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 134, 11, .1);
}

.categorias-module__lAOlIG__categoriaCard:hover {
  border-color: rgba(184, 134, 11, .3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(184, 134, 11, .2);
}

.categorias-module__lAOlIG__cardImage {
  box-sizing: border-box;
  background: #f8f9fa;
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.categorias-module__lAOlIG__cardImage img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

.categorias-module__lAOlIG__categoriaCard:hover .categorias-module__lAOlIG__cardImage img {
  transform: scale(1.1);
}

.categorias-module__lAOlIG__imagePlaceholder {
  color: #b8860b;
  background: linear-gradient(135deg, rgba(184, 134, 11, .1), rgba(90, 51, 23, .1));
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.categorias-module__lAOlIG__imagePlaceholder ion-icon {
  opacity: .6;
  font-size: 4rem;
}

.categorias-module__lAOlIG__cardOverlay {
  opacity: 0;
  color: #fff;
  background: rgba(90, 51, 23, .85);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.categorias-module__lAOlIG__categoriaCard:hover .categorias-module__lAOlIG__cardOverlay {
  opacity: 1;
}

.categorias-module__lAOlIG__cardOverlay ion-icon {
  font-size: 2.5rem;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  transform: scale(.8);
}

.categorias-module__lAOlIG__categoriaCard:hover .categorias-module__lAOlIG__cardOverlay ion-icon {
  transform: scale(1);
}

.categorias-module__lAOlIG__cardOverlay span {
  font-size: 1rem;
  font-weight: 600;
}

.categorias-module__lAOlIG__cardContent {
  box-sizing: border-box;
  background: #fff;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
  padding: 20px;
  display: flex;
}

.categorias-module__lAOlIG__cardTitle {
  color: #5a3317;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.6rem;
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.categorias-module__lAOlIG__cardDescription {
  color: #6b4423;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
  min-height: 2.8rem;
  margin: 0 0 14px;
  font-size: .9rem;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.categorias-module__lAOlIG__cardStats {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: .8rem;
  display: flex;
}

.categorias-module__lAOlIG__productCount {
  color: #b8860b;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  display: flex;
}

.categorias-module__lAOlIG__productCount ion-icon {
  font-size: .85rem;
}

.categorias-module__lAOlIG__subcategory {
  color: #999;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  display: flex;
}

.categorias-module__lAOlIG__subcategory ion-icon {
  font-size: .85rem;
}

.categorias-module__lAOlIG__paginacion {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0 20px;
  display: flex;
}

.categorias-module__lAOlIG__paginaBtn {
  color: #6b4423;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.categorias-module__lAOlIG__paginaBtn:before {
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, #b8860b, #daa520);
  width: 100%;
  height: 100%;
  transition: left .3s;
  position: absolute;
  top: 0;
  left: -100%;
}

.categorias-module__lAOlIG__paginaBtn:hover:not(.categorias-module__lAOlIG__disabled):before {
  left: 0;
}

.categorias-module__lAOlIG__paginaBtn:hover:not(.categorias-module__lAOlIG__disabled) {
  color: #fff;
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .25);
}

.categorias-module__lAOlIG__paginaBtn.categorias-module__lAOlIG__disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

.categorias-module__lAOlIG__paginaBtn ion-icon {
  font-size: 1.2rem;
  transition: transform .3s;
}

.categorias-module__lAOlIG__paginaBtn:hover:not(.categorias-module__lAOlIG__disabled) ion-icon {
  transform: scale(1.1);
}

.categorias-module__lAOlIG__paginaNumeros {
  align-items: center;
  gap: 8px;
  display: flex;
}

.categorias-module__lAOlIG__paginaNumero {
  color: #6b4423;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.categorias-module__lAOlIG__paginaNumero:before {
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, #b8860b, #daa520);
  width: 100%;
  height: 100%;
  transition: left .3s;
  position: absolute;
  top: 0;
  left: -100%;
}

.categorias-module__lAOlIG__paginaNumero:hover:before, .categorias-module__lAOlIG__paginaNumero.categorias-module__lAOlIG__active:before {
  left: 0;
}

.categorias-module__lAOlIG__paginaNumero:hover, .categorias-module__lAOlIG__paginaNumero.categorias-module__lAOlIG__active {
  color: #fff;
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .25);
}

.categorias-module__lAOlIG__paginaNumero.categorias-module__lAOlIG__active {
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, .3);
}

.categorias-module__lAOlIG__ellipsis {
  color: #9ca3af;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  display: flex;
}

.categorias-module__lAOlIG__ellipsis ion-icon {
  font-size: 1.5rem;
}

.categorias-module__lAOlIG__paginacionInfo {
  background: rgba(184, 134, 11, .05);
  border: 1px solid rgba(184, 134, 11, .1);
  border-radius: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 16px 20px;
  display: flex;
}

.categorias-module__lAOlIG__infoTexto {
  color: #6b4423;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  display: flex;
}

.categorias-module__lAOlIG__infoTexto ion-icon {
  color: #b8860b;
  font-size: 1.2rem;
}

.categorias-module__lAOlIG__infoTexto p {
  margin: 0;
  font-size: 1rem;
}

.categorias-module__lAOlIG__navegacionRapida {
  gap: 12px;
  display: flex;
}

.categorias-module__lAOlIG__irPrimera, .categorias-module__lAOlIG__irUltima {
  color: #b8860b;
  cursor: pointer;
  background: rgba(184, 134, 11, .1);
  border: 1px solid rgba(184, 134, 11, .3);
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.categorias-module__lAOlIG__irPrimera:hover:not(:disabled), .categorias-module__lAOlIG__irUltima:hover:not(:disabled) {
  color: #fff;
  background: #b8860b;
  transform: translateY(-1px);
}

.categorias-module__lAOlIG__irPrimera:disabled, .categorias-module__lAOlIG__irUltima:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.categorias-module__lAOlIG__irPrimera ion-icon, .categorias-module__lAOlIG__irUltima ion-icon {
  font-size: 1rem;
}

.categorias-module__lAOlIG__emptyState {
  text-align: center;
  color: #6b4423;
  padding: 80px 20px;
}

.categorias-module__lAOlIG__emptyIcon ion-icon {
  color: #b8860b;
  opacity: .6;
  margin-bottom: 24px;
  font-size: 5rem;
}

.categorias-module__lAOlIG__emptyState h3 {
  color: #5a3317;
  margin: 0 0 16px;
  font-size: 1.8rem;
  font-weight: 700;
}

.categorias-module__lAOlIG__emptyState p {
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

.categorias-module__lAOlIG__resetEmptyBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border: none;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.categorias-module__lAOlIG__resetEmptyBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, .4);
}

.categorias-module__lAOlIG__resetEmptyBtn ion-icon {
  font-size: 1.2rem;
}

.categorias-module__lAOlIG__estadisticas {
  background: #fff;
  border: 2px solid rgba(184, 134, 11, .1);
  border-radius: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 40px;
  display: grid;
}

.categorias-module__lAOlIG__estadItem {
  text-align: left;
  align-items: center;
  gap: 16px;
  display: flex;
}

.categorias-module__lAOlIG__estadIcon {
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.categorias-module__lAOlIG__estadIcon ion-icon {
  color: #fff;
  font-size: 1.8rem;
}

.categorias-module__lAOlIG__estadInfo {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.categorias-module__lAOlIG__estadNumber {
  color: #5a3317;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.categorias-module__lAOlIG__estadLabel {
  color: #6b4423;
  font-size: 1rem;
  font-weight: 500;
}

@keyframes categorias-module__lAOlIG__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.categorias-module__lAOlIG__categoriaCardDelay1 {
  animation-delay: .1s;
}

.categorias-module__lAOlIG__categoriaCardDelay2 {
  animation-delay: .2s;
}

.categorias-module__lAOlIG__categoriaCardDelay3 {
  animation-delay: .3s;
}

.categorias-module__lAOlIG__categoriaCardDelay4 {
  animation-delay: .4s;
}

.categorias-module__lAOlIG__categoriaCardDelay5 {
  animation-delay: .5s;
}

.categorias-module__lAOlIG__categoriaCardDelay6 {
  animation-delay: .6s;
}

@media (max-width: 1024px) {
  .categorias-module__lAOlIG__sectionTitle {
    font-size: 2.4rem;
  }

  .categorias-module__lAOlIG__sectionTitle ion-icon {
    font-size: 2.6rem;
  }

  .categorias-module__lAOlIG__paginacion {
    gap: 15px;
  }

  .categorias-module__lAOlIG__paginaBtn {
    padding: 10px 16px;
    font-size: .9rem;
  }

  .categorias-module__lAOlIG__contadorResultados {
    text-align: center;
    flex-direction: column;
  }

  .categorias-module__lAOlIG__navegacionRapida {
    justify-content: center;
  }

  .categorias-module__lAOlIG__cardImage {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .categorias-module__lAOlIG__categoriasSection {
    padding: 60px 0;
  }

  .categorias-module__lAOlIG__container {
    max-width: 95%;
    padding: 0 15px;
  }

  .categorias-module__lAOlIG__sectionHeader {
    margin-bottom: 40px;
  }

  .categorias-module__lAOlIG__sectionTitle {
    flex-direction: column;
    gap: 12px;
    font-size: 2rem;
  }

  .categorias-module__lAOlIG__sectionTitle ion-icon {
    font-size: 2.2rem;
  }

  .categorias-module__lAOlIG__sectionDescription {
    font-size: 1.1rem;
  }

  .categorias-module__lAOlIG__filtros {
    gap: 12px;
    margin-bottom: 30px;
  }

  .categorias-module__lAOlIG__filtroBtn {
    padding: 12px 20px;
    font-size: .9rem;
  }

  .categorias-module__lAOlIG__contador {
    font-size: .8rem;
  }

  .categorias-module__lAOlIG__cardImage {
    height: 200px;
  }

  .categorias-module__lAOlIG__cardContent {
    min-height: 110px;
    padding: 18px;
  }

  .categorias-module__lAOlIG__cardTitle {
    font-size: 1.15rem;
  }

  .categorias-module__lAOlIG__estadisticas {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .categorias-module__lAOlIG__estadItem {
    text-align: center;
    justify-content: center;
  }

  .categorias-module__lAOlIG__paginacion {
    flex-direction: column;
    gap: 20px;
  }

  .categorias-module__lAOlIG__paginaNumeros {
    order: -1;
  }

  .categorias-module__lAOlIG__paginaBtn {
    justify-content: center;
    width: 100%;
    max-width: 200px;
  }

  .categorias-module__lAOlIG__paginacionInfo {
    text-align: center;
    flex-direction: column;
  }

  .categorias-module__lAOlIG__navegacionRapida {
    justify-content: center;
    width: 100%;
  }

  .categorias-module__lAOlIG__irPrimera, .categorias-module__lAOlIG__irUltima {
    flex: 1;
    justify-content: center;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .categorias-module__lAOlIG__categoriasSection {
    padding: 40px 0;
  }

  .categorias-module__lAOlIG__container {
    max-width: 100%;
    padding: 0 10px;
  }

  .categorias-module__lAOlIG__sectionTitle {
    font-size: 1.8rem;
  }

  .categorias-module__lAOlIG__sectionTitle ion-icon {
    font-size: 2rem;
  }

  .categorias-module__lAOlIG__filtros {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .categorias-module__lAOlIG__filtroBtn {
    justify-content: center;
    width: 100%;
    max-width: 280px;
    padding: 12px 24px;
  }

  .categorias-module__lAOlIG__categoriasGrid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 350px;
    margin: 0 auto 30px;
  }

  .categorias-module__lAOlIG__categoriaCard {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .categorias-module__lAOlIG__cardImage {
    height: 180px;
  }

  .categorias-module__lAOlIG__cardContent {
    min-height: 100px;
    padding: 16px;
  }

  .categorias-module__lAOlIG__cardTitle {
    min-height: 2.2rem;
    font-size: 1.1rem;
  }

  .categorias-module__lAOlIG__cardDescription {
    min-height: 2.6rem;
    font-size: .85rem;
  }

  .categorias-module__lAOlIG__cardStats {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: .75rem;
  }

  .categorias-module__lAOlIG__estadIcon {
    width: 50px;
    height: 50px;
  }

  .categorias-module__lAOlIG__estadIcon ion-icon {
    font-size: 1.5rem;
  }

  .categorias-module__lAOlIG__estadNumber {
    font-size: 1.6rem;
  }

  .categorias-module__lAOlIG__paginaNumeros {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .categorias-module__lAOlIG__paginaNumero {
    width: 40px;
    height: 40px;
    font-size: .9rem;
  }

  .categorias-module__lAOlIG__ellipsis {
    width: 40px;
    height: 40px;
  }

  .categorias-module__lAOlIG__contadorResultados {
    margin-bottom: 25px;
    padding: 16px;
  }

  .categorias-module__lAOlIG__contadorInfo {
    font-size: 1rem;
  }

  .categorias-module__lAOlIG__resetBtn {
    padding: 8px 14px;
    font-size: .85rem;
  }

  .categorias-module__lAOlIG__infoTexto {
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }

  .categorias-module__lAOlIG__infoTexto p {
    font-size: .9rem;
  }
}

@media (max-width: 360px) {
  .categorias-module__lAOlIG__container {
    padding: 0 8px;
  }

  .categorias-module__lAOlIG__categoriasGrid {
    gap: 14px;
    max-width: 320px;
  }

  .categorias-module__lAOlIG__categoriaCard {
    max-width: 320px;
  }

  .categorias-module__lAOlIG__cardImage {
    height: 160px;
  }

  .categorias-module__lAOlIG__sectionTitle {
    font-size: 1.6rem;
  }

  .categorias-module__lAOlIG__filtroBtn {
    max-width: 260px;
    padding: 10px 20px;
    font-size: .85rem;
  }
}

.categorias-module__lAOlIG__filtroBtn:focus, .categorias-module__lAOlIG__paginaBtn:focus, .categorias-module__lAOlIG__paginaNumero:focus, .categorias-module__lAOlIG__resetBtn:focus, .categorias-module__lAOlIG__resetEmptyBtn:focus, .categorias-module__lAOlIG__irPrimera:focus, .categorias-module__lAOlIG__irUltima:focus {
  outline-offset: 2px;
  outline: 2px solid #b8860b;
}

.categorias-module__lAOlIG__categoriasGridLoading {
  opacity: .7;
  pointer-events: none;
}

@media (hover: none) and (pointer: coarse) {
  .categorias-module__lAOlIG__categoriaCard, .categorias-module__lAOlIG__paginaBtn, .categorias-module__lAOlIG__paginaNumero {
    min-width: 44px;
    min-height: 44px;
  }

  .categorias-module__lAOlIG__filtroBtn {
    min-height: 44px;
    padding: 12px 24px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .categorias-module__lAOlIG__categoriaCard:hover {
    transform: translateY(-10px)scale(1.02);
    box-shadow: 0 25px 50px rgba(184, 134, 11, .25);
  }

  .categorias-module__lAOlIG__filtroBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, .4);
  }

  .categorias-module__lAOlIG__paginaBtn:hover:not(.categorias-module__lAOlIG__disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, .3);
  }

  .categorias-module__lAOlIG__paginaNumero:hover {
    transform: translateY(-2px)scale(1.05);
    box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .categorias-module__lAOlIG__categoriaCard, .categorias-module__lAOlIG__filtroBtn, .categorias-module__lAOlIG__paginaBtn, .categorias-module__lAOlIG__paginaNumero, .categorias-module__lAOlIG__resetBtn, .categorias-module__lAOlIG__resetEmptyBtn, .categorias-module__lAOlIG__irPrimera, .categorias-module__lAOlIG__irUltima {
    transition: none;
    animation: none;
  }

  .categorias-module__lAOlIG__cardImage img, .categorias-module__lAOlIG__cardOverlay {
    transition: none;
  }

  .categorias-module__lAOlIG__loading ion-icon, .categorias-module__lAOlIG__sectionTitle ion-icon, .categorias-module__lAOlIG__categoriaCard, .categorias-module__lAOlIG__categoriaCardDelay1, .categorias-module__lAOlIG__categoriaCardDelay2, .categorias-module__lAOlIG__categoriaCardDelay3, .categorias-module__lAOlIG__categoriaCardDelay4, .categorias-module__lAOlIG__categoriaCardDelay5, .categorias-module__lAOlIG__categoriaCardDelay6 {
    animation: none;
  }
}

@media print {
  .categorias-module__lAOlIG__categoriasSection {
    color: #000;
    background: #fff;
  }

  .categorias-module__lAOlIG__filtros, .categorias-module__lAOlIG__paginacion, .categorias-module__lAOlIG__paginacionInfo, .categorias-module__lAOlIG__contadorResultados {
    display: none;
  }

  .categorias-module__lAOlIG__categoriaCard {
    box-shadow: none;
    break-inside: avoid;
    background: #fff;
    border: 1px solid #000;
    margin-bottom: 20px;
  }

  .categorias-module__lAOlIG__cardContent {
    background: #fff;
  }

  .categorias-module__lAOlIG__cardOverlay {
    display: none;
  }

  .categorias-module__lAOlIG__estadisticas {
    background: #fff;
    border: 1px solid #000;
  }
}

.categorias-module__lAOlIG__categoriaCard.categorias-module__lAOlIG__destacada {
  background: linear-gradient(135deg, #fff, rgba(184, 134, 11, .05));
  border: 3px solid #b8860b;
}

.categorias-module__lAOlIG__categoriaCard.categorias-module__lAOlIG__destacada:before {
  content: "";
  z-index: 2;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.categorias-module__lAOlIG__categoriaCard.categorias-module__lAOlIG__destacada:after {
  content: "⭐";
  z-index: 3;
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.categorias-module__lAOlIG__skeletonCard {
  background: #f0f0f0;
  border-radius: 20px;
  height: 400px;
  animation: 1.5s ease-in-out infinite categorias-module__lAOlIG__skeletonLoading;
  position: relative;
  overflow: hidden;
}

.categorias-module__lAOlIG__skeletonCard:before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .4), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  animation: 1.5s ease-in-out infinite categorias-module__lAOlIG__skeletonShimmer;
  position: absolute;
  top: 0;
  left: -100%;
}

@keyframes categorias-module__lAOlIG__skeletonLoading {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .7;
  }
}

@keyframes categorias-module__lAOlIG__skeletonShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.categorias-module__lAOlIG__textTruncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.categorias-module__lAOlIG__textClamp1 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.categorias-module__lAOlIG__textClamp2 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.categorias-module__lAOlIG__textClamp3 {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.categorias-module__lAOlIG__errorState {
  text-align: center;
  color: #dc3545;
  background: #fff;
  padding: 60px 20px;
}

.categorias-module__lAOlIG__errorState ion-icon {
  opacity: .7;
  margin-bottom: 20px;
  font-size: 4rem;
}

.categorias-module__lAOlIG__errorState h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 600;
}

.categorias-module__lAOlIG__errorState p {
  color: #6c757d;
  margin: 0 0 20px;
  font-size: 1rem;
}

.categorias-module__lAOlIG__retryBtn {
  color: #fff;
  cursor: pointer;
  background: #dc3545;
  border: none;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
}

.categorias-module__lAOlIG__retryBtn:hover {
  background: #c82333;
  transform: translateY(-2px);
}

.categorias-module__lAOlIG__fadeInUpStagger {
  opacity: 0;
  animation: .6s cubic-bezier(.4, 0, .2, 1) forwards categorias-module__lAOlIG__fadeInUpStagger;
  transform: translateY(30px);
}

@keyframes categorias-module__lAOlIG__fadeInUpStagger {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.categorias-module__lAOlIG__srOnly {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.categorias-module__lAOlIG__loadingButton {
  pointer-events: none;
  opacity: .7;
  position: relative;
}

.categorias-module__lAOlIG__loadingButton:after {
  content: "";
  border: 2px solid #fff;
  border-top-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  animation: 1s linear infinite categorias-module__lAOlIG__spinLoading;
  position: absolute;
  top: 50%;
  left: 50%;
}

@keyframes categorias-module__lAOlIG__spinLoading {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.categorias-module__lAOlIG__tooltip {
  cursor: help;
  position: relative;
}

.categorias-module__lAOlIG__tooltip:before {
  content: attr(data-tooltip);
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  background: rgba(0, 0, 0, .9);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: .8rem;
  transition: all .3s;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
}

.categorias-module__lAOlIG__tooltip:after {
  content: "";
  opacity: 0;
  visibility: hidden;
  border: 5px solid rgba(0, 0, 0, 0);
  border-top-color: rgba(0, 0, 0, .9);
  transition: all .3s;
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
}

.categorias-module__lAOlIG__tooltip:hover:before, .categorias-module__lAOlIG__tooltip:hover:after {
  opacity: 1;
  visibility: visible;
}

.categorias-module__lAOlIG__categoriaCard, .categorias-module__lAOlIG__cardImage img {
  will-change: transform;
}

.categorias-module__lAOlIG__paginaBtn, .categorias-module__lAOlIG__paginaNumero, .categorias-module__lAOlIG__filtroBtn {
  will-change: transform, background-color;
}

.categorias-module__lAOlIG__categoriaCard:active {
  transform: translateY(-8px)scale(.98);
}

.categorias-module__lAOlIG__filtroBtn:active, .categorias-module__lAOlIG__paginaBtn:active, .categorias-module__lAOlIG__paginaNumero:active {
  transform: translateY(-1px)scale(.98);
}

@media (hover: none) and (pointer: coarse) {
  .categorias-module__lAOlIG__categoriaCard:hover, .categorias-module__lAOlIG__filtroBtn:hover, .categorias-module__lAOlIG__paginaBtn:hover, .categorias-module__lAOlIG__paginaNumero:hover {
    transform: none;
  }

  .categorias-module__lAOlIG__categoriaCard:active {
    transition: transform .1s;
    transform: scale(.98);
  }

  .categorias-module__lAOlIG__filtroBtn:active, .categorias-module__lAOlIG__paginaBtn:active, .categorias-module__lAOlIG__paginaNumero:active {
    transition: transform .1s;
    transform: scale(.96);
  }
}

.categorias-module__lAOlIG__pulseAnimation {
  animation: 2s ease-in-out infinite categorias-module__lAOlIG__pulseGlow;
}

@keyframes categorias-module__lAOlIG__pulseGlow {
  0%, 100% {
    box-shadow: 0 0 rgba(184, 134, 11, .4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(184, 134, 11, 0);
  }
}

.categorias-module__lAOlIG__categoriasGridSkeleton {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  display: grid;
}

.categorias-module__lAOlIG__categoriasGridSkeleton .categorias-module__lAOlIG__skeletonCard {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%) 0 0 / 200% 100%;
  animation: 1.5s infinite categorias-module__lAOlIG__skeletonWave;
}

@keyframes categorias-module__lAOlIG__skeletonWave {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@media (prefers-contrast: high) {
  .categorias-module__lAOlIG__categoriasSection, .categorias-module__lAOlIG__categoriaCard, .categorias-module__lAOlIG__contadorResultados, .categorias-module__lAOlIG__estadisticas {
    background: #fff;
    border: 2px solid #000;
  }

  .categorias-module__lAOlIG__cardContent {
    background: #fff;
  }

  .categorias-module__lAOlIG__filtroBtn, .categorias-module__lAOlIG__paginaBtn, .categorias-module__lAOlIG__paginaNumero {
    color: #000;
    background: #fff;
    border: 2px solid #000;
  }

  .categorias-module__lAOlIG__filtroBtn.categorias-module__lAOlIG__active, .categorias-module__lAOlIG__paginaNumero.categorias-module__lAOlIG__active {
    color: #fff;
    background: #000;
  }

  .categorias-module__lAOlIG__cardTitle {
    color: #000;
  }

  .categorias-module__lAOlIG__cardDescription {
    color: #333;
  }

  .categorias-module__lAOlIG__sectionTitle {
    color: #000;
    -webkit-text-fill-color: #000;
    background: none;
  }

  .categorias-module__lAOlIG__sectionTitle ion-icon {
    color: #000;
    -webkit-text-fill-color: #000;
  }
}

@media (max-width: 320px) {
  .categorias-module__lAOlIG__container {
    padding: 0 5px;
  }

  .categorias-module__lAOlIG__categoriasGrid {
    gap: 12px;
    max-width: 300px;
  }

  .categorias-module__lAOlIG__categoriaCard {
    max-width: 300px;
  }

  .categorias-module__lAOlIG__cardImage {
    height: 150px;
  }

  .categorias-module__lAOlIG__cardContent {
    padding: 14px;
  }

  .categorias-module__lAOlIG__sectionTitle {
    font-size: 1.4rem;
  }

  .categorias-module__lAOlIG__filtroBtn {
    max-width: 240px;
    padding: 8px 16px;
    font-size: .8rem;
  }

  .categorias-module__lAOlIG__paginaNumero {
    width: 36px;
    height: 36px;
    font-size: .8rem;
  }
}

/* [project]/_Pages/Main/contenido/Componentes/destacados/destacados.module.css [app-client] (css) */
.destacados-module__PmNSbq__destacadosSection {
  background: #fff;
  padding: 80px 0;
  position: relative;
}

.destacados-module__PmNSbq__container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.destacados-module__PmNSbq__loading {
  color: #b8860b;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 200px;
  display: flex;
}

.destacados-module__PmNSbq__loading ion-icon {
  font-size: 3rem;
  animation: 2s ease-in-out infinite destacados-module__PmNSbq__sparkle;
}

.destacados-module__PmNSbq__loading p {
  color: #6b4423;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

@keyframes destacados-module__PmNSbq__sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.1);
  }
}

.destacados-module__PmNSbq__sectionHeader {
  text-align: center;
  margin-bottom: 50px;
}

.destacados-module__PmNSbq__sectionTitle {
  color: #5a3317;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #5a3317, #b8860b);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  font-size: 2.8rem;
  font-weight: 800;
  display: flex;
}

.destacados-module__PmNSbq__sectionTitle ion-icon {
  color: #b8860b;
  -webkit-text-fill-color: #b8860b;
  background: none;
  font-size: 3rem;
  animation: 3s ease-in-out infinite destacados-module__PmNSbq__sparkle;
}

.destacados-module__PmNSbq__sectionDescription {
  color: #6b4423;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 400;
}

.destacados-module__PmNSbq__contadorResultados {
  background: linear-gradient(135deg, rgba(184, 134, 11, .05), rgba(90, 51, 23, .05));
  border: 1px solid rgba(184, 134, 11, .2);
  border-radius: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px;
  display: flex;
}

.destacados-module__PmNSbq__contadorInfo {
  color: #6b4423;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
}

.destacados-module__PmNSbq__contadorInfo ion-icon {
  color: #b8860b;
  font-size: 1.3rem;
}

.destacados-module__PmNSbq__resetBtn {
  color: #b8860b;
  cursor: pointer;
  background: rgba(184, 134, 11, .1);
  border: 2px solid #b8860b;
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.destacados-module__PmNSbq__resetBtn:hover {
  color: #fff;
  background: #b8860b;
  transform: translateY(-2px);
}

.destacados-module__PmNSbq__resetBtn ion-icon {
  font-size: 1.1rem;
}

.destacados-module__PmNSbq__filtros {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  display: flex;
}

.destacados-module__PmNSbq__filtroBtn {
  color: #b8860b;
  cursor: pointer;
  background: none;
  border: 2px solid #b8860b;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.destacados-module__PmNSbq__filtroBtn:before {
  content: "";
  z-index: -1;
  background: #b8860b;
  width: 100%;
  height: 100%;
  transition: left .4s;
  position: absolute;
  top: 0;
  left: -100%;
}

.destacados-module__PmNSbq__filtroBtn:hover:before, .destacados-module__PmNSbq__filtroBtn.destacados-module__PmNSbq__active:before {
  left: 0;
}

.destacados-module__PmNSbq__filtroBtn:hover, .destacados-module__PmNSbq__filtroBtn.destacados-module__PmNSbq__active {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.destacados-module__PmNSbq__filtroBtn ion-icon {
  font-size: 1.2rem;
}

.destacados-module__PmNSbq__contador {
  background: rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 2px 8px;
  font-size: .85rem;
  font-weight: 700;
}

.destacados-module__PmNSbq__filtroBtn.destacados-module__PmNSbq__active .destacados-module__PmNSbq__contador {
  background: rgba(255, 255, 255, .3);
}

.destacados-module__PmNSbq__productosGrid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  min-height: 400px;
  margin-bottom: 40px;
  display: grid;
}

@media (min-width: 1200px) {
  .destacados-module__PmNSbq__productosGrid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto 40px;
  }
}

.destacados-module__PmNSbq__productCard {
  background: #fff;
  border: 2px solid rgba(184, 134, 11, .1);
  border-radius: 20px;
  height: -moz-fit-content;
  height: fit-content;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  animation: .6s ease-out destacados-module__PmNSbq__fadeInUp;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 134, 11, .1);
}

.destacados-module__PmNSbq__productCard:hover {
  border-color: rgba(184, 134, 11, .3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(184, 134, 11, .2);
}

.destacados-module__PmNSbq__productLink {
  color: inherit;
  text-decoration: none;
  display: block;
}

.destacados-module__PmNSbq__cardImage {
  background: #f8f9fa;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.destacados-module__PmNSbq__cardImage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.destacados-module__PmNSbq__productCard:hover .destacados-module__PmNSbq__cardImage img {
  transform: scale(1.1);
}

.destacados-module__PmNSbq__badges {
  z-index: 3;
  flex-direction: column;
  gap: 8px;
  display: flex;
  position: absolute;
  top: 15px;
  left: 15px;
}

.destacados-module__PmNSbq__newBadge {
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.destacados-module__PmNSbq__discountBadge {
  color: #fff;
  z-index: 3;
  background: linear-gradient(135deg, #ff4757, #ff3742);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: .8rem;
  font-weight: 700;
  position: absolute;
  top: 15px;
  right: 15px;
  box-shadow: 0 4px 15px rgba(255, 71, 87, .3);
}

.destacados-module__PmNSbq__cardOverlay {
  opacity: 0;
  color: #fff;
  background: rgba(90, 51, 23, .85);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.destacados-module__PmNSbq__productCard:hover .destacados-module__PmNSbq__cardOverlay {
  opacity: 1;
}

.destacados-module__PmNSbq__cardOverlay ion-icon {
  font-size: 2.5rem;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  transform: scale(.8);
}

.destacados-module__PmNSbq__productCard:hover .destacados-module__PmNSbq__cardOverlay ion-icon {
  transform: scale(1);
}

.destacados-module__PmNSbq__cardOverlay span {
  font-size: 1rem;
  font-weight: 600;
}

.destacados-module__PmNSbq__cardContent {
  padding: 20px;
}

.destacados-module__PmNSbq__productName {
  color: #5a3317;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.destacados-module__PmNSbq__productDescription {
  color: #6b4423;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 14px;
  font-size: .9rem;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.destacados-module__PmNSbq__productRating {
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  display: flex;
}

.destacados-module__PmNSbq__stars {
  gap: 2px;
  display: flex;
}

.destacados-module__PmNSbq__stars ion-icon {
  color: gold;
  font-size: 1rem;
}

.destacados-module__PmNSbq__reviewCount {
  color: #999;
  font-size: .85rem;
  font-weight: 500;
}

.destacados-module__PmNSbq__productPrice {
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  display: flex;
}

.destacados-module__PmNSbq__originalPrice {
  color: #999;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: line-through;
}

.destacados-module__PmNSbq__currentPrice {
  color: #b8860b;
  font-size: 1.3rem;
  font-weight: 800;
}

.destacados-module__PmNSbq__productStats {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: .8rem;
  display: flex;
}

.destacados-module__PmNSbq__salesCount {
  color: #b8860b;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  display: flex;
}

.destacados-module__PmNSbq__salesCount ion-icon {
  font-size: .85rem;
}

.destacados-module__PmNSbq__stockStatus {
  align-items: center;
  gap: 4px;
  font-weight: 600;
  display: flex;
}

.destacados-module__PmNSbq__stockStatus ion-icon {
  font-size: .85rem;
}

.destacados-module__PmNSbq__stockStatus ion-icon[name="checkmark-circle-outline"] {
  color: #27ae60;
}

.destacados-module__PmNSbq__stockStatus ion-icon[name="time-outline"] {
  color: #ff9800;
}

.destacados-module__PmNSbq__stockStatus ion-icon[name="close-circle-outline"] {
  color: #e74c3c;
}

.destacados-module__PmNSbq__deliveryWarning {
  color: #e65100;
  background: linear-gradient(135deg, rgba(255, 152, 0, .08), rgba(255, 152, 0, .12));
  border: 1px solid rgba(255, 152, 0, .3);
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 12px;
  font-size: .75rem;
  font-weight: 600;
  animation: 2s ease-in-out infinite destacados-module__PmNSbq__pulseDelivery;
  display: flex;
  box-shadow: 0 2px 8px rgba(255, 152, 0, .1), inset 0 1px rgba(255, 255, 255, .2);
}

.destacados-module__PmNSbq__deliveryWarning ion-icon {
  color: #ff9800;
  flex-shrink: 0;
  font-size: .9rem;
}

.destacados-module__PmNSbq__deliveryWarning span {
  font-size: .75rem;
  line-height: 1.2;
}

@keyframes destacados-module__PmNSbq__pulseDelivery {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 152, 0, .1), inset 0 1px rgba(255, 255, 255, .2);
  }

  50% {
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(255, 152, 0, .15), inset 0 1px rgba(255, 255, 255, .3);
  }
}

.destacados-module__PmNSbq__cardActions {
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 20px;
  display: flex;
}

.destacados-module__PmNSbq__addToCartBtn, .destacados-module__PmNSbq__addedBtn {
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.destacados-module__PmNSbq__addToCartBtn {
  color: #fff;
  background: #daa520;
}

.destacados-module__PmNSbq__addToCartBtn:hover:not(:disabled) {
  background: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 165, 32, .3);
}

.destacados-module__PmNSbq__addToCartBtn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.destacados-module__PmNSbq__addedBtn {
  color: #fff;
  background: #28a745;
  border: 2px solid #28a745;
}

.destacados-module__PmNSbq__addedBtn:hover {
  background: #218838;
  border-color: #218838;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, .3);
}

.destacados-module__PmNSbq__viewBtn {
  color: #fff;
  background: linear-gradient(135deg, #5a3317, #6b4423);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.destacados-module__PmNSbq__viewBtn:hover {
  background: linear-gradient(135deg, #6b4423, #b8860b);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(90, 51, 23, .3);
}

.destacados-module__PmNSbq__viewBtn ion-icon {
  font-size: 1rem;
  transition: transform .3s;
}

.destacados-module__PmNSbq__viewBtn:hover ion-icon {
  transform: translateX(3px);
}

.destacados-module__PmNSbq__paginacion {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0 20px;
  display: flex;
}

.destacados-module__PmNSbq__paginaBtn {
  color: #6b4423;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.destacados-module__PmNSbq__paginaBtn:before {
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, #b8860b, #daa520);
  width: 100%;
  height: 100%;
  transition: left .3s;
  position: absolute;
  top: 0;
  left: -100%;
}

.destacados-module__PmNSbq__paginaBtn:hover:not(.destacados-module__PmNSbq__disabled):before {
  left: 0;
}

.destacados-module__PmNSbq__paginaBtn:hover:not(.destacados-module__PmNSbq__disabled) {
  color: #fff;
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .25);
}

.destacados-module__PmNSbq__paginaBtn.destacados-module__PmNSbq__disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

.destacados-module__PmNSbq__paginaBtn ion-icon {
  font-size: 1.2rem;
  transition: transform .3s;
}

.destacados-module__PmNSbq__paginaBtn:hover:not(.destacados-module__PmNSbq__disabled) ion-icon {
  transform: scale(1.1);
}

.destacados-module__PmNSbq__paginaNumeros {
  align-items: center;
  gap: 8px;
  display: flex;
}

.destacados-module__PmNSbq__paginaNumero {
  color: #6b4423;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.destacados-module__PmNSbq__paginaNumero:before {
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, #b8860b, #daa520);
  width: 100%;
  height: 100%;
  transition: left .3s;
  position: absolute;
  top: 0;
  left: -100%;
}

.destacados-module__PmNSbq__paginaNumero:hover:before, .destacados-module__PmNSbq__paginaNumero.destacados-module__PmNSbq__active:before {
  left: 0;
}

.destacados-module__PmNSbq__paginaNumero:hover, .destacados-module__PmNSbq__paginaNumero.destacados-module__PmNSbq__active {
  color: #fff;
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .25);
}

.destacados-module__PmNSbq__paginaNumero.destacados-module__PmNSbq__active {
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, .3);
}

.destacados-module__PmNSbq__ellipsis {
  color: #9ca3af;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  display: flex;
}

.destacados-module__PmNSbq__ellipsis ion-icon {
  font-size: 1.5rem;
}

.destacados-module__PmNSbq__paginacionInfo {
  background: rgba(184, 134, 11, .05);
  border: 1px solid rgba(184, 134, 11, .1);
  border-radius: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 16px 20px;
  display: flex;
}

.destacados-module__PmNSbq__infoTexto {
  color: #6b4423;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  display: flex;
}

.destacados-module__PmNSbq__infoTexto ion-icon {
  color: #b8860b;
  font-size: 1.2rem;
}

.destacados-module__PmNSbq__infoTexto p {
  margin: 0;
  font-size: 1rem;
}

.destacados-module__PmNSbq__navegacionRapida {
  gap: 12px;
  display: flex;
}

.destacados-module__PmNSbq__irPrimera, .destacados-module__PmNSbq__irUltima {
  color: #b8860b;
  cursor: pointer;
  background: rgba(184, 134, 11, .1);
  border: 1px solid rgba(184, 134, 11, .3);
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.destacados-module__PmNSbq__irPrimera:hover:not(:disabled), .destacados-module__PmNSbq__irUltima:hover:not(:disabled) {
  color: #fff;
  background: #b8860b;
  transform: translateY(-1px);
}

.destacados-module__PmNSbq__irPrimera:disabled, .destacados-module__PmNSbq__irUltima:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.destacados-module__PmNSbq__irPrimera ion-icon, .destacados-module__PmNSbq__irUltima ion-icon {
  font-size: 1rem;
}

.destacados-module__PmNSbq__emptyState {
  text-align: center;
  color: #6b4423;
  padding: 80px 20px;
}

.destacados-module__PmNSbq__emptyIcon ion-icon {
  color: #b8860b;
  opacity: .6;
  margin-bottom: 24px;
  font-size: 5rem;
}

.destacados-module__PmNSbq__emptyState h3 {
  color: #5a3317;
  margin: 0 0 16px;
  font-size: 1.8rem;
  font-weight: 700;
}

.destacados-module__PmNSbq__emptyState p {
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

.destacados-module__PmNSbq__resetEmptyBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border: none;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.destacados-module__PmNSbq__resetEmptyBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, .4);
}

.destacados-module__PmNSbq__resetEmptyBtn ion-icon {
  font-size: 1.2rem;
}

.destacados-module__PmNSbq__estadisticas {
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border: 2px solid rgba(184, 134, 11, .1);
  border-radius: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 40px;
  display: grid;
}

.destacados-module__PmNSbq__estadItem {
  text-align: left;
  align-items: center;
  gap: 16px;
  display: flex;
}

.destacados-module__PmNSbq__estadIcon {
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.destacados-module__PmNSbq__estadIcon ion-icon {
  color: #fff;
  font-size: 1.8rem;
}

.destacados-module__PmNSbq__estadInfo {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.destacados-module__PmNSbq__estadNumber {
  color: #5a3317;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.destacados-module__PmNSbq__estadLabel {
  color: #6b4423;
  font-size: 1rem;
  font-weight: 500;
}

@keyframes destacados-module__PmNSbq__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destacados-module__PmNSbq__productCardDelay1 {
  animation-delay: .1s;
}

.destacados-module__PmNSbq__productCardDelay2 {
  animation-delay: .2s;
}

.destacados-module__PmNSbq__productCardDelay3 {
  animation-delay: .3s;
}

.destacados-module__PmNSbq__productCardDelay4 {
  animation-delay: .4s;
}

.destacados-module__PmNSbq__productCardDelay5 {
  animation-delay: .5s;
}

.destacados-module__PmNSbq__productCardDelay6 {
  animation-delay: .6s;
}

@media (max-width: 1024px) {
  .destacados-module__PmNSbq__productosGrid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .destacados-module__PmNSbq__sectionTitle {
    font-size: 2.4rem;
  }

  .destacados-module__PmNSbq__sectionTitle ion-icon {
    font-size: 2.6rem;
  }

  .destacados-module__PmNSbq__paginacion {
    gap: 15px;
  }

  .destacados-module__PmNSbq__paginaBtn {
    padding: 10px 16px;
    font-size: .9rem;
  }

  .destacados-module__PmNSbq__contadorResultados {
    text-align: center;
    flex-direction: column;
  }

  .destacados-module__PmNSbq__navegacionRapida {
    justify-content: center;
  }

  .destacados-module__PmNSbq__deliveryWarning {
    padding: 6px 10px;
    font-size: .7rem;
  }

  .destacados-module__PmNSbq__deliveryWarning span {
    font-size: .7rem;
  }
}

@media (max-width: 768px) {
  .destacados-module__PmNSbq__destacadosSection {
    padding: 60px 0;
  }

  .destacados-module__PmNSbq__container {
    padding: 0 15px;
  }

  .destacados-module__PmNSbq__sectionHeader {
    margin-bottom: 40px;
  }

  .destacados-module__PmNSbq__sectionTitle {
    flex-direction: column;
    gap: 12px;
    font-size: 2rem;
  }

  .destacados-module__PmNSbq__sectionTitle ion-icon {
    font-size: 2.2rem;
  }

  .destacados-module__PmNSbq__sectionDescription {
    font-size: 1.1rem;
  }

  .destacados-module__PmNSbq__filtros {
    gap: 12px;
    margin-bottom: 30px;
  }

  .destacados-module__PmNSbq__filtroBtn {
    padding: 12px 20px;
    font-size: .9rem;
  }

  .destacados-module__PmNSbq__contador {
    font-size: .8rem;
  }

  .destacados-module__PmNSbq__productosGrid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }

  .destacados-module__PmNSbq__cardImage {
    height: 200px;
  }

  .destacados-module__PmNSbq__cardContent {
    padding: 18px;
  }

  .destacados-module__PmNSbq__productName {
    font-size: 1.15rem;
  }

  .destacados-module__PmNSbq__cardActions {
    padding: 0 18px 18px;
  }

  .destacados-module__PmNSbq__estadisticas {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .destacados-module__PmNSbq__estadItem {
    text-align: center;
    justify-content: center;
  }

  .destacados-module__PmNSbq__paginacion {
    flex-direction: column;
    gap: 20px;
  }

  .destacados-module__PmNSbq__paginaNumeros {
    order: -1;
  }

  .destacados-module__PmNSbq__paginaBtn {
    justify-content: center;
    width: 100%;
    max-width: 200px;
  }

  .destacados-module__PmNSbq__paginacionInfo {
    text-align: center;
    flex-direction: column;
  }

  .destacados-module__PmNSbq__navegacionRapida {
    justify-content: center;
    width: 100%;
  }

  .destacados-module__PmNSbq__irPrimera, .destacados-module__PmNSbq__irUltima {
    flex: 1;
    justify-content: center;
    max-width: 120px;
  }

  .destacados-module__PmNSbq__deliveryWarning {
    text-align: center;
    flex-direction: column;
    gap: 4px;
    padding: 6px 8px;
    font-size: .65rem;
  }

  .destacados-module__PmNSbq__deliveryWarning ion-icon {
    font-size: .8rem;
  }

  .destacados-module__PmNSbq__deliveryWarning span {
    font-size: .65rem;
  }
}

@media (max-width: 480px) {
  .destacados-module__PmNSbq__destacadosSection {
    padding: 40px 0;
  }

  .destacados-module__PmNSbq__sectionTitle {
    font-size: 1.8rem;
  }

  .destacados-module__PmNSbq__sectionTitle ion-icon {
    font-size: 2rem;
  }

  .destacados-module__PmNSbq__filtros {
    flex-direction: column;
    align-items: center;
  }

  .destacados-module__PmNSbq__filtroBtn {
    justify-content: center;
    width: 100%;
    max-width: 250px;
  }

  .destacados-module__PmNSbq__productosGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .destacados-module__PmNSbq__productCard {
    max-width: 350px;
    margin: 0 auto;
  }

  .destacados-module__PmNSbq__cardImage {
    height: 180px;
  }

  .destacados-module__PmNSbq__productStats {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .destacados-module__PmNSbq__currentPrice {
    font-size: 1.2rem;
  }

  .destacados-module__PmNSbq__estadIcon {
    width: 50px;
    height: 50px;
  }

  .destacados-module__PmNSbq__estadIcon ion-icon {
    font-size: 1.5rem;
  }

  .destacados-module__PmNSbq__estadNumber {
    font-size: 1.6rem;
  }

  .destacados-module__PmNSbq__paginaNumeros {
    flex-wrap: wrap;
    justify-content: center;
  }

  .destacados-module__PmNSbq__paginaNumero {
    width: 40px;
    height: 40px;
    font-size: .9rem;
  }

  .destacados-module__PmNSbq__ellipsis {
    width: 40px;
    height: 40px;
  }

  .destacados-module__PmNSbq__contadorResultados {
    padding: 16px;
  }

  .destacados-module__PmNSbq__contadorInfo {
    font-size: 1rem;
  }

  .destacados-module__PmNSbq__resetBtn {
    padding: 8px 14px;
    font-size: .85rem;
  }

  .destacados-module__PmNSbq__infoTexto {
    flex-direction: column;
    gap: 8px;
  }

  .destacados-module__PmNSbq__deliveryWarning {
    padding: 5px 6px;
    font-size: .6rem;
  }

  .destacados-module__PmNSbq__deliveryWarning ion-icon {
    font-size: .7rem;
  }

  .destacados-module__PmNSbq__deliveryWarning span {
    font-size: .6rem;
  }
}

.destacados-module__PmNSbq__filtroBtn:focus, .destacados-module__PmNSbq__paginaBtn:focus, .destacados-module__PmNSbq__paginaNumero:focus, .destacados-module__PmNSbq__resetBtn:focus, .destacados-module__PmNSbq__resetEmptyBtn:focus, .destacados-module__PmNSbq__irPrimera:focus, .destacados-module__PmNSbq__irUltima:focus {
  outline-offset: 2px;
  outline: 2px solid #b8860b;
}

.destacados-module__PmNSbq__productosGridLoading {
  opacity: .7;
  pointer-events: none;
}

@media (hover: none) and (pointer: coarse) {
  .destacados-module__PmNSbq__addToCartBtn, .destacados-module__PmNSbq__addedBtn, .destacados-module__PmNSbq__viewBtn, .destacados-module__PmNSbq__paginaBtn, .destacados-module__PmNSbq__paginaNumero {
    min-width: 44px;
    min-height: 44px;
  }

  .destacados-module__PmNSbq__filtroBtn {
    min-height: 44px;
    padding: 12px 24px;
  }

  .destacados-module__PmNSbq__deliveryWarning {
    min-height: 32px;
  }
}

@media (prefers-contrast: high) {
  .destacados-module__PmNSbq__destacadosSection {
    background: #fff;
    border: 2px solid #000;
  }

  .destacados-module__PmNSbq__productCard, .destacados-module__PmNSbq__contadorResultados, .destacados-module__PmNSbq__estadisticas, .destacados-module__PmNSbq__deliveryWarning {
    border: 2px solid #000;
  }

  .destacados-module__PmNSbq__filtroBtn, .destacados-module__PmNSbq__paginaBtn, .destacados-module__PmNSbq__paginaNumero {
    background: #fff;
    border: 2px solid #000;
  }

  .destacados-module__PmNSbq__newBadge, .destacados-module__PmNSbq__discountBadge {
    border: 1px solid #000;
  }

  .destacados-module__PmNSbq__deliveryWarning {
    color: #000 !important;
    background: rgba(255, 152, 0, .2) !important;
    border-color: #e65100 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .destacados-module__PmNSbq__deliveryWarning, .destacados-module__PmNSbq__sparkle {
    animation: none !important;
  }

  .destacados-module__PmNSbq__productCard:hover, .destacados-module__PmNSbq__paginaBtn:hover, .destacados-module__PmNSbq__viewBtn:hover {
    transform: none !important;
  }
}

/* [project]/_Pages/Main/contenido/Componentes/nuevos/nuevos.module.css [app-client] (css) */
.nuevos-module__gqjutW__nuevosSection {
  background: #fff;
  padding: 80px 0;
  position: relative;
}

.nuevos-module__gqjutW__container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.nuevos-module__gqjutW__loading {
  color: #b8860b;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 200px;
  display: flex;
}

.nuevos-module__gqjutW__loading ion-icon {
  font-size: 3rem;
  animation: 2s ease-in-out infinite nuevos-module__gqjutW__sparkle;
}

.nuevos-module__gqjutW__loading p {
  color: #6b4423;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

@keyframes nuevos-module__gqjutW__sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.1);
  }
}

.nuevos-module__gqjutW__sectionHeader {
  text-align: center;
  margin-bottom: 50px;
}

.nuevos-module__gqjutW__sectionTitle {
  color: #5a3317;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, #5a3317, #b8860b);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  font-size: 2.8rem;
  font-weight: 800;
  display: flex;
}

.nuevos-module__gqjutW__sectionTitle ion-icon {
  color: #b8860b;
  -webkit-text-fill-color: #b8860b;
  background: none;
  font-size: 3rem;
  animation: 3s ease-in-out infinite nuevos-module__gqjutW__sparkle;
}

.nuevos-module__gqjutW__sectionDescription {
  color: #6b4423;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-weight: 400;
}

.nuevos-module__gqjutW__filtrosTiempo {
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  display: flex;
}

.nuevos-module__gqjutW__filtroBtn {
  color: #b8860b;
  cursor: pointer;
  background: none;
  border: 2px solid #b8860b;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.nuevos-module__gqjutW__filtroBtn:before {
  content: "";
  z-index: -1;
  background: #b8860b;
  width: 100%;
  height: 100%;
  transition: left .4s;
  position: absolute;
  top: 0;
  left: -100%;
}

.nuevos-module__gqjutW__filtroBtn:hover:before, .nuevos-module__gqjutW__filtroBtn.nuevos-module__gqjutW__active:before {
  left: 0;
}

.nuevos-module__gqjutW__filtroBtn:hover, .nuevos-module__gqjutW__filtroBtn.nuevos-module__gqjutW__active {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.nuevos-module__gqjutW__filtroBtn ion-icon {
  font-size: 1.2rem;
}

.nuevos-module__gqjutW__resultadosInfo {
  text-align: center;
  margin-bottom: 40px;
}

.nuevos-module__gqjutW__contador {
  color: #6b4423;
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border: 2px solid rgba(184, 134, 11, .1);
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
}

.nuevos-module__gqjutW__contador ion-icon {
  color: #b8860b;
  font-size: 1.2rem;
}

.nuevos-module__gqjutW__productosGrid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  min-height: 400px;
  margin-bottom: 40px;
  display: grid;
}

@media (min-width: 1200px) {
  .nuevos-module__gqjutW__productosGrid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto 40px;
  }
}

.nuevos-module__gqjutW__productCard {
  background: #fff;
  border: 2px solid rgba(184, 134, 11, .1);
  border-radius: 20px;
  height: -moz-fit-content;
  height: fit-content;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(184, 134, 11, .1);
}

.nuevos-module__gqjutW__productCard:hover {
  border-color: rgba(184, 134, 11, .3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(184, 134, 11, .2);
}

.nuevos-module__gqjutW__productLink {
  color: inherit;
  text-decoration: none;
  display: block;
}

.nuevos-module__gqjutW__cardImage {
  background: #f8f9fa;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.nuevos-module__gqjutW__cardImage img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.nuevos-module__gqjutW__productCard:hover .nuevos-module__gqjutW__cardImage img {
  transform: scale(1.1);
}

.nuevos-module__gqjutW__badges {
  z-index: 3;
  flex-direction: column;
  gap: 8px;
  display: flex;
  position: absolute;
  top: 15px;
  left: 15px;
}

.nuevos-module__gqjutW__newBadge {
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

.nuevos-module__gqjutW__newBadge ion-icon {
  font-size: .9rem;
}

.nuevos-module__gqjutW__dateBadge {
  color: #5a3317;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .9);
  border-radius: 15px;
  padding: 6px 10px;
  font-size: .75rem;
  font-weight: 600;
}

.nuevos-module__gqjutW__discountBadge {
  color: #fff;
  z-index: 3;
  background: linear-gradient(135deg, #ff4757, #ff3742);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: .8rem;
  font-weight: 700;
  position: absolute;
  top: 15px;
  right: 15px;
  box-shadow: 0 4px 15px rgba(255, 71, 87, .3);
}

.nuevos-module__gqjutW__cardOverlay {
  opacity: 0;
  color: #fff;
  background: rgba(90, 51, 23, .85);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.nuevos-module__gqjutW__productCard:hover .nuevos-module__gqjutW__cardOverlay {
  opacity: 1;
}

.nuevos-module__gqjutW__cardOverlay ion-icon {
  font-size: 2.5rem;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  transform: scale(.8);
}

.nuevos-module__gqjutW__productCard:hover .nuevos-module__gqjutW__cardOverlay ion-icon {
  transform: scale(1);
}

.nuevos-module__gqjutW__cardOverlay span {
  font-size: 1rem;
  font-weight: 600;
}

.nuevos-module__gqjutW__cardContent {
  padding: 20px;
}

.nuevos-module__gqjutW__productName {
  color: #5a3317;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.nuevos-module__gqjutW__productDescription {
  color: #6b4423;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 14px;
  font-size: .9rem;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.nuevos-module__gqjutW__productPrice {
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  display: flex;
}

.nuevos-module__gqjutW__originalPrice {
  color: #999;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: line-through;
}

.nuevos-module__gqjutW__currentPrice {
  color: #b8860b;
  font-size: 1.3rem;
  font-weight: 800;
}

.nuevos-module__gqjutW__productMeta {
  color: #999;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: .8rem;
  display: flex;
}

.nuevos-module__gqjutW__addedDate, .nuevos-module__gqjutW__category {
  align-items: center;
  gap: 4px;
  display: flex;
}

.nuevos-module__gqjutW__addedDate ion-icon, .nuevos-module__gqjutW__category ion-icon {
  font-size: .85rem;
}

.nuevos-module__gqjutW__deliveryWarning {
  color: #e65100;
  background: linear-gradient(135deg, rgba(255, 152, 0, .08), rgba(255, 152, 0, .12));
  border: 1px solid rgba(255, 152, 0, .3);
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 12px;
  font-size: .75rem;
  font-weight: 600;
  animation: 2s ease-in-out infinite nuevos-module__gqjutW__pulseDelivery;
  display: flex;
  box-shadow: 0 2px 8px rgba(255, 152, 0, .1), inset 0 1px rgba(255, 255, 255, .2);
}

.nuevos-module__gqjutW__deliveryWarning ion-icon {
  color: #ff9800;
  flex-shrink: 0;
  font-size: .9rem;
}

.nuevos-module__gqjutW__deliveryWarning span {
  font-size: .75rem;
  line-height: 1.2;
}

@keyframes nuevos-module__gqjutW__pulseDelivery {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 152, 0, .1), inset 0 1px rgba(255, 255, 255, .2);
  }

  50% {
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(255, 152, 0, .15), inset 0 1px rgba(255, 255, 255, .3);
  }
}

.nuevos-module__gqjutW__cardActions {
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 20px;
  display: flex;
}

.nuevos-module__gqjutW__addToCartBtn, .nuevos-module__gqjutW__addedBtn {
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.nuevos-module__gqjutW__addToCartBtn {
  color: #fff;
  background: #daa520;
}

.nuevos-module__gqjutW__addToCartBtn:hover:not(:disabled) {
  background: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(218, 165, 32, .3);
}

.nuevos-module__gqjutW__addToCartBtn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.nuevos-module__gqjutW__addedBtn {
  color: #fff;
  background: #28a745;
  border: 2px solid #28a745;
}

.nuevos-module__gqjutW__addedBtn:hover {
  background: #218838;
  border-color: #218838;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, .3);
}

.nuevos-module__gqjutW__viewBtn {
  color: #fff;
  background: linear-gradient(135deg, #5a3317, #6b4423);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.nuevos-module__gqjutW__viewBtn:hover {
  background: linear-gradient(135deg, #6b4423, #b8860b);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(90, 51, 23, .3);
}

.nuevos-module__gqjutW__viewBtn ion-icon {
  font-size: 1rem;
  transition: transform .3s;
}

.nuevos-module__gqjutW__viewBtn:hover ion-icon {
  transform: translateX(3px);
}

.nuevos-module__gqjutW__paginacionContainer {
  margin: 50px 0 20px;
}

.nuevos-module__gqjutW__paginacion {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  display: flex;
}

.nuevos-module__gqjutW__paginaBtn {
  color: #6b4423;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.nuevos-module__gqjutW__paginaBtn:before {
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, #b8860b, #daa520);
  width: 100%;
  height: 100%;
  transition: left .3s;
  position: absolute;
  top: 0;
  left: -100%;
}

.nuevos-module__gqjutW__paginaBtn:hover:not(.nuevos-module__gqjutW__disabled):before {
  left: 0;
}

.nuevos-module__gqjutW__paginaBtn:hover:not(.nuevos-module__gqjutW__disabled) {
  color: #fff;
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .25);
}

.nuevos-module__gqjutW__paginaBtn.nuevos-module__gqjutW__disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

.nuevos-module__gqjutW__paginaBtnFirst, .nuevos-module__gqjutW__paginaBtnLast {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 12px;
}

.nuevos-module__gqjutW__paginaBtnPrev span, .nuevos-module__gqjutW__paginaBtnNext span {
  display: none;
}

.nuevos-module__gqjutW__paginaBtn ion-icon {
  font-size: 1.2rem;
  transition: transform .3s;
}

.nuevos-module__gqjutW__paginaBtn:hover:not(.nuevos-module__gqjutW__disabled) ion-icon {
  transform: scale(1.1);
}

.nuevos-module__gqjutW__paginaNumeros {
  gap: 4px;
  margin: 0 12px;
  display: flex;
}

.nuevos-module__gqjutW__paginaNumero {
  color: #6b4423;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.nuevos-module__gqjutW__paginaNumero:before {
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, #b8860b, #daa520);
  width: 100%;
  height: 100%;
  transition: left .3s;
  position: absolute;
  top: 0;
  left: -100%;
}

.nuevos-module__gqjutW__paginaNumero:hover:before, .nuevos-module__gqjutW__paginaNumero.nuevos-module__gqjutW__active:before {
  left: 0;
}

.nuevos-module__gqjutW__paginaNumero:hover, .nuevos-module__gqjutW__paginaNumero.nuevos-module__gqjutW__active {
  color: #fff;
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .25);
}

.nuevos-module__gqjutW__paginaNumero.nuevos-module__gqjutW__active {
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 134, 11, .3);
}

.nuevos-module__gqjutW__paginaDots {
  color: #9ca3af;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  display: flex;
}

.nuevos-module__gqjutW__paginaDots ion-icon {
  font-size: 1.5rem;
}

.nuevos-module__gqjutW__paginacionInfo {
  text-align: center;
}

.nuevos-module__gqjutW__paginacionInfo p {
  color: #6b4423;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
}

.nuevos-module__gqjutW__paginaInfoTexto {
  font-size: 1.05rem;
}

.nuevos-module__gqjutW__paginaInfoTexto strong {
  color: #b8860b;
  font-weight: 700;
}

.nuevos-module__gqjutW__paginaInfoExtra {
  color: #9ca3af;
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border: 1px solid rgba(184, 134, 11, .1);
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: .9rem;
  display: flex;
}

.nuevos-module__gqjutW__paginaInfoExtra ion-icon {
  color: #b8860b;
  font-size: 1rem;
}

.nuevos-module__gqjutW__emptyState {
  text-align: center;
  color: #6b4423;
  padding: 80px 20px;
}

.nuevos-module__gqjutW__emptyIcon ion-icon {
  color: #b8860b;
  opacity: .6;
  margin-bottom: 24px;
  font-size: 5rem;
}

.nuevos-module__gqjutW__emptyState h3 {
  color: #5a3317;
  margin: 0 0 16px;
  font-size: 1.8rem;
  font-weight: 700;
}

.nuevos-module__gqjutW__emptyState p {
  max-width: 500px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

.nuevos-module__gqjutW__resetBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #b8860b, #daa520);
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all .3s;
}

.nuevos-module__gqjutW__resetBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
}

@media (max-width: 1024px) {
  .nuevos-module__gqjutW__productosGrid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .nuevos-module__gqjutW__sectionTitle {
    font-size: 2.4rem;
  }

  .nuevos-module__gqjutW__sectionTitle ion-icon {
    font-size: 2.6rem;
  }

  .nuevos-module__gqjutW__paginacion {
    gap: 6px;
  }

  .nuevos-module__gqjutW__paginaBtn {
    padding: 10px 14px;
    font-size: .9rem;
  }

  .nuevos-module__gqjutW__paginaBtnPrev span, .nuevos-module__gqjutW__paginaBtnNext span {
    display: block;
  }

  .nuevos-module__gqjutW__deliveryWarning {
    padding: 6px 10px;
    font-size: .7rem;
  }

  .nuevos-module__gqjutW__deliveryWarning span {
    font-size: .7rem;
  }
}

@media (max-width: 768px) {
  .nuevos-module__gqjutW__nuevosSection {
    padding: 60px 0;
  }

  .nuevos-module__gqjutW__container {
    padding: 0 15px;
  }

  .nuevos-module__gqjutW__sectionHeader {
    margin-bottom: 40px;
  }

  .nuevos-module__gqjutW__sectionTitle {
    flex-direction: column;
    gap: 12px;
    font-size: 2rem;
  }

  .nuevos-module__gqjutW__sectionTitle ion-icon {
    font-size: 2.2rem;
  }

  .nuevos-module__gqjutW__sectionDescription {
    font-size: 1.1rem;
  }

  .nuevos-module__gqjutW__filtrosTiempo {
    gap: 12px;
    margin-bottom: 25px;
  }

  .nuevos-module__gqjutW__filtroBtn {
    padding: 12px 20px;
    font-size: .9rem;
  }

  .nuevos-module__gqjutW__productosGrid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }

  .nuevos-module__gqjutW__cardImage {
    height: 200px;
  }

  .nuevos-module__gqjutW__cardContent {
    padding: 18px;
  }

  .nuevos-module__gqjutW__productName {
    font-size: 1.15rem;
  }

  .nuevos-module__gqjutW__cardActions {
    padding: 0 18px 18px;
  }

  .nuevos-module__gqjutW__paginacion {
    flex-direction: column;
    gap: 20px;
  }

  .nuevos-module__gqjutW__paginaNumeros {
    order: -1;
    margin: 0;
  }

  .nuevos-module__gqjutW__paginaBtn {
    justify-content: center;
    width: 100%;
    max-width: 200px;
  }

  .nuevos-module__gqjutW__paginaBtnFirst, .nuevos-module__gqjutW__paginaBtnLast {
    border-radius: 12px;
    width: 100%;
    max-width: 200px;
    padding: 12px 16px;
  }

  .nuevos-module__gqjutW__paginaInfoExtra {
    padding: 6px 12px;
    font-size: .85rem;
  }

  .nuevos-module__gqjutW__deliveryWarning {
    text-align: center;
    flex-direction: column;
    gap: 4px;
    padding: 6px 8px;
    font-size: .65rem;
  }

  .nuevos-module__gqjutW__deliveryWarning ion-icon {
    font-size: .8rem;
  }

  .nuevos-module__gqjutW__deliveryWarning span {
    font-size: .65rem;
  }
}

@media (max-width: 480px) {
  .nuevos-module__gqjutW__nuevosSection {
    padding: 40px 0;
  }

  .nuevos-module__gqjutW__sectionTitle {
    font-size: 1.8rem;
  }

  .nuevos-module__gqjutW__sectionTitle ion-icon {
    font-size: 2rem;
  }

  .nuevos-module__gqjutW__filtrosTiempo {
    flex-direction: column;
    align-items: center;
  }

  .nuevos-module__gqjutW__filtroBtn {
    justify-content: center;
    width: 100%;
    max-width: 250px;
  }

  .nuevos-module__gqjutW__productosGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nuevos-module__gqjutW__productCard {
    max-width: 350px;
    margin: 0 auto;
  }

  .nuevos-module__gqjutW__cardImage {
    height: 180px;
  }

  .nuevos-module__gqjutW__productMeta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nuevos-module__gqjutW__currentPrice {
    font-size: 1.2rem;
  }

  .nuevos-module__gqjutW__paginaNumeros {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .nuevos-module__gqjutW__paginaNumero {
    width: 40px;
    height: 40px;
    font-size: .9rem;
  }

  .nuevos-module__gqjutW__paginaDots {
    width: 40px;
    height: 40px;
  }

  .nuevos-module__gqjutW__paginacionInfo p {
    font-size: .9rem;
  }

  .nuevos-module__gqjutW__paginaInfoTexto {
    font-size: .95rem;
  }

  .nuevos-module__gqjutW__paginaInfoExtra {
    font-size: .8rem;
  }

  .nuevos-module__gqjutW__deliveryWarning {
    padding: 5px 6px;
    font-size: .6rem;
  }

  .nuevos-module__gqjutW__deliveryWarning ion-icon {
    font-size: .7rem;
  }

  .nuevos-module__gqjutW__deliveryWarning span {
    font-size: .6rem;
  }
}

.nuevos-module__gqjutW__filtroBtn:focus, .nuevos-module__gqjutW__paginaBtn:focus, .nuevos-module__gqjutW__paginaNumero:focus, .nuevos-module__gqjutW__resetBtn:focus, .nuevos-module__gqjutW__addToCartBtn:focus, .nuevos-module__gqjutW__addedBtn:focus, .nuevos-module__gqjutW__viewBtn:focus {
  outline-offset: 2px;
  outline: 2px solid #b8860b;
}

.nuevos-module__gqjutW__productosGridLoading {
  opacity: .7;
  pointer-events: none;
}

@media (hover: none) and (pointer: coarse) {
  .nuevos-module__gqjutW__addToCartBtn, .nuevos-module__gqjutW__addedBtn, .nuevos-module__gqjutW__viewBtn, .nuevos-module__gqjutW__paginaBtn, .nuevos-module__gqjutW__paginaNumero {
    min-width: 44px;
    min-height: 44px;
  }

  .nuevos-module__gqjutW__filtroBtn {
    min-height: 44px;
    padding: 12px 24px;
  }

  .nuevos-module__gqjutW__deliveryWarning {
    min-height: 32px;
  }
}

@media (prefers-contrast: high) {
  .nuevos-module__gqjutW__nuevosSection {
    background: #fff;
    border: 2px solid #000;
  }

  .nuevos-module__gqjutW__productCard, .nuevos-module__gqjutW__contador, .nuevos-module__gqjutW__deliveryWarning {
    border: 2px solid #000;
  }

  .nuevos-module__gqjutW__filtroBtn, .nuevos-module__gqjutW__paginaBtn, .nuevos-module__gqjutW__paginaNumero {
    background: #fff;
    border: 2px solid #000;
  }

  .nuevos-module__gqjutW__newBadge, .nuevos-module__gqjutW__discountBadge {
    border: 1px solid #000;
  }

  .nuevos-module__gqjutW__deliveryWarning {
    color: #000 !important;
    background: rgba(255, 152, 0, .2) !important;
    border-color: #e65100 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nuevos-module__gqjutW__deliveryWarning, .nuevos-module__gqjutW__sparkle {
    animation: none !important;
  }

  .nuevos-module__gqjutW__productCard:hover, .nuevos-module__gqjutW__paginaBtn:hover, .nuevos-module__gqjutW__viewBtn:hover, .nuevos-module__gqjutW__addToCartBtn:hover {
    transform: none !important;
  }

  .nuevos-module__gqjutW__cardImage img, .nuevos-module__gqjutW__cardOverlay ion-icon, .nuevos-module__gqjutW__viewBtn ion-icon {
    transition: none !important;
  }
}

.nuevos-module__gqjutW__productCard.nuevos-module__gqjutW__nuevo {
  border-color: rgba(184, 134, 11, .3);
  box-shadow: 0 8px 25px rgba(184, 134, 11, .15), 0 0 0 1px rgba(184, 134, 11, .1);
}

.nuevos-module__gqjutW__productCard.nuevos-module__gqjutW__nuevo:hover {
  box-shadow: 0 20px 40px rgba(184, 134, 11, .25), 0 0 0 2px rgba(184, 134, 11, .2);
}

.nuevos-module__gqjutW__newBadge {
  animation: 3s ease-in-out infinite nuevos-module__gqjutW__newBadgePulse;
}

@keyframes nuevos-module__gqjutW__newBadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(184, 134, 11, .3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(184, 134, 11, .4);
  }
}

.nuevos-module__gqjutW__dateBadge {
  transition: all .3s;
}

.nuevos-module__gqjutW__productCard:hover .nuevos-module__gqjutW__dateBadge {
  color: #fff;
  background: rgba(184, 134, 11, .9);
  transform: scale(1.05);
}

.nuevos-module__gqjutW__category, .nuevos-module__gqjutW__addedDate {
  transition: all .3s;
}

.nuevos-module__gqjutW__productCard:hover .nuevos-module__gqjutW__category, .nuevos-module__gqjutW__productCard:hover .nuevos-module__gqjutW__addedDate {
  color: #b8860b;
  transform: translateX(2px);
}

.nuevos-module__gqjutW__loading.nuevos-module__gqjutW__nuevos {
  background: linear-gradient(135deg, rgba(184, 134, 11, .02), rgba(218, 165, 32, .02));
  border-radius: 20px;
  margin: 40px 0;
  padding: 40px;
}

.nuevos-module__gqjutW__loading.nuevos-module__gqjutW__nuevos ion-icon {
  color: #daa520;
  filter: drop-shadow(2px 2px 4px rgba(184, 134, 11, .2));
}

.nuevos-module__gqjutW__productCard {
  animation: .6s ease-out both nuevos-module__gqjutW__slideInUp;
}

.nuevos-module__gqjutW__productCard:first-child {
  animation-delay: .1s;
}

.nuevos-module__gqjutW__productCard:nth-child(2) {
  animation-delay: .2s;
}

.nuevos-module__gqjutW__productCard:nth-child(3) {
  animation-delay: .3s;
}

.nuevos-module__gqjutW__productCard:nth-child(4) {
  animation-delay: .4s;
}

.nuevos-module__gqjutW__productCard:nth-child(5) {
  animation-delay: .5s;
}

.nuevos-module__gqjutW__productCard:nth-child(6) {
  animation-delay: .6s;
}

@keyframes nuevos-module__gqjutW__slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-color-scheme: dark) {
  .nuevos-module__gqjutW__nuevosSection, .nuevos-module__gqjutW__productCard, .nuevos-module__gqjutW__contador, .nuevos-module__gqjutW__paginaBtn, .nuevos-module__gqjutW__paginaNumero {
    color: #333;
    background: #fff;
  }
}

@media print {
  .nuevos-module__gqjutW__nuevosSection {
    color: #000;
    background: #fff;
  }

  .nuevos-module__gqjutW__paginacion, .nuevos-module__gqjutW__filtrosTiempo, .nuevos-module__gqjutW__cardActions {
    display: none;
  }

  .nuevos-module__gqjutW__productCard {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #333;
  }

  .nuevos-module__gqjutW__deliveryWarning {
    color: #000;
    background: #fff;
    border: 1px solid #333;
  }
}

/* [project]/_Pages/Main/contenido/Componentes/contacto/contacto.module.css [app-client] (css) */
.contacto-module__TpIKya__contactSection {
  background: radial-gradient(circle at 15% 20%, rgba(184, 134, 11, .12) 0%, rgba(0, 0, 0, 0) 50%), radial-gradient(circle at 85% 80%, rgba(90, 51, 23, .08) 0%, rgba(0, 0, 0, 0) 50%), radial-gradient(circle, rgba(218, 165, 32, .06) 0%, rgba(0, 0, 0, 0) 60%), linear-gradient(135deg, #f8f6f0 0%, #fefcf7 25%, #fff9f0 50%, #fefcf7 75%, #f8f6f0 100%);
  width: 100%;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contacto-module__TpIKya__contactSection:before {
  content: "";
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='0.04'%3E%3Cpath d='M10 10h2v2h-2zm20 0h2v2h-2zm20 0h2v2h-2zM10 30h2v2h-2zm20 0h2v2h-2zm20 0h2v2h-2zM10 50h2v2h-2zm20 0h2v2h-2zm20 0h2v2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.contacto-module__TpIKya__contactSection:after {
  content: "";
  z-index: 1;
  background: conic-gradient(rgba(0, 0, 0, 0) 0deg, rgba(184, 134, 11, .03) 60deg, rgba(0, 0, 0, 0) 120deg, rgba(218, 165, 32, .024) 180deg, rgba(0, 0, 0, 0) 240deg, rgba(90, 51, 23, .02) 300deg, rgba(0, 0, 0, 0) 360deg);
  width: 140%;
  height: 140%;
  animation: 200s linear infinite contacto-module__TpIKya__rotateBackground;
  position: absolute;
  top: -20%;
  left: -20%;
}

@keyframes contacto-module__TpIKya__rotateBackground {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contacto-module__TpIKya__container {
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.contacto-module__TpIKya__sectionHeader {
  text-align: center;
  margin-bottom: 60px;
}

.contacto-module__TpIKya__sectionTitle {
  color: #5a3317;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.5px;
  background: linear-gradient(135deg, #5a3317 0%, #b8860b 50%, #daa520 100%);
  -webkit-background-clip: text;
  background-clip: text;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0 0 16px;
  font-size: 2.4rem;
  font-weight: 800;
  display: flex;
}

.contacto-module__TpIKya__sectionTitle ion-icon {
  color: #b8860b;
  -webkit-text-fill-color: #b8860b;
  filter: drop-shadow(0 2px 4px rgba(184, 134, 11, .2));
  background: none;
  font-size: 2.6rem;
}

.contacto-module__TpIKya__sectionDescription {
  color: #6b4423;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
}

.contacto-module__TpIKya__contactContainer {
  grid-template-columns: 420px 1fr;
  align-items: start;
  gap: 40px;
  display: grid;
}

.contacto-module__TpIKya__contactPanel {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(145deg, rgba(255, 255, 255, .95) 0%, rgba(251, 252, 253, .9) 100%);
  border: 2px solid rgba(184, 134, 11, .1);
  border-radius: 24px;
  padding: 35px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(184, 134, 11, .08), 0 6px 20px rgba(90, 51, 23, .05), inset 0 1px rgba(255, 255, 255, .9);
}

.contacto-module__TpIKya__contactPanel:before {
  content: "";
  background: linear-gradient(90deg, #b8860b, #daa520, gold, #daa520, #b8860b) 0 0 / 300% 100%;
  height: 3px;
  animation: 4s ease-in-out infinite contacto-module__TpIKya__shimmer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@keyframes contacto-module__TpIKya__shimmer {
  0% {
    background-position: -300% 0;
  }

  100% {
    background-position: 300% 0;
  }
}

.contacto-module__TpIKya__contactPanel:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(184, 134, 11, .12), 0 10px 30px rgba(90, 51, 23, .08), inset 0 1px #fff;
}

.contacto-module__TpIKya__contactHeader {
  text-align: center;
  margin-bottom: 30px;
}

.contacto-module__TpIKya__panelTitle {
  color: #5a3317;
  letter-spacing: -.3px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
}

.contacto-module__TpIKya__panelTitle ion-icon {
  color: #b8860b;
  font-size: 1.6rem;
}

.contacto-module__TpIKya__contactGrid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  display: grid;
}

.contacto-module__TpIKya__contactCard {
  text-align: center;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(184, 134, 11, .02) 0%, rgba(218, 165, 32, .04) 100%);
  border: 1.5px solid rgba(184, 134, 11, .1);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.contacto-module__TpIKya__contactCard:before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(184, 134, 11, .05), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  transition: left .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.contacto-module__TpIKya__contactCard:hover:before {
  left: 100%;
}

.contacto-module__TpIKya__contactCard:hover {
  background: linear-gradient(135deg, rgba(184, 134, 11, .06) 0%, rgba(218, 165, 32, .08) 100%);
  border-color: rgba(184, 134, 11, .2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(184, 134, 11, .1);
}

.contacto-module__TpIKya__cardIcon {
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 8px 20px rgba(184, 134, 11, .25), inset 0 1px rgba(255, 255, 255, .3);
}

.contacto-module__TpIKya__contactCard:hover .contacto-module__TpIKya__cardIcon {
  transform: scale(1.1)rotate(5deg);
  box-shadow: 0 12px 30px rgba(184, 134, 11, .35), inset 0 1px rgba(255, 255, 255, .4);
}

.contacto-module__TpIKya__cardIcon ion-icon {
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .2));
  font-size: 1.8rem;
}

.contacto-module__TpIKya__cardContent h4 {
  color: #5a3317;
  letter-spacing: -.2px;
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.contacto-module__TpIKya__cardContent p {
  color: #6b4423;
  word-break: break-word;
  margin: 0 0 12px;
  font-size: .9rem;
  line-height: 1.4;
}

.contacto-module__TpIKya__cardAction {
  color: #fff;
  background: linear-gradient(135deg, #5a3317 0%, #6b4423 100%);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(90, 51, 23, .2);
}

.contacto-module__TpIKya__cardAction:hover {
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 134, 11, .3);
}

.contacto-module__TpIKya__socialFooter {
  border-top: 2px solid rgba(184, 134, 11, .1);
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  display: flex;
}

.contacto-module__TpIKya__socialLabel {
  color: #5a3317;
  letter-spacing: -.2px;
  font-size: 1rem;
  font-weight: 600;
}

.contacto-module__TpIKya__socialIcons {
  gap: 12px;
  display: flex;
}

.contacto-module__TpIKya__socialIcon {
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.contacto-module__TpIKya__socialIcon ion-icon {
  font-size: 1.4rem;
}

.contacto-module__TpIKya__socialIcon.contacto-module__TpIKya__facebook {
  color: #3b5998;
  background: rgba(59, 89, 152, .1);
  border-color: rgba(59, 89, 152, .2);
}

.contacto-module__TpIKya__socialIcon.contacto-module__TpIKya__facebook:hover {
  color: #fff;
  background: #3b5998;
  transform: translateY(-2px)scale(1.05);
  box-shadow: 0 6px 20px rgba(59, 89, 152, .4);
}

.contacto-module__TpIKya__socialIcon.contacto-module__TpIKya__instagram {
  color: #e1306c;
  background: rgba(225, 48, 108, .1);
  border-color: rgba(225, 48, 108, .2);
}

.contacto-module__TpIKya__socialIcon.contacto-module__TpIKya__instagram:hover {
  color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  transform: translateY(-2px)scale(1.05);
  box-shadow: 0 6px 20px rgba(225, 48, 108, .4);
}

.contacto-module__TpIKya__socialIcon.contacto-module__TpIKya__whatsapp {
  color: #25d366;
  background: rgba(37, 211, 102, .1);
  border-color: rgba(37, 211, 102, .2);
}

.contacto-module__TpIKya__socialIcon.contacto-module__TpIKya__whatsapp:hover {
  color: #fff;
  background: #25d366;
  transform: translateY(-2px)scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
}

.contacto-module__TpIKya__mapWrapper {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(145deg, rgba(255, 255, 255, .95) 0%, rgba(251, 252, 253, .9) 100%);
  border: 2px solid rgba(184, 134, 11, .1);
  border-radius: 24px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(184, 134, 11, .08), 0 6px 20px rgba(90, 51, 23, .05), inset 0 1px rgba(255, 255, 255, .9);
}

.contacto-module__TpIKya__mapWrapper:before {
  content: "";
  z-index: 10;
  background: linear-gradient(90deg, #b8860b, #daa520, gold, #daa520, #b8860b) 0 0 / 300% 100%;
  height: 3px;
  animation: 4s ease-in-out 1s infinite contacto-module__TpIKya__shimmer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.contacto-module__TpIKya__mapWrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(184, 134, 11, .12), 0 8px 25px rgba(90, 51, 23, .08), inset 0 1px #fff;
}

.contacto-module__TpIKya__mapHeader {
  text-align: center;
  background: linear-gradient(135deg, rgba(184, 134, 11, .02), rgba(218, 165, 32, .03));
  padding: 25px 30px 20px;
}

.contacto-module__TpIKya__mapTitle {
  color: #5a3317;
  letter-spacing: -.3px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
}

.contacto-module__TpIKya__mapTitle ion-icon {
  color: #b8860b;
  font-size: 1.6rem;
}

.contacto-module__TpIKya__mapAddress {
  color: #6b4423;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.contacto-module__TpIKya__mapContainer {
  border-top: 1px solid rgba(184, 134, 11, .1);
  border-bottom: 1px solid rgba(184, 134, 11, .1);
  height: 500px;
  position: relative;
}

.contacto-module__TpIKya__mapFooter {
  text-align: center;
  background: linear-gradient(135deg, rgba(184, 134, 11, .02), rgba(218, 165, 32, .03));
  padding: 20px 30px;
}

.contacto-module__TpIKya__directionsButton {
  color: #fff;
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  border-radius: 25px;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(184, 134, 11, .3);
}

.contacto-module__TpIKya__directionsButton:before {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, .2), rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  transition: left .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.contacto-module__TpIKya__directionsButton:hover:before {
  left: 100%;
}

.contacto-module__TpIKya__directionsButton:hover {
  background: linear-gradient(135deg, #5a3317 0%, #6b4423 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(90, 51, 23, .4);
}

.contacto-module__TpIKya__directionsButton ion-icon {
  font-size: 1.2rem;
}

@media (max-width: 1200px) {
  .contacto-module__TpIKya__contactContainer {
    grid-template-columns: 380px 1fr;
    gap: 35px;
  }

  .contacto-module__TpIKya__contactPanel {
    padding: 30px;
  }

  .contacto-module__TpIKya__mapContainer {
    height: 480px;
  }
}

@media (max-width: 1024px) {
  .contacto-module__TpIKya__contactSection {
    padding: 70px 0;
  }

  .contacto-module__TpIKya__contactContainer {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contacto-module__TpIKya__sectionTitle {
    font-size: 2.2rem;
  }

  .contacto-module__TpIKya__sectionTitle ion-icon {
    font-size: 2.4rem;
  }

  .contacto-module__TpIKya__mapContainer {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .contacto-module__TpIKya__contactSection {
    padding: 60px 0;
  }

  .contacto-module__TpIKya__container {
    padding: 0 15px;
  }

  .contacto-module__TpIKya__sectionHeader {
    margin-bottom: 45px;
  }

  .contacto-module__TpIKya__sectionTitle {
    flex-direction: column;
    gap: 10px;
    font-size: 2rem;
  }

  .contacto-module__TpIKya__sectionTitle ion-icon {
    font-size: 2.2rem;
  }

  .contacto-module__TpIKya__sectionDescription {
    font-size: 1rem;
  }

  .contacto-module__TpIKya__contactPanel {
    padding: 25px 20px;
  }

  .contacto-module__TpIKya__contactGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contacto-module__TpIKya__contactCard {
    padding: 20px 16px;
  }

  .contacto-module__TpIKya__cardIcon {
    width: 50px;
    height: 50px;
  }

  .contacto-module__TpIKya__cardIcon ion-icon {
    font-size: 1.5rem;
  }

  .contacto-module__TpIKya__cardContent h4 {
    font-size: 1rem;
  }

  .contacto-module__TpIKya__cardContent p {
    font-size: .85rem;
  }

  .contacto-module__TpIKya__cardAction {
    padding: 6px 14px;
    font-size: .8rem;
  }

  .contacto-module__TpIKya__socialFooter {
    text-align: center;
    flex-direction: column;
    gap: 15px;
  }

  .contacto-module__TpIKya__socialIcons {
    justify-content: center;
  }

  .contacto-module__TpIKya__socialIcon {
    width: 36px;
    height: 36px;
  }

  .contacto-module__TpIKya__socialIcon ion-icon {
    font-size: 1.2rem;
  }

  .contacto-module__TpIKya__mapWrapper {
    border-radius: 20px;
  }

  .contacto-module__TpIKya__mapHeader {
    padding: 20px 25px 15px;
  }

  .contacto-module__TpIKya__mapTitle {
    font-size: 1.2rem;
  }

  .contacto-module__TpIKya__mapTitle ion-icon {
    font-size: 1.4rem;
  }

  .contacto-module__TpIKya__mapAddress {
    font-size: .9rem;
  }

  .contacto-module__TpIKya__mapContainer {
    height: 400px;
  }

  .contacto-module__TpIKya__mapFooter {
    padding: 15px 25px;
  }

  .contacto-module__TpIKya__directionsButton {
    padding: 10px 20px;
    font-size: .9rem;
  }

  .contacto-module__TpIKya__directionsButton ion-icon {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contacto-module__TpIKya__contactSection {
    padding: 50px 0;
  }

  .contacto-module__TpIKya__sectionTitle {
    font-size: 1.8rem;
  }

  .contacto-module__TpIKya__sectionTitle ion-icon {
    font-size: 2rem;
  }

  .contacto-module__TpIKya__contactPanel {
    border-radius: 20px;
    padding: 20px 16px;
  }

  .contacto-module__TpIKya__panelTitle {
    font-size: 1.2rem;
  }

  .contacto-module__TpIKya__panelTitle ion-icon {
    font-size: 1.4rem;
  }

  .contacto-module__TpIKya__contactCard {
    border-radius: 12px;
    padding: 16px 12px;
  }

  .contacto-module__TpIKya__cardIcon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .contacto-module__TpIKya__cardIcon ion-icon {
    font-size: 1.3rem;
  }

  .contacto-module__TpIKya__cardContent h4 {
    font-size: .9rem;
  }

  .contacto-module__TpIKya__cardContent p {
    margin-bottom: 10px;
    font-size: .8rem;
  }

  .contacto-module__TpIKya__cardAction {
    border-radius: 16px;
    padding: 5px 12px;
    font-size: .75rem;
  }

  .contacto-module__TpIKya__socialLabel {
    font-size: .9rem;
  }

  .contacto-module__TpIKya__socialIcon {
    width: 32px;
    height: 32px;
  }

  .contacto-module__TpIKya__socialIcon ion-icon {
    font-size: 1.1rem;
  }

  .contacto-module__TpIKya__mapWrapper {
    border-radius: 16px;
  }

  .contacto-module__TpIKya__mapHeader {
    padding: 16px 20px 12px;
  }

  .contacto-module__TpIKya__mapTitle {
    font-size: 1.1rem;
  }

  .contacto-module__TpIKya__mapTitle ion-icon {
    font-size: 1.3rem;
  }

  .contacto-module__TpIKya__mapAddress {
    font-size: .85rem;
  }

  .contacto-module__TpIKya__mapContainer {
    height: 350px;
  }

  .contacto-module__TpIKya__mapFooter {
    padding: 12px 20px;
  }

  .contacto-module__TpIKya__directionsButton {
    border-radius: 20px;
    padding: 8px 16px;
    font-size: .8rem;
  }

  .contacto-module__TpIKya__directionsButton ion-icon {
    font-size: 1rem;
  }
}

@keyframes contacto-module__TpIKya__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contacto-module__TpIKya__slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contacto-module__TpIKya__slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contacto-module__TpIKya__scaleIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contacto-module__TpIKya__iconFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.contacto-module__TpIKya__contactPanel {
  animation: .8s ease-out contacto-module__TpIKya__slideInLeft;
}

.contacto-module__TpIKya__mapWrapper {
  animation: .8s ease-out .2s both contacto-module__TpIKya__slideInRight;
}

.contacto-module__TpIKya__contactCard {
  animation: .5s ease-out contacto-module__TpIKya__scaleIn;
}

.contacto-module__TpIKya__contactCard:first-child {
  animation-delay: .1s;
}

.contacto-module__TpIKya__contactCard:nth-child(2) {
  animation-delay: .2s;
}

.contacto-module__TpIKya__contactCard:nth-child(3) {
  animation-delay: .3s;
}

.contacto-module__TpIKya__contactCard:nth-child(4) {
  animation-delay: .4s;
}

.contacto-module__TpIKya__socialIcon {
  animation: .5s ease-out contacto-module__TpIKya__scaleIn;
}

.contacto-module__TpIKya__socialIcon:first-child {
  animation-delay: .5s;
}

.contacto-module__TpIKya__socialIcon:nth-child(2) {
  animation-delay: .6s;
}

.contacto-module__TpIKya__socialIcon:nth-child(3) {
  animation-delay: .7s;
}

.contacto-module__TpIKya__cardIcon {
  animation: 3s ease-in-out infinite contacto-module__TpIKya__iconFloat;
}

.contacto-module__TpIKya__contactCard:first-child .contacto-module__TpIKya__cardIcon {
  animation-delay: 0s;
}

.contacto-module__TpIKya__contactCard:nth-child(2) .contacto-module__TpIKya__cardIcon {
  animation-delay: .5s;
}

.contacto-module__TpIKya__contactCard:nth-child(3) .contacto-module__TpIKya__cardIcon {
  animation-delay: 1s;
}

.contacto-module__TpIKya__contactCard:nth-child(4) .contacto-module__TpIKya__cardIcon {
  animation-delay: 1.5s;
}

.contacto-module__TpIKya__contactCard:hover {
  animation-play-state: paused;
}

.contacto-module__TpIKya__contactCard:hover .contacto-module__TpIKya__cardIcon {
  animation: none;
}

.contacto-module__TpIKya__contactPanel, .contacto-module__TpIKya__mapWrapper {
  -webkit-backdrop-filter: blur(12px);
}

@media (prefers-reduced-motion: reduce) {
  .contacto-module__TpIKya__contactPanel, .contacto-module__TpIKya__mapWrapper, .contacto-module__TpIKya__contactCard, .contacto-module__TpIKya__socialIcon, .contacto-module__TpIKya__cardIcon {
    animation: none !important;
  }

  .contacto-module__TpIKya__contactPanel:hover, .contacto-module__TpIKya__mapWrapper:hover, .contacto-module__TpIKya__contactCard:hover, .contacto-module__TpIKya__socialIcon:hover, .contacto-module__TpIKya__cardAction:hover, .contacto-module__TpIKya__directionsButton:hover {
    transform: none !important;
  }

  .contacto-module__TpIKya__contactPanel:before, .contacto-module__TpIKya__mapWrapper:before, .contacto-module__TpIKya__contactCard:before, .contacto-module__TpIKya__directionsButton:before, .contacto-module__TpIKya__contactSection:after {
    animation: none !important;
  }
}

.contacto-module__TpIKya__contactCard:focus, .contacto-module__TpIKya__cardAction:focus, .contacto-module__TpIKya__socialIcon:focus, .contacto-module__TpIKya__directionsButton:focus {
  outline-offset: 2px;
  outline: 3px solid rgba(184, 134, 11, .5);
}

.contacto-module__TpIKya__contactCard:active {
  transform: translateY(-1px)scale(.98);
}

.contacto-module__TpIKya__cardAction:active, .contacto-module__TpIKya__socialIcon:active, .contacto-module__TpIKya__directionsButton:active {
  transform: translateY(0)scale(.95);
}

@media (prefers-contrast: high) {
  .contacto-module__TpIKya__sectionTitle, .contacto-module__TpIKya__panelTitle, .contacto-module__TpIKya__mapTitle, .contacto-module__TpIKya__cardContent h4 {
    color: #2a1508;
  }

  .contacto-module__TpIKya__sectionDescription, .contacto-module__TpIKya__cardContent p, .contacto-module__TpIKya__mapAddress, .contacto-module__TpIKya__socialLabel {
    color: #3a1d0f;
  }
}

.contacto-module__TpIKya__contactPanel, .contacto-module__TpIKya__mapWrapper, .contacto-module__TpIKya__contactCard, .contacto-module__TpIKya__cardIcon, .contacto-module__TpIKya__socialIcon {
  will-change: transform;
}

.contacto-module__TpIKya__contactPanel:hover, .contacto-module__TpIKya__mapWrapper:hover, .contacto-module__TpIKya__contactCard:hover {
  will-change: auto;
}

/*# sourceMappingURL=_Pages_Main_contenido_2053466a._.css.map*/