.testimonios-section {
    background-color: #f4f4f4; /* Light gray for contrast */
    color: #1e3a5f; /* Navy blue for text */
    text-align: center;
    padding: 3rem 1.5rem;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonios-section h2 {
    font-size: 2em;
    color: #1e3a5f;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
}

.testimonios-section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff8800; /* Bright orange for visibility */
    margin: 0.5rem auto;
    border-radius: 5px;
}

.testimonios-container {
    margin: 2rem auto;
    max-width: 800px;
    padding: 1rem;
}

.testimonios-container .coming-soon {
    font-size: 1.8em;
    color: #ff8800; /* Bright orange for better visibility */
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Shadow for extra contrast */
    animation: fadeIn 1.5s ease-in-out infinite alternate;
}

.testimonios-container p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #4a4a4a; /* Dark gray for body text */
}

@keyframes fadeIn {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 1;
    }
}
