/*
Theme Name: Lara Campos E-commerce - Home 2 Styles
Description: Estilos premium responsivos y modernos para la nueva plantilla de inicio (Home 2).
Version: 1.0
*/

/* ----------------------------------------------------
   1. VARIABLES Y GENERALES
   ---------------------------------------------------- */
:root {
  --color-primary: #ed71a3;
  /* Rosa fucsia principal */
  --color-primary-dark: #bd1e59;
  /* Rosa oscuro */
  --color-secondary: #71c0ef;
  /* Azul claro */
  --color-text-dark: #2c0a54;
  /* Violeta oscuro para textos legibles */
  --color-bg-light: #ffdbe6;
  /* Rosa de fondo muy suave */
  --font-title: 'KidsCute', cursive;
  /* Nueva fuente original (reemplaza Huglove) */
  --font-text: 'Tw Cent MT', 'Century Gothic', 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* @font-face para Tw Cent MT (si se carga de respaldo) */
@font-face {
  font-family: 'Tw Cent MT';
  src: local('Tw Cent MT'), local('Century Gothic'), local('Outfit');
}

/* @font-face para KidsCute (Fuente manuscrita del footer) */
@font-face {
  font-family: 'KidsCute';
  src: url('../../KidsCute-DemoVersion-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* @font-face para Tw Cent MT Bold (Fechas de Eventos) */
@font-face {
  font-family: 'TwCentMTBold';
  src: url('../../TCB_____.TTF') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* Estilos de reset y estructura para aislar el Home 2 */
.home-2-wrapper {
  font-family: var(--font-text);
  color: var(--color-text-dark);
  background-color: #fff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.home-2-wrapper h1,
.home-2-wrapper h2,
.home-2-wrapper h3,
.home-2-wrapper h4,
.home-2-wrapper h5 {
  font-family: var(--font-title);
  font-weight: normal;
  margin: 0;
}

.home-2-wrapper p {
  font-family: var(--font-text);
  margin: 0;
}

/* Contenedores */
.h2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Botones Premium */
.h2-btn-pill {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(237, 113, 163, 0.6);
  transition: var(--transition-smooth);
  text-align: center;
  border: none;
  cursor: pointer;
}

.h2-btn-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(237, 113, 163, 0.8);
  color: var(--color-primary-dark);
}

.h2-btn-pill:active {
  transform: translateY(-1px);
}

/* ----------------------------------------------------
   2. ANNOUNCEMENT BAR (BARRA DE ENVIOS)
   ---------------------------------------------------- */
.h2-announcement-bar {
  background-color: #fff;
  border-bottom: 1px solid #f6f6f6;
  padding: 12px 10px;
  text-align: center;
  position: relative;
  z-index: 1000;
}

.h2-announcement-bar p {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ----------------------------------------------------
   3. HEADER
   ---------------------------------------------------- */
.h2-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.h2-header .h2-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.h2-logo img {
  height: 55px;
  width: auto;
  transition: var(--transition-smooth);
}

.h2-logo:hover img {
  transform: scale(1.05);
}

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

.h2-nav-menu li {
  display: flex;
  align-items: center;
}

.h2-nav-menu li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background-color: #e0e0e0;
  margin-left: 20px;
}

.h2-nav-menu a {
  text-decoration: none;
  color: #000;
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  position: relative;
}

.h2-nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

.h2-nav-menu a:hover {
  color: var(--color-primary);
}

.h2-nav-menu a:hover::after {
  width: 100%;
}

.h2-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.h2-social-icons {
  display: flex;
  gap: 10px;
}

.h2-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.h2-social-icon svg,
.h2-social-icon img {
  width: 16px;
  height: 16px;
}

.h2-social-icon:hover {
  border-color: var(--color-primary);
  background-color: var(--color-bg-light);
  transform: translateY(-2px);
}

.h2-cart-trigger {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-smooth);
}

.h2-cart-trigger img {
  width: 24px;
  height: 24px;
}

.h2-cart-trigger:hover {
  transform: scale(1.1);
}

.h2-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 11px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(237, 113, 163, 0.4);
}

/* Menú móvil hamburguesa */
.h2-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 5px;
}

.h2-mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* ----------------------------------------------------
   4. HERO SLIDER
   ---------------------------------------------------- */
.h2-hero-section {
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, #ffd5e3 100%);
  position: relative;
  padding: 60px 0 0 0;
  overflow: hidden;
}

.h2-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/template2/lara_bk_events.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  pointer-events: none;
}

