/* Gerais*/
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap);
* body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.row {
    margin: 0;
}

.container {
    padding: 70px 0;
}

.p li {
    color: #444;
    font-size: 14px;
}

/* Barra de Navegação*/
header, .navbar {
    background-color:#E9E9E9;
   
}

#nav-container {
    padding-top: 0;
    padding-bottom: 0;

}

#logo {
    width: 120px;
    margin-left: 10%;

}

.navbar-brand {
    padding: 0;
}

#navbar-links a {
    color: #000000;
    cursor: pointer;
    letter-spacing: 3px;
    z-index: 1;
}

#navbar-links a:hover {
    color: #c40233;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 1rem .8rem;
}

.container-fluid {
    padding: 0;
   
}

#mainSlider .carousel-inner, #mainSlider .carousel-item {
    height: 100vh;
    margin-top: 20px;
    z-index: 1;
    transition: 1s;
}

#mainSlider .carousel-caption {
    top: 20%;
    right: 50%;
}

#mainSlider .carousel-caption h2 {
    font-size: 50px;
    margin-bottom: 30px;
    color: #ffffff;

}

#mainSlider .carousel-caption p {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 100px;
    color: #ffffff;

}

.main-btn {
    background-color: #ffffff;
    color: #c40233;
    text-transform: uppercase;
    width: 200px;
    height: 60px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 3px solid transparent;
    transition: .5s;
}

.main-btn:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: transparent;
    border-color: #ffffff;
}

.carousel-indicators .active {
    background-color: #ffffff;
}

#promo .container {
    margin-top: 5px;
    padding: 40px 100px;
    background-color: #c40233;
}


.main-title {
    color: #C40233;
    margin: 0 0 65px 0px;
    font-size: 40px;
    display: block;
    overflow: hidden;
    text-align: center;
}

.main-title::after {
    content: "";
    border-top: 2px solid #fff;
    width: 15%;
    position: absolute;
    top: 60px;
    left: 42.5%;
}

.main-title1 {
    color: #C40233;
    margin: 0 0 65px 0px;
    font-size: 40px;
    display: block;
    overflow: hidden;
    text-align: center;
}

.main-title1::after {
    content: "";
    border-top: 2px solid #C40233;
    width: 15%;
    position: absolute;
    top: 60px;
    left: 42.5%;
}

/* IMPRESSORAS */

#Impressoras {
    display: flex;
    margin-top: 5px;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(90deg, #500, #C40233);
    background-attachment: fixed;
}

.container {
    position: relative;
    width: 1150px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container .card {
    position: relative;
    width: 250px;
    height: 400px;
    background: #fff;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.6);
    transition: 0.5s;
}

.container:hover .card {
    filter: blur(5px);
    transform: scale(0.9);
    opacity: 0.5;
}

.container .card:hover {
    filter: blur(0px);
    transform: scale(1.1);
    opacity: 1;
}

.container .card .circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #500, #C40233);
    clip-path: circle(160px at center 0);
    text-align: center;
}

.container .main-title {
    color: #fff;
}

.container .card .content {
    position: absolute;
    bottom: 5px;
    padding: 10px;
    text-align: center;
}

.container .card .content p {
    color: #666;
}

.container .card .content h5 {
    color: #666;
}

.container .card .content a {
    position: relative;
    display: inline-block;
    padding: 5px 10px;
    background: #C40233;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 10px;
}

.container .card .content a:hover {
    background: #fff;
    border: solid 1px #C40233;
    color: #C40233;
}

.container .card-img-top {
    width: 150px;
}

.contact-box {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #C40233;
    text-decoration: none;
    
}

.contact-box1 {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #C40233;
    text-decoration: none;
    
}
/* BANNER CONTATO */
/* BOTÃO WHATSAPP*/
.contact-box1 .fa-whatsapp {
    color: #fff;
    border: solid 2px #fff;
    background-color: #25d366;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 24px;
    margin-bottom: 20px;
    text-decoration: none;
}

.fa-whatsapp:hover {
    animation: tremer 0.2s;
    animation-iteration-count: infinite;
}

@keyframes tremer {
    0%{transform: translate(1px,1px) rotate(0deg);}
    10%{transform: translate(-1px,-2px) rotate(-1deg);}
    20%{transform: translate(-2px,0px) rotate(1deg);}
    30%{transform: translate(2px,2px) rotate(0deg);}
    40%{transform: translate(1px,-1px) rotate(1deg);}
    50%{transform: translate(-1px,2px) rotate(-1deg);}
    60%{transform: translate(-2px,1px) rotate(0deg);}
    70%{transform: translate(2px,1px) rotate(-1deg);}
    80%{transform: translate(-1px,-1px) rotate(1deg);}
    90%{transform: translate(1px,2px) rotate(0deg);}
    100%{transform: translate(1px,-2px) rotate(-1deg);}
}

#banner {
    background-color: #C40233;
    
}

#banner h5{
    font-size: 30px;
    color: #fff;
    margin-left: 10%;
}

#banner .container {
    padding: 40px 100px;
}

#banner .row {
    display: block;
    text-align: center;
}


#Contato {
    text-align: center;
    background-color: #E9E9E9;
}



.contact-box i {
    color: #444;
    border: solid 1px #444;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 24px;
    margin-bottom: 20px;
    text-decoration: none;
    
}

.contact-box p {
    font-size: 16px;
    text-decoration: none;
    
}

.contact-title  {
    font-weight: bold;
    color: #C40233;
    text-decoration: none;
}

#msg-box p {
    font-size: 22px;
}

#contact-form input[type="name"], 
#contact-form input[type="email"], 
#contact-form input[type="phone"], 
#contact-form input[type="text"], 
#contact-form textarea {
    margin-bottom: 15px;
    border-radius: 0;
}

#contact-form .main-btn {
    background-color: #C40233;
    color: #FFF;
    width: 120px;
    height: 50px;
}

#contact-form .main-btn:hover {
    background-color: #FFF;
    color: #C40233;
    border: 1px solid #C40233;
}

/* Copy */
#copy-area {
    background-color: #e9e9e9;
}

#copy-area .container {
    padding: 10px 0;
    text-align: center;
}

#copy-area .container p {
    margin-bottom: 0;
}

#copy-area .container a {
    font-weight: bold;
    color: #C40233;
}

#copy-area .container a:hover {
    text-decoration: none;
    color: #000000;
}

.orçamento {
    background-color: #C40233;
    color: #fff;
    font-size: 12px;
    font-weight: inherit;
    text-transform: uppercase;
    position: fixed;
    bottom: 2%;
    left: 90%;
    padding: 1%;
    z-index: 50;
    width: 105px;
    height: 40px;
    line-height: 10px;
    border-radius: 15px;
    border: 3px solid #E9E9E9;
    transition: .5s;
}

/* PÁGINA DE OBRIGADO */

iframe {
    width: 100%;
    height: 550px;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

#copy-area p {
    text-align: center;
}

#thanks {
    background: #000080;
}







