  .alarmas_title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    font-family: 'Sora', sans-serif;
  }

  .alarmas__title_box h2 {
    font-weight: bold;
    font-size: 35px;
    padding: 30px 40px 20px 40px;
}

  .alarmas {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto 100px auto;
    max-width: 1140px;
    gap: 20px;
    width: 90%;
  }

  .alarmas_container {
    display: flex;
    flex-direction: row;
    background-color: var(--white-secbyte);
    height: 400px;
    width: 70%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;;
  }

  .alarmas_container-animation {
    opacity: 1;
    transform: translateY(0px);
  }

  .alarmas_container figcaption {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  width: 60%;
  }

  .alarmas_container .image {
  width: 40%;
  overflow: hidden;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  }

  .alarmas_container .image img{
  width: auto;
  height: 100%;
  }

  .alarmas_container figcaption h2 {
  font-size: 20px;
  font-weight: 300;
  border-bottom: 5px solid var(--yellow-secbyte);
  }

  .alarmas_container figcaption h2 span {
  font-weight: bold;
  }

@media (max-width: 840px) {
 
  .alarmas {
    flex-direction: column;
    width: 100%;
    margin: 60px auto;
  }

  .alarmas_container {
    width: 90%;
  }

  .alarmas_container .image {
    width: 40%;
    overflow: hidden; 
  }
  .alarmas_container .image img{
    width: 100%;
    object-fit: cover;
    }

    .alarmas__title_box h2 {
      font-size: 25px;
  }
}

@media (max-width: 420px) {
  .alarmas_container p {
    font-size: 14px;
  }
}