@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

*{
    font-family: 'Poppins', sans-serif;
}
.navbar{
    position: sticky;
    padding-right: 20px;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar a{
    font-weight: 600;
    font-size: 18px;
}

.carousel-item{
    min-height: 400px;

}

.carousel-caption{
    bottom: 200px;
    z-index: 2;
}

.carousel-caption h5{
    font-size: 70px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 25px;
}

.carousel-caption p{
    width: 60%;
    margin: 10px auto;
    font-size: 18px;
}

.carousel-inner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.services{
    padding: 80px 0;
}

.bg-carl{
    background-image: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url(../img2/interior.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.bg-carl2{
    background-image: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url(../img2/detalles.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-carl3{
    background-image: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ), url(../img2/pantalla.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.box-icons i{
    font-size: 40px;
}

.box-icons h3{
    font-size: 20px;
    font-weight: 800;
}

.product{
    padding: 80px 0;
}

.card img{
    border-radius: 4px;
    width:200px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
}

.card-text {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.banner{
    padding: 50px 0;
    margin-bottom: 80px;
    background-color: #eae5dF;
}

.banner h2{
    font-size: 40PX;
    text-transform: uppercase;
    font-weight: 800;
}

.banner img{
    width: 300px;
}

@media(max-width: 767px){
    .carousel-item{
        min-height: 500px;
    }

    .carousel-item img{
        height: 500px;
    }

    .carousel-caption h5{
        font-size: 50px;
        margin-top: 0;
    }
    .carousel-caption p{
        width: 100%;
        font-size: 16px;
    }

    .services{
        padding: 30px 0;
    }

    .product{
        padding: 30px 0 0 0;
    }
    .banner{
        margin-bottom: 30px;
    }
.navbar {
        padding-right: 10px;
        padding-left: 10px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-toggler {
        font-size: 1rem;
    }

    .navbar-nav {
        margin-top: 10px;
    }

    .nav-link {
        padding: 0.5rem 0;
    }
}