@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
/* Variáveis */
:root {
    --cor1: #004a79;
    --cor2: #f1f1f1;
    --cor3: #888;
    --cor4: #555;
    --cor5: #1e272e;
    --cor6: #fff;
    --cor7: #333;
    --cor8: #222;
    --cor9: #f9f9f9;
    --cor10: #E9E9E9;
    --cor11: #d30f13;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--cor9);
   
}
section {
    padding: 90px 0;
}
/* scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cor2);
}

::-webkit-scrollbar-thumb {
    background: var(--cor3);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cor4);
}
/* ini: Preloader */
 
#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:var(--cor5); /* cor do background que vai ocupar o body */
    z-index:9999; /* z-index para jogar para frente e sobrepor tudo */
   
}
#preloader .inner{
    position: fixed;
    top: 50%; /* centralizar a parte interna do preload (onde fica a animação)*/
    left: 50%;
    transform: translate(-50%, -50%);  
}
#preloader .inner img{
    position: relative;
    transform: translate(-15%, -0%);  
}
.bolas > div {
  display: inline-block;
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 15px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
   
}
.bolas > div:nth-child(1) {
    animation-duration:0.75s ;
    animation-delay: 0;
}
.bolas > div:nth-child(2) {
    animation-duration: 0.75s ;
    animation-delay: 0.12s;
}
.bolas > div:nth-child(3) {
    animation-duration: 0.75s  ;
    animation-delay: 0.24s;
}
 
@keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; 
  } 
}

/* end: Preloader */

/* redes sociasi menu */
.side-menu {
    position: fixed;
    top: 35%;
    right: -150px;
    width: 150px;
    background-color: #f1f1f1;
    border: 0.5px solid rgba(0, 0, 0, 0.1);
    transition: .2s linear;
    z-index: 999;
}

.side-menu.active {
    right: 0;
}

.side-menu a {
    display: block;
    padding: 14px 10px;
    color: var(--cor5);
    font-size: 14px;
    text-decoration: none;
    transition: .2s linear;
}

.side-menu a i {
    width: 40px;
    font-size: 24px;
    text-align: center;
}

.side-menu a:hover {
    background-color: #333;
    color: #f1f1f1;
}
.box_seta{  
    width: 35px;
    background: var(--cor11);
    text-align: center;
    line-height: 45px;
    color: var(--cor6);
    z-index: 999;
    font-size: 25px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
 }
.seta {
    position: fixed;
    right: 1.2em;
    bottom: 5em; 
    text-align:center;
    z-index: 999;
    color:var(--cor2);
    float:none;
    animation:anima-seta 1500ms ease infinite;
    transition: 0.8s;
}
@keyframes anima-seta {
    to {
        opacity:1;
        transform: translateY(20px);
    }
}
 .seta_rmv{
     bottom: -100px;
 }
.toggle-btn {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 55px;
    background: var(--cor11);
    color: #f1f1f1;
    line-height: 58px;
    text-align: center;
    font-size: 25px;
    border-radius: 6px 0px 0px 6px;
    border-bottom-width: 2px;
    cursor: pointer;
}
.side-menu .facebook:hover {
    background: var(--cor11);
    color: var(--cor2);
}
.side-menu .youtube:hover {
    background: var(--cor11);
    color: var(--cor2);
}
.side-menu .instagram:hover {
    background: var(--cor11);
    color: var(--cor2);
}

.side-menu .whatsapp:hover {
    background: var(--cor11);
    color: var(--cor2);
}
/* --- btn whatsapp --- */
.btn_whatsapp{
	position: fixed;
	bottom: 0.5em;
	right: 0.5em;
	width: 60px;
	height: 60px;
	background: #24C862;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 60px;
	font-size: 40px;
	z-index: 999;
}

