@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DynaPuff:wght@400..700&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Karla:ital,wght@0,200..800;1,200..800&family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Questrial&family=Shadows+Into+Light&display=swap');
*{
    margin: 0px;
    padding: 0px;
    font-family: "DM Sans", sans-serif;
    box-sizing: border-box;
}

body{
  background-image: url(../imagenes/fondos/escudo.jpg);
}

p{
  text-align: justify;
}



h1{
    font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-style: normal;
    font-size: 50px;

}

h2{
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 30px;
}

  /**Hoja de vida**/

  .lista-nombre h3{
    color: #0fa759;
    margin-top: 0px;
  }

  .sieweb-logo{
    padding: 10px;
    border: 1px solid rgb(177, 177, 177);
    border-bottom: #0fa759 6px solid;
    border-radius: 20px;
    transition: .2s;
  }
  

  .sieweb-logo:hover{
    background: #afe3c9;
    border-bottom: 3px #0fa759 solid;
  }


   /**Seguimiento**/

   .sub-tema {
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    border-bottom: #0fa759 7px solid;
    padding: 2em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../imagenes/fondos/frontis.jpg);
}

/* Títulos principales */
.fondo h1 {
    font-size: 6vw; /* Cambiado de px a vw */
    color: white;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Títulos secundarios */
.fondo h2 {
    font-size: 4vw; /* Cambiado de px a vw */
    color: white;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.seguimiento-contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;    
    flex-wrap: wrap; /* Asegura que se ajusten en pantallas pequeñas */
}

.seguimiento-contenedor a {
    color: rgb(255, 255, 255);
    font-size: 1.3rem; /* Cambiado a rem */
    text-decoration: none;
}

.seguimiento-contenedor a:hover {
    color: #e3981e;
}

.seguimiento-contenedor h2 {
    font-size: 1.3rem; /* Cambiado a rem */
    color: white;
    padding: 0 10px;
}


.logos-link{
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos-link img{
  width: 40px;
  transition: .2s;
  border-radius: 10px;
}

.logos-link img:hover{
  transform: scale(1.1);
}

.logos-link h5{
  font-size: 30px;
  margin: 0 10px;
  font-weight: 300;
}



/* Media Queries */
@media (max-width: 768px) {
    .sub-tema {
        height: 200px; 
        padding: 1em 0; /* Menos padding en pantallas pequeñas */
    }

    .fondo h2 {
        font-size: 6vw; /* Tamaño más pequeño */
    }

    .seguimiento-contenedor h2 {
        font-size: 1.3rem; /* Tamaño más pequeño */
    }
}

@media (max-width: 480px) {
    .fondo h1 {
        font-size: 10vw; /* Tamaño aún más pequeño */
    }

    .seguimiento-contenedor h2 {
        font-size: 1.3rem; /* Más pequeño para dispositivos móviles */
    }

    .seguimiento-contenedor{
      display: none;
    }
}


/**Bot Wsp**/
@-webkit-keyframes bounce-in-top {
    0% {
      -webkit-transform: translateY(-500px);
              transform: translateY(-500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(-65px);
              transform: translateY(-65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(-28px);
              transform: translateY(-28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes bounce-in-top {
    0% {
      -webkit-transform: translateY(-500px);
              transform: translateY(-500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(-65px);
              transform: translateY(-65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(-28px);
              transform: translateY(-28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }   
}
.container-boton{
    background-color: #71bf6a;
    position: fixed;
    z-index: 999;
    border-radius: 200%;
    bottom: 5px;
    right: 25px;
    margin-bottom: 20px;
    transition: ease 0.3s;
    padding: 6px;
    animation: bounce-in-top 1.1s both;
    -webkit-animation: bounce-in-top 1.1s both, efecto 1s infinite;

}

.container-boton a{
    padding: 0;
    display:block;
}

.container-boton:hover{
transform: scale(1.1);
transition: 0.3s;
}

.boton{
    width: 60px;
    border-radius: 50%;
    transition: ease 1s;
}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgb(164 198 165);
  }
  100%{
     box-shadow: 0 0 0 10px rgb(164 198 165);

  }

}


    /**Bot**/

    .chat-container {
      position: fixed;
      bottom: 80px;
      right: 20px;
      z-index: 1000;
  }
  
  .chat-body {
      width: 300px; /* Ancho más amplio para el chat */
      max-height: 525px;
      border: 1px solid #ccc;
      border-radius: 10px;
      overflow: hidden;
      background-color: #ffffff;
      display: none; /* Inicialmente oculto */
      flex-direction: column;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      animation: slideIn 0.3s ease forwards;
      z-index: 20; /* Asegura que esté por encima de la imagen */
      position: relative; /* Para superponer la imagen correctamente */
      display: none;
  }
  
  @keyframes slideIn {
      from {
          transform: translateY(100%);
      }
      to {
          transform: translateY(0);
      }
  }
  
  .messages {
      padding: 10px;
      overflow-y: auto;
      flex: 1;
  }

  .message a{
    color: red;
  }
  
  .message {
    margin: 5px 0;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    opacity: 0; /* Comenzamos con un 0% de opacidad */
    transform: translateY(20px); /* Comenzamos con un desplazamiento hacia abajo */
    animation: fadeIn 0.5s forwards; /* Aplicar la animación de entrada */
}

@keyframes fadeIn {
  to {
      opacity: 1; /* Opacidad completa al final de la animación */
      transform: translateY(0); /* Sin desplazamiento al final */
  }
}

.message.fade-out {
  animation: fadeOut 0.5s forwards; /* Aplicar la animación de salida */
}

@keyframes fadeOut {
  to {
      opacity: 0; /* Opacidad 0 al final */
      transform: translateY(-20px); /* Desplazamiento hacia arriba al final */
  }
}

.fade-in {
  opacity: 1;
  transition: opacity 0.5s, transform 0.5s;
}


  
  .user {
      background-color: #dcf8c6; /* Verde claro similar a WhatsApp */
      align-self: flex-end; /* Alinear a la derecha */
      border-bottom-right-radius: 0; /* Bordes redondeados a la derecha */
      right: -19px;
      width: 237px;
  }
  
  .bot {
      background-color: #e0e0e0; /* Gris claro para los mensajes del bot */
      align-self: flex-start; /* Alinear a la izquierda */
      border-bottom-left-radius: 0; /* Bordes redondeados a la izquierda */
  }
  
  .options {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      padding: 10px;
      background: #0fa759;
  }
  
  .option-button {
      background-color: #25D366; /* Color similar a WhatsApp */
      border: none;
      border-radius: 5px;
      color: white;
      padding: 10px 15px;
      margin: 5px;
      cursor: pointer;
      transition: background-color 0.3s, transform 0.2s;
  }
  
  .option-button:hover {
      background-color: #128C7E; /* Color más oscuro al pasar el mouse */
      transform: scale(1.05);
  }
  
  .chat-image {
      width: 65px;
      height: 61px;
      cursor: pointer;
      transition: transform 0.3s;
      position: absolute; /* Para que no se desplace con el chat */
      bottom: -70px; /* Mantener en la parte inferior */
      right: 0; /* Mantener en la parte derecha */
      border-radius: 40px;
  }
  
  .chat-image:hover {
      transform: scale(1.1);
  }
  
  @keyframes heartbeat {
      0%, 100% {
          transform: scale(1);
      }
      50% {
          transform: scale(1.1); /* Aumentar un poco el tamaño */
      }
  }
  
  .chat-image {
      animation: heartbeat 1s infinite; /* Añadir la animación */
  }
  

	/**Redes sociales flotante**/


@media (max-width: 730px){
    .redes-contenedor i{
        font-size: 15px !important;
    }

    .redes-contenedor a{
        margin: 15px 0px !important;
    }
}


    .redes-contenedor{
        position: fixed;
        z-index: 999;
        bottom: 5px;
        margin-bottom: 20px;
        transition: ease 0.3s;
        padding: 0px 15px;
        display: flex;
        align-items: centers;
        flex-direction: column;
        background: #0f8542;
        -webkit-border-top-right-radius: 40px;
        -webkit-border-bottom-right-radius: 40px;
        -moz-border-radius-topright: 40px;
        -moz-border-radius-bottomright: 40px;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    
    .redes-contenedor a{
        margin: 20px 0px;
        border-radius: 30px;
        transition: .2s;
    }
    
    .redes-contenedor a:hover{
        background: #e0af60;
        padding: 10px;
        transition: .2s;
    }
    
    .redes-contenedor i{
        font-size: 25px;
        color: white;
    }
    


    /***Encabezado***/

/*=============== VARIABLES CSS ===============*/
:iepttemi_bd_miguel_cortes {
    --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%);
    --green-color: #0fa759;
  
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --normal-font-size: .938rem;
  
    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;
  
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
  }
  
  /*========== Responsive typography ==========*/
  @media screen and (min-width: 1024px) {
    :iepttemi_bd_miguel_cortes {
      --normal-font-size: 1rem;
    }
  }
  
  /*=============== BASE ===============*/
  * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
  }
  
  ul {
    list-style: none;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
  }
  
  a {
    text-decoration: none;
  }
  
  /*=============== REUSABLE CSS CLASSES ===============*/
  .container {
    max-width: 1390px;
    margin-inline: 1.5rem;
  }
  
  /*=============== HEADER ===============*/
  .header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
    border-bottom: #0fa759 6px solid;
    z-index: 1000;
  }

  .header-2{
    background: #0fa759;
    color: white;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-2-lista{
    display: flex;    
  }

  .header-2-lista a{
    color: white;
  }

  .header-2-lista li{
    margin: 0 30px;
  }

  @media (max-width: 700px){
    .header-2-lista{
      flex-wrap: wrap;
      margin: 0 20px;
    }

    .header-2{
      height: auto;
      text-align: center;
      padding: 10px 0;
    }

    .header-2-lista li{
      list-style: disc;
      padding: 0 20px;
      border-radius: 10px;
      margin: 4px auto;
    }

  }




  .link-2{
    background: #0fa759 !important;
    color: #fff !important;
  }

  /*=============== NAV ===============*/
  .nav {
    height: var(--header-height);
  }
  
  .nav__logo, 
  .nav__burger, 
  .nav__close {
    color: var(--black-color);
  }

  .nav__logo{
    margin-right: 50px;
  }

  .nav__logo img{
    width: 60px;
    margin-right: 10px;
    padding: 5px;
  }

  .nav__link img{
    width: 120px;
  }

  
  .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: 900;
    /* 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: #fff;
      padding-top: 1rem;
      border-top: 4px solid #0fa759;
    }
    .nav__logo img{
        width: 40px;
    }
  }
  
  .nav__link {
    color: var(--black-color);
    background-color: #fff;
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color .3s;
  }
  
  .nav__link:hover {
    background-color: #0fa759;
    color: var(--black-color);
  }
  
  /* 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 {
    color: var(--black-color);
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
    transition: .1s;
    padding: 15px 40px 15px 10px;
  }

  .dropdown__link i, 
  .dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
  }
  
  .dropdown__link:hover, 
  .dropdown__sublink:hover {
    background-color: #0fa759;
    color: #fff;
  }
  
  .dropdown__menu, 
  .dropdown__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
  }

  .dropdown__menu a{
    padding: 6px 40px 6px 20px;
    color: black;
  }
  
  /* 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: #b9b9b9;
  }
  
  /*=============== BREAKPOINTS ===============*/
  /* For small devices */
  @media screen and (max-width: 340px) {
    .container {
      margin-inline: 1rem;
    }
  
    .nav__link {
      padding-inline: 1rem;
    }
  }
  
  /* 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: 3rem;
    }
    .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;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s, top .3s;
    }
  
    .dropdown__link, 
    .dropdown__sublink {
      padding-inline: 1rem 3.5rem;
    }
  
    .dropdown__subitem .dropdown__link {
      padding: 15px 40px 15px 20px;
    }
  
    .dropdown__submenu {
      position: absolute;
      left: 100%;
      top: .5rem;
    }
  
    /* Show dropdown menu */
    .dropdown__item:hover .dropdown__menu {
      opacity: 1;
      pointer-events: initial;
      transition: top .3s;
    }
  
    /* Show dropdown submenu */
    .dropdown__subitem:hover > .dropdown__submenu {
      opacity: 1;
      top: 0;
      pointer-events: initial;
      transition: top .3s;
    }
  }

  .nola{
    padding: 0 !important;
    color: black;
  }

  .nola:hover{
    color: white;
  }

    /***$Encabezado***/