/*
========================================
SM CONSTRUÇÃO
Custom CSS
========================================
*/
:root {
    --color-black: #111;
    --color-black-secondary: #222;
    --color-yellow: #F4B400;
    --color-white: #FFF;
    --color-gray: #B8B8B8;
    --color-gray-dark: #707070;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Sora', sans-serif;
    --transition-default: .3s ease;
}
/*
========================================
RESET
========================================
*/
html {
    scroll-behavior: smooth;
}
body {
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    padding-top: 5.5rem
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    transition: var(--transition-default);
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
	font-weight: 300;
}
/*
========================================
GLOBAL
========================================
*/
.section-padding {
    padding: 6rem 0;
}
.section-tag {
    color: var(--color-yellow);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}
.section-title {
	display: inline-block;
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 1.5rem;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 3px;
    background: var(--color-yellow);
    margin-top: 1.5rem;
}

.section-description {
    color: var(--color-black-secondary);
}

.detail-top-left::after,
.detail-top-right::after,
.detail-bottom-left::before,
.detail-bottom-right::before {
	content: '';
    position: absolute;
    background: var(--color-yellow);
    width: 128px;
    height: 128px;
    z-index: 2;
}

.detail-top-left::after {   
    left: 0;
    top: 0;
    clip-path: polygon(100% 0, 0 0, 0 100%);
}
.detail-top-right::after {
    top: 0;
    right: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.detail-bottom-left::before {
    left: 0;
    bottom: 0;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.detail-bottom-right::before {
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

footer .detail-bottom-right::before,
.contato-section .detail-bottom-right::before {
    width: 64px;
    height: 64px;
    z-index: 0;
}

.contato-section .detail-bottom-right::before {
	background: var(--color-black)
}
/*
========================================
BUTTONS
========================================
*/
.btn-custom {
    border: 3px solid var(--color-yellow);
    color: var(--color-yellow);
    background: transparent;
    padding: .75rem 1rem;
    border-radius: 60px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom:hover {
    background: var(--color-yellow);
    color: var(--color-black);
}

.btn-custom.btn-white {
    background: var(--color-white);
    color:var(--color-black);
    border-color: var(--color-white);
}

.btn-custom.btn-white:hover {
    background:transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-custom.btn-white {
    background: var(--color-white);
    color: var(--color-black);
    border: 0;
    padding: .625rem 1.5rem;
    font-size: .75rem;
    font-weight:700;
    border-radius: .75rem;
    text-transform:uppercase;
    transition:.3s ease;
}

.btn-custom.btn-white:hover {
    transform:translateY(-2px);
    background:var(--color-yellow);
    color:var(--color-black);
}
/*
========================================
NAVBAR
========================================
*/
.navbar-brand img {
    max-height: 4rem;
}

.navbar-nav .nav-link {
    color: var(--color-white);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s; 
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.5rem;
    width: 0;
    height: 2px;
    background: var(--color-yellow);
    transition: .3s;
}
.navbar-nav .nav-link:hover {
    color: var(--color-yellow);
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}
/*
Custom scroll 
*/
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*padding: 1.5rem 0;*/
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(.4rem);
    -webkit-backdrop-filter: blur(.4rem);
    transition: var(--transition-default);
    z-index: 9999;
}
.custom-navbar.navbar-scroll {
    background: rgba(0, 0, 0, .9);
    backdrop-filter: blur(.75rem);
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.custom-navbar.navbar-scroll .navbar-brand img {
    max-height: 2.5rem;
}
.custom-navbar.navbar-scroll .nav-link {
    font-size:.65rem;
    margin-left: 1rem;
}
.custom-navbar.navbar-scroll .btn-custom {
    padding: .75rem .875rem;
    font-size: .75rem;
}
/*
========================================
HERO
========================================
*/
.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.75)),
        url('../images/img-bg-hero.jpg');
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    letter-spacing: -2px;
}
.hero-title span {
    color: var(--color-yellow);
}

/*
========================================
HISTÓRIA
========================================
*/
.historia-section {
    background: var(--color-black-secondary);
}
.historia-image {
    min-height: 760px;
    background:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.25)),
        url('../images/img-historia.jpg');
    background-size: cover;
    background-position: center center;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8rem), calc(100% - 8rem) 100%, 0 100%);
}
.historia-content h2 {
    font-size: 62px;
    font-weight: 700;
    margin: 18px 0 34px;
}
/*
========================================
COMPROMISSO
========================================
*/
#compromisso {
    background: url(../images/img-bg-compromisso.jpg);
    background-position: center center;
    background-size: cover;
    color: var(--color-black-secondary);
}
.commitment-item {
    height:100%;
}
.commitment-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.commitment-icon img {
    width:10rem;
    height:10rem;
    object-fit:contain;
}
.commitment-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
}
.commitment-item p {
    margin: 0 auto;
}
.commitment-values{
    list-style: none;
    padding: 0;
    margin: 0;
}
.commitment-values li {
    margin-bottom:.75rem;
}
.commitment-values li::before{
    content:'\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color:var(--color-gray-dark);
    font-weight:700;
    margin-right: .2rem;
}
/*
========================================
ESG
========================================
*/
#esg{
    background:#111111;
    color:#ffffff;
}
.esg-header{
    margin-bottom:60px;
}
.esg-content{
    padding-right:40px;
}
.esg-image{
    position:relative;
    overflow:hidden;
}
.esg-image img{
    width:100%;
    display:block;
}
.esg-image::before{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100px;
    height:100px;
    background:var(--color-yellow);
    clip-path:polygon(
        0 100%,
        0 0,
        100% 100%
    );
    z-index:2;
}
.esg-subtitle{
    color:var(--color-yellow);
    font-size:2rem;
    font-weight:700;
    margin-bottom:.5rem;
}
.esg-description{
    color:#d8d8d8;
    margin-bottom:2rem;
}
.esg-card{
    background:#1b1b1b;
    border-radius:18px;
    padding:2rem;
    height:100%;
    transition:.3s ease;
}
.esg-card:hover{
    transform:translateY(-6px);
    border: 3px solid var(--color-yellow);
}
.esg-icon{
    display:flex;
    justify-content:flex-end;
    margin-bottom:1.5rem;
}
.esg-icon img{
    width:72px;
    height:72px;
    object-fit:contain;
}
.esg-card h4{
    font-size:1.3rem;
    font-weight:700;
    margin-bottom:1rem;
    color:#ffffff;
}
.esg-card p{
    color:#d5d5d5;
    margin:0;
}
@media(max-width:991px){
    .esg-content{
        padding-right:0;
        margin-bottom:3rem;
    }
    .esg-image{
        margin-top:2rem;
    }
    .esg-subtitle{
        font-size:1.75rem;
    }
}
@media(max-width:767px){
    .esg-card{
        padding:1.5rem;
    }
    .esg-icon img{
        width:60px;
        height:60px;
    }
}
/*
========================================
SOLUÇÕES
========================================
*/
#solucoes {
    background: var(--color-black);
    position:relative;
}
#solucoes .section-title {
    color: var(--color-white);
    text-align:center;
}
.service-card {
    text-align:center;
    height: 100%;
    padding: 0 1.5rem;
}
.service-icon {
    margin-bottom: 20px;
}
.service-icon img {
    width: auto;
    height: 10rem;
    display:block;
    margin:0 auto;
}
.service-card h3 {
    color:var(--color-yellow);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--color-white);
    font-size:.95rem;
    margin:0 auto;
}
/*
========================================
DIFERENCIAIS
========================================
*/
.diferenciais-section {
    position: relative;
    background:
        url('../images/img-bg-diferenciais.jpg');
        background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}
