/* Sección Banner */
#customer-reviews {
    background: linear-gradient(135deg, #2a6f97, #014f86);
    padding: 60px 30px;
    text-align: center;    
    color: #e9f5db;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Contenedor Principal */
.reviews-container {
    background: linear-gradient(135deg, #2a6f97, #014f86);
    padding: 60px 30px;
    text-align: center;    
    color: #e9f5db;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Título Principal */
#customer-reviews h2 {
    font-size: 2.5em;
    color: #74c69d;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0px 0px 10px rgba(116, 198, 157, 0.7);
}

/* Texto de Introducción */
.intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #d8f3dc;
    text-align: center;
}

/* Contenedor de Testimonios */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

/* Tarjetas de Testimonios */
.review {
    background-color: grey;
    padding: 20px;
    border: solid 2px #ffd700;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(116, 198, 157, 0.4);
    color: black;
}

/* Efecto Hover en Testimonios */
.review:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(116, 198, 157, 0.7);
    background-color: aliceblue;
}

/* Destacar Frases */
.review span {
    font-size: 1.3em;
    color: #000000;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

/* Texto del Testimonio */
.review p {
    font-size: 1.1em;
    color: #000000;
    line-height: 1.6;
    text-align: justify;
}

/* Nombre del Cliente */
.review h4 {
    font-size: 1.1em;
    color: #000000;
    margin-top: 10px;
    font-weight: bold;
}
.stars {
    font-size: 1.5em;
    color: #ffd700; /* Dorado */
    margin: 5px 0;
}

/* Botón CTA */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #52b788, #40916c);
    color: #fff;
    padding: 14px 22px;
    font-size: 1.3em;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0px 0px 12px rgba(82, 183, 136, 0.6);
    transition: 0.3s ease-in-out;
    font-weight: bold;
}

/* Efecto Hover en Botón */
.cta-button:hover {
    background: #40916c;
    box-shadow: 0px 0px 18px rgba(82, 183, 136, 0.9);
    transform: scale(1.08);
}
