:root{

    --font-inter: "Inter", system-ui, Arial, sans-serif;
    --font-poppins: "Poppins", system-ui, Arial, sans-serif;

    --clr-100: #F09D09;
    --clr-300: #EF9C08;
    --clr-500: #F79320;

    --111: #fafafa;
    --000: #080808;
    --txt: #7E7C7C;

    --cyan: #00AA9E;
    --white: #FFFFFF;

}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    word-wrap: normal;
    overflow-x: hidden;
}

body, html{
    background-color: var(--111);
    font-family: var(--font-inter);
    color: var(--txt);
    font-display: optional;
    size-adjust: 150%;
    scroll-behavior: smooth;
}

.sr-only {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

img{
    width: 100%;
    height: auto;
}

/* Títulos */
dot{
    font-family: "Rubik", sans-serif;
}
h1, h2, h3, h4{
    font-family: var(--font-poppins);
    color: var(--000);
}

h1{
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;

    line-height: 3rem;
    text-align: left;
    overflow: visible;

    strong{
        font-style: italic;
    }

    dot{
        color:var(--cyan);
        font-size: 7rem;
    }
}
h2{
    font-size: 2.3rem;
    font-weight: 400;

    line-height: 2.3rem;
    text-align: left;
    overflow: visible;

    strong{
        font-style: italic;
    }
}

h3{
    font-weight: 500;
    text-align: center;
    font-size: 2rem;
}

h4{
    color: var(--clr-300);
    font-size: 1.5rem;
    font-weight: 500;
    strong{
        font-weight: 700;
    }
}


/* Botões */
.btn01, .btn02, .btn03{
    padding: 10px 20px;
    border-radius: 5px;
    font-size: large;
    font-weight: 600;

    display: block;
    width: fit-content;
    text-decoration: none;
    text-align: center;

    font-family: var(--font-poppins);
}

.btn01{
    background-color: var(--cyan);
    border: 2px solid transparent;
    color: var(--white);
    margin-top: 50px;
}
.btn01:hover{
    background-color: var(--clr-500);
    border: 2px solid var(--white);
}
.btn02{
    background-color: var(--clr-300);
    color: var(--white);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
}
.btn02:hover{
    background-color: var(--cyan);
    border: 2px solid var(--white);
}
.btn02 svg{
    margin-right: 10px;
    fill: var(--white);
}
.btn03{
    border: 2px solid var(--clr-100);
    color: var(--clr-100);
    font-weight: 500;
    margin: auto;
    display: flex;
    align-items: center;
}
.btn03:hover{
    background-color: var(--clr-100);
    color: var(--white);
}

.btn03 svg{
    margin-left: 5px;
    stroke: var(--clr-100);
}
.btn03:hover svg{
    stroke: var(--white)
}


/* NAVBAR */
nav {
    background: transparent;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    flex: 1;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.navbar .menu {
    display: flex;
    height: 100%;
}
.navbar .menu li {
    position: relative;
    list-style: none;
    padding: 5px 20px;
    height: 100%;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}
.navbar .menu li a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px;
    font-weight: 600;
}
.navbar .menu li:hover a {
    color: var(--white);
}
.navbar .menu li:hover {
    border-bottom: 2px solid var(--white);
    transition: border-bottom ease 0.3s;
}
.navbar .navOpen,
.navbar .navClose {
    display: none;
}
.brand img {
	width: auto;
    max-width: 100%;
	max-height: 70px;
	height: auto;
}
@media screen and (max-width: 991.98px) {
    nav {
        width: 100%;
        overflow: visible;
        text-align: right;
        padding: 10px 20px;
    }
    .brand img {
        width: 120px;
        max-width: 100%;
    }
    .navbar .menu {
        background-color: var(--clr-500);
        display: flex;
        flex-direction: column;
        position: fixed;
        height: 100vh;
        width: 100vw;
        top: 0;
        right: -100%;
        line-height: normal;
        padding: 20px;
        transition: right 0.5s ease;
        margin: 0;
    }
    .navbar .menu li {
        display: block;
        height: auto;
        line-height: 45px;
        border-bottom: 1px solid var(--clr-300);
        border-radius: 0;
    }
    .navbar .navOpen {
        padding: 5px 10px 7px 30px;
        border-radius: 0 0 0 50px;
        display: flex;
        align-items: center;
        color: var(--white);
    }
    .navbar .navOpen,
    .navbar .navClose {
        color: var(--white);
        font-size: x-large;
        span {
            font-size: large;
        }
    }
    .navbar .navOpen span {
        margin-right: 10px;
    }
    .navbar .navClose {
        margin-bottom: 50px;
        margin-right: 20px;
        display: block;
        text-align: right;
    }
}


/* Header */


header {
  background-image: url('../img/header-bg@1x.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.conteudo{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    gap: 50px;

    img{
        height: auto;
        max-width: 40%;
    }
}

@media (max-width: 767.98px){
	.conteudo{
        flex-wrap: wrap;
    
        img{
            height: auto;
            max-width: 90%;
        }
    }
}



/* Sobre */

.sobre{
    background: #F5F5F5;
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px 100px;

    font-size: large;

    img{
        height: auto;
        max-width: 600px;
    }

    p{
        margin: 20px 0 50px;
    }

    dot{
        color: var(--clr-300);
        font-size: 5rem;
    }
}


.numeros{
    display: flex;
    gap: 20px;
    text-align: right;

    span{
        color: var(--clr-300);
        font-size: 2.5rem;
        font-weight: 900;
    }
}
@media (max-width: 767.98px){
	.sobre{
        flex-wrap: wrap;
    }
}
@media (max-width: 575.98px){
    .sobre{
        padding: 50px 50px;
    }
	.numeros{
        span{
            font-size: 2rem;
        }
    }
}

/* Serviços */
.servicos{
    padding: 100px;
}
.boxServicos {
    width: 90%;
    position: relative;
    border: 1px solid #7E7C7C;
    margin: 70px auto 20px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: visible;

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.icone {
    position: absolute;
    top: -50px; 
    left: 30px;
    padding: 15px;
    width: 100px;
    height: 100px;
    background-color: #f5f5f5;
    border-radius: 50px;
    overflow: hidden;
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.display {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.boxServicosConteudo {
    width: 100%;
    padding: 0 20px;
    p{
        margin: 10px 0;
    }
}

.content{
    padding: 0 20px;

    ul{
        display: flex;
        flex-wrap: wrap;
        gap: 10px 20px;
        list-style-position: inside;
    }
    li{
        width: 40%;
        font-weight: 600;
    }
}

button.button{
    background-color: var(--clr-100);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: medium;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    float: right;
}
button.button:hover{
    background-color: var(--cyan);
}
.boxServicos.expanded button.button{
    background-color: var(--cyan);
}

.boxServicos .content {
    max-height: 0;
    width: 100%;
    overflow: hidden;
    transition: max-height 0.3s ease-in;
    overflow-x: visible;
}

.boxServicos.expanded .content {
    max-height: 500px;
}


@media (max-width: 991.98px){
	.servicos{
        padding: 100px 30px;
    }
    .display{
        flex-wrap: wrap;
    }
}
@media (max-width: 767.98px){
	.servicos{
        padding: 50px 10px;
    }
    .content{
        ul{
            gap: 10px 0;
        }
        li{
            width: 100%;
        }
    }
}



/* Portfolio */
.portfolio{
    background-color: #F5F5F5;
    padding: 100px;
}

.galeriaPortfolio{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px auto 30px;
}
.portfolio-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 30%;
}

.portfolio-item img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(126, 170, 158, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    pointer-events: none;
}

.overlay-text {
    position: absolute;
    bottom: 10px;
    right: 10px;

    color: var(--white);
    background-color: var(--clr-300);
    font-size: small;
    padding: 5px 10px;
    font-family: var(--font-poppins);
    cursor: default;
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

@media (max-width: 991.98px){
	.portfolio{
        padding: 50px 10px;
    }
}

@media (max-width: 767.98px){
    .portfolio-item{
        width: 30%;
    }
}
@media (max-width: 575.98px){
	.portfolio-item{
        width: 40%;
    }
}


/* Clientes */

.clientes{
    padding: 100px;
}

.carrosselClientes{
    margin-top: 50px;
}

.owl-carousel .item{
    img{
        border-radius: 5px;
        height: auto;
        max-width: 300px;
        object-fit: contain;
    }
}
@media (max-width: 991.98px){
	.clientes{
        padding: 100px 30px;
    }
}
@media (max-width: 767.98px){
	.clientes{
        padding: 50px 10px;
    }
}

/* CTA */
.cta{
    background-color: var(--cyan);
    padding: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
    h2{
        color: var(--white);
        font-size: 2.7rem;

        strong{
            font-weight: 600;
        }
    }
    dot{
        color:var(--white);
        font-size: 4.5rem;
    }
}

@media (max-width: 767.98px){
	.cta{
        flex-wrap: wrap;
        padding: 50px;
        h2{
            margin-bottom: 50px;
            text-align: center;
        }
    }
}


/* || Footer */
footer{
    background-color: #FCFCFC;
    padding: 50px 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    font-size: .9rem;

    img{
        max-width: 150px;
    }

    a{
        color: var(--txt);
        text-decoration: none;
    }
    a:hover{
        text-decoration: underline;    
    }
    strong{
        color: var(--clr-500);
    }
    p{
        margin: 10px 0;
    }
}
.redesSociais{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.wpp, .face, .beh, .lin, .insta{
    padding: 5px;
    border-radius: 30px;
    svg{
        display: block;
    }
}
.wpp svg, .face svg, .beh svg, .lin svg{
    fill:var(--clr-300);
}
.insta svg{
    stroke: var(--clr-300);
}
.wpp:hover, .face:hover, .beh:hover, .lin:hover{
    svg{
        fill:var(--white);
    }
}
.insta:hover{
    svg{
        stroke: var(--white);
    }
} 
.wpp:hover{
    background: #128c7e;
}
.insta:hover{
    background: #c13584;
}
.face:hover{
    background: #1877f2;
}
.beh:hover{
    background: #1769ff;
}
.lin:hover{
    background: #0a66c2;
}

@media (max-width: 767.98px){
	footer{
        padding: 50px 50px;
        flex-wrap: wrap;
        text-align: center;
    }
}
@media (max-width: 575.98px){
	.redesSociais{
        flex-wrap: wrap;
    }
}



/* || ImageBox */
body.imagebox {
    overflow: hidden;
}
img[data-imagebox] {
    cursor: pointer;
}
#imagebox {
    z-index: 8;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
#imagebox * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#imagebox .ib-loading {
    z-index: 2;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-animation: ibLoading 1s linear infinite;
    animation: ibLoading 1s linear infinite;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #555;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
#imagebox .ib-content {
    z-index: 7;
    background-color: transparent;
    position: relative;
    width: 100%;
    height: 100%;
}
#imagebox .ib-content .ib-topbar {
    z-index: 8;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#imagebox .ib-content .ib-topbar .ib-indexes {
    color: white;
    font-size: 1rem;
    align-items: center;
    padding: 10px;
    width: 100%;
}
#imagebox .ib-content .ib-topbar .ib-buttons {
    display: flex;
    justify-content: flex-end;
    flex-flow: row nowrap;
    width: 100%;
}
#imagebox .ib-content .ib-topbar .ib-buttons .ib-button {
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: ease-in-out 0.2s;
    text-align: center;
}
#imagebox .ib-content .ib-topbar .ib-buttons .ib-button.ib-close {
    background-image: url('../img/close.svg');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 20px;
}
#imagebox .ib-content .ib-image-wrapper {
    opacity: 0;
    z-index: 7;
    position: fixed;
    top: 10%;
    right: 50%;
    bottom: 0;
    left: 0;
    transition: opacity 0.6s;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
#imagebox .ib-content .ib-image-wrapper img.ib-image {
    z-index: 7;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    min-width: 100px;
    min-height: 100px;
    width: 900px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    transition: ease-in-out 0.6s;
    display: block;
}
#imagebox .ib-content .ib-image-wrapper img.ib-hidden {
    opacity: 0;
}
#imagebox .ib-content .ib-image-wrapper img.ibFadeOut {
    animation: ibFadeOut 0.6s forwards;
}
#imagebox .ib-content .ib-image-wrapper img.ibFadeIn {
    animation: ibFadeIn 0.6s forwards;
}
#imagebox .ib-content .ib-control div {
    z-index: 9;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    cursor: pointer;
    transition: ease-in-out 0.4s;
}
#imagebox .ib-content .ib-control div[disabled] {
    cursor: default;
    background-color: #3d3d3d;
    box-shadow: none;
    pointer-events: none;
}
#imagebox .ib-content .ib-control .ib-control-left,
#imagebox .ib-content .ib-control .ib-control-right {
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.5);
    height: 10%;
    padding: 20px;
    background-color: var(--clr-500);
}
#imagebox .ib-content .ib-control .ib-control-left {
    left: 0;
    background-image: url('../img/arrow-left.svg');
}
#imagebox .ib-content .ib-control .ib-control-right {
    right: 0;
    background-image: url('../img/arrow-right.svg');
}

@-webkit-keyframes ibLoading {
    0% {
        -webkit-transform: rotate(0deg);
        -webkit-transform: translate(-50%, -50%);
    } 100% {
        -webkit-transform: rotate(360deg);
        -webkit-transform: translate(-50%, -50%);
    }
}
/* animações e efeitos */
@keyframes ibLoading {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    } 100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes ibFadeIn {
    from {
        opacity: 0;
    } to {
        opacity: 1;
    }
}
@keyframes ibFadeOut {
    from {
        opacity: 1;
    } to {
        opacity: 0;
    }
}

@media screen and (max-width: 720px) {
    #imagebox .ib-content .ib-description {
        padding: 45px;
    }
}
@media (max-width: 767.98px){
    #imagebox .ib-content .ib-control .ib-control-right,
    #imagebox .ib-content .ib-control .ib-control-left{
        height: 20%;
    }
}

.ib-caption {
    z-index: 9;
    position: fixed;
    bottom: 0;
    display: none;
    color: var(--white);
    font-size: 1.3rem;
    box-sizing: border-box;
    width: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);

    .location::before {
        z-index: 9;
        position: fixed;
        content: '';
        width: 1.2em;
        height: 1.2em;
        margin-left: -28px;
    }
}