/* Estilos para Estrellas Blancas Decorativas de Fondo */
.h2-hero-decor-star {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.15));
}

.h2-hero-decor-star.star-1 {
  bottom: 8%;
  left: 3%;
  width: 130px;
  opacity: 0.65;
  transform: rotate(-15deg);
  animation: float-star 8s ease-in-out infinite;
}

.h2-hero-decor-star.star-2 {
  top: 18%;
  right: 6%;
  width: 110px;
  opacity: 0.55;
  transform: rotate(20deg);
  animation: float-star-2 9s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes float-star {

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

  50% {
    transform: translateY(-15px) rotate(-10deg);
  }
}

@keyframes float-star-2 {

  0%,
  100% {
    transform: translateY(0) rotate(20deg);
  }

  50% {
    transform: translateY(-20px) rotate(25deg);
  }
}


.h2-hero-section .h2-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.h2-hero-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.h2-hero-main-img {
  max-width: 78%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  margin-bottom: 0;
  display: block;
}

.h2-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-bottom: 80px;
}

.h2-hero-right .h2-btn-pill {
  margin-top: 15px;
  margin-left: 80px;
}

.h2-hero-right-decor {
  position: absolute;
  top: -80px;
  right: -20px;
  width: 200px;
  height: auto;
  transform: rotate(12deg);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.05));
  animation: float-reverse 7s ease-in-out infinite;
}

.h2-hero-tag {
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000;
}

.h2-hero-title {
  font-size: 68px;
  color: var(--color-primary);
  line-height: 1.05;
  margin-bottom: 15px;
  text-shadow: 1px 1px 0px #fff;
}

.h2-hero-desc {
  font-size: 12.5px;
  font-weight: 800;
  color: #222;
  margin-bottom: 35px;
  letter-spacing: 0.4px;
  max-width: 90%;
  line-height: 1.4;
}

/* Dots del Slider */
.h2-slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.h2-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.h2-slider-dot.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* ----------------------------------------------------
   5. TIENDA (PRODUCT GRID / CAROUSEL)
   ---------------------------------------------------- */
.h2-shop-section {
  padding: 80px 0;
  background: #fff !important;
  background-color: #fff !important;
  /* Forzar fondo blanco inmaculado */
  position: relative;
  box-shadow: none !important;
}

/* Sombra rosa vertical en los bordes extremos de la pantalla */
.h2-shop-section::before,
.h2-shop-section::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 150px !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.h2-shop-section::before {
  left: 0 !important;
  background: radial-gradient(ellipse at left center, rgba(237, 113, 163, 0.15) 0%, rgba(237, 113, 163, 0) 70%) !important;
}

.h2-shop-section::after {
  right: 0 !important;
  background: radial-gradient(ellipse at right center, rgba(237, 113, 163, 0.15) 0%, rgba(237, 113, 163, 0) 70%) !important;
}

.h2-shop-whatsapp {
  position: absolute;
  top: -30px;
  right: 5%;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 99;
  transition: var(--transition-smooth);
}

.h2-shop-whatsapp img {
  width: 48px;
  height: 48px;
}

.h2-shop-whatsapp:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.h2-section-title {
  font-family: var(--font-title) !important;
  font-size: 56px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 35px;
  text-transform: none !important;
}

.h2-shop-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0 auto 45px auto;
  padding: 0;
  max-width: 1000px;
}