.btn_whatsapp::before,
.btn_whatsapp::after{
	z-index: 99999;
	content: '';
	display: block;
	position: absolute;
	border: 10%;
	border:  1px solid #24C862;
	left: -10px;
	right: -10px;
	top: -10px;
	bottom: -10px;
	border-radius: 50%;
	animation: pulse 1.5s linear infinite;
	opacity: 0;	
}
.btn_whatsapp::after{
	animation-delay: 1s;
}
@keyframes pulse{
	0%{
		transform: scale(0.5);
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
		transform: scale(1.2);
		opacity: 0;
	}
}
/* estilo geral */

.max-width {
    max-width: 1300px;
    padding: 0 50px;
    margin: auto;
}
.max-width-navbar {
    max-width: 1920px;
    padding: 0 100px;
    margin: auto;
}
.side-menu,
.about,
.services,
.produto,
.treinamento,
.contact,
footer {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.services .serv-content,
.produto .produto-content,
.treinamento .treinamento-content,
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title {
    position: relative;
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 2em;
    padding-bottom: 0.6em;
    padding-top: 0.2em;
    font-family: sans-serif;
    background-color: #c6d5db;
    color: var(--cor1);
    border-radius: 0px 30px 0px 30px;
    left: 0.1em;
    letter-spacing: 0.1em;

}
section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 80%;
    height: 3px;
    background: var(--cor5);
    transform: translateX(-50%);
}
section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: var(--cor11);
    padding: 0 5px;
    background: var(--cor10);
    transform: translateX(-50%);
    border-radius: 5px;
}
/* navbar*/
.navebar {
    position: fixed;
    width: 100%;
    z-index: 900;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.navebar.sticky {
    padding: 20px 0;
    background: var(--cor1);
    height: 5em;
}
.navebar .max-width,
.max-width-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navebar .logo img {
    width: 70px;
    position: relative;
    margin-top: -10px;
}
.navebar .menu li {
    list-style: none;
    display: inline-block;
}
.navebar .menu li a {
    text-decoration: none;
    display: block;
    color: var(--cor6);
    font-size: 18px;
    font-weight: 400;
    padding: 5px 1.2em;
    transition: color 0.3s ease;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
}
.navebar .menu li:hover {
    color: var(--cor1);
    border-radius: 5px;
    position: relative;
    transition: 0.3s;
    background-color: rgba(0, 74, 121,0.6);
}
.navebar .menu li:hover::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0.18rem;
    left: 0;
    margin-top: 0.2em;
    top: 2rem;
    background-color:var(--cor11);
    animation: after .3s ease-in-out;   
}
@keyframes after {
    0%{
        width: 0%;
    }
    25%{
        width: 25%;
    }
    50%{
        width: 50%;
    }
    75%{
        width: 75%;
    }
    100%{
        width: 100%;
    }
    
}

