@import"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;
    1,100..900&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&display=swap";
    html {
    scroll-behavior:smooth
}
body {
    margin:0;
    padding:0;
    font-family:Poppins,sans-serif;
    box-sizing:border-box;
    background-color:#211e2d;
    display:flex;
    flex-direction:column;
    gap:50px
}
span {
    background:linear-gradient(90deg,#d3b78f,#b0896a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent
}
.container {
    width:100%;
    max-width:75vw;
    margin:0 auto;
    box-sizing:border-box
}
@media (min-width: 769px) and (max-width: 1299px) {
    .container {
    width:80vw;
    max-width:100vw
}

}
@keyframes slideIn {
    0% {
    transform:translate(100%);
    opacity:0
}
to {
    transform:translate(0);
    opacity:1
}

}
@keyframes slideOut {
    0% {
    transform:translate(0);
    opacity:1
}
to {
    transform:translate(100%);
    opacity:0
}

}
.jc-center {
    justify-content:center
}
.d-flex {
    display:flex
}
.al-center {
    align-items:center
}
.widthauto {
    width:100%;
    height:100%
}
header {
    background: linear-gradient(to top, #211e2d 0%, rgba(33,30,45,0.7) 15%, rgba(33,30,45,0) 40%), url(/assets/bg-hero-novo.png);
    background-size:cover;
    background-position:center bottom;
    background-repeat:no-repeat;
    height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    box-sizing:border-box;
    position:relative;
    padding-bottom:60px;
    width:100vw;
    overflow:hidden
}
nav {
    position:fixed;
    top:15px;
    left:0;
    right:0;
    z-index:9999;
    background-color:#373448f1;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    color:#fff;
    padding:10px 30px;
    border-radius:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:75vw;
    margin:0 auto;
    height:85px;
    box-sizing:border-box
}
#menu-mobile {
    display:none
}
#logo {
    width:50px;
    margin-right:15px;
    margin-left:
}
#container-logo {
    display:flex;
    align-items:center
}
#text-logo>h3 {
    font-size:20px;
    font-weight:700;
    color:#d3b78f;
    margin:0
}
#text-logo>h6 {
    font-size:14px;
    font-weight:600;
    color:#fff;
    margin:0
}
ul {
    display:flex;
    list-style:none;
    margin:0;
    padding:0;
    align-items:center;
    width:auto;
    white-space:nowrap
}
li {
    margin:0 10px
}
li a {
    text-decoration:none;
    color:#fff;
    font-size:12px;
    font-weight:400;
    position:relative;
    transition:color .3s ease
}
li a:after {
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    left:0;
    bottom:-3px;
    background-color:#d3b78f;
    transition:width .3s ease
}
li a:hover {
    color:#d3b78f
}
li a:hover:after {
    width:100%
}
.btn {
    background:linear-gradient(to right,#d3b78f,#b0896a);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#252330;
    border:none;
    padding:10px 20px;
    border-radius:50px;
    cursor:pointer;
    gap:5px;
    font-weight:600;
    width:320px;
    height:45px;
    white-space:nowrap;
    box-sizing:border-box;
    text-decoration:none;
    transition:all .3s ease;
    box-shadow:0 4px 10px #0000000d
}
.btn:hover {
    filter:brightness(.95);
    transform:translateY(-2px);
    box-shadow:0 8px 20px #0000001a
}
.button-menu {
    width:45%;
    height:42px;
    margin-left:10px;
    font-size:12px
}
#text-header {
    display:flex;
    flex-direction:column;
    color:#fff;
    text-align:center;
    align-items:center
}
#text-header>h1 {
    font-size:60px;
    font-weight:600;
    margin:0
}
#text-header span {
    font-weight:900
}
#text-header>p {
    font-size:20px;
    font-weight:400;
    margin:0 0 20px
}
#close-menu {
    display:none
}
@media (max-width: 415px) {
    header {
    height:70vh
}
nav {
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:9999;
    background-color:#373448f1;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    color:#fff;
    padding:10px;
    border-radius:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100vw;
    max-width:100vw;
    margin:0;
    height:70px;
    box-sizing:border-box
}
#logo {
    width:30px
}
#text-logo>h3 {
    font-size:14px
}
#text-logo>h6 {
    font-size:8px;
    font-weight:600;
    color:#fff;
    margin:0
}
nav>ul {
    display:none
}
#menu-mobile {
    width:40px;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none
}
#menu-mobile>img {
    width:15px;
    height:auto
}
.menu.fechado {
    display:none;
    animation:slideOut .4s ease forwards
}
.menu.aberto {
    display:flex;
    animation:slideIn .4s ease forwards;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    position:absolute;
    top:0;
    left:0;
    height:100vh;
    width:100vw;
    background-color:#373448f1;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px)
}
.menu.aberto a {
    font-size:10vw;
    margin-left:20px;
    margin-bottom:20px;
    color:#e6cca8
}
.button-menu {
    display:none
}
#close-menu {
    display:flex;
    background:none;
    position:absolute;
    width:auto;
    top:20px;
    right:0;
    color:#e6cca8;
    font-weight:400;
    font-size:8vw;
    border:none;
    margin-right:20px
}
#text-header>h1 {
    font-size:6vw;
    font-weight:600;
    margin:0
}
#text-header>p {
    font-size:1.7vw;
    font-weight:400
}
.btn {
    padding:10px 20px;
    gap:5px;
    font-size:10px;
    width:195px;
    height:30px;
    font-weight:600
}
.btn img {
    width:16px
}

}
@media (min-width: 416px) and (max-width: 768px) {
    header {
    height:85vh
}
nav {
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:9999;
    background-color:#373448f1;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    color:#fff;
    padding:10px;
    border-radius:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100vw;
    max-width:100vw;
    margin:0;
    height:70px;
    box-sizing:border-box
}
#logo {
    width:40px
}
#text-logo>h3 {
    font-size:16px
}
#text-logo>h6 {
    font-size:10px;
    font-weight:600;
    color:#fff;
    margin:0
}
nav>ul {
    display:none
}
#menu-mobile {
    width:60px;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none
}
#menu-mobile>img {
    width:18px;
    height:auto
}
.menu.fechado {
    display:none;
    animation:slideOut .4s ease forwards
}
.menu.aberto {
    display:flex;
    animation:slideIn .4s ease forwards;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    position:absolute;
    top:0;
    left:0;
    height:100vh;
    width:100vw;
    background-color:#373448f1;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px)
}
.menu.aberto a {
    font-size:10vw;
    margin-left:20px;
    margin-bottom:20px;
    color:#e6cca8
}
.button-menu {
    display:none
}
#close-menu {
    display:flex;
    background:none;
    position:absolute;
    width:auto;
    top:20px;
    right:0;
    color:#e6cca8;
    font-weight:400;
    font-size:8vw;
    border:none;
    margin-right:20px
}
#text-header>h1 {
    font-size:7vw;
    font-weight:600;
    margin:0
}
#text-header>p {
    font-size:2vw;
    font-weight:400
}
.btn {
    padding:10px 20px;
    gap:5px;
    font-size:12px;
    width:250px;
    height:40px;
    font-weight:600
}
.btn img {
    width:20px
}

}
@media (min-width: 769px) and (max-width: 1299px) {
    header {
    height:98vh;
    padding-bottom:10px
}
nav {
    top:0;
    max-width:100vw;
    border-radius:0;
    height:75px
}
#text-logo>h3 {
    font-size:2vw
}
#text-logo>h6 {
    font-size:1vw;
    font-weight:600;
    color:#fff;
    margin:0
}
.button-menu {
    font-size:11px;
    height:35px
}
#text-header>h1 {
    font-size:50px
}
#text-header>p {
    font-size:16px;
    font-weight:400
}
.btn {
    padding:10px 20px;
    gap:5px;
    font-size:12px;
    width:250px;
    height:40px;
    font-weight:600
}
.btn img {
    width:20px
}

}
#services {
    margin-top:20px;
    height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px
}
#nicolly {
    height:78%;
    width:30%
}
#nicolly-mobile {
    display:none;
    border-radius:20px
}
#lado-direito>h1 {
    font-size:3vw;
    color:#fff;
    font-weight:900;
    margin:0;
    text-align:left;
    width:100%
}
#lado-direito {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:left;
    height:80%;
    width:60%;
    gap:20px
}
#services-container {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    justify-content:center;
    align-items:center;
    gap:5vh
}
.service-title {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:15px
}
.service-title>img {
    width:2vw;
    height:auto
}
.service-title>h3 {
    font-size:1vw;
    font-weight:700;
    color:#fff;
    margin:0
}
.service-card>P {
    font-size:75%;
    font-weight:200;
    color:#fff;
    margin:0
}
.service-card {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    width:100%;
    height:100%
}
@media (max-width: 425px) {
    #services {
    margin-top:50px;
    flex-direction:column;
    height:auto
}
#nicolly {
    display:none
}
#nicolly-mobile {
    display:flex;
    width:80%
}
#lado-direito {
    width:80%;
    align-items:center;
    padding-bottom:10px
}
#lado-direito>h1 {
    font-size:30px;
    text-align:center;
    margin-top:20px
}
#services-container {
    gap:50px;
    grid-template-columns:repeat(1,1fr)
}
.service-title>img {
    width:40px;
    height:auto
}
.service-title>h3 {
    font-size:16px;
    font-weight:700;
    color:#fff;
    margin:0
}

}
@media (min-width: 426px) and (max-width: 768px) {
    #services {
    margin-top:50px;
    flex-direction:column;
    height:auto
}
#nicolly {
    display:none
}
#nicolly-mobile {
    display:flex;
    width:80%
}
#lado-direito {
    width:80%;
    align-items:center;
    padding-bottom:25px
}
#lado-direito>h1 {
    font-size:32px;
    text-align:center;
    margin-top:20px
}
#services-container {
    gap:50px;
    margin-bottom:20px;
    grid-template-columns:repeat(1,1fr)
}
.service-title>img {
    width:45px;
    height:auto
}
.service-title>h3 {
    font-size:18px;
    font-weight:700;
    color:#fff;
    margin:0
}

}
@media (min-width: 769px) and (max-width: 1200px) {
    #services {
    margin-top:50px;
    flex-direction:column;
    height:auto;
    width:100%
}
#lado-direito {
    width:80%;
    align-items:center;
    padding-bottom:25px
}
#lado-direito>h1 {
    font-size:32px;
    text-align:center;
    margin-top:25px;
    margin-bottom:15px;
    padding-bottom:50px
}
#nicolly {
    display:none
}
#nicolly-mobile {
    display:flex;
    width:60%
}
#services-container {
    gap:20px;
    margin-bottom:20px
}
.service-title>img {
    width:45px;
    height:auto
}
.service-title>h3 {
    font-size:14px;
    font-weight:700;
    color:#fff;
    margin:0
}

}
@media (max-width: 1299px) {
    #services {
    margin-top:50px;
    height:auto
}
#services-container {
    gap:20px;
    margin-bottom:10px
}
#nicolly {
    height:600px;
    object-fit:cover;
    border-radius:30px
}

}
#processos {
    background-color:#d3b78f;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
    height:70vh;
    box-sizing:border-box
}
#processos-container {
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
    height:100%;
    margin-top:50px
}
#processos-container>h2 {
    font-size:48px;
    color:#fff;
    font-weight:900;
    margin:0 0 50px
}
#processos-container span {
    background:none!important;
    -webkit-background-clip:initial!important;
    -webkit-text-fill-color:#252330!important;
    color:#252330!important
}
#processos-container>img {
    width:90%;
    height:auto;
    display:block
}
#processos-text {
    display:flex;
    justify-content:space-between;
    position:relative;
    flex-direction:row;
    width:100%;
    height:auto;
    gap:25px
}
#processos-text:before {
    content:"";
    position:absolute;
    top:25%;
    left:3%;
    right:3%;
    height:2px;
    background-color:#373448;
    transform:translateY(-50%);
    z-index:0
}
.processo {
    text-align:center;
    color:#fff;
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    max-width:200px
}
.processo>img {
    background-color:#d3b78f
}
.processo>h3 {
    font-size:20px;
    font-weight:700;
    margin:10px;
    white-space:nowrap;
    color:#fff
}
.processo>p {
    font-size:12px;
    font-weight:400;
    margin:0;
    color:#fff
}
@media (max-width: 425px) {
    #processos {
    height:auto
}
#processos-container>h2 {
    font-size:40px;
    color:#fff;
    font-weight:900;
    margin:0 0 50px;
    text-align:center;
    width:90%
}
#processos-text {
    flex-direction:column;
    align-items:center;
    gap:40px
}
#processos-text:before {
    display:none
}

}
@media (min-width: 426px) and (max-width: 768px) {
    #processos {
    height:auto
}
#processos-text {
    width:90%;
    gap:40px;
    flex-direction:column;
    align-items:center
}
#processos-text:before {
    display:none
}
#processos-container {
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
    height:100%;
    margin-top:50px;
    margin-bottom:50px
}
#processos-container>h2 {
    font-size:32px;
    color:#fff;
    font-weight:900;
    margin:0 0 50px
}
.processo>img {
    background-color:#d3b78f
}
.processo>h3 {
    font-size:14px;
    font-weight:700;
    margin:10px;
    white-space:nowrap;
    color:#fff
}

}
@media (min-width: 769px) and (max-width: 1299px) {
    #processos {
    height:auto
}
#processos-text {
    width:90%;
    gap:40px
}
#processos-container {
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
    height:100%;
    margin-top:50px;
    margin-bottom:50px
}
#processos-container>h2 {
    font-size:32px;
    color:#fff;
    font-weight:900;
    margin:0 0 50px
}
.processo>img {
    background-color:#d3b78f;
    width:100px
}
.processo>h3 {
    font-size:14px;
    font-weight:700;
    margin:10px;
    white-space:nowrap;
    color:#fff
}
#processos-text:before {
    content:"";
    position:absolute;
    top:24%;
    left:6%;
    right:6%;
    height:2px;
    background-color:#373448;
    transform:translateY(-50%);
    z-index:0
}

}
#sobre-container {
    background-color:#d3b78f;
    height:90vh;
    width:100%;
    padding-top:30px;
    padding-bottom:50px
}
#sobre-container .container {
    display:flex;
    flex-direction:row;
    justify-content:space-between
}
#about {
    background-color:#211e2d;
    height:auto;
    width:45%;
    border-radius:30px;
    color:#fff;
    padding:40px 30px;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center
}
#about-container {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%
}
#about ul {
    display:flex;
    flex-direction:column;
    list-style:none;
    margin:0;
    padding:0;
    align-items:flex-start;
    width:auto;
    white-space:nowrap;
    gap:15px
}
#about li {
    display:flex;
    flex-direction:row;
    list-style:none;
    margin:0;
    padding:0;
    align-items:center;
    width:auto;
    white-space:nowrap;
    gap:10px
}
#about h6 {
    font-size:18px;
    font-weight:500;
    margin:0
}
#about h2 {
    font-size:55px;
    margin:0
}
#about p {
    font-size:18px;
    font-weight:500;
    margin:0
}
.responsive-video {
    border-radius:30px;
    border:solid 7px #211E2D;
    box-shadow:5px 5px 10px #0000004d;
    cursor:pointer
}
@media (max-width: 425px) {
    #sobre-container {
    height:auto;
    width:100%;
    padding-bottom:50px
}
#sobre-container .container {
    display:flex;
    flex-direction:column-reverse;
    justify-content:space-between;
    align-items:center
}
.responsive-video {
    border:none;
    box-shadow:none;
    margin-bottom:15px;
    border-radius:30px
}
#about {
    height:auto;
    width:100%;
    padding:30px;
    gap:40px
}
#about h6 {
    font-size:12px;
    font-weight:500;
    margin:0
}
#about h2 {
    font-size:30px;
    margin:0
}
#about p {
    font-size:12px;
    font-weight:500;
    margin:0 0 10px
}
#about li img {
    width:25px;
    height:auto
}

}
@media (min-width: 426px) and (max-width: 1299px) {
    #sobre-container {
    height:auto;
    width:100%;
    padding-bottom:50px
}
#sobre-container .container {
    display:flex;
    flex-direction:column-reverse;
    justify-content:space-between;
    align-items:center;
    gap:20px
}
#about h2 {
    font-size:42px;
    margin:0
}
#about {
    width:396px
}
#about-container {
    gap:10px
}

}
#contact {
    background-color:#d3b78f;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
    height:80vh;
    box-sizing:border-box
}
#contact .container {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:70px;
    padding-bottom:50px;
    box-sizing:border-box;
    height:100%
}
#contact-informations {
    width:30%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between
}
#contact-informations h2 {
    color:#fff;
    font-size:42px;
    margin:0;
    white-space:nowrap
}
#contact-informations span {
    background:none!important;
    -webkit-background-clip:initial!important;
    -webkit-text-fill-color:#252330!important;
    color:#252330!important
}
#contact-informations p {
    color:#373448;
    font-weight:300;
    margin:0
}
.informations {
    margin:20px 0
}
.informations h4 {
    color:#373448;
    font-weight:900;
    margin:0
}
#social-media {
    display:flex;
    gap:10px
}
#social-media img {
    width:30px;
    height:auto
}
#linha {
    height:92%
}
#contact-form {
    width:60%;
    height:100%
}
.formulario {
    width:100%;
    height:100%;
    font-family:sans-serif;
    color:#373448;
    display:flex;
    flex-direction:column;
    justify-content:space-between
}
.formulario label {
    display:block;
    margin:20px 0 5px;
    font-weight:900;
    font-size:14px
}
.formulario input,.formulario textarea {
    width:100%;
    border:none;
    border-bottom:2px solid #373448;
    padding:8px 4px;
    background:transparent;
    font-size:14px;
    color:#373448;
    outline:none
}
.linha-dupla {
    display:flex;
    gap:20px
}
.linha-dupla div {
    flex:1
}
.formulario button {
    display:flex;
    gap:10px;
    align-items:center;
    justify-content:center;
    margin-top:30px;
    padding:12px 24px;
    background:linear-gradient(to right,#373448,#252330);
    color:#fff;
    font-weight:900;
    border:none;
    border-radius:30px;
    cursor:pointer;
    letter-spacing:.5px;
    transition:background .3s;
    font-size:14px;
    text-decoration:none;
    font-size:42%;
    width:30%;
    white-space:nowrap
}
.formulario button img {
    width:17px;
    height:auto
}
.formulario a:hover {
    background:linear-gradient(to right,#4b475f,#373448)
}
@media (max-width: 425px) {
    #contact {
    height:auto
}
#contact .container {
    flex-direction:column
}
#linha {
    display:none
}
#contact-informations {
    width:80%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center
}
#contact-informations h2 {
    font-size:32px;
    text-align:center
}
.informations {
    text-align:center
}
#contact-informations p {
    font-size:14px;
    text-align:center
}
#social-media {
    justify-content:center;
    align-items:center;
    margin-bottom:10px
}
.formulario button {
    width:95%
}
.formulario a img {
    width:10%;
    height:auto
}
.linha-dupla {
    flex-direction:column
}

}
@media (min-width: 426px) and (max-width: 1049px) {
    #contact {
    height:auto
}
#contact .container {
    flex-direction:column
}
#linha {
    display:none
}
#contact-informations {
    width:80%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center
}
#contact-informations h2 {
    font-size:32px;
    text-align:center
}
.informations {
    text-align:center
}
#contact-informations p {
    font-size:14px;
    text-align:center
}
#social-media {
    justify-content:center;
    align-items:center;
    margin-bottom:10px
}
.formulario button {
    width:50%
}

}
@media (min-width: 1050px) and (max-width: 1299px) {
    #contact {
    height:auto
}
#contact-informations {
    width:20%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between
}
#contact-informations h2 {
    font-size:32px
}
#contact-informations p {
    font-size:14px
}
#social-media {
    margin-bottom:10px
}
#linha {
    height:400px
}

}
#footer {
    background-color:#d3b78f;
    color:#fff;
    padding-top:50px
}
#footer .container {
    display:flex;
    flex-direction:row;
    width:100%;
    justify-content:space-between;
    align-items:center;
    color:#373448
}
#footer p {
    font-size:60%;
    font-weight:200
}
#footer-links {
    display:flex;
    flex-direction:row;
    gap:15px;
    font-size:60%
}
@media (max-width: 415px) {
    #footer .container {
    padding:0 30px
}

}
@media (min-width: 426px) and (max-width: 800px) {
    #footer .container {
    padding:0 30px
}

}
@media (min-width: 769px) and (max-width: 1299px) {
    #footer .container {
    padding:0 30px
}

}
#faq {
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:auto;
    padding:50px 0
}
#faq>h2 {
    text-align:center;
    color:#fff;
    font-size:48px;
    margin:20px
}
#faq-container {
    width:100%
}
.faq-card {
    display:flex;
    flex-direction:column;
    border-bottom:#d3b78f solid 2px;
    border-top:#d3b78f solid 2px;
    color:#fff;
    padding:15px 0;
    box-sizing:border-box;
    gap:10px
}
.faq-title {
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer
}
.faq-title h3 {
    font-size:80%;
    font-weight:600;
    margin:0
}
.faq-content {
    overflow:hidden;
    max-height:0;
    transition:max-height .4s ease
}
.faq-card.active .faq-content {
    max-height:300px
}
.faq-content p {
    font-size:16px;
    font-weight:300;
    margin:0;
    padding-top:5px
}
.faq-title img {
    transition:transform .3s ease
}
.faq-card.active .faq-title img {
    transform:rotate(180deg)
}
@media (max-width: 415px) {
    .faq-title h3 {
    font-weight:600;
    margin:0
}
#faq>h2 {
    text-align:center;
    color:#fff;
    font-size:38px;
    margin:20px
}
.faq-card {
    display:flex;
    flex-direction:column;
    border-bottom:#d3b78f solid 2px;
    border-top:#d3b78f solid 2px;
    color:#fff;
    padding:15px;
    box-sizing:border-box;
    gap:10px
}

}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

