@import "/public/node_modules/bootstrap/dist/css/bootstrap.min.css";
@import "/public/node_modules/sweetalert2/dist/sweetalert2.min.css";
@import "/public/css/global.css";

@import "/public/components/whatsapp-chat-button/WhatsAppChatButton.css";
@import "/public/components/contact-form/ContactForm.css";
@import "/public/components/site-header/SiteHeader.css";
@import "/public/components/site-footer/SiteFooter.css";

* {
    box-sizing: border-box;
}

html, body {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
}

/*************/

#site-main > section {
    padding: 8rem 1.5rem;
}

#site-main > section .section-center {
    margin: auto;
    width: 100%;
    max-width: 1300px;
}

#site-main > section h2 {
    font-size: 3rem;
    font-weight: 600;
}

/*************/

#banner {
    background: url("/public/multimedia/images/banner.jpg") no-repeat no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

#banner .banner-logo {
    width: 100%;
    max-width: 350px;
    margin-bottom: 4rem;
}

#banner .banner-description {
    padding: 1rem;
    border-radius: 2rem;
    background: #dbdcdb;
    font-size: 3rem;
    margin: auto;
    width: 100%;
    max-width: max-content;
}

/*************/

#services {
    background: #eeecec;
}

#services .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 500px;
    border-radius: 1rem;
}

#services .box {
    padding: 1rem;
    border-radius: 1rem;
    background: #8ac569;
}

#services .box img {
    width: 100%;
    max-width: 50px;
    margin-bottom: 1rem;
}

#services .box h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#services .box p {
}

/*************/

#products h2 {
    text-align: center;
}

#products .product-box {
    background: #8a959f no-repeat no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 700px;
    border-radius: 2rem;
    padding-top: 5rem;
}

#products .product-box.product-1 {
    background: url('/public/multimedia/images/product-1.webp') no-repeat no-repeat 20% center;
    background-size: cover;
}

#products .product-box.product-2 {
    background: url('/public/multimedia/images/product-2.webp') no-repeat no-repeat right center;
    background-size: cover;
}

#products .product-box.product-3 {
    background: url('/public/multimedia/images/product-3.webp') no-repeat no-repeat left center;
    background-size: cover;
}

#products .product-box h3 {
    padding: 1rem;
    text-align: center;
    background: #afb2ed;
}

/*************/

#contact {
    background: #f4f4f4 url("/public/multimedia/images/contact-bg.webp") no-repeat no-repeat center center fixed;
    background-size: cover;
}

#contact h2 {
    text-align: right;
    margin-bottom: 4rem;
}