.h2-shop-filters li {
  display: flex;
  align-items: center;
}

.h2-shop-filters li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #e0e0e0;
  margin-left: 15px;
}

.h2-filter-btn {
  background: none;
  border: none;
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  color: #999;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 5px 10px;
}

.h2-filter-btn:hover,
.h2-filter-btn.active {
  color: var(--color-primary);
}

/* Carousel de Productos */
.h2-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 45px;
  padding: 0 45px;
  /* Espacio para que los botones no se encimen en los productos */
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Se removieron los ::before y ::after del carrusel para llevarlos a los laterales de la pantalla (.h2-shop-section) */

.h2-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.h2-carousel-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.h2-product-card {
  min-width: calc(25% - 19px);
  max-width: calc(25% - 19px);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.h2-prod-img-box {
  width: 100%;
  aspect-ratio: 1.25;
  background-color: #f2edf0;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.h2-prod-img-box img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.h2-stock-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.h2-stock-badge img,
.h2-stock-badge svg {
  width: 14px;
  height: 14px;
}

.h2-stock-badge.in-stock {
  background-color: #fff;
}

.h2-stock-badge.out-of-stock {
  background-color: #fff;
}

.h2-product-card:hover .h2-prod-img-box {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(237, 113, 163, 0.1);
}

.h2-product-card:hover .h2-prod-img-box img {
  transform: scale(1.08);
}

.home-2-wrapper .h2-product-title,
.home-2-wrapper .h2-product-title a {
  font-family: var(--font-text) !important;
  font-weight: 900 !important;
  /* Forzado a súper negrita */
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #000 !important;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.home-2-wrapper .h2-product-price {
  font-family: var(--font-text) !important;
  font-weight: bold !important;
  font-size: 15px;
  color: var(--color-primary) !important;
  display: block;
}

/* Botones de navegación del carrusel */
.h2-carousel-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  background-color: #fff !important;
  border: none !important;
  outline: none !important;
  border-radius: 50% !important;
  /* Círculo perfecto */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(237, 113, 163, 0.35) !important;
  /* Sombra rosa localizada alrededor del icon */
  cursor: pointer !important;
  z-index: 10 !important;
  transition: var(--transition-smooth) !important;
}

.h2-carousel-nav:hover {
  transform: translateY(-50%) scale(1.15) !important;
}

.h2-carousel-nav img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  transition: var(--transition-smooth) !important;
}

.h2-carousel-nav:hover img {
  filter: none;
}

.h2-carousel-nav.prev {
  left: -20px !important;
}

.h2-carousel-nav.next {
  right: -20px !important;
}

/* Botón inferior Ir a la Tienda */
.h2-shop-footer-btn {
  text-align: center;
  margin-top: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.h2-shop-footer-btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #f1e1e5;
  z-index: 1;
}

.h2-shop-footer-btn .h2-btn-pill {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

/* ----------------------------------------------------
   6. INSTAGRAM GRID
   ---------------------------------------------------- */
.h2-instagram-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.h2-instagram-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/template2/bkhrd.svg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  /* Aumentado de 0.4 a 1 para hacer los corazones mucho más intensos/rosas */
  pointer-events: none;
}

.h2-instagram-title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
}

.h2-instagram-title-box img {
  height: 40px;
  width: auto;
}