p {
    line-height: 1.6;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(211, 183, 143, 0.3) !important;
    letter-spacing: 0px !important;
    text-transform: uppercase;
    font-size: 13px !important;
}

.btn:hover {
    box-shadow: 0 6px 20px rgba(211, 183, 143, 0.6) !important;
    transform: translateY(-3px) !important;
}

.service-card > P {
    color: #f0f0f0 !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
}

#text-header > h1 {
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

#text-header > p {
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    font-weight: 300 !important;
}

#processos-container > h2, #contact-informations h2 {
    letter-spacing: -1px;
}

header { z-index: 10; }
#services { position: relative; z-index: 5; }

/* --- PREMIUM VISUAL OVERHAUL --- */

/* 1. Fix stretched image in second fold */
#nicolly {
    height: auto !important;
    max-height: 85vh;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(211, 183, 143, 0.3);
}

#nicolly-mobile {
    height: auto !important;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(211, 183, 143, 0.3);
}

/* 2. Glassmorphism Navbar */
nav {
    background-color: rgba(33, 30, 45, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
}

/* 3. Hero Typography Enhancement */
#text-header > h1 {
    font-size: 72px !important;
    font-weight: 800 !important;
    letter-spacing: -2px !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 2px 5px rgba(0,0,0,0.5) !important;
    margin-bottom: 25px !important;
    line-height: 1.1 !important;
}
#text-header > p {
    font-size: 22px !important;
    font-weight: 300 !important;
    color: #f0f0f0 !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.8) !important;
    line-height: 1.8 !important;
    max-width: 800px;
}
#text-header span {
    background: linear-gradient(90deg, #f5d7a6, #cfa077) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 2px 15px rgba(211, 183, 143, 0.5));
}