.diferenciais-section .section-title {
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.diferenciais-section .section-tag {
    color: var(--color-white);
    }
.diferenciais-section .section-title::after {
    background: var(--color-white);
}
.diferencial-card {
    position: relative;
    background: color-mix(in srgb, var(--color-black) 85%, transparent);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    min-height: 360px;
    overflow: hidden;
    backdrop-filter: blur(.4rem);
    transition: .3s ease;
}
.diferencial-card:hover {
    transform: translateY(-6px);
}

.diferencial-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 8rem;
    letter-spacing: -.2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}
.diferencial-card h3 {
    color: var(--color-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    min-height: 4.5rem;
    display:flex;
    align-items:flex-start;
}
.diferencial-card p {
    color: #D5D5D5;
}
/*
========================================
LOCALIZACAO
========================================
*/
.location-map {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;
}
.location-wrapper {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}
.location-map-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,.50), rgba(0,0,0,.50)),
        url('../images/mapa-bg.jpg');
    background-size: cover;
    background-position: center center;
    filter: grayscale(100%);
}
.location-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
        rgba(255,255,255,.06),
        rgba(0,0,0,.35));
}
.location-image {
    height: 100%;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius:.75rem;
}
.location-content {
    padding: 4rem;
}
.location-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}
.location-description::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 3px;
    background: var(--color-yellow);
    margin-top: 1.5rem;
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter:
        grayscale(100%)
        contrast(1.1)
        brightness(.45);
}
.location-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.75)
        );
    pointer-events: none;
}
/*
========================================
CTA
========================================
*/
.cta-section {
    background:
        linear-gradient(
            90deg,
            rgba(17,17,17,1) 0%,
            rgba(17,17,17,.9) 45%,
            rgba(17,17,17,.25) 100%
        ),
        url('../images/img-bg-cta.jpg');
    background-size: cover;
    background-position: center right;
    padding: 90px 70px;
}
/*
========================================
CONTATO
========================================
*/
.contato-section {
    background: var(--color-white);
    color: var(--color-black);
}

/* ESQUERDA: VÍDEO */
.video-area {
    position: relative;
    height: 480px;
    width: 100%;
}

.video-area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-area::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

/* DIREITA: CONTATO */
.footer-logo {
    max-height: 8rem;
    margin-bottom: 4rem;
}

.contact-email a {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.contact-email a:hover {
    color: var(--color-yellow);
}

.contact-address {
    color: var(--color-gray-dark);
    font-size: 1rem;
}

.social-icons {
    margin-top: 2rem;
    display: flex;
}

.social-icons a {
    color: var(--color-black);
    font-size: 2rem;
    transition: .3s;
}

.social-icons a:hover {
    color: var(--color-yellow);
}

/*
========================================
FOOTER
========================================
*/
footer {
    background: var(--color-black);
    position: relative;
}

footer p {
    font-size: .875rem;
}


