
.alerta-ciberataque__mensaje span,
.proteccion h2,
.btn-protegerte {
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7)

}

.alerta-ciberataque {
  min-height: calc(100vh - 60px);
  position: relative;
  overflow: hidden;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.capa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 26, 38, 0.75);
    z-index: 1;
}


.mensaje {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 60px);
  width: 70%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 20px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.alerta-ciberataque__mensaje {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 2px solid #FA8617;
  box-shadow: 0 0 15px rgba(225, 153, 30, 0.5), 
              0 0 25px rgba(225, 147, 30, 0.3), 
              inset 0 0 10px rgba(30, 203, 225, 0.2);
  border-radius: 12px;
  padding: 20px 35px;
  margin-bottom: 80px;
  background-color: rgba(13, 26, 38, 0.5);
  backdrop-filter: blur(8px);
  width: fit-content;
  max-width: 100%;
  transition: all 0.3s ease;
}

.alerta-icono {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alerta-ciberataque__mensaje span {
  color: #ffffff;
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 0 10px rgba(225, 114, 30, 0.5);
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px  1px 0 #000,
    1px  1px 0 #000;
}

.proteccion {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.proteccion h2 {
  color: #e0fbfc;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.5;
  max-width: 1500px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.btn-protegerte {
  display: inline-block;
  background: #FA8617;
  color: #000000;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #FA8617;
  box-shadow: 0 0 10px rgba(225, 137, 30, 0.6), 0 0 20px rgba(212, 159, 15, 0.4);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
  font-family: 'Poppins', sans-serif;
}

@media (hover: hover) {
    .btn-protegerte:hover {
        background: rgba(30, 203, 225, 0.1); 
        color: #fff;
        box-shadow: 0 0 15px rgba(253, 154, 16, 0.8), 
                    0 0 30px rgba(251, 140, 21, 0.6);
        transform: translateY(-3px);
    }
}


@media (max-width: 768px) {
  .mensaje {
    width: 90%;
    min-height: auto;
    justify-content: flex-start;
    padding: 100px 20px 60px 20px;
    box-sizing: border-box;
  }
  
  .alerta-ciberataque__mensaje {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 40px;
  }
  
  .alerta-ciberataque__mensaje span {
    font-size: 20px;
  }
  
  .proteccion h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  
  .btn-protegerte {
    font-size: 16px;
    padding: 15px 30px;
  }
  .alerta-icono{
    display: none;
  }
}

@media (max-width: 480px) {
  .alerta-ciberataque__mensaje span {
    font-size: 18px;
  }

  .proteccion h2 {
    font-size: 19px;
  }

  .btn-protegerte {
    font-size: 14px;
    padding: 14px 25px;
  }
  .alerta-icono{
    display: none;
  }
}