.navebar.sticky .menu li a:hover {
    color: var(--cor2);
}
/* menu btn */
.menu-btn {
    color: var(--cor6);
    font-size: 25px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn {
    position: fixed;
    width: 42px;
    background: var(--cor11);
    text-align: center;
    line-height: 45px;
    color: var(--cor6);
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show {
    bottom: 3.5em;
    right: 1.1em;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover {
    filter: brightness(90%);
}
/* home section */
.home {
    display: flex;
    background: url("../img/banner3.webp") no-repeat center;
    height: 100vh;
    color: var(--cor6);
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}
.home .max-width {
    width: 100%;
    display: flex;
}
.home .home-content img {
    width: 300px;
}
.home .home-content .text-1 {
    font-size: 22px;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5)
}
.home .home-content .text-2 {
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5)
}
.home .home-content .text-2 span {
    color: var(--cor11);
    font-weight: 500;
    text-shadow: 2px 2px 2px 2px var(--cor2)
}
.home .home-content .text-3 {
    font-size: 35px;
    margin: 5px 0;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5)
}
.home .home-content .text-3 span {
    color: var(--cor11);
    font-weight: 500;
    text-shadow: 4px 4px 4px 4px var(--cor2)
}
.home .home-content a:hover {
    color: var(--cor1);
    background: none;
}
/* about section styling */
.about {
    box-shadow: 1px 2px 2px rgb(0, 0, 0, 0.1);
}
.about .title::after {
    content: "D.A.C";
}
.about .about-content .left {
    width: 45%;
}
.about .about-content .left img {
    height: 155px;
    width: 350px;
    border-radius: 6px;
}
.about .about-content .right {
    width: 55%;
}
.about .about-content .right .text {
    font-size: 1.5em;
    font-weight: 600;
    text-transform: uppercase;
    border-left: solid 8px var(--cor11);
    padding-left: 1em;
    margin-top: 2em;
}
.about .about-content .right .text1 {
    font-size: 1.5em;
    font-weight: 600;
}
.about .about-content .right .text span {
    color: var(--cor1);
}
.about .about-content .right .text1 span {
    color: var(--cor11);
}
.about .about-content .right p {
    text-align: justify;
    font-weight: 600;
    font-size: 1em;
}
.about .about-content .right a {
    display: inline-block;
    background: var(--cor1);
    color: var(--cor6);
    font-size: 20px;
    font-weight: 500;
    padding: 1px 30px;
    margin-top: 5px;
    border-radius: 6px;
    border: 2px solid var(--cor1);
    transition: all 0.3s ease;
}
.about .about-content .right a:hover {
    color: var(--cor1);
    background: none;
}
/* services section styling */
.services {
    background-color: var(--cor10);
    min-height: 600px;
    box-shadow: 1px 2px 2px rgb(0, 0, 0, 0.2);
}
.services .title::before {
    background: var(--cor5);
}
.services .title::after,
.title::after {
    content: "D.A.C";
}
.services .serv-content .serv-content-texto p {
    text-align: justify;
    margin-bottom: 1em;
    font-weight: 500;
}
.serv-accordion {
    width: 100vw;
}
.services .accordion .accordion-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.services .accordion .accordion-container .accordion-texto {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 1em 0em;
}
.services .accordion .accordion-container .accordion-img img{
    width: 300px;
}
.services .accordion .accordion-container .accordion-img_tr{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.services .accordion .accordion-container .accordion-img_tr img{
    width: 200px;
    margin: 2em 0.5em;
}
.services .accordion .accordion-container .accordion-img_cil img{
    width: 250px;
}

/* produto */
.produto {
    background-color: var(--cor6);
    box-shadow: 1px 2px 2px rgb(0, 0, 0, 0.1);
}
.produto .title::after {
    content: "D.A.C";
}
.produto .produto-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
}
.produto .produto-content .text {
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    border-left: solid 8px var(--cor11);
}
.produto .produto-content p {
    text-align: center;
    font-weight: 400; 
    font-size: 1.2em;  
    margin-top: 1em;
}
.produto .produto-content .texto{
    font-size: 1.1em;
}
.produto .carousel .card {
    background: var(--cor6);
    border-radius: 6px;
    padding: 1em 2em;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--cor5);
    margin: 1em 0em;
    
}
.produto .carousel .card .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 480px;
}
.produto .carousel .card:hover {
    transform: scale(1.01);
}
.produto .carousel .card .text {
    font-size: 1.5em;
    font-weight: 500;
    margin: 0.5em 0;
    border-left: 8px solid var(--cor11);
    padding-left: 0.2em;
}
.produto .carousel .card .box img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}
.produto .carousel img:hover {
    border-color: var(--cor6);
    border-radius: 2px;
}
.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover {
    background: var(--cor11) !important;
}
.owl-dot {
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none !important;
    border-radius: 50%;
    border: 2px solid var(--cor11) !important;
    transition: all 0.3s ease;
}
.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover {
    background: var(--cor11) !important;
}
.produto .produto-content .produto_card {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Treinamento  */
.treinamento {
    background-color: var(--cor10);
}
.treinamento .treinamento-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.treinamento .title::after {
    content: "D.A.C";
}
.treinamento .treinamento-texto {
    padding: 2em;
    background-color: #f1f1f1;
    width: 40%;
    height: 500px;
    border-radius: 1px;
    border: solid 2px var(--cor2);
    box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}
.treinamento .treinamento-texto .text {
    font-size: 1.5em;
    font-weight: 600;
    border-left: solid 8px var(--cor1);
    padding-left: 0.5em;
}
.treinamento .treinamento-texto p {
    font-weight: 600;
}
.treinamento .treinamento-content .treinamento-texto .treinamento_icon img {
    width: 40%;
}
.treinamento .treinamento-content .treinamento-video .card {
    margin-bottom: 1.5em;
    margin-top: 3em;
}
/* contato*/
.contact {
    min-height: 700px;
}
.contact .title {
    margin-bottom: 80px;
}
.contact .title::after {
    content: "D.A.C";
}
.contact .contact-content .contact-texto {
    background-color: #f1f1f1;
    padding: 2em;
    width: 48%;
    height: 500px;
    border-radius: 1px;
    border: solid 2px var(--cor2);
    box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
}
.contact .contact-content .row1 {
    display: flex;
    margin: 1em 1em;
    align-items: center;
}
.contact .contact-content .row1 .info {
    margin-left: 1.5em;
}
.contact .contact-content .row1 i {
    font-size: 2em;
    color: var(--cor11);
    transition: 0.3s;
}
.contact .contact-content .row1 i:hover {
    transform: translateY(-2px);
}
.contact .contact-content .info .head {
    font-weight: 500;
}
.contact .contact-content .info .sub-title {
    color: var(--cor7);
}
.contact .contact-content .row1 a {
    text-decoration: none;
    color: var(--cor8);
}
.contact .contact-content .row1 a:hover {
    color: var(--cor11);
}
.contact .contact-content .contact-mapa {
    width: 48%;
    border-radius: 1px;
    border: solid 2px var(--cor2);
    box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.2);
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.contact .contact-content .contact-mapa iframe {
    width: 100%;
    height: 240px;
    padding: 0.2em;
}

.contact .contact-content .contact-mapa .img_local {
    width: 100%;
    height: 240px;
    padding: 0.2em;
    background-image: url(../img/locall.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: center;
}
/* footer section styling */
footer {
    background: var(--cor5);
    padding: 15px 23px;
    color: var(--cor6);
    text-align: center;
}
footer a {
    text-decoration: none;
}
footer span {
    font-size: 12px;
}
footer span a {
    color: var(--cor11);
    text-decoration: none;
}
footer span a:hover {
    text-decoration: none;
    color: rgb(111, 139, 250);
}
footer .logo a {
    color: var(--cor6);
    font-size: 25px;
    font-weight: 600;
    margin-left: 10px;
}
footer .logo a span {
    color: var(--cor11);
    font-size: 25px;
    text-decoration: none;
}
.footer_social {
    font-size: 2em;
    width: 100%;
}
.footer_icon i {
    font-size: 2rem;
    color: var(--cor6);
    transition: 0.5s;
    margin: 1em 0.5em;
}
.footer_icon i:hover {
    transform: scale(1.1);
}
.footer_social_mobile {
    position: fixed;
    transform: translate(6%, -25%);
    width: 90%;
    height: 3.5em;
    bottom: -100px;
    background-color: #f1f1f1;
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow:
      inset 6px 6px 16px hsla(240, 30%, 86%, 1),
      inset -6px -6px 16px #ffffff;
    border-radius: 10px;
  
  }
  
  .footer_icon_mobile {
    font-size: 1.8em;
    text-decoration: none;
    color: var(--cor11);
  }
  
  .footer_icon_mobile:focus {
    color: var(--cor11);
  }
  
  @media (max-width: 690px) {
    .footer_social_mobile {
      transition: 1s;
    }
  }
/* responsive media query start */
@media (max-width: 1700px) {
    .about .about-content .left img {
        height: 155px;
        width: 350px;
    }
    
    .navebar .menu li a {
        font-size: 1em;
        padding: 0.3em 0.3em;
    }
}
@media (max-width: 1311px) {
    .max-width {
        padding: 0 50px;
    }
    .navebar .logo img {
        margin-top: 0;
        margin-left: 0.5em;
    }
    .toggle-btn {
        left: 0;
    }
    .navebar.sticky {
        height: 5em;
    }
    .navebar .menu li a {
        font-size: 1em;
        padding: 0.3em 0.5em;
    }
}

@media (max-width: 967px) {
    .max-width-navbar {
        padding: 0 12px;
    }
    .navebar .logo img {
        margin-top: 0;
        margin-left: 0.5em;
    }
    .menu-btn {
        display: block;
        z-index: 999;

    }
    .menu-btn i {
        color: var(--cor2);
        background-color: var(--cor7);
        padding: 5px 10px;
        border-radius: 5px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    }
    .menu-btn i.active:before {
        content: "\f00d";
    }
    .btn_whatsapp{
        bottom: -100px;
    }
    .navebar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: 100%;
        top: 0;
        background: var(--cor1);
        text-align: center;
        padding-top: 70px;
        transition: all 0.5s ease;

    }
    .navebar .menu li {
        text-align: left;
        border-bottom: solid 1px var(--cor10);
    }
    .navebar .menu li:hover::after {
        content: none;
        background-color:none;     
    }

    .navebar .menu.active {
        left: 0;
    }
    .navebar .menu li {
        display: block;
    }
    .navebar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 20px;
    }
    .home {
        background: url("../img/banner4.webp") no-repeat center;
        min-height: 400px;
        height: 800px;
        background-size: cover;
    }
    .home .max-width {
        justify-content: center;
    }
    .home .home-content {
        position: absolute;
        top: 12em;
        text-align: center;
    }
    .home .home-content img {
        width: 250px;
    }
    .home .home-content a {
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width {
        max-width: 930px;
    }
    .about .about-content .column {
        width: 100%;
    }
    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right {
        flex: 100%;
    }
    .about .about-content .right .text {
        font-size: 0.5em;
    }
    .produto .produto-content .column,
    .treinamento .treinamento-content .column,
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 25px;
    }
    .services .accordion .accordion-container {
        flex-direction: column;
    }
    .services .accordion .accordion-container .accordion-img img{
        width: 220px;
    }
    .services .accordion .accordion-container .accordion-img_cil img{
        width: 120px;
    }
    .services .accordion .accordion-container .accordion-img_tr img{
        width: 85px;
        margin: 1.5em 0em;
    }
    
    .contact .contact-content {
        flex-direction: column;
    }

    .contact .contact-content .contact-texto {
        width: 100%;
        margin-bottom: 1.8em;
    }
    .contact .contact-content .contact-mapa {
        width: 100%;
    }
    .contact .contact-content .contact-mapa .img_local{
        background-image: url(../img/local_mobile.webp);
    }
    .treinamento .treinamento-content {
        flex-direction: column;
    }
    .treinamento .treinamento-texto {
        width: 100%;
    }
    footer{
        padding-bottom: 5em;
    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }
    .navebar .logo img {
        margin-top: 0em;
        margin-left: 0.5em;
    }

    .home .home-content .text-3 {
        font-size: 1.7em;
        text-align: center;
        width: 10em;
        text-shadow: 1px   rgba(243, 244, 245,0.2);
        letter-spacing: 1px;
        color:rgb(168, 11, 11);
        
    }

    .about .about-content .right .text {
        font-size: 3em;
        font-weight: 800;
        margin-top: 3em;
    }

    .services .accordion .accordion-container .accordion-texto {
        margin-top: 1.5rem;
        font-size: 1em;
        text-align: left;
        margin-left: 1.5em;

    }

    .services .accordion .accordion-container .accordion-img {
        display: flex;
        text-align: center;
        justify-content: center;

    }

    .contact .contact-texto {
        font-size: 0.9em;
    }

    .contact .contact-content .contact-mapa img {
        image-orientation: flip;
    }

    .footer_social_mobile_show {
        bottom: 0;
        transition: 1s;
    }
     
    .produto .produto-content .card .box .text {
        font-size: 1.3em;
    }
    .produto .produto-content .card .box p {
        font-size: 1em;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-1 {
        font-size: 16px;
    }


    .about .about-content .right .text,
    .produto .produto-content .left .text {
        font-size: 17px;
    }

    .contact .contact-content .mapa {
        width: 320px;
    }


    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}


/*modal */