/* 4. Premium Buttons */
.btn {
    background: linear-gradient(135deg, #d3b78f, #b0896a) !important;
    color: #1a1820 !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    padding: 16px 40px !important;
    height: auto !important;
    font-size: 15px !important;
    box-shadow: 0 10px 25px rgba(211, 183, 143, 0.4) !important;
    text-transform: uppercase;
    letter-spacing: 1px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(255,255,255,0.5);
    margin-top: 10px;
}
.btn:hover {
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(211, 183, 143, 0.6) !important;
    filter: brightness(1.1) !important;
}

/* 5. Service Cards (Glass/Dark Premium Cards) */
#services-container {
    gap: 30px !important;
}
.service-card {
    background: linear-gradient(145deg, rgba(40, 36, 55, 0.7), rgba(30, 27, 42, 0.9)) !important;
    border: 1px solid rgba(211, 183, 143, 0.15);
    padding: 35px !important;
    border-radius: 25px !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.service-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(211, 183, 143, 0.8);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 25px rgba(211, 183, 143, 0.15);
}
.service-title > h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #e6cca8 !important;
    margin-bottom: 0 !important;
}
.service-card > p {
    font-size: 15px !important;
    color: #d0d0d0 !important;
    line-height: 1.7 !important;
    font-weight: 300 !important;
    margin-top: 15px !important;
}
.service-title > img {
    width: 45px !important;
    filter: drop-shadow(0 0 8px rgba(211, 183, 143, 0.4));
}

