/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* fim reset */

:root
{
    --defalt-color: #2e5d99;
    --dark-gray: rgb(53, 53, 53);
    --font-normal: calc(.5rem + 1vw);
    --font-medium: calc(.75rem + 1vw);
    --font-big: calc(1.3rem + 1vw);
    --font-small: calc(0.25rem + .75vw);
}

.container
{
    margin: 0 auto;
    width: 90%;
}

.fullsize-container
{
    height: calc(100dvd - 15%);
}
body
{
    color: white;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

header
{    
    
    
    transition: .3s ease-in-out;
}

nav
{
    display: flex;
    /*
    background-color: var(--main-color);
    border-bottom: var(--contrast-color) 3px solid;
    */
    height: 12%;    
    width: 100%;
    z-index: 100;   
    position: absolute;
    /* background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%); */
    transition: .3s ease-in-out;    
    align-items: center;
    justify-content: center;
    background-color: white;
    will-change: auto;
    
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%
  }
  
/* Hack para prevenir movimentos bruscos nos elementos da página quando o header fica fixo */
.sticky + .content {
    padding-top: 102px;
} 

#menu-logo-mobile
{
    display: none;
}

#menu-logo
{
  display: block;
}

#destktop-menu
{
    display: flex;
    gap: 5%;
    flex-wrap: nowrap;
    width: 75%;    
    justify-content: flex-end;   
}

#destktop-menu  li
{
    list-style: none;
    font-size: var(--font-normal);
    font-weight: bold;
    
}

#destktop-menu  li a
{
    text-decoration: none;
    color: rgb(53, 53, 53);
}


#destktop-menu  li:after
{
  display:block;
  content: '';
  border-bottom: solid 3px var(--defalt-color);  
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
  width: 100%;;
  transform-origin: left;
}

#destktop-menu  li.active::after
{
    display:block;
    content: '';
    border-bottom: solid 3px var(--defalt-color);  
    transform: scaleX(1);  
    transition: transform 250ms ease-in-out;
    width: 100%;;
    transform-origin: left;
}

nav #destktop-menu li:hover::after
{
    transform: scale(1);
}

#mobile-menu
{
  display: none;
}

#banner
{
    width: 100%;
    display: flex;
    position: relative;
}



#banner figure
{
    width: 100%;
    
}

#desktop-banner
{
    display: block;
    width: 100%;
    height: 100%;
}

#mobile-banner
{
    display:none
}

#hero
{
    width: 45%;
    position: absolute;
    top: 30%;
    margin-left: 5%;
    
}

#hero h1
{
    text-transform: uppercase;
    color: var(--dark-gray);
    font-size: var(--font-medium);
    font-weight: bold;
}

#hero p
{
    color: var(--dark-gray);
    font-size: var(--font-normal);
    padding: 2% 0;
    width: 70%;
}

#hero p span
{
  color: var(--defalt-color);
  font-weight: 700;  
}

#hero form input
{
    display: block;
    margin-top: 2%;
    border-radius: 50px;
    border: solid 2px var(--defalt-color);
    width: 60%;
    padding: 2%;
}

#hero form input::placeholder
{
    color: var(--dark-gray);
    opacity: .7;
    font-style: italic;
}

#hero form button
{
    margin-top: 2%;
    border-radius: 50px;
    background-color: var(--defalt-color);
    color: white;
    text-transform: uppercase;
    width: 40%;
    margin-left: 24%;
    padding: 2%;
    border: none;
}

#logo-svg
{
    position: absolute;
    width: 30vw;
    top: 30%;
    right: 17%;
    

}

#main
{
    background-color: var(--defalt-color);
    /* height: 100svh; */
}

#main-content
{
    margin: 0 auto;
    width: 90%;
    /* height: 90%; */
    background-color: rgb(224, 224, 224);
    display: flex;
    padding: 5% 0;
    justify-content: center;    
    align-items: flex-start;
}

#left-contet
{
    width: 60%;
    height: 90%;
    color: var(--dark-gray);
    margin-top: 3%;
}

#left-contet h1
{
    font-size: var(--font-medium);
    font-weight: bold;
    padding-left: 5%;
    padding-bottom: 5%;
}

#left-contet span
{
    color: var(--defalt-color);
    font-size: var(--font-medium);
}

#left-contet p
{
    padding: 1% 5%;
    width: 80%;
    text-align: justify;
    text-justify: inter-word;
    line-height: 120%;
}

#right-contet
{
    width: 35%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#right-contet img
{
    width: 70%;
    height: 100%;
}

#services
{
    background-image: url(../image/faixa.webp);
    background-repeat: no-repeat;
    padding-top: 5%;
    
}

.tittle
{
    font-size: var(--font-medium);
    font-weight: bold;  
    text-align: center;  
} 

#services h1.tittle
{
    padding-top: 10%;
    color: var(--dark-gray);
}

#services h1.tittle span
{
    color: var(--defalt-color);
}

#services-content
{
    display: grid;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    grid-template-columns: 1fr 1fr; /* Duas colunas de largura igual */
    gap: 2.5%;
    margin-top: 5%;
}

.service-item
{
    padding: 5%;
    /* text-align: center; */
    transition: ease-in-out .3s;  
    border: solid 1px white;
    background-color: white;
    
}

@keyframes borderAnimation {
    0% {
      border-color: #ffffff; /* Início da animação */
    }
    50% {
      border-color: rgb(177, 196, 230); /* Meio da animação */
    }
    100% {
      border-color: var(--defalt-color); /* Fim da animação */
    }
  }

.service-item:hover
{
    scale: 1.1;
    animation: borderAnimation 0.5s forwards; /* Aplica a animação com repetição infinita */
    box-shadow: -7px 6px 14px -3px rgba(0,0,0,0.37);
    -webkit-box-shadow: -7px 6px 14px -3px rgba(0,0,0,0.37);
    -moz-box-shadow: -7px 6px 14px -3px rgba(0,0,0,0.37);
}

.service-item h1
{
    color: var(--dark-gray);
    font-size: var(--font-medium);
    font-weight: bold;
    text-transform: uppercase;
    padding: 2% 0;
}

.service-item h1 span
{
    color: var(--defalt-color);
}

.service-item p
{
    color: var(--dark-gray)
}

.service-item img
{
    transition: ease-in-out .3s;   
    width: 100%;
}



#about-us
{

}

#about-us h1
{
    font-size: var(--font-big);
    color: var(--dark-gray);
    font-weight: bold;
    text-align: center;
    padding-top: 5%;
}

#about-us h1 span{
    color: var(--defalt-color);
}

#about-us img
{
    width: 40%;
}

#about-us-content
{
    display: flex;
    padding-top: 5%;
    flex-direction: row;
    flex-wrap: nowrap;
    
    justify-content: center;
    align-items: flex-start
}

#about-us-content div
{
    width: 60%;
}

#about-us-content div p
{
    color: var(--dark-gray);
    text-align: justify;
    padding: 0 5%;
    font-size: var(--font-normal);
    line-height: 150%;
}

#about-us-content a
{
    color: var(--defalt-color);
    font-weight: bold;
    font-size: var(--font-normal);
    padding: 0 5%;
    line-height: 5;
    position: relative;
    text-decoration:underline
}



#contact-box
{
    background-color: black;
    margin: 5% 0;
    padding-bottom: 5%;
    min-height: 50vh;
}

#contact-box h1
{
    color: white;
    font-weight: bold;
    font-size: var(--font-big);
    text-align: center;
    padding: 3%;
}

#contact-box form
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-end;
}

