#encuentranos {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}
#encuentranos h2 {
    color: #e63946;
    margin-bottom: 20px;
}
.encuentranos-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/* Contenedor principal */
.reviews-container {
    text-align: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}


.reviews-container h2 {
    font-size: 2rem; /* Ajuste estándar */
    color: #c0392b; /* Rojo vibrante */
    text-align: center;
    font-weight: bold;
}

/* Ajuste en tablets (menos de 768px) */
@media (max-width: 768px) {
    .reviews-container h2 {
        font-size: 1.8rem; /* Reducimos ligeramente */
    }
}

/* Ajuste en móviles (menos de 480px) */
@media (max-width: 480px) {
    .reviews-container h2 {
        font-size: 1rem; /* Más pequeño en móviles */
    }
}


/* Tarjetas de reseñas */
.review-card {
    background: white;
    max-width: 400px;
    margin: 15px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto hover */
.review-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Cabecera de la reseña */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Nombre del cliente */
.review-header h3 {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

/* Estrellas */
.stars {
    color: #f39c12;
    font-size: 18px;
}

/* Texto de la reseña */
.review-card p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin: 0;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