/* 6. Processos Section Refinement */
#processos {
    background: linear-gradient(135deg, #d3b78f 0%, #b0896a 100%) !important;
    box-shadow: inset 0 10px 40px rgba(0,0,0,0.2);
}
#processos-container > h2 {
    font-size: 55px !important;
    letter-spacing: -2px !important;
    text-shadow: 0 5px 20px rgba(0,0,0,0.2);
    color: #ffffff !important;
}
.processo > img {
    background-color: #211e2d !important;
    border-radius: 50%;
    padding: 20px;
    width: 80px !important;
    height: 80px !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    transition: transform 0.4s ease;
}
.processo:hover > img {
    transform: scale(1.15) rotate(5deg);
}
.processo > h3 {
    font-size: 18px !important;
    margin-top: 20px !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.processo > p {
    font-size: 14px !important;
    opacity: 0.9;
}
#processos-text:before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent) !important;
    height: 3px !important;
}

/* 7. About Section Refinement */
#sobre-container {
    background: linear-gradient(180deg, #211e2d 0%, #15131d 100%) !important;
}
#sobre-container * {
    color: #ffffff !important;
}
#about {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)) !important;
    border: 1px solid rgba(211, 183, 143, 0.15);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    border-radius: 35px !important;
    padding: 50px 40px !important;
}
#about h2 {
    color: #d3b78f !important;
    font-size: 55px !important;
    font-weight: 800 !important;
    letter-spacing: -1.5px;
    margin-bottom: 20px !important;
}
#about h6 {
    color: #a0a0a0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#about li img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}
