.cta-unica-seccion {
    background-color: #f8f9fa;
    padding: 20px 0; /* Se redujo el padding */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-unica-container {
    max-width: 72%;
    position: relative;
}
.cta-unica-linea {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 97%;
    height: 10px; /* Grosor de la línea */
    background-color: #ffc107;
}
.cta-unica-linea-superior {
    top: -10px; /* Se coloca justo en el borde superior */
}
.cta-unica-linea-inferior {
    bottom: -10px; /* Se coloca justo en el borde inferior */
}
.cta-unica-titulo {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-top: 18px; /* Se redujo el margen */
    margin-bottom: 8px; /* Se redujo el margen */
}
.cta-unica-texto {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 8px; /* Se redujo el margen */
}
.cta-unica-boton {
    background-color: #ffc107;
    color: #000;
    font-size: 1rem; /* Se redujo el tamaño del botón */
    font-weight: bold;
    padding: 8px 20px; /* Se redujo el padding */
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 5px; /* Menos espacio arriba */
    margin-bottom: 8px; /* Se redujo el margen */
}
.cta-unica-boton:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}
