/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1762505825
Updated: 2025-11-07 08:57:05

*/

/* Limitar el vídeo de fondo al 60% izquierdo con curva */
.elementor-element-1637f9b > .elementor-background-video-container {
  width: 60%;
  right: auto;     /* por si el tema lo fuerza */
  left: 0;
  overflow: hidden;

  /* La curva: una elipse muy ancha que asoma por la derecha */
  -webkit-mask-image: radial-gradient(
    ellipse 140% 190% at 13% 50%,
    #000 50%,
    transparent 60%
  );
          mask-image: radial-gradient(
    ellipse 140% 190% at 13% 50%,
    #000 50%,
    transparent 60%
  );
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}

/* El vídeo en sí debe rellenar ese 60% */
.elementor-element-1637f9b > .elementor-background-video-container video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* Ocultar el vídeo en móvil (se ve raro con la curva a ancho completo) */
@media (max-width: 767px) {
  .elementor-element-1637f9b > .elementor-background-video-container {
    display: none;
  }
}

/* GENERAL */
html, body {overflow-x: hidden;width: 100%;}
.site-footer {display:none;} 
#cookie-notice button#cn-close-notice,
#cookie-notice #cn-close-notice,
#cookie-notice .cn-close-icon {
  display: none !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
    text-align: center;
}


/* COLORS */
.color-theme {color:#75C6D3;}


/* CARRUSEL */
/* oscurecer laterales en el carrusel de elementor, solo desktop/tablet landscape */
@media (min-width: 768px) {
	/* aseguramos que cada slide puede tener overlay */
	.elementor-element-766f2dd .swiper-slide {
		position: relative;
		overflow: hidden;
	}

	/* overlay negro al 50% sobre TODOS los slides por defecto */
	.elementor-element-766f2dd .swiper-slide::before {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.7);
		opacity: 1;
		pointer-events: none;
		transition: opacity 0.4s ease;
	}

	/* el slide central (con swiper-slide-next) SIN overlay */
	.elementor-element-766f2dd .swiper-slide.swiper-slide-next::before {
		opacity: 0;
	}
}


/* FORM */
input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {background: #D3C8BC;border-radius: 25px;margin: 10px 0;border: 1px solid #D3C8BC;}
[type=button], [type=submit], button {background-color: #75C6D3;border: 2px solid #D3C8BC;border-radius: 25px;width: 130px;float: right;color: #ffffff;}
[type=button]:hover, [type=submit]:hover, button:hover {background-color: #D3C8BC;border: 2px solid #75C6D3;}

/* ANIMACIÓN CARRUSEL */
/* Contenedor general: recorta el contenido que se sale */
#animation-carrusel {
  overflow: hidden;
}

/* El widget del encabezado también recorta y posiciona */
#animation-carrusel-text {
  overflow: hidden;
  position: relative;
}

/* Contenedor que crearemos por JS para hacer el carrusel */
#animation-carrusel-text .marquee-inner {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: carrusel-marquee 120s linear infinite;
}

/* El h3 original (y su clon) en línea */
#animation-carrusel-text .marquee-inner .elementor-heading-title {
  display: inline-block;
  padding-right: 4rem; /* separación entre repeticiones */
}

/* Keyframes del deslizamiento */
@keyframes carrusel-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Se desplaza el ancho de una de las copias (50% del total) */
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
.elementor-12 .elementor-element.elementor-element-1637f9b:not(.elementor-motion-effects-element-type-background) {background-image:none!important;}
	
	}


/* carrusel horizontal solo en mobile, sin snap (deslizamiento continuo) */
@media (max-width: 767px) {
  #carrusel-mobile {
    --peek: 10vw;   /* lo que asoma de la siguiente columna */
    --gap: 16px;    /* separación entre cards */
  }

  /* contenedor directo que envuelve las columnas */
  #carrusel-mobile > .elementor-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: var(--gap);

    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;

    /* sin snap = sin saltos */
    scroll-behavior: auto;

    /* para que asome la siguiente */
    padding-right: var(--peek);
    padding-left: 0;
    padding-top: 6px;
    padding-bottom: 6px;

    /* permite vertical y horizontal; el JS decide */
    touch-action: pan-x pan-y;

    /* ocultar scrollbar */
    scrollbar-width: none;
  }

  #carrusel-mobile > .elementor-container::-webkit-scrollbar {
    display: none;
  }

  /* cada columna = slide */
  #carrusel-mobile .elementor-column.elementor-inner-column {
    flex: 0 0 calc(100% - var(--peek)) !important;
    max-width: calc(100% - var(--peek)) !important;
  }

  /* evitar anchos mínimos raros de elementor */
  #carrusel-mobile .elementor-column.elementor-inner-column,
  #carrusel-mobile .elementor-widget-wrap {
    min-width: 0;
  }
}