.responsive-video {
    box-shadow: 0 25px 60px rgba(0,0,0,0.7) !important;
    border: 1px solid rgba(211, 183, 143, 0.2) !important;
    transition: transform 0.5s ease;
}
.responsive-video:hover {
    transform: scale(1.03);
}

/* 8. Contact Section */
#contact {
    background: linear-gradient(135deg, #d3b78f 0%, #b0896a 100%) !important;
}
#contact-informations h2 {
    color: #211e2d !important;
    font-weight: 900 !important;
    font-size: 50px !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#contact-informations p {
    color: #373448 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}
.formulario input, .formulario textarea {
    border-bottom: 2px solid rgba(33, 30, 45, 0.4) !important;
    background: rgba(255,255,255,0.2) !important;
    padding: 18px 20px !important;
    border-radius: 12px 12px 0 0 !important;
    color: #211e2d !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: all 0.3s ease;
}
.formulario input:focus, .formulario textarea:focus {
    background: rgba(255,255,255,0.4) !important;
    border-bottom: 2px solid #211e2d !important;
}
.formulario input::placeholder, .formulario textarea::placeholder {
    color: rgba(33, 30, 45, 0.6) !important;
}
.formulario button {
    background: linear-gradient(135deg, #211e2d, #373448) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
    padding: 18px 30px !important;
    font-size: 15px !important;
    border: 1px solid rgba(255,255,255,0.1);
}
.formulario button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
}

