/* Conócenos */

.conocenos {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
}

.contenido {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contenido-izquierda {
    flex: 1;
}

.overlay-conocenos {
    background: rgba(255,255,255, 0.88);
    padding: 45px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.conocenos h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-top: 20px;
    font-family: 'Oswald', sans-serif;
    color: #e53434;
}

.conocenos .intro {
    color: #666666;
    margin-bottom: 50px;
    margin-top: 20px;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.contenido-derecha {
    flex: 1;
    display: flex;
    align-items: center;
}

.tarjeta-derecha {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.12);
    text-align: center;
    width: 100%;
}

.tarjeta-derecha i {
    font-size: 50px;
    color: #e53434;
    margin-bottom: 15px;
}

.tarjeta-derecha h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    margin-bottom: 10px;
}

.tarjeta-derecha p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #444;
}

.tarjeta-derecha-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%
}

.tarjeta-derecha-link:hover .tarjeta-derecha {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

.bloques {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tarjetas {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.tarjetas i {
    font-size: 40px;
    color: #e53434;
    margin-bottom: 15px;
}

.tarjetas h3 {
    font-family: 'Oswald', sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.tarjetas p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

.tarjetas:hover {
    transform: translateY(-5px);
}

/* Video */

.video-section {
    margin-top: 80px;
    text-align: center;
}

.video-section h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    color: #e53434;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Google reviews */

.google-reviews {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    margin-top: 80px;
    flex-wrap: wrap;
}

.resumen h2 {
    font-size: 3rem;
    font-family: 'Oswald', sans-serif;
}

.estrellas {
    color: #f5b301;
    font-size: 22px;
    margin: 10px 0;
}

.resumen p {
    font-family: 'Montserrat', sans-serif;
    color: #666666;
}

.barras {
    width: 300px;
}

.barra {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.barra span {
    width: 90px;
}

.linea {
    flex: 1;
    height: 8px;
    background: #dddddd;
    border-radius: 10px;
    overflow: hidden
}

.linea div {
    height: 100%;
    background: #f5b301;
}

.valoraciones {
    margin-top: 80px;
    text-align: center;
}

.valoraciones h2 {
    font-size: 2rem;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 30px;
    color: #e53344;
}

.reseñas {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.reseña {
    background: #ffffff;
    padding: 25px;
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.reseña img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.reseña h4 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.estrellas {
    color: #f5b301;
    margin-bottom: 10px;
}

.estrellas i {
    margin: 0 2px;
}

.reseña p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555555;
}

.reseña:hover {
    transform: translateY(-5px);
}

/* Responsive */

@media (max-width: 768px) {
    .contenido {
        flex-direction: column;
    }

    .overlay-conocenos { padding: 25px; }

    .conocenos h1   { font-size: 1.8rem; }
    .conocenos .intro { font-size: 1rem; }

    .bloques {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .reseña {
        width: 100%;
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .conocenos h1 { font-size: 1.4rem; }
    .tarjeta-derecha { padding: 25px; }
    .tarjeta-derecha h3 { font-size: 20px; }
}