*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

  
html,
body {
height: 100%;
}
body {
font-family: 'Poppins', sans-serif;
color: #555;
font-weight: var(--fw-n);
font-size: 17px;
}

:root {
    --clr-primary: #D4B85E;
    --clr-bg: #e8e8e8;
    --clr-hov: orange;

    --fw-n: 500;
    --fw-m: 600;
    --fw-b: 700;

    --spacer: 1rem;
    --spacer-md: calc(var(--spacer) * 2);
    --spacer-lg: calc(var(--spacer) * 3);
  
    --shadow: 0 0 1em rgba(0,0,0, .25);
    --br-radius: 5px;
}

:focus {
    outline: none;
    box-shadow: 0 0 0 2px hsla(220, 100%, 50%, 80%);
}

.skip-nav-link {
    position: absolute;
    left: 1rem;
    color: #000;
    font-weight: var(--fw-b);
    background: gold;
    padding: .75rem 1.5rem;
    border-radius: 0 0 .75rem .75rem;
    transform: translateY(-120%);
    transition: transform 325ms ease-in;   
}

.skip-nav-link:focus {
    transform: translateY(0);
    box-shadow: 0 0 0 2px hsl(0, 0%, 0%);
}

.skip-nav-link:hover {
    background: var(--clr-hov);
}

h1,h2,h3,h4,h5,h6 {
    text-wrap: balance;
  }

li {
list-style: none;
}
a {
text-decoration: none;
transition: all 0.5s ease;
}
p {
margin-bottom: 1.5rem;
line-height: 1.5;
}
img {
max-width: 100%;
height: auto;
border: 0;
display: block;
}

h2 {
font-size: 1.75rem;
margin-bottom: 1em;
font-weight: var(--fw-b);
line-height: 1;
}

@media (min-width: 40em) {
    h2 {
        font-size: 2.3rem;
    }
}

.subtitle {
display: inline-block;
font-size: 15px;
color: #c3a33f;
margin-bottom: 1em;
}

.deco-line {
    position: relative;
    padding-bottom: 1.2rem;
}
.deco-line::after {
    width: 75px;
    position: absolute;
    bottom: 0;
    content: "";
    display: block;
    height: 8px;
    background: var(--clr-primary);
}
.left {
    text-align: left;
}

.center {
    text-align: center;
}

section {
    padding: 3rem 0;
}


span.line-break {
    display: inline-block;
    max-width: 240px;
}

@media (min-width: 60em) {
    span.line-break {
        max-width: none;
    }
}

@media (min-width: 40em) {
    section {
        padding: 5rem 0;
    }
}

.inner {
    margin: 0 auto;
    width: min(90%, 77.5rem);
}

.split {
    display: flex;
    flex-direction: column;
}

@media (min-width: 60em) {
    .split {
        flex-direction: row;
    }
    .split > * {
        flex-basis: 100%;
    }

    .split > * + * {
        margin-left: 2em;
    }
}

::selection {
    background: var(--clr-primary); /* WebKit/Blink Browsers */
    color:#fff;
  }
  ::-moz-selection {
    background: var(--clr-primary); /* Gecko Browsers */
    color:#fff;
  }

.whatsapp {
position: fixed;
bottom: 1%;
right: 1%;
padding: 10px;
z-index: 10000000;
}
.btn-shake {
animation: shake-animation 4.72s ease infinite;
transform-origin: 50% 50%;
display: block;
}

@keyframes shake-animation {
0% {
    transform: translate(0, 0);
}
1.78571% {
    transform: translate(5px, 0);
}
3.57143% {
    transform: translate(0, 0);
}
5.35714% {
    transform: translate(5px, 0);
}
7.14286% {
    transform: translate(0, 0);
}
8.92857% {
    transform: translate(5px, 0);
}
10.71429% {
    transform: translate(0, 0);
}
100% {
    transform: translate(0, 0);
}

}