#contact-box form input
{
    border-radius: 50px;
    border: solid 2px var(--defalt-color);
    width: 50%;
    padding: 1%;
    margin: 1% 0;
    font-size: var(--font-normal);
}

#obs
{
    height:20vh;
    width: 50%;
    padding: 1%;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: var(--font-normal);
    border: 1px solid var(--defalt-color);

}

#contact-box form button
{
    background-color:#408ced;
    color: white;
    text-transform: uppercase;
    width: 20%;
    font-size: var(--font-normal);
    font-weight: bold;
    padding: 1%;
    margin-top: 1%;
    border: none;
    border-radius: 50px;
    transition: ease-in-out .3s;
}

#contact-box form button:hover
{
    scale: 1.1;
}

footer
{
    background-color:#c8cacc;
    min-height: 30vh;
   

}

footer div span a
{
    text-decoration: none;
    color: var(--dark-gray);
}

#footer-content
{
    padding-top: 3%;
    display: grid;
    grid-template-columns: 1fr 1fr .5fr;
    color: var(--dark-gray);
    
    justify-content: center;
    align-items: start;
    justify-items: center;
    font-size: var(--font-normal);
}

#footer-end
{
    color: var(--dark-gray);
}

#footer-content a i
{
    font-size: var(--font-medium);
}

