/*ESTILO CONTENEDOR ANUNCIO SERVICIOS*/
.contenedor {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%; 
    margin: 20px auto;
    padding: 20px;
    max-width: auto;
    box-sizing: border-box;
}
/*ESTILO SECCION ANUNCIO, PRECIOS*/
.anuncio, .precios{
    display: grid;
    width: auto; 
    text-align: center;
    justify-items: center; 
    background-color: white;
    border-radius: 8px;
    padding: 20px; 
    box-sizing: border-box;
}
/*ESTILO SECCION PRECIOS*/
.precios{
    display: flex;
}
/*ESTILO TITULO*/
.anuncio h2, .precios h2{
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;  
    color: transparent;
    background-image: linear-gradient(to right, #068d77b9, #00b3a6, #006a4d);
    background-clip: text;
    margin-bottom: 15px;
}
/*ESTILO TEXTO*/
.anuncio .txt, .precios .txt{
    width: 100%; 
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: transparent;
    background-image: linear-gradient(to right, #005f73, #000000);
    background-clip: text;
    flex: 1;
    margin-right: 20px;
}
/*ESTILO IMAGEN*/
.img-serviciosf {
    display: flex;  
    justify-content: space-between;  
    gap: 20px;  
    width: 100%; 
    max-width: 1080px; 
    margin: 0 auto;  
}
.anuncio .img-serviciosf{
    width: 100%;  
    max-width: 50%;  
    height: auto;  
    object-fit: contain; 
    border-radius: 8px;
}
.img-serviciosf img {
    width: 100%;
    height: auto;
    max-width: 100%;  
    height: auto;
    object-fit: cover;  

}
/*ESTILO EFECTO FLOTANTE IMAGENES*/
.img-serviciosf:hover, .img-precios:hover{
    transform: translateY(-10px);  
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);  
    cursor: pointer; 
}
.precios .img-precios{
    width: 60%;  
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.img-precios img {
    max-width: 100%;  
    height: auto;   
    object-fit: contain;  
    border-radius: 8px;
}
/*MEDIA QUERIES PARA MOVILES*/
@media (max-width: 768px) {
    /*CONTENEDOR*/
    .contenedor {
        width: 90%;
        padding: 15px;
    }
    /*SECCION PRECIOS*/
    .precios {
        flex-direction: column;
        align-items: center;   
    }
    /*IMAGEN*/
    .img-precios {
        display: flex;
        justify-content: center; 
        align-items: center;    
        width: 100%;             
        max-width: 70%;        
        margin: 0 auto;         
    }
    .img-precios img {
        max-width: 100%;      
        height: auto;          
    }
    .img-serviciosf img, .img-precios img {
        max-width: 100%;
        height: auto;
    }
    /*TEXTO*/
    .anuncio .txt, .precios .txt {
        font-size: 16px;
    }
    /*TITULO*/
    .anuncio h2, .precios h2 {
        font-size: 18px;
    }
}