@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  /* Evita la barra de desplazamiento horizontal */
}

/* Boton Flotante de WhatsApp */
.botonwasapacole {
  position: fixed;
  width: 55px;
  height: 55px;
  line-height: 55px;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

/* hover conoce nuestra me.... */
.box :hover {
  background-color: #25D366;
  transition: background-color 0.3s ease;
  color: white;
}

/* asimila,aplica,aprende */
.botondistintos {
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.644);
}

#buttons-method1,
#buttons-method2,
#buttons-method3 {
  font-size: clamp(25px, 5vw, 30px);
}

#buttons-method1 {
  background-color: #1DA1F2;
}

#buttons-method2 {
  background-color: #ff0000;
}

#buttons-method3 {
  background-color: #25D366;
}

.imgAcord1 {
  width: 15%;
}

.imgAcord {
  width: 50px;
}

@media (max-width: 500px) {
  .imgAcord1 {
    width: 20%;
  }
}

/* cuadros */
#info-tableD {
  border: solid #273063;
  font-size: 18px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.644);
  color: #273063;
}

#info-tableD:hover {
  background: #273063;
  color: #fff !important;
}

/* responsiva img */
.img-comentario {
  width: 90%;
  height: 400px;
}

@media (max-width:500px) {
  .img-comentario {
    height: 200px;

  }
}

/* keyframe */
.letra {
  animation-name: letra;
  animation-duration: 7s;
  animation-iteration-count: infinite;
}

@keyframes letra {

  0%,
  100% {
    background-color: #273063;
  }

  16.66% {
    background-color: #273063;
  }

  50% {
    background-color: #4BA3D8;
  }
}

/* espaciado encabezado */

.spacer {
  height: 150px;
  /* Ajusta esta altura según tus necesidades */
}

/* Media query para dispositivos más pequeños */
@media (max-width: 767px) {
  .spacer {
    padding-top: 200px;
    /* Ajusta este valor según tus necesidades */
  }
}