#footer-content a:hover i
{
    color: var(--defalt-color);
    scale: 1.2;
}

#trademark
{
    margin-top: 5%;
    text-align: center;
    color: var(--dark-gray);
}



/***************************************************
 * Generated by SVG Artista on 11/7/2023, 10:24:38 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

 @-webkit-keyframes animate-svg-stroke-1 {
    0% {
      stroke-dashoffset: 2521.7529296875px;
      stroke-dasharray: 2521.7529296875px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 2521.7529296875px;
    }
  }
  
  @keyframes animate-svg-stroke-1 {
    0% {
      stroke-dashoffset: 2521.7529296875px;
      stroke-dasharray: 2521.7529296875px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 2521.7529296875px;
    }
  }
  
  @-webkit-keyframes animate-svg-fill-1 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(55, 52, 53);
    }
  }
  
  @keyframes animate-svg-fill-1 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(55, 52, 53);
    }
  }
  
  .svg-elem-1 {
    -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
                         animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
            animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
                 animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-2 {
    0% {
      stroke-dashoffset: 362.3675537109375px;
      stroke-dasharray: 362.3675537109375px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 362.3675537109375px;
    }
  }
  
  @keyframes animate-svg-stroke-2 {
    0% {
      stroke-dashoffset: 362.3675537109375px;
      stroke-dasharray: 362.3675537109375px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 362.3675537109375px;
    }
  }
  
  @-webkit-keyframes animate-svg-fill-2 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(46, 93, 153);
    }
  }
  
  @keyframes animate-svg-fill-2 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(46, 93, 153);
    }
  }
  
  .svg-elem-2 {
    -webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
                         animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
            animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
                 animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-3 {
    0% {
      stroke-dashoffset: 509.5624694824219px;
      stroke-dasharray: 509.5624694824219px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 509.5624694824219px;
    }
  }
  
  @keyframes animate-svg-stroke-3 {
    0% {
      stroke-dashoffset: 509.5624694824219px;
      stroke-dasharray: 509.5624694824219px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 509.5624694824219px;
    }
  }
  
  @-webkit-keyframes animate-svg-fill-3 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(132, 134, 136);
    }
  }
  
  @keyframes animate-svg-fill-3 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(132, 134, 136);
    }
  }
  
  .svg-elem-3 {
    -webkit-animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
                         animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
            animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
                 animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-4 {
    0% {
      stroke-dashoffset: 470.19390869140625px;
      stroke-dasharray: 470.19390869140625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 470.19390869140625px;
    }
  }
  
  @keyframes animate-svg-stroke-4 {
    0% {
      stroke-dashoffset: 470.19390869140625px;
      stroke-dasharray: 470.19390869140625px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 470.19390869140625px;
    }
  }
  
  @-webkit-keyframes animate-svg-fill-4 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(210, 211, 213);
    }
  }
  
  @keyframes animate-svg-fill-4 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(210, 211, 213);
    }
  }
  
  .svg-elem-4 {
    -webkit-animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
                         animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
            animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
                 animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-5 {
    0% {
      stroke-dashoffset: 365.2293395996094px;
      stroke-dasharray: 365.2293395996094px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 365.2293395996094px;
    }
  }
  
  @keyframes animate-svg-stroke-5 {
    0% {
      stroke-dashoffset: 365.2293395996094px;
      stroke-dasharray: 365.2293395996094px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 365.2293395996094px;
    }
  }
  
  @-webkit-keyframes animate-svg-fill-5 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(0, 152, 218);
    }
  }
  
  @keyframes animate-svg-fill-5 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(0, 152, 218);
    }
  }
  
  .svg-elem-5 {
    -webkit-animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
                         animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
            animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
                 animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-6 {
    0% {
      stroke-dashoffset: 295.3485107421875px;
      stroke-dasharray: 295.3485107421875px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 295.3485107421875px;
    }
  }
  
  @keyframes animate-svg-stroke-6 {
    0% {
      stroke-dashoffset: 295.3485107421875px;
      stroke-dasharray: 295.3485107421875px;
    }
  
    100% {
      stroke-dashoffset: 0;
      stroke-dasharray: 295.3485107421875px;
    }
  }
  
  @-webkit-keyframes animate-svg-fill-6 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(210, 211, 213);
    }
  }
  
  @keyframes animate-svg-fill-6 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(210, 211, 213);
    }
  }
  
  .svg-elem-6 {
    -webkit-animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
                         animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
            animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
                 animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
  }
  

  @media (max-width: 1023px) and (orientation:portrait)
  {
      #nav-bar
      {
        bottom: 0;
        height: 10%;
        border: 1px solid var(--dark-gray);
        position: fixed;
        bottom: 0;
        top: auto;
        width: 100%;
      }

      #destktop-menu
      {
        display: none;
      }


      #menu-logo
      {
        display: none;
      }

      #mobile-menu
      {
        display: flex;
        width: 75%;
        font-size: var(--font-big);
        justify-content: space-around;
      }

      #menu-logo-mobile
      {
          display: block;          
      }

      #menu-logo-mobile img
      {
          width: 70%;
          padding-left: 5%;
      } 

      #mobile-menu li a i
      {
          color: var(--defalt-color);
      }

      #mobile-menu li.active a i
      {
        color: rgb(12, 39, 73) !important;
        scale: 1.2;
      }



      #banner
      {
          height: 100%;
          justify-content: center;
      }

      #desktop-banner
      {
          display: none;
      }

      #mobile-banner
      {
          display: block;
          width: 100%;
      }

      #hero {
        width: 90%;
        position: absolute;
        top: 49%;
        margin-left: 0;
        text-align: center;
      }

      #hero h1
      {
        font-size: var(--font-medium);
      }

      #hero p
      {
        width: 87%;    
        font-size: var(--font-medium);    
        margin: 0 auto;
      }

      #hero form input
      {
        margin: 2% auto;
        width: 85%;
      }

      #hero form button
      {
        margin-left: 50%;
      }

      #logo-svg {
        position: absolute;
        width: 84%;
        top: 11%;
        right: 9%;
      }

      #main-content
      {
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }

      #left-contet
      {
          width: auto;
          text-align: center;
      }

      #left-contet p
      {
        width: auto;
      }

      #right-contet
      {
        width: auto;
      }

      #right-contet img {
        width: 90%;
        height: 100%;
      }

      #services h1.tittle
      {
        color: white;
        padding-bottom: 5%;
        font-size: var(--font-big);
      }

      #services h1.tittle span
      {
        color: #00b2ff;
      }

      #services-content
      {
        grid-template-columns: 1fr;
        gap: 0;
    margin-top: 0;
      }

      #about-us-content {
        display: flex;
        padding-top: 5%;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    #about-us img 
    {
        width: 100%;
    }

    #about-us-content div
    {
      width: 100%;
      font-size: var(--font-medium);
      margin-top: 5%
    }

    #contact-box form input 
    {
      width: 85%;
      padding: 3%;
      border-radius: 15px;

    }

    #obs
    {
      width: 89%;
      border-radius: 15px;
      padding: 2%;
      width: 87%;
    }

    #contact-box form button 
    {
      width: 40%;
      padding: 2%;
      border-radius: 10px;
    }

    footer
    {
      min-height: 40vh;
    }

    #footer-content
    {
      grid-template-columns: 1fr;
      text-align: center;
      font-size: var(--font-medium);
      gap: 15%;
      height: auto;
    }

    #footer-end
    {
      text-decoration: none;
      color: var(--dark-gray);
      font-size: 1.11em;
      text-align: justify;
      text-justify: inter-word;
    }

    #footer-phone span a
    {
      text-decoration: none;
      color: var(--dark-gray);
      font-size: var(--font-big);
      font-weight: bold;
    }

    #social-links
    {
      display: flex;
      width: 100%;
      justify-content: space-around;
    }

    #footer-content a i
    {
      font-size: 1.5em;
      color: var(--defalt-color);
    }

    #trademark
    {
      margin: 10% auto 20% auto;
    }
    
}
  