.h2-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.h2-instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.h2-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.h2-instagram-item::after {
  content: "📷";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(237, 113, 163, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  opacity: 0;
  transition: var(--transition-smooth);
}

.h2-instagram-item:hover img {
  transform: scale(1.05);
}

.h2-instagram-item:hover::after {
  opacity: 1;
}

/* ----------------------------------------------------
   7. TAMBIÉN PUEDES SEGUIRME EN
   ---------------------------------------------------- */
.h2-follow-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(to bottom, #ffffff 0%, #fff2f7 100%) !important;
  position: relative;
  z-index: 2;
}

.h2-follow-title {
  font-family: var(--font-title) !important;
  font-size: 42px;
  color: var(--color-primary);
  margin-bottom: 55px;
  text-transform: none !important;
}

.h2-follow-icons {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.h2-follow-icon-link {
  transition: var(--transition-smooth);
  position: relative;
  display: inline-block;
}

.h2-follow-icon-link:nth-child(1) {
  transform: translateY(25px);
}

.h2-follow-icon-link:nth-child(2) {
  transform: translateY(-10px);
}

.h2-follow-icon-link:nth-child(3) {
  transform: translateY(-10px);
}

.h2-follow-icon-link:nth-child(4) {
  transform: translateY(25px);
}

.h2-follow-icon-link img {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.06));
  transition: var(--transition-smooth);
}

.h2-follow-icon-link:nth-child(1):hover {
  transform: translateY(15px) scale(1.08);
}

.h2-follow-icon-link:nth-child(2):hover {
  transform: translateY(-20px) scale(1.08);
}

.h2-follow-icon-link:nth-child(3):hover {
  transform: translateY(-20px) scale(1.08);
}

.h2-follow-icon-link:nth-child(4):hover {
  transform: translateY(15px) scale(1.08);
}

.h2-follow-icon-link:hover img {
  filter: drop-shadow(0 12px 22px rgba(237, 113, 163, 0.25));
}

/* ----------------------------------------------------
   8. YOUTUBE VIDEO SECTIO
   ---------------------------------------------------- */
.h2-video-section {
  padding: 60px 0 100px 0;
  background: linear-gradient(to bottom, #fff2f7 0%, #ffffff 100%) !important;
  /* Degradado rosa que termina en blanco para conectar perfectamente con la nube y eventos */
  position: relative;
}

.h2-video-container {
  max-width: 850px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(255, 20, 147, 0.4);
  /* Shadow rosa fuerte pequeña */
  border: 8px solid #fff;
  background-color: #000;
  position: relative;
  z-index: 5;
}

.h2-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Divisor de Nubes de Fondo */
.h2-cloud-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140%;
  /* Aumentado para que la nube abarque más arriba y no se vea cortada */
  object-fit: cover;
  object-position: bottom;
  pointer-events: none;
  z-index: 3;
}

/* ----------------------------------------------------
   9. EVENTOS (TOUR SECTION) 
   ---------------------------------------------------- */
.h2-events-section {
  background-color: #ffffff !important;
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.h2-events-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/template2/lara_bk_events.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  pointer-events: none;
}

.h2-events-section::after {
  content: "";
  position: absolute;
  bottom: -30px; /* Más abajo para alejarlo definitivamente de los logos */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px; /* Más angosto */
  height: 160px; /* Mucho más bajito para no tocarlos */
  background:
    url('../img/template2/bkhrd.svg') center bottom / cover no-repeat,
    radial-gradient(ellipse at bottom, rgba(255, 228, 240, 0.9) 0%, rgba(255, 242, 247, 0.2) 60%, transparent 80%);
  border-radius: 350px 350px 0 0;
  pointer-events: none;
  z-index: 1;
  /* Resplandor enfocado estrictamente abajo y al centro */
}

.h2-events-section .h2-container {
  position: relative;
  z-index: 2;
  /* Para asegurar que el texto y los logos no qaueden tapadoas por la sombra rosa */
}

/* Estrellas Decorativas en Sección Eventos */
.h2-event-decor-star {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.15));
  animation: float-star-event 10s ease-in-out infinite;
}

.h2-event-decor-star.star-left {
  top: 12%;
  left: 4%;
  width: 110px;
  opacity: 0.5;
  transform: rotate(-10deg);
}

.h2-event-decor-star.star-right {
  bottom: 12%;
  right: 4%;
  width: 100px;
  opacity: 0.45;
  transform: rotate(15deg);
  animation-delay: 3s;
}

@keyframes float-star-event {

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

  50% {
    transform: translateY(-18px) rotate(-5deg);
  }
}


