.elementor-241 .elementor-element.elementor-element-153f17f{--display:flex;}.elementor-241 .elementor-element.elementor-element-153f17f:not(.elementor-motion-effects-element-type-background), .elementor-241 .elementor-element.elementor-element-153f17f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://carabibas.com/wp-content/uploads/2026/02/WhatsApp-Image-2026-02-04-at-11.14.43.jpeg");background-position:-55px 556px;}.elementor-241 .elementor-element.elementor-element-153f17f.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-241 .elementor-element.elementor-element-2d47053{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:1024px){.elementor-241 .elementor-element.elementor-element-153f17f:not(.elementor-motion-effects-element-type-background), .elementor-241 .elementor-element.elementor-element-153f17f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-position:0px 0px;}}@media(max-width:767px){.elementor-241 .elementor-element.elementor-element-153f17f{--width:366.8px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-241 .elementor-element.elementor-element-153f17f:not(.elementor-motion-effects-element-type-background), .elementor-241 .elementor-element.elementor-element-153f17f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-position:800px 592px;}}/* Start custom CSS for html, class: .elementor-element-8c580e3 */.catalog-hero {
  position: relative;
  height: 30vh;
  min-height: 280px;
  max-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.catalog-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 0 40px;
}

.catalog-hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C4A47C;
  display: block;
  margin-bottom: 12px;
}

.catalog-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #F5F5F5;
  margin: 0 0 12px 0;
}

.catalog-hero__text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.85);
  margin: 0;
}

/* Ocultar el botón scroll en versión minimal */
.catalog-hero__scroll {
  display: none;
}

@media (max-width: 768px) {
  .catalog-hero {
    height: 28vh;
    min-height: 250px;
    margin-bottom: 40px;
  }
  
  .catalog-hero__title {
    font-size: 32px;
  }
  
  .catalog-hero__text {
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9dc1818 *//* ============================================
   CARABIBAS - CATÁLOGO DE VINOS
   Versión mejorada con precios y colores corregidos
   ============================================ */

/* CONTENEDOR PRINCIPAL */
.carabibas-catalog {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  background: none; /* Fondo negro del catálogo */
}

/* GRID DE VINOS */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

/* ========================================
   TARJETA INDIVIDUAL
   ======================================== */
.wine-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wine-card:hover {
  transform: translateY(-12px);
}

/* ========================================
   IMAGEN
   ======================================== */
.wine-card__image-link {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.wine-card__image {
  position: relative;
  background: #F5F5F5; /* Fondo claro para la imagen */
  aspect-ratio: 3/4;
  overflow: hidden;
}

.wine-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wine-card:hover .wine-card__image img {
  transform: scale(1.08);
}

/* Overlay sutil al hover */
.wine-card__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0) 0%,
    rgba(5, 5, 5, 0.25) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wine-card:hover .wine-card__image::after {
  opacity: 1;
}

/* ========================================
   BADGE "EDICIÓN LIMITADA"
   ======================================== */
.wine-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #F5F5F5;
  background: #C4A47C;
  padding: 8px 16px;
  box-shadow: 0 4px 12px rgba(196, 164, 124, 0.4);
}

/* ========================================
   CONTENIDO - TEXTOS
   ======================================== */
.wine-card__content {
  text-align: center;
  padding: 0 16px;
}

/* CATEGORÍA */
.wine-card__category {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C4A47C; /* Dorado para categoría */
  margin-bottom: 12px;
}

/* TÍTULO DEL VINO */
.wine-card__title {
  margin: 0 0 8px 0;
}

.wine-card__title a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #F5F5F5; /* BLANCO para el título */
  text-decoration: none;
  transition: color 0.3s ease;
}

.wine-card__title a:hover {
  color: #C4A47C; /* Dorado al hover */
}

/* AÑADA (AÑO) */
.wine-card__year {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 245, 245, 0.6); /* Blanco suave */
  margin: 0 0 16px 0;
}

/* DESCRIPCIÓN CORTA */
.wine-card__excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.75); /* Blanco más visible */
  margin: 0 0 20px 0;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

/* PRECIO */
.wine-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: #C4A47C; /* Dorado para el precio */
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

/* ========================================
   BOTÓN "VER DETALLES"
   ======================================== */
.wine-card__button {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #050505; /* Negro para contraste */
  background: #F5F5F5; /* Fondo blanco */
  border: 2px solid #F5F5F5;
  padding: 14px 36px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wine-card__button:hover {
  background: transparent;
  color: #F5F5F5; /* Texto blanco al hover */
  border-color: #C4A47C; /* Borde dorado */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 164, 124, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .carabibas-catalog {
    padding: 60px 24px;
  }
  
  .wine-card__title a {
    font-size: 24px;
  }
  
  .wine-card__price {
    font-size: 20px;
  }
  
  .wine-card__button {
    padding: 12px 28px;
    font-size: 12px;
  }
}

/* ========================================
   ANIMACIÓN DE ENTRADA
   ======================================== */
.wine-card {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.wine-card:nth-child(1) { animation-delay: 0.15s; }
.wine-card:nth-child(2) { animation-delay: 0.3s; }
.wine-card:nth-child(3) { animation-delay: 0.45s; }
.wine-card:nth-child(4) { animation-delay: 0.6s; }
.wine-card:nth-child(5) { animation-delay: 0.75s; }
.wine-card:nth-child(6) { animation-delay: 0.9s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   ESTADOS ESPECIALES
   ======================================== */

/* Si un vino está agotado */
.wine-card--sold-out .wine-card__image::before {
  content: 'Agotado';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F5F5F5;
  background: rgba(5, 5, 5, 0.85);
  padding: 12px 24px;
}

.wine-card--sold-out .wine-card__image img {
  opacity: 0.4;
  filter: grayscale(1);
}

/* Efecto brillo sutil en el badge */
.wine-card__badge {
  animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(196, 164, 124, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(196, 164, 124, 0.6);
  }
}/* End custom CSS */