@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
    --white: #f1fbff;
    --red: #fe001a;
    --black: #1b1b1b;
    --default-font: "Nunito", sans-serif;
}

:root {
    scroll-behavior: smooth;
}

body {
    color: var(--black);
    font-family: var(--default-font);
}

a {
    color: var(--black);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--black), transparent 25%);
    text-decoration: none;
}


.scroll-top {
    /* visibility: hidden; */
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--red);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 15px;
    color: var(--white);
    line-height: 0;
}

.section {
    padding: 30px 0;

}

.img-1 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url( /img/slide-1.png) top center no-repeat;
    background-size: cover;
}

.img-2 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url(/img/slide-2.png) top center no-repeat;
    background-size: cover;
}

.img-3 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url(/img/slide-3.png) top center no-repeat;
    background-size: cover;
}

.corousel-caption {
    bottom: 220px;
    z-index: 2;
}

.carousel-caption h5 {
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
}

.carousel-caption p {
    width: 60%;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
}

.carousel-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: rgba(0, 0, 0, 0.2); */
    z-index: 1;
}

.navbar-nav a {
    font-size: 15px;
    font-weight: 500;
}

.navbar-dark .navbar-brand {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: var(--white);
}

.navbar-dark .navbar-nav .navbar-link {
    color: var(--white)
}

.w-100 {
    height: 100vh;
}

.about .content-right {
    background: color-mix(in srgb, var(--red), transparent 95%);
    padding: 40px;
}

.about .content-right h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
}

.about .content-right p {
    margin: 15px 0 10px 0;
    line-height: 24px;
}

.about .content-right .btn-read-more {
    color: var(--white);
    background: var(--red);
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
}

.about .content-right .btn-read-more span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.about .content-right .btn-read-more i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.about .content-right .btn-read-more:hover i {
    transform: translateX(5px);
}




.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, var(--red), transparent 90%);
    color: var(--red);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    /* font-family: var(--default-font); */
}

.section-title p {
    color: var(--black);
    margin: 10px 0 0 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--default-font);
}

.section-title p .description-title {
    color: var(--accent-color);
}


.values .card {
    color: var(--black);
    padding: 30px;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 0;
}

.values .card img {
    padding: 30px 50px;
    transition: 0.5s;
    transform: scale(1.1);
}

.values .card h3 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.values .card:hover {
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
    transform: scale(1);
}





.services .card-body i {
    font-size: 50px;
}

.portfolio .card {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}

.about .content {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 40px;
}


/* responsive css */
@media only screen and (min-width: 768px) and(max-width:991px) {
    .carousel-caption {
        bottom: 370px;
    }

    .carousel-caption p {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .navbar-nav {
        text-align: center;
    }

    .carousel-caption {
        bottom: 125px;
    }

    .carousel-caption h5 {
        font-size: 17px;
    }

    .carousel-caption a {
        padding: 10px 15px;
    }

    .carousel-caption p {
        width: 100%;
        line-height: 1.6;
        font-size: 12px;
    }
}

/* testemunhos */
.card-box{
    /* background: #23273a; */
    border-radius: 4px;  
}
.card-text{  
    padding: 30px 20px 25px 20px; 
}