/* 9. FAQ & Footer */
#faq {
    background: linear-gradient(180deg, #15131d 0%, #0f0d15 100%) !important;
}
#faq > h2 {
    font-size: 55px !important;
    font-weight: 800 !important;
    letter-spacing: -2px !important;
}
.faq-card {
    border: 1px solid rgba(211, 183, 143, 0.15) !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)) !important;
    padding: 25px 30px !important;
    border-radius: 20px !important;
    margin-bottom: 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.faq-card:hover {
    background: rgba(211, 183, 143, 0.05) !important;
    border-color: rgba(211, 183, 143, 0.4) !important;
    transform: translateX(5px);
}
.faq-title h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
}
.faq-content p {
    color: #cccccc !important;
    line-height: 1.8 !important;
    font-size: 16px !important;
    padding-top: 15px !important;
}
#footer {
    background: #0f0d15 !important;
    border-top: 1px solid rgba(211, 183, 143, 0.1) !important;
}
#footer p, #footer-links a {
    color: #666 !important;
    font-weight: 400 !important;
}

/* Media Queries overrides */
@media (max-width: 768px) {
    #text-header > h1 { font-size: 42px !important; letter-spacing: -1px !important; }
    #text-header > p { font-size: 16px !important; }
    #nicolly-mobile { width: 90% !important; border-radius: 25px !important; object-fit: cover !important; }
    .service-card { padding: 25px !important; }
    #processos-container > h2 { font-size: 38px !important; }
    #about h2 { font-size: 40px !important; }
    #contact-informations h2 { font-size: 40px !important; }
}