.h2-events-title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.h2-events-title-box::before,
.h2-events-title-box::after {
  content: "";
  display: block;
  flex: 1;
  max-width: 250px;
  height: 1px;
  background-color: #e0e0e0;
}

.h2-events-title {
  font-family: var(--font-title) !important;
  font-size: 56px;
  color: var(--color-primary);
  margin: 0;
  text-transform: none !important;
}

.home-2-wrapper .h2-events-grid {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 30px !important;
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
}

.home-2-wrapper .h2-events-left {
  flex: 0 0 35% !important;
  max-width: 35% !important;
  display: flex !important;
  justify-content: center !important;
  align-self: flex-end !important;
  margin-bottom: -80px !important;
  /* Compensa el padding de la sección para pegarse al footer */
}

.home-2-wrapper .h2-events-main-img {
  max-width: 100% !important;
  height: auto !important;
  filter: drop-shadow(0 15px 30px rgba(237, 113, 163, 0.15)) !important;
}

.home-2-wrapper .h2-events-center {
  flex: 0 0 30% !important;
  max-width: 30% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.home-2-wrapper .h2-events-right {
  flex: 0 0 35% !important;
  max-width: 35% !important;
  display: flex !important;
  flex-direction: column !important;
}

.home-2-wrapper .h2-events-show-logo {
  max-width: 250px !important;
  width: 100% !important;
  margin: 0 auto 30px auto !important;
  display: block !important;
}

.home-2-wrapper .h2-events-sale-announcement {
  text-align: center !important;
  font-family: var(--font-text) !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 40px !important;
  color: #000 !important;
  line-height: 1.4 !important;
}

/* Patrocinadores */
.home-2-wrapper .h2-events-partners {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px 40px !important;
  align-items: center !important;
  justify-items: center !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.home-2-wrapper .h2-events-partners img {
  height: 60px !important;
  max-height: 60px !important;
  width: auto !important;
  opacity: 1 !important;
  filter: none !important;
  transition: var(--transition-smooth) !important;
  object-fit: contain !important;
}

.home-2-wrapper .h2-events-partners img:hover {
  transform: scale(1.08) !important;
}


/* Lista de Fechas */
.h2-events-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.h2-event-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.h2-event-row:not(:last-child) {
  border-bottom: 1px solid #e2d2d6;
  padding-bottom: 30px;
}

.h2-event-meta h4 {
  font-family: var(--font-text);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 8px;
}

.home-2-wrapper .h2-event-date-large {
  font-family: 'TwCentMTBold', 'Tw Cent MT', sans-serif !important;
  font-size: 95px; /* Increased slightly for prominence */
  color: var(--color-primary);
  line-height: 0.8;
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.home-2-wrapper .h2-event-date-large span {
  font-family: 'TwCentMTBold', 'Tw Cent MT', sans-serif !important;
  font-size: 22px;
  text-transform: uppercase;
  white-space: nowrap; /* Ensure it doesn't wrap */
}

.h2-event-details p {
  font-size: 15px; /* Increased from 13px */
  font-weight: 900; /* More prominent */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: #000;
}

.h2-event-details p span {
  color: var(--color-primary);
}

.h2-event-action {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 5px;
}

.h2-event-action .h2-btn-pill {
  padding: 15px 50px; /* More horizontal padding */
  font-size: 15px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(237, 113, 163, 0.2); /* Softer shadow like image 2 */
  width: auto;
  min-width: 280px;
  letter-spacing: 1.2px;
}

/* ----------------------------------------------------
   10. NEWSLETTER & FOOTER INTERACTIVO
   ---------------------------------------------------- */
.h2-newsletter-section {
  background: linear-gradient(to bottom, #ffdbe6 0%, #fff4f9 100%) !important; /* Más rosado para contrastar la nube blanca */
  padding: 160px 0 240px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.h2-newsletter-pattern {
  display: none;
}

/* Estrellas Decorativas Footer */
.h2-foot-decor-star {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  animation: float-star-footer 8s ease-in-out infinite;
}

.h2-foot-decor-star.star-left {
  top: -20px;
  left: -30px;
  width: 140px;
  transform: rotate(-20deg);
  filter: opacity(0.8);
}

.h2-foot-decor-star.star-right {
  top: 50px;
  right: 5%;
  width: 160px; /* Ajustado para la nueva estrella */
  transform: rotate(25deg); /* Rotación opuesta para variedad visual */
  animation-delay: 2s;
}

@keyframes float-star-footer {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.h2-newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.h2-newsletter-title {
  font-family: 'KidsCute', var(--font-title), cursive !important;
  font-weight: normal !important;
  font-size: 55px;
  text-transform: none !important;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.h2-newsletter-subtitle {
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 35px;
  line-height: 1.4;
}

.h2-newsletter-btn {
  display: inline-block;
  background-color: #fff;
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 18px 45px;
  border-radius: 50px;
  color: #000;
  box-shadow: 0 10px 30px rgba(237, 113, 163, 0.2);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  animation: pulse 2.5s infinite;
}

.h2-newsletter-btn span {
  color: var(--color-primary);
}

.h2-newsletter-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(237, 113, 163, 0.35);
}

/* Ilustraciones Flotantes del Footer */
.h2-foot-decor {
  position: absolute;
  bottom: 0px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.05));
  animation: float 6.5s ease-in-out infinite;
}

.h2-foot-decor.lara {
  left: 0;
  width: 220px;
  bottom: 20px;
  animation-delay: 0.5s;
}

.h2-foot-decor.rene {
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  bottom: 10px;
  animation-delay: 1.5s;
}

.h2-foot-decor.galleta {
  right: 0%;
  width: 320px;
  bottom: -5px;
  animation-delay: 1s;
}

/* Footer de Barra Blanca Final */
.h2-footer-bar {
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 30px 0;
  position: relative;
  z-index: 3;
}

.h2-footer-bar .h2-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.h2-foot-contact,
.h2-foot-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.h2-foot-contact::after,
.h2-foot-socials::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 25px;
  width: 1px;
  background-color: #ddd;
}

@media (max-width: 768px) {

  .h2-foot-contact::after,
  .h2-foot-socials::after {
    display: none;
  }
}

.h2-foot-contact-title {
  font-family: 'KidsCute', var(--font-title), cursive !important;
  font-size: 28px !important;
  text-transform: none !important;
  color: var(--color-primary);
}

.h2-foot-contact-email {
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.h2-foot-socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.h2-foot-socials-title {
  font-family: 'KidsCute', var(--font-title), cursive !important;
  font-size: 28px !important;
  text-transform: none !important;
  color: var(--color-primary);
}

.h2-foot-social-list {
  display: flex;
  gap: 8px;
}

.h2-foot-social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.h2-foot-social-link svg {
  width: 12px;
  height: 12px;
}

.h2-foot-social-link:hover {
  border-color: var(--color-primary);
  background-color: var(--color-bg-light);
  transform: translateY(-2px);
}

.h2-foot-links {
  display: flex;
  gap: 20px;
}

.h2-foot-links a {
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.h2-foot-links a:hover {
  color: var(--color-primary);
}

/* ----------------------------------------------------
   11. WHATSAPP FLOATING BUTTON
   ---------------------------------------------------- */
.h2-whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

.h2-whatsapp-float img {
  width: 32px;
  height: 32px;
}

.h2-whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* ----------------------------------------------------
   12. ANIMACIONES CSS
   ---------------------------------------------------- */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes float-reverse {
  0% {
    transform: rotate(12deg) translateY(0px);
  }

  50% {
    transform: rotate(12deg) translateY(12px);
  }

  100% {
    transform: rotate(12deg) translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(237, 113, 163, 0.2);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(237, 113, 163, 0.4);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(237, 113, 163, 0.2);
  }
}

/* ----------------------------------------------------
   13. RESPONSIVE DESIGN (BREAKPOINTS)
   ---------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .h2-hero-title {
    font-size: 52px;
  }

  .h2-product-card {
    min-width: calc(33.333% - 17px);
    max-width: calc(33.333% - 17px);
  }
}

@media screen and (max-width: 860px) {

  /* Header */
  .h2-header {
    padding: 10px 0;
  }

  .h2-nav-menu {
    display: none;
    /* Se oculta para el menú móvil */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    gap: 15px;
  }

  .h2-nav-menu.active {
    display: flex;
  }

  .h2-nav-menu li:not(:last-child)::after {
    display: none;
  }

  .h2-mobile-toggle {
    display: flex;
  }

  /* Hero */
  .h2-hero-section {
    padding: 30px 0 0 0;
  }

  .h2-hero-section .h2-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .h2-hero-right {
    align-items: center;
    padding-bottom: 50px;
  }

  .h2-hero-right .h2-btn-pill {
    margin-left: 0;
  }

  .h2-hero-desc {
    max-width: 100%;
  }

  .h2-hero-right-decor {
    width: 100px;
    top: -40px;
    right: 10px;
  }

  /* Tienda */
  .h2-carousel-container {
    padding: 0 25px !important;
  }

  .h2-carousel-container::before,
  .h2-carousel-container::after {
    width: 90px;
  }

  .h2-carousel-nav.prev {
    left: 0 !important;
  }

  .h2-carousel-nav.next {
    right: 0 !important;
  }

  .h2-product-card {
    min-width: calc(50% - 13px);
    max-width: calc(50% - 13px);
  }

  .h2-instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Eventos */
  .h2-events-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .h2-event-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .h2-event-action {
    justify-content: center;
    margin-top: 10px;
  }

  .home-2-wrapper .h2-event-date-large {
    justify-content: center;
  }

  .h2-events-partners {
    max-width: 100%;
  }

  /* Newsletter */
  .h2-foot-decor.lara,
  .h2-foot-decor.galleta {
    display: none;
  }

  .h2-foot-decor-star.star-left {
    width: 80px;
    top: 10px;
  }

  .h2-foot-decor-star.star-right {
    width: 100px;
    top: 30px;
    right: 2%;
  }

  .h2-foot-decor.rene {
    left: calc(50% - 40px);
    width: 80px;
  }

  /* Footer */
  .h2-footer-bar .h2-container {
    flex-direction: column;
    text-align: center;
  }

  .h2-cloud-divider {
    height: 90px;
  }
}

@media screen and (max-width: 480px) {
  .h2-hero-title {
    font-size: 38px;
  }

  .h2-product-card {
    min-width: 100%;
    max-width: 100%;
  }

  .h2-instagram-grid {
    grid-template-columns: 1fr;
  }

  .h2-section-title {
    font-size: 36px;
  }

  .h2-announcement-bar p {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .h2-footer-bar {
    padding: 20px 0;
  }

  .h2-foot-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ----------------------------------------------------
   X. NUEVOS DECORADORES DE FONDO PREMIUM
   ---------------------------------------------------- */
.h2-page-bg-stars {
  background-image: url('../img/template2/lara_bk_events.svg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #fcfaff; 
  position: relative;
}

.h2-page-bg-hearts {
  background-image: url('../img/template2/bkhrd.svg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #fff8fa; 
  position: relative;
}

.h2-card-premium {
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  border-radius: 35px !important;
  /* Sombras explosivas y vibrantes que sacan la tarjeta del fondo */
  box-shadow: 
    0 35px 95px rgba(237, 113, 163, 0.42), 
    0 15px 40px rgba(237, 113, 163, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6) !important;
  border: 2px solid rgba(237, 113, 163, 0.18) !important; 
  padding: 55px !important;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.h2-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 45px 115px rgba(237, 113, 163, 0.52), 
    0 20px 50px rgba(237, 113, 163, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(237, 113, 163, 0.25) !important;
}