
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {

    --colorx: #fff;
    --color0: #fff;
    --color1: #050505;
    --color2: #beb37e;
    --fondo: #f3edd3;

}

body{

    margin: 0;
    padding: 0;
    background-color: var(--fondo);
    font-family: "Poppins";
    color: var(--color1);

}


#cont-compra{

    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 10px;
    height: 90%;
    width: 90%;
    background-color: var(--color0);
    border: 1px solid var(--color2);
    color: var(--color0);

}

#paypal-buttons-container{

    width: 50%;
    height: 50%;
    background-color: var(--color0);

}

#paypal-buttons-container h2{

    font-weight: 500;
    width: 100%;
    text-align: center;

}

#todo{

    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--fondo);

}

#whats{

    position: fixed;
    height: 100px;
    z-index: 23;
    right: 16px;
    bottom: 16px;
    filter: brightness(100%);
    transition: all 0.3s ease-in-out;

}

#whats:hover{

    cursor: pointer;
    filter: brightness(70%);
    transform: scale(95%);

}

#face{

    position: fixed;
    height: 130px;
    z-index: 23;
    right: 0px;
    bottom: 120px;
    filter: brightness(100%);
    transition: all 0.3s ease-in-out;

}

#face:hover{

    cursor: pointer;
    filter: brightness(70%);
    transform: scale(95%);

}


#land{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 3rem;
    height: 400px;
    width: 90%;
    background-color: var(--colorx);
    background-image: url(../images/Chaman\ Ancestral\ Servicios\ Online.jpg);
    background-position: center;
    background-size: cover;
    border: 2px solid var(--color2);
    text-align: center;
    color: var(--color0);

}

#cont-info{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 20px;
    height: auto;
    width: 90%;
    padding: 1rem 0;
    background-color: var(--colorx);

}

#cont-info p, #cont-info h3{

    width: 90%;

}

.title{

    border-radius: 10px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    color: var(--color2);
    background-color: var(--colorx);
    border: 1px solid var(--color2);
    text-decoration: none;

}



.cont-servicios{
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-top: 3rem;
    margin-bottom: 1rem;
    height: auto;
    padding: 0 0.5rem;
    width: 95%;

}
.servicios{

    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 2rem;
    height: 70%;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;

}

.servicios::-webkit-scrollbar {
    height: 10px; /* Ancho de la barra de desplazamiento */
}

.servicio{

    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
    width: 320px;
    min-width: 280px;
    background-color: var(--colorx);
    color: var(--color0);
    border: 1px solid var(--color2);
    box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.3);
}

.servicio-img{

    display: flex;
    aspect-ratio: 1 / 1;        
    background-size: cover;     
    background-position: center; 
    border-radius: 0.5rem;       
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color2);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 70%;
    width: 100%;
    background-size: cover;
    background-position: center;

}

.servicio-title{

    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: rgb(17, 17, 17,0.5);

}

.servicio-btn{

    user-select: none;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 15px;
    margin-bottom: 10px;
    background-color: var(--color2);
    font-weight: 600;
    text-decoration: none;
    color: var(--color1);
    transition: all 0.3s ease-in-out;
    color: var(--color0);

}


.priceTacha {
    display: inline-block;       
    text-decoration: line-through; 
    font-size: 0.9rem;          
    color: var(--color2);         
    margin-right: 0.5rem;       
}

.servicioPrice {
    display: flex;               
    justify-content: center;   
    align-items: center;    
    color: var(--color2);         
    
    gap: 0.5rem;                
    margin: 1rem 0;             
}

.servicio-btn:hover{

    cursor: pointer;
    transform: scale(105%);
    background-color: var(--color1);
    color: var(--color2);

}

@media (max-width:1010px) {

    #whats {

        height: 70px;
        bottom: 2rem;

    }

    #face {

        height: 90px;
    }

    #paypal-buttons-container{

        width: 95%;

    }

}

@media (max-width:450px) {

    #face {

        height: 80px;

    }

    #whats {

        height: 60px;
        right: 11px;
    
    }
}

#productos .servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    overflow-x: unset;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

#productos {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

#productos .servicio {
    width: 100%;
    max-width: 100%;
}
