
.button-send {
    font-family: inherit;
    font-size: 18px;
    background: linear-gradient(to bottom, #dae1e2 0%,#edeff1 100%);
    color: #006BB3;
    padding: 0.8em 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
  }
  
  .button-send:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  }
  
  .button-send:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .button-send span {
    display: block;
    margin-left: 0.4em;
    transition: all 0.3s;
  }
  
  .button-send svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: all 0.3s;
  }
  
  .button-send .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 0.5em;
    transition: all 0.3s;
  }
  
  .button-send:hover .svg-wrapper {
    background-color: rgba(217, 219, 221, 0.925);
  }
  
  .button-send:hover svg {
    transform: rotate(45deg);
  }
.tn-info-container {
    position: relative;
    background-color: transparent;
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
}
.tn-img-fondo {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.tn-texto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    /*background: rgba(0, 0, 0, 0.5); /* semi-transparente para mejorar la legibilidad */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
.tn-texto strong {
    color: white;
}

.carousel-indicators [data-bs-target] {
    background-color: #000;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}