.btn-popup.neon {
    padding: 14px 26px;
    border: none;
    border-radius: 12px;
    background: #007bff;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 0 rgba(0, 123, 255, 0.7);
}

.btn-popup.neon:hover {
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.8),
                0 0 40px rgba(0, 123, 255, 0.6),
                0 0 60px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.btn-center {
    display: flex;
    justify-content: center;   /* Centra horizontal */
    align-items: center;       /* Centra vertical (si hay altura) */
    width: 100%;
    margin-top: 20px;
}



.cuadro {
  background-color: white;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -30px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
  text-align: center;

}


.cuadro h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}


.cuadro p {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.cuadro span{
    text-decoration: underline;
}

.textos{
    font-family: arial;
    font-size:18px;
    color:black;
    text-align: justify;
    margin: 0;

}