.show-light.img-logo {
  max-width: auto;
  max-height: 70px;
}
p.text{
  text-align: justify;
  font-family: 'text-normal';
  font-size: 20px;
}

.contact-area.contacto {
  margin-top: 3rem;
}
h2.title.section-title{
  font-family: var(--font_beatricetrial);
}

#preloader{
  background-color: black;
}
/* Asegurar que la sección ocupa toda la pantalla */
.work-details-area.custom {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Pantalla completa */
  overflow: hidden;
}

/* Video de fondo */
#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Contenido por encima del video */
.section-content.custom {
  position: relative;
  z-index: 1;
  color: #fff;
  /* texto blanco para que se lea */
  text-align: center;
  padding-top: 100px;
  /* Deja espacio para tu menú */
}

.offcanvas-3__menu.custom {
  overflow-y: hidden;
  overflow-x: hidden;
  padding-top: 30px;
}

.footer-area ul.social-links {
  list-style: none;
  display: flex;
  /* activa flexbox */
  gap: 15px;
  /* espacio entre <li> */
  padding: 0;
  margin: 0;
  margin-top: 0;
}

.hero-area-inner.custom {
  padding-top: 82px;
}

div.thumb.custom {
  max-height: 800px;
}

.about-area .section-content .text-wrapper.custom {
  margin-top: 0;
}

.about-area .section-content .section-title.custom,
.about-area .section-content .text.custom {
  max-width: 100%;
  text-align: justify;
}

.about-area .section-content .section-title.custom {
  margin-bottom: 40px;
  color: var(--secondary)
}

.about-area .section-content .bg.custom-bg:after {
  background-color: white;
}

.image-wrapper.custom {
  margin-top: 90px;
}

#menu.main-menu.opcions-menu {
  position: absolute;
  left: 2%;
  display: inline-flex;
}

ul.ul-menu {
  display: flex;
}

.header__button.btn-nav {
  position: absolute;
  right: 3%;
}

.header__button .btn-nav {
  border-radius: 12px;
  background-color: none;
  border: 1px solid #2f472f;
  color: #2f472f;
  padding: 11px;
  font-weight: 600;
}

h2#h2-portfolio.section-title {
  max-width: fit-content;
}

div.moviment-div {
  animation: wcf_animation_float_x 6s ease-in-out infinite;
}

@keyframes wcf_animation_float_x {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(70px);
  }

  100% {
    transform: translateX(0);
  }
}

span.span-subrallado {
  display: block;
}

/* .area-bg2 {
  overflow: hidden;
}

.work-details-area.custom2,
.hero-area2,
.area-bg2 {
  height: 90vh;
  width: 100vw;
  position: relative;
  margin-top: 90px;
} */

/* 1. Prepara el contenedor */
.area-bg2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 99vh; /* O el alto que tuviera tu sección */
  margin-top: 80px;
}

/* 2. Estira el iframe para que cubra todo */
.area-bg2 iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* Asgura que cubra todo (efecto 'cover') */
  width: 100vw;
  min-width: 177.77vh; 
  height: 56.25vw;   
  min-height: 100vh;
  
  /* 3. Evita que se pueda hacer clic en él */
  pointer-events: none;
}
.bg-video2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Escala manteniendo proporciones, cubre toda la pantalla */
  transform: translate(-50%, -50%);
}

.hero-area {
  position: relative;
  width: 100%;
  height: 100%;
  /* ocupa toda la pantalla */
  overflow: hidden;
}

.hero-area video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  /* ajusta el video como background */
}

@font-face {
  font-family: 'menu';
  /* nombre que usarás en CSS */
  src: url('/assets/fonts/Italiana-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'text-normal';
  /* nombre que usarás en CSS */
  src: url('/assets/fonts/Lora-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'subtitles';
  /* nombre que usarás en CSS */
  src: url('/assets/fonts/Lora-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

h3.custom-title

.header-area .main-menu>ul>li a.text-menu {
  text-transform: uppercase;
  font-family: 'menu';
}

.header-area .main-menu>ul>li a.text-menu:hover {
  text-decoration: underline;
  font-weight: 650;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  color: black;
}

/* CSS */
.whatsapp-fab {
  position: fixed;
  padding-top: 5px;
  margin-bottom: 5px;
  right: 20px;
  /* separación desde el borde derecho */
  bottom: calc(70px + env(safe-area-inset-bottom));
  /* respeta la muesca / home indicator en iOS */
  z-index: 9999;
  /* siempre por encima */
  display: inline-block;
  width: 46px;
  /* tamaño por defecto */
  height: 46px;
  border-radius: 50%;
  /* forma circular */
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.25); */
  overflow: hidden;
  background: rgba(255, 255, 255, 1);
  transition: transform 150ms ease, box-shadow 150ms ease;
  text-decoration: none;
  /* quitar subrayado si es enlace */
  -webkit-tap-highlight-color: transparent;
  /* evitar highlight en móvil */
}

/* Imagen dentro del enlace: que se adapte al contenedor */
.whatsapp-fab .whatsapp-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* mantiene proporciones */
}

/* Efecto hover/focus */
.whatsapp-fab:hover,
.whatsapp-fab:focus {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.30);
  outline: none;
}

/* Tamaños alternativos en pantallas pequeños */
@media (max-width: 480px) {
  .whatsapp-fab {
    width: 46px;
    height: 46px;
    right: 20px;
    bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* Accesibilidad: muestra foco visible en teclado */
.whatsapp-fab:focus-visible {
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
  /* color suave de foco */
}

/* Opcional: versión más discreta (solo icono reducido) */
.whatsapp-fab--small {
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.custom-text {
  text-align: justify;
}

.custom-title {
  font-size: 24px;
  color: var(--secondary);
  font-family: 'subtitles' !important;
}

#custom-div {
  padding-top: 20px;
}

.text-dreta {
  text-align: right;

}

.section-title.custom-title {
  font-size: 35px;
   font-family: 'subtitles' !important;
  color: var(--primary);
  margin-bottom: 20px;
  margin-top: 5px;
}
.session-section{
  padding-top: 70px;
  padding-bottom: 70px;
}

.title.slider-title{
  font-family: var(--font_canelatrial);
}