/* CSS CARRUSEL VIDEOS */
/* Longvita video carousel */
.lv-video-carousel {
  --lv-accent: #75C6D3;
  --lv-radius: 14px;
  --lv-side-overlay: 0.55; /* opacidad negra en laterales */
  width: 100%;
}

/* escenario: aquí ocurre la magia */
.lv-video-carousel .lv-stage {
  position: relative;
  width: 100%;
  overflow: hidden; /* recorta para que solo se vean los laterales */
  aspect-ratio: 16 / 9; /* cambia a 9/16 si tus vídeos son verticales */

  /* reduce altura en pantallas grandes */
  max-height: 550px;     /* baja este valor si lo quieres aún más bajo */
  margin-left: auto;
  margin-right: auto;
}

/* vídeo central al 100% */
.lv-video-carousel .lv-center {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* laterales encima del central */
.lv-video-carousel .lv-side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 2;
  overflow: hidden;
}

.lv-video-carousel .lv-side--prev { left: 0; }
.lv-video-carousel .lv-side--next { right: 0; }

/* vídeos */
.lv-video-carousel .lv-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

/* overlay negro en laterales */
.lv-video-carousel .lv-side-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--lv-side-overlay));
  pointer-events: none;
}

/* botones flecha (encima del overlay) */
.lv-video-carousel .lv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--lv-accent);
  background: rgba(0, 0, 0, 0.15);
  color: var(--lv-accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.15s ease, background 0.15s ease;
}

.lv-video-carousel .lv-nav:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(0, 0, 0, 0.25);
}

.lv-video-carousel .lv-nav:active {
  transform: translateY(-50%) scale(0.98);
}

/* posición: dentro de cada lateral, centrada */
.lv-video-carousel .lv-side--prev .lv-nav { right: 14px; }
.lv-video-carousel .lv-side--next .lv-nav { left: 14px; }

.lv-video-carousel .lv-nav__icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.lv-video-carousel .lv-nav__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* mobile: mismo comportamiento (se ven laterales y flechas) */
@media (max-width: 767px) {
  .lv-video-carousel .lv-side {
    display: block;
    width: 18%; /* si lo quieres igual que desktop: 15% */
  }

  .lv-video-carousel .lv-stage {
    aspect-ratio: 16 / 9;
    max-height: 260px;  /* baja este valor si lo quieres aún más bajo en móvil */
  }

  .lv-video-carousel .lv-nav {
    width: 40px;
    height: 40px;
  }

  .lv-video-carousel .lv-nav__icon {
    width: 18px;
    height: 18px;
  }

  .lv-video-carousel .lv-side video {
    pointer-events: none;
  }
  .lv-video-carousel .lv-nav {
    pointer-events: auto;
  }
}

/* ocultación de secciones */
.lv-hidden { display: none !important; }

/* título centrado (horizontal y vertical) sobre el vídeo central */
.lv-video-carousel .lv-title{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;

  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-family: "Blinker", Sans-serif;
  font-weight: 300; /* normal */
  font-size: 4em;
  line-height: 1.1;
  pointer-events: none;
  text-align: center;
}

@media (max-width: 767px){
  .lv-video-carousel .lv-title{
    font-size: 20px;
    padding: 8px 14px;
  }
}

/* Cargar Blinker desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Blinker:wght@400;600;700&display=swap');

/* === Bolita CTA flotante LonGvita === */
.lv-cta-bubble {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  width: 96px;
  height: 96px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: #75C6D3;
  color: #fff;
  font-family: "Blinker", Sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.1;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  animation: lv-float 3s ease-in-out infinite;
}

.lv-cta-bubble__text {
  position: relative;
  z-index: 3;
}

/* Anillo fino decorativo alrededor */
.lv-cta-bubble__ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(117, 198, 211, 0.5);
  z-index: 2;
  animation: lv-ring-rotate 12s linear infinite;
}

.lv-cta-bubble__ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(117, 198, 211, 0.35);
}

/* Anillo de pulso detrás */
.lv-cta-bubble__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #75C6D3;
  z-index: 1;
  animation: lv-pulse 2.4s ease-out infinite;
}

/* Hover */
.lv-cta-bubble:hover {
  transform: translateX(-50%) scale(1.08);
  background: #000;
  color: #75C6D3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  animation-play-state: paused;
}

.lv-cta-bubble:hover .lv-cta-bubble__pulse {
  background: #000;
}

.lv-cta-bubble:hover .lv-cta-bubble__ring {
  border-color: rgba(0, 0, 0, 0.5);
}

.lv-cta-bubble:hover .lv-cta-bubble__ring::before {
  border-color: rgba(0, 0, 0, 0.35);
}

/* Animaciones */
@keyframes lv-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

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

@keyframes lv-ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 600px) {
  .lv-cta-bubble {
    width: 78px;
    height: 78px;
    font-size: 11px;
    bottom: 18px;
  }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .lv-cta-bubble,
  .lv-cta-bubble__pulse,
  .lv-cta-bubble__ring {
    animation: none;
  }
}