/* Estilos para o body */
body {
    background-image: url(../assets/background.png);
}

/* Estilos para a navbar */
.navbar {
    background-color: transparent;
    margin-bottom: 2%;
}

.navbar-brand {
    color: white;
    font-size: 50px;
    font-family: 'Rawline', sans-serif;
}

.navbar-toggler-icon {
    color: white;
}

.navbar-nav .nav-link {
    color: white;
    font-size: 20px;
}


.F .form-control {
    width: 500px;
    height: 40px;
    margin-top: 18px;
    border-radius: 30px;
    font-family: 'Rawline', sans-serif;
}


.cart-icon,
.user-icon {
    color: white;
}


h1 {
    color: white;
    text-align: center;
    margin-bottom: 3%;
    font-family: 'Rawline', sans-serif;
}


.card-total-servicos {
    padding: 20px;
}


.zoom {
    position: relative;
    overflow: hidden;
    transition: .5s;
    border-radius: 10px;
}

.zoom img {
    transition: transform 0.5s ease;
}

.zoom:hover img {
    transform: scale(1.05);
}


.text {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
    padding: 10px;
    color: aliceblue;
    font-size: 35px;
    font-family: 'Rawline', sans-serif;
}


.btn-dark {
    border-radius: 10px;
    background-color: rgba(26, 26, 26, 0.75);
    border: 0;
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translate(-50%, -50%);
    padding: 10px;
    color: aliceblue;
    font-size: 26px;
    width: 25%;
    font-family: 'Rawline', sans-serif;
}



.btn-dark .bi-cart-fill {
    font-size: 1.5rem;
}


.btn-dark:hover {
    background-color: rgba(26, 26, 26, 0.9);
}


.zoom img {
    width: 100%;
    border-radius: 10px;
}


.text {
    color: aliceblue;
}


.text:hover {
    color: white;
}


.row {
    width: 100%;
}


.card-total-servicos {
    margin-top: 20px;
}


.container {
    width: 100%;
}


.col {
    width: 100%;
}


.zoom:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}


.nav-link {
    position: relative;
    list-style: none;
    padding: 4px 0;
}

.nav-link::after,
.nav-link::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.6s ease-in-out;
}

.nav-link::after {
    top: 0;
    right: 0;
    transform-origin: right;
}

.nav-link::before {
    left: 0;
    bottom: 0;
    transform-origin: left;
}

.nav-link:hover::after,
.nav-link:hover::before {
    width: 100%;
}


.card-title {
    color: aliceblue;
    font-size: 24px;
}

.btn {
    color: aliceblue;
    font-size: 18px;
}


.btn:hover {
    background-color: #343a40;
    transition: background-color 0.3s ease;
}


.cart-icon, .user-icon {
    color: #fff;
    font-size: 32px;
    transition: .5s;
}


.cart-icon:hover, .user-icon:hover {
    transform: scale(1.2);
}

/* Estilos responsivos */
@media (max-width: 800px) {
    .F .form-control {
        width: 100%;
    }

    .zoom img{
        width: 900px;
    }
    
    .btn-light {
        font-size: 8px;
        width: 90%;
        margin-right: -90px;
        margin-top: 1%;
        height: 45%;
    }
    
    .text {
        font-size: 24px;
    }
    
    .navbar-brand {
        font-size: 36px;
    }
    
    .navbar-nav .nav-link {
        font-size: 18px;
    }
    
    .container {
        padding: 0 15px;
    }

    .container-1{
        width: 100%;
        padding: 10%;
    }

    .card-title{
        margin-top: -2%;
    }


    

}