@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat|Material+Icons&display=swap');

.hero-background {
    animation: kenburns-bottom 2s ease-out both ;
}
.bg-head{
    -webkit-animation:kenburns-bottom 2s ease-out both;
    animation:kenburns-bottom 2s ease-out both;
}
@keyframes kenburns-bottom {
    0% {
        transform: scale(1) translateY(0);
        transform-origin: 80% 94%;
    }
    100% {
        transform: scale(1.04) translateY(5px);
        transform-origin: bottom;
    }
}

.text-hero-header{
    color: white;
    font-size: 22px;
}

.text-focus-in{
    -webkit-animation:text-focus-in 1.8s cubic-bezier(.55,.085,.68,.53) both;
    animation:text-focus-in 1.8s cubic-bezier(.55,.085,.68,.53) both
}
@-webkit-keyframes text-focus-in{0%{-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-filter:blur(0);filter:blur(0);opacity:1}}@keyframes text-focus-in{0%{-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-filter:blur(0);filter:blur(0);opacity:1}}

/* Estilos para la sección "Historia" */
.historia {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    /* Fondo blanco */
}

.historia h1 {
    font-size: 24px;
}

.historia p {
    font-size: 16px;
}


.slide-in-top1{-webkit-animation:slide-in-top1 1s cubic-bezier(.25,.46,.45,.94) both;animation:slide-in-top1 1s cubic-bezier(.25,.46,.45,.94) both}
.slide-in-top{-webkit-animation:slide-in-top 1.8s cubic-bezier(.25,.46,.45,.94) both;animation:slide-in-top 1.8s cubic-bezier(.25,.46,.45,.94) both}

@-webkit-keyframes slide-in-top1{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes slide-in-top{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}
@-webkit-keyframes slide-in-top{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes slide-in-top{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}

/* Estilos para la sección "Nav" */
:root {
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --black-color: hsl(220, 24%, 12%);
    --black-color-light: hsl(220, 24%, 15%);
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);

    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
  }
  ul {
    list-style: none;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
  }
/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #7B37CF;
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
  }
  /*=============== NAV ===============*/
  .nav {
    height: var(--header-height);
  }
  .nav__logo,
  .nav__burger,
  .nav__close {
    color: var(--white-color);
  }
  .nav__data {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: var(--font-semi-bold);
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
  }
  .nav__logo i {
    font-weight: initial;
    font-size: 1.25rem;
  }
  .nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
  }
  .nav__burger,
  .nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
  }
  .nav__close {
    opacity: 0;
  }
  /* Navigation for mobile devices */
  @media screen and (max-width: 1118px) {
    .nav__menu {
      position: absolute;
      left: 0;
      top: 2.5rem;
      width: 100%;
      height: calc(100vh - 3.5rem);
      overflow: auto;
      pointer-events: none;
      opacity: 0;
      transition: top .4s, opacity .3s;
    }
    .nav__menu::-webkit-scrollbar {
      width: 0;
    }
    .nav__list {
      background-color: #7B37CF;
      padding-top: 1rem;
    }
  }
  .nav__link {
    color: #FFF;
    background-color: #7B37CF;
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition:.3s;
  }
  .nav__link:hover {
   color: #f5b800;
   background-color: #666666;
  }
  /* Show menu */
  .show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
  }
  /* Show icon */
  .show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
  }
  .show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
  }
  /*=============== DROPDOWN ===============*/
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__arrow {
    font-size: 1.25rem;
    font-weight: initial;
    transition: transform .4s;
  }
  .dropdown__link,
  .dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: var(--white-color);
    background-color: #7B37CF;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
  }
  .dropdown__link i,
  .dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
  }
  .dropdown__link:hover,
  .dropdown__sublink:hover {
    background-color: #5708b8;
  }
  .dropdown__menu,
  .dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
  }
  /* Show dropdown menu & submenu */
  .dropdown__item:hover .dropdown__menu,
  .dropdown__subitem:hover > .dropdown__submenu {
    max-height: 1000px;
    transition: max-height .4s ease-in;
  }
  /* Rotate dropdown icon */
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  /*=============== DROPDOWN SUBMENU ===============*/
  .dropdown__add {
    margin-left: auto;
  }
  .dropdown__sublink {
    background-color: var(--black-color-lighten);
  }
  /*=============== BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 340px) {
    .container {
      margin-inline: 1rem;
    }
    .nav__link {
      padding-inline: 1rem;
    }
    .hero-foreground-gradient-black-left{
      background-image: linear-gradient(90deg, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, 0) 100%);
    }

    h1 {
      font-size: 32px;
    }
  }

  @media screen and (max-width: 540px) {
    #contacto {
        font-size: 90px;
    }

    .warp {
      font-size: 5px;
    }
  }
  /* For large devices */
  @media screen and (min-width: 1118px) {
    .container {
      margin-inline: auto;
    }
    .nav {
      height: calc(var(--header-height) + 2rem);
      display: flex;
      justify-content: space-between;
    }
    .nav__toggle {
      display: none;
    }
    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 1rem;
        font-size: 14px;
    }
    .nav__link {
      height: 100%;
      padding: 0;
      justify-content: initial;
      column-gap: .25rem;
    }
    .nav__link:hover {
      background-color: transparent;
    }
    .dropdown__item,
    .dropdown__subitem {
      position: relative;
    }
    .dropdown__menu,
    .dropdown__submenu {
      max-height: initial;
      overflow: initial;
      position: absolute;
      left: 0;
      top: 6rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s, top .3s;
    }
    .dropdown__link,
    .dropdown__sublink {
      padding-inline: 1rem 3.5rem;
    }
    .dropdown__subitem .dropdown__link {
      padding-inline: 1rem;
    }
    .dropdown__submenu {
      position: absolute;
      left: 100%;
      top: .5rem;
    }
    /* Show dropdown menu */
    .dropdown__item:hover .dropdown__menu {
      opacity: 1;
      top: 5.5rem;
      pointer-events: initial;
      transition: top .3s;
    }
    /* Show dropdown submenu */
    .dropdown__subitem:hover > .dropdown__submenu {
      opacity: 1;
      top: 0;
      pointer-events: initial;
      transition: top .3s;
    }
  }