header {
    position: relative;
    z-index: 2;
    /* padding: 1em 0; */
    background: #2c1452 url(images/bg-hero.jpg) no-repeat center;
    background-size: cover;
    min-height: 400px;
    }
.navbar {
    margin: 0 auto;
    width: min(90%, 77.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    }
.navbar-links {
    display: flex;
    }
.navbar-links ul {
    display: flex;
    align-items: center;
    list-style: none;
    }

.navbar-links ul li {
    margin-right: 2rem;
  }

.navbar-links ul li:last-of-type {
    margin-right: 0;
}

.navbar-links ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: 0.4s all;
    font-size: 1.2rem;
    font-weight: var(--fw-n);
    }

.navbar-links ul li a:hover {
    color: var(--clr-primary);
    }

.navbar-links ul li a i {
    margin-right: 8px;
    font-size: 22px;
    }

.nav-link-button {
    color: #000 !important;
    padding: 0.5rem 0.9rem;
    border-radius: 3.3125rem;
    background: var(--clr-primary);
}

.nav-link-button:hover {
    background: var(--clr-hov);
}

.toggle-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 5;
    }
.toggle-button .bar {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 10px;
    }

.hero-content {
    margin: 0 auto;
    width: min(90%, 77.5rem);
    padding: 3rem 0;
    }

    @media (min-width: 40em) {
        .hero-content {
            padding: 5rem 0;
        }
    }

.hero-content .hero-text {
    max-width: 550px;
    }

.hero-content h1 {
    color: #fff;
    font-weight: var(--fw-b);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    max-inline-size: 22ch;
    }

.hero-content span {
    display: inline-block;
    margin-bottom: 35px;
    }

.hero-content span.subtitulo {
    font-size: 22px;
    color: var(--clr-primary);
    font-weight: var(--fw-b);
    }

.hero-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 45px;
    max-inline-size: 45ch;
    }
.btncta {
    color: #00001B;
    background-color: var(--clr-primary);
    padding: 1.2rem;
    font-weight: var(--fw-b);
    display: inline-block;
    border-radius: 15px;
    transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, border-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, color 300ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    }
.btncta:hover {
    color: #fff;
    background-color: var(--clr-hov);
    }

.barra-dourada {
    background: var(--clr-primary);
    height: 9px;
    }

.sobre-img img {
    margin-bottom: 1em;
    border-radius: 20px;
}

@media (min-width: 40em) {
    .sobre-texto {
        max-width: 34rem;
    }
}

@media (min-width: 60em) {
    .sobre-texto {
        max-width: none;
    }
}



.sobre-texto p.sobre-intro {
    margin-bottom: 3rem;
}

.sobre-subitens-wrapper {
    display: flex;
    flex-direction: column;
}

.sobre-subitens {
    margin-bottom: 2rem;
}

.sobre-subitens p {
    margin-bottom: 0;
}

.sobre-subitens-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 60em) {
    .sobre-subitens-wrapper {
        flex-direction: row;
    }
    .sobre-subitens-wrapper > * {
        flex-basis: 100%;
    }

    .sobre-subitens-wrapper > * + * {
        margin-left: 2em;
    }

    .sobre-subitens p {
        font-size: 0.95rem;
    }
}

.sobre-subitens-title {
    margin-bottom: 20px;
    line-height: 1;
    font-size: 1.2rem;
    display: inline-block;
    font-weight: var(--fw-b);
}

.sobre-texto-cta {
    font-size: 19px;
    letter-spacing: 1px;
    font-weight: var(--fw-b);
    text-align: center;
    border-radius: 10px;
    display: block;
    padding: 15px 25px;
    background: var(--clr-primary);
    color: #fff;
    transition: all 0.5s;
}

.sobre-texto-cta:hover {
    background: var(--clr-hov);
}

.sobre-texto-cta span i {
    color: #fff;
    margin-right: 10px;
}

.areas-atuacao {
    background: #e8e8e8;
    }