/* Estilos para la versión móvil (menú hamburguesa) */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.line1,
.line2,
.line3 {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

/* Estilos para pantallas pequeñas */
@media screen and (max-width: 768px) {
/*
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        z-index: 10000;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: block;
    }*/
}


.sombra-in{
  -webkit-box-shadow: 3px 3px 18px 3px rgba(175,175,175,0.91) inset;
  box-shadow: 3px 3px 18px 3px rgba(175,175,175,0.91) inset;
}
.sombra-out{
  -webkit-box-shadow: 0px 0px 19px 3px rgba(163,163,163,0.91) ;
  box-shadow: 0px 0px 19px 3px rgba(163,163,163,0.91) ;
}
.codigo {
  display: none;
  pointer-events: none;
}
.img-zoom {
  transition: transform 0.5s ease;
}

.img-zoom:hover {
  transform: scale(1.05);
}
.img-zoom-noticias {
  transform: scale(0.95);
  transition: transform 0.5s ease;
}
.img-zoom-noticias:hover {
  transform: scale(1);
}
.consejo-zoom {
  transition: transform 0.5s ease;
}
.consejo-zoom:hover {
  transform: scale(1.05);
}
.div-fijo {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px; /* Ajusta la distancia desde la parte inferior según sea necesario */
  z-index: 9999; /* Asegura que el elemento esté por encima de otros elementos */
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-icon i {
  font-size: 2em; /* Aumenta el tamaño al doble */
  color: #6A63CB; /* Cambia el color a negro */
  display: inline-block;
  width: 24px; /* Ajusta el ancho del ícono según sea necesario */
  height: 24px; /* Ajusta la altura del ícono según sea necesario */
}

.fixed-top {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 9999;
background-color:white;
}

.justificar{
  text-align: justify;
}

.card{
  background-color: transparent !important;
  color: black;
}

.text-sep{

  color:black;
  padding:25px;
}

.button {
  color: #6A63CB;
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
  text-decoration: none;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  -webkit-box-shadow: 0px 2px 3px #666666;
  -moz-box-shadow: 0px 2px 3px #666666;
  box-shadow: 0px 2px 3px #666666;
  text-shadow: 0px 1px 3px #666666;
  border: solid #ffffff 1px;
  background-color: #f5b800;
  transition: .3s;
}

.button:hover {
  background: #6A63CB;
  color: #FFF;
  box-shadow: #f5b800 10px 15px;
  transition: .3s;
}

/*Texto curvo*/
.warp__placeholder {
  position: absolute;
  color: transparent;
  font-size: .1px;
}

.warp {
  display: block;
  position: absolute;
  width: 620px;
  height: 450px;
  font: bold 42px Montserrat;
  pointer-events: none; /* Permite la interacción con elementos subyacentes */
}

[class*='warp__'] {
  display: block;
  position: absolute;
}

.warp__0 {
  transform-origin: 50% 114px;
  transform: translate(-17.8654px, 404.1064px) rotate(-1.687455rad);
}

.warp__1 {
  transform-origin: 50% 114px;
  transform: translate(-21.7848px, 368.8569px) rotate(-1.646522rad);
}

.warp__2 {
  transform-origin: 50% 114px;
  transform: translate(-19.0199px, 337.4495px) rotate(-1.604449rad);
}

.warp__3 {
  transform-origin: 50% 114px;
  transform: translate(-16.3997px, 314.4331px) rotate(-1.569502rad);
}

.warp__4 {
  transform-origin: 50% 114px;
  transform: translate(-19.886499999999998px, 290.414px) rotate(-1.528535rad);
}

.warp__5 {
  transform-origin: 50% 114px;
  transform: translate(-20.6518px, 259.4311px) rotate(-1.467364rad);
}

.warp__6 {
  transform-origin: 50% 114px;
  transform: translate(-14.1704px, 227.6162px) rotate(-1.392085rad);
}

.warp__7 {
  transform-origin: 50% 114px;
  transform: translate(-7.4838px, 197.7626px) rotate(-1.306273rad);
}

.warp__8 {
  transform-origin: 50% 114px;
  transform: translate(0.7067000000000014px, 166.7836px) rotate(-1.196259rad);
}

.warp__9 {
  transform-origin: 50% 114px;
  transform: translate(17.924px, 140.2558px) rotate(-1.079097rad);
}

.warp__10 {
  transform-origin: 50% 114px;
  transform: translate(29.2329px, 117.08449999999999px) rotate(-0.953588rad);
}

.warp__11 {
  transform-origin: 50% 114px;
  transform: translate(48.5129px, 93.8689px) rotate(-0.800149rad);
}

.warp__12 {
  transform-origin: 50% 114px;
  transform: translate(73.0958px, 79.076px) rotate(-0.688319rad);
}

.warp__13 {
  transform-origin: 50% 114px;
  transform: translate(81.8579px, 66.1571px) rotate(-0.608755rad);
}

.warp__14 {
  transform-origin: 50% 114px;
  transform: translate(108.9857px, 53.4289px) rotate(-0.471269rad);
}

.warp__15 {
  transform-origin: 50% 114px;
  transform: translate(127.3555px, 43.70399999999999px) rotate(-0.383532rad);
}

.warp__16 {
  transform-origin: 50% 114px;
  transform: translate(152.2032px, 34.429px) rotate(-0.282698rad);
}

.warp__17 {
  transform-origin: 50% 114px;
  transform: translate(181.3798px, 27.4431px) rotate(-0.180726rad);
}

.warp__18 {
  transform-origin: 50% 114px;
  transform: translate(212.1381px, 23.506200000000007px) rotate(-0.087664rad);
}

.warp__19 {
  transform-origin: 50% 114px;
  transform: translate(240.4488px, 22.2303px) rotate(-0.000109rad);
}

.warp__20 {
  transform-origin: 50% 114px;
  transform: translate(271.2166px, 23.180000000000007px) rotate(0.073266rad);
}

.warp__21 {
  transform-origin: 50% 114px;
  transform: translate(291.2004px, 26.175700000000006px) rotate(0.147356rad);
}

.warp__22 {
  transform-origin: 50% 114px;
  transform: translate(324.8693px, 32.0261px) rotate(0.229043rad);
}

.warp__23 {
  transform-origin: 50% 114px;
  transform: translate(352.8414px, 38.4153px) rotate(0.291574rad);
}

.warp__24 {
  transform-origin: 50% 114px;
  transform: translate(372.2571px, 45.4957px) rotate(0.346788rad);
}

.warp__25 {
  transform-origin: 50% 114px;
  transform: translate(395.7093px, 52.456px) rotate(0.392779rad);
}

.bts-popup {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 999999;
  width: 44px
}

.bts-popup .b-po:first-child {
  border-radius: 3px 0 0
}

.bts-popup .b-po:last-child {
  border-radius: 0 0 0 3px
}

.bts-popup .b-po {
  position: relative;
  margin-top: -1px;
  padding: 10px;
  display: block;
  line-height: 24px;
  color: #000;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-right: 0
}

.bts-popup .b-po svg {
  width: 24px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0
}

.bts-popup .b-po span {
  margin-top: -15px;
  position: absolute;
  top: 50%;
  right: 60px;
  text-align: right;
  background: #333;
  color: #fff;
  line-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  white-space: nowrap;
  transition: all .3s ease 0s;
  opacity: 0;
  pointer-events: none
}

.bts-popup .b-po:hover span {
  opacity: 1;
  pointer-events: auto
}

.bts-popup .b-po span:after {
  content: '';
  position: absolute;
  right: -10px;
  top: 10px;
  border: 5px solid transparent;
  border-left: 5px solid #333
}


.form-control{
  background-color: transparent !important;
  color: #fef8e9 !important;
  border: none !important;
  border-bottom: 2px solid #FEFAE8 !important;
  outline: none !important;
  font-size: 24px !important;
}
input::placeholder {
color: #6a63cb !important;
font-size: 24px !important;
}
textarea::placeholder {
color: #6a63cb !important;
font-size: 24px !important;
} 
.div-bonito{
  position: absolute;
  display: block;
  top: -229px;
  left: 50%; /* Coloca el cuadrado azul en el centro horizontal */
  transform: translateX(-50%); /* Ajusta el centro horizontal */
  background-color: blue;
  width: 400px; /* Ancho del separador azul */
  height: 400px;
}



/* ESTILO PARA SLIDER DE NOTICIAS */


.slide-content {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 10px;
  color: #fff;
  background-color: rgba(0,0,0,0.6);
}


.slide-content p {
font-size: 18px;
}


.slideshow-container {
max-width: 1000px;
position: relative;
margin: auto;
}

/* Hide the images by default */
.mySlides {
display: none;
}

/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 16px;
color: white;
font-weight: bolder;
font-size: 22px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}

/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}

/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}

.active, .dot:hover {
background-color: #717171;
}

/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 12s;
}

@keyframes fade {
from {opacity: .9}
to {opacity: 1}
}

@media all and (max-width:600px) {
.slide-content p {
  font-size:12px;
}

.slide-content {
  width: 40vh;
}
}