@media (min-width: 40em) {
    .areas-atuacao h2 {
        text-align: center;
    }
}
.areas-atuacao .boxes-thirds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    margin: 0 auto;
    padding-top: 20px;
    }
.areas-atuacao .box {
    padding: 30px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    transition: 0.3s;
    margin-bottom: 1em;
    }
.areas-atuacao .box:hover {
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
    }
.areas-atuacao .box h3 {
    margin-bottom: 20px;
    color: #333333;
    font-size: 20px;
    line-height: 1.25;
    }
.areas-atuacao .box img {
    margin-bottom: 10px;
    }
.areas-atuacao .box p {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 1rem;
    }



/* ----------------- CONTATO ---------------------------- */
    .contato {
        background: #fff;
    }

    @media (min-width: 60em) {
        .contato-texto {
            padding-right: 1.5rem;
        }
    }
    
    .contato-texto a {
        color: #555;
        font-weight: var(--fw-m);
    }

    .contato-texto a:hover {
        color: var(--clr-primary);
    }

    .contato-texto span i {
        margin-right: 10px;
        color: var(--clr-primary);
    }

    .contato-texto p:nth-of-type(2) {
        margin-bottom: 3rem;
    }

    .contatos-wrapper {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }

    @media screen and (max-width:365px){
        .contatos-wrapper {
            flex-direction: column;
        }
        .contatos-icone {
            margin-bottom: 1em;
        }
    }

    .contatos-icone {
        margin-right: 1em;
    }

    .contatos-icone a {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        background: var(--clr-primary);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contatos-icone a:hover {
        background: #917B33;
    }

    .contatos-icone a i {
        color: #fff;
        font-size: 30px;
    }

    .contatos-wrapper .contatos-dados a {
        color: var(--clr-primary);
        font-weight: var(--fw-b);
    }

    .contatos-wrapper .contatos-dados a:hover {
        color: #917B33;
    }

    .contatos-wrapper h3 {
        margin-bottom: 5px;
        line-height: 1;
        font-size: 1.1rem;
        font-weight: var(--fw-b);
    }

    .formulario-contato label {
        display: block;
        margin-bottom: 10px;
    }
    
    .formulario-contato fieldset {
    margin-bottom: 20px;
    }
    
    .formulario-contato fieldset textarea,
    .formulario-contato fieldset input {
    margin-bottom: 0;
    }
    
        
    fieldset {
    border: none;
    display: block;
    margin-bottom: 20px;
    }
    
    #middle_name,
    .sobrenome {
    display: none;
    }
    
    input:not([type="submit"]),
    textarea {
    width: 100%;
    padding: 10px;
    color: #333;
    border: 1px solid var(--clr-primary);
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1rem;
    }
    
    input:not([type="submit"]):focus,
    textarea:focus {
    outline: 2px solid royalblue;
    box-shadow: 1px 1px 8px 1px royalblue;
    }
    
    input[type="submit"] {
    cursor: pointer;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background: var(--clr-primary);
    border: none;
    border-radius: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    }

    .formulario-contato button {
    cursor: pointer;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background: var(--clr-primary);
    border: none;
    border-radius: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: 0.4s all;
    }

    .formulario-contato button:hover {
        background: var(--clr-hov);
    }

    span.mandatory {
        color: crimson;
        font-size: 0.9rem;
    }
    
    .error {
    color: red;
    font-size: 13px;
    }
    
    .instrucao {
    display: block;
    color: #999;
    font-size: 12px;
    }

    footer {
    position: relative;
    background: #000;
    }

    footer a {
    color: var(--clr-primary);
    }
    footer a:hover {
    color: #fff;
    }

    .footer-content {
    margin: 0 auto;
    width: min(90%, 77.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5rem 0 2rem;
    }

    .footer-content h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 1em;
    line-height: 1;
    }

    .footer-content p {
    font-size: 18px;
    }

    .footer-content li {
    list-style: none;
    margin-bottom: 20px;
    font-size: 18px;
    }
    .footer-content li a:hover {
    color: white;
    }
    .footer-col1 .footer-description {
    color: #bbb9b9;
    margin-bottom: 20px;
    line-height: 1.4;
    }
    .footer-email {
    display: flex;
    }
    .footer-icon {
    margin-right: 5px;
    fill: white;
    }
    .footer-col1 h4 {
    font-size: 26px;
    color: var(--clr-primary);
    margin-bottom: 15px;
    }
    .footer-mobile-wrap {
    min-width: 50%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    }
    .footer-mobile-wrap a {
    position: relative;
    display: inline-block;
    color: var(--clr-primary);
    transition: 0.5s;
    }

    .footer-mobile-wrap a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--clr-primary);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.2s ease-in-out 0s;
    }

    .footer-mobile-wrap a:hover::before {
    visibility: visible;
    transform: scaleX(1);
    }

    .footer-col2 {
        max-width: 300px;
    }

    .footer-col4 a {
    display: inline-block;
    color: var(--clr-primary);
    margin-right: 1.25rem;
    transition: 0.4s all;
    }
    .footer-col4 a:hover {
    color: #fff;
    -webkit-filter: drop-shadow(0px 0px 16px rgba(255, 255, 255, 0.5));
    filter: drop-shadow(0px 0px 16px rgba(255, 255, 255, 0.5));
    transform: scale(1.2);
    }
    .footer-col4 a:last-of-type {
    margin-right: 0;
    }

    .footer-col4 i {
        font-size: 36px;
    }

    address {
        color: #fff;
        font-style: normal;
    }

    .copyright {text-align: center; font-size: 0.9rem; padding: 20px 0; color: #888585;}

    @media screen and (max-width:850px){
        .current-menu-item,
        .current-menu-item a,
        .current-menu-item a:visited {
            color: #fff;
        }

        .toggle-button {
            display: flex;
        }

        .navbar-links {
            width: 100%;
            flex-direction: column;
            display: none;
            background: var(--clr-primary);
            height: 100vh;
            z-index: 3;
            position: absolute;
            top: 0;
            left: 0;
        }
        .navbar {
            flex-direction: column;
            align-items: flex-start;
        }
        .navbar #logo img {
          height: 120px;
          width: auto;
        }
        .navbar-links ul {
            width: 100%;
            flex-direction: column;
            margin: 50px 0 30px 0;
        }
        
        .navbar-links ul li {
            text-align: center;
            margin-right: 0;
          }
        .navbar-links ul li a {
            display: inline-block;
            padding: 5px 0;
            font-size: 1.8rem;
            font-weight: var(--fw-b);
            color: #000;
        }
        .navbar-links ul li a:hover {
            color: #fff;
        }
        
        .nav-link-button:hover {
            color: #fff !important;
            background: none;
        }

        .navbar-links.active {
            display: flex;
        }

        .navbar-links ul li a i {
            margin-right: 11px;
            font-size: 28px;
          }

        .fa {
            font-size: 1.6em !important;
        }
        
        .footer-content {
        flex-direction: column;
        margin: 0 auto;
        padding: 2rem 0 1rem;
        }

        .footer-col1 {
        max-width: 500px;
        margin: 0 auto 50px;
        }
        
        .footer-mobile-wrap, .footer-col4 {width: 90%; margin: 0 auto 50px;}

        .footer-mobile-wrap {
        max-width: 500px;
        }

        .footer-col1, .footer-col4 {
        text-align: center;
        }

        .footer-col4 {margin-bottom: 0;}
        
    }

    @media screen and (max-width:550px){
        .footer-col1, .footer-mobile-wrap {
        max-width: 300px;
        }
        .footer-mobile-wrap {
            flex-direction: column;
        }
        .footer-col2 {
            margin-bottom: 30px;
        }
        .footer-col2, .footer-col3 {
            text-align: center;
        }
    }

