/*

Bootstrap  v5.3.3 (https://getbootstrap.com/)
Copyright 2011-2024 The Bootstrap Authors
Doc Search Language PT-BR
Doc Search Version 5.3
Template Name BOLT 2024.02
Template by @oxe.digital
Site (https://oxe.digital)

---

Root Variables
Global Styles
Go Top Button
Navegação
Hero
Sections General
Serviços
CTA
Clientes
Contato
Footer

*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


/* Root Variables */

:root {
    --color-primary: #dba530;
    --color-primary-hover: #ce9822;
    --border-radius-btn: 50px;
    --transition: .4s;
    --transition7: .7s;
    --shadow: rgba(0, 0, 0, 0.04) 0px 5px 12px 12px;
    --color-secondary: #d94343;
    --color-secondary-hover: #952d2d;
    --color-dark1: #131318;
    --color-dark2: #17171e;
    --border-radius: 16px;
    
}

/* Global Styles */

body {
    font-family: "Raleway", serif;
}

.loader {
    position: fixed; top: 0; bottom: 0; left: 0; right: 0; width: 100%; height: 100%; z-index: 9999;
    background: url('../images/branding/spin.svg') 50% 50% no-repeat #ffffff;
}

.box-cookies {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
    z-index: 1056 !important;
}

.box-cookies-inner {
    color: black;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow) !important;
}

.box-cookies.hide {
    display: none !important;
}

#cookieModal {
    z-index: 1056 !important;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
    color: var(--color-primary-hover);
    transition: var(--transition);
}

.btn {
    padding: 8px 25px 8px 25px;
}

.btn-outline-oxe {
    color: white !important;
    border: 2px solid white;
    border-radius: var(--border-radius-btn);
}

.btn-outline-oxe:hover, .btn-outline-oxe:active, .btn-outline-oxe:focus {
    color: white !important;
    background-color: var(--color-primary-hover) !important;
    border-color: var(--color-primary-hover) !important;
    transition: var(--transition);
}

.btn-oxe {
    color: white;
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius-btn);
    transition: var(--transition);
}

.btn-oxe:hover, .btn-oxe:active,.btn-oxe:focus {
    color: white !important;
    background-color: var(--color-primary-hover) !important;
    border: 2px solid var(--color-primary-hover);
    border-color: var(--color-primary-hover) !important;
    transition: var(--transition);
}

/* Go Top Button */

.go-top {
    position: fixed;
    width: 52px;
    height: 52px;
    right: 24px;
    bottom: -52px;
    font-size: 24px;
    line-height: 52px;
    text-align: center;
    color: #ffffff;
    background: #1DAA61;
    z-index: 1000;
}

.go-top.show {
    bottom: 24px;
    /* Move para a posição final */
}

.go-top:hover {
    color: #ffffff;
    background: #188d51;
}

/* Navegação */

.navbar {
    background-color: transparent;
}

.navbar .navbar-brand {
    font-size: 32px;
    font-weight: 500;
    color: white;
}

.navbar .bi {
    font-size: 22px;
    color: white;
    transition: var(--transition);
}

.navbar .bi:hover {
    color: var(--color-primary-hover) !important;
    transition: var(--transition);
}

.navbar .nav-link {
    color: white;
    font-size: 17px;
    font-weight: 400;
    transition: var(--transition);
}

.navbar .nav-link::after {
    display: block;
    content: '';
    padding-top: 5px;
    border-bottom: 2px solid var(--color-primary-hover);
    transform: scaleX(0);
    transition: transform 200ms ease-in-out;
}

.navbar .nav-link:hover:after { transform: scaleX(1); }

.navbar .nav-link:hover, .navbar .nav-link:focus {
    transform: scaleX(1);
}

.navbar .nav-link.active {
    color: var(--color-primary-hover) !important; /* Para garantir que a cor do link ativo mude */
}

.navbar .social-links a {
    font-size: 20px;
    display: inline-block;
    background: #dba530;
    color: #fff;
    line-height: 42px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.navbar .social-links a:hover {
    background: #b99a11;
    color: #fff;
    text-decoration: none;
}

.navbar-custom {
    transition: background-color 0.4s;
    background-color: transparent;
    /* Estado inicial transparente */
}

.navbar-custom.scrolled {
    background-color: var(--color-dark2);
}

/* Background preto quando aberta */
.navbar-custom.open {
    background-color: var(--color-dark2);
}

/* Hero */

#hero {
    width: 100%;
    height: 100vh;
    background: url("../images/hero/hero-bg.webp") top center;
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#hero h6 {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 30px;
    margin-bottom: 25px;
    border-radius: 50px;
}

#hero h2 {
    color: #fff;
    font-size: calc(1.5rem + 1.9vw);
    font-weight: 700;
    text-transform: uppercase;
}

#hero h5 {
    color: #fff;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 30px;
}

/* Sections General */

section {
    padding: 60px 0 20px 0;
    overflow: hidden;
}

.section-title h2 {
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 10px 25px;
    line-height: 1;
    margin: 0;
    background: #fdeff2;
    color: #dba530;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title h3 {
    font-size: 30px !important;
    font-weight: 700;
}

/* Serviços */

.services {
    padding-bottom: 30px;
}

.services .icon-box {
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 2px 0 35px 0 rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 16px;
    z-index: 1;
    text-align: center;
}

.services .icon-box::before {
    content: "";
    position: absolute;
    background: #fdeff2;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.4s;
    z-index: -1;
}

.services .icon-box:hover::before {
    background: #dba530;
    top: 0;
    border-radius: 0px;
}

.services .icon {
    margin-bottom: 15px;
}

.services .icon i {
    font-size: 48px;
    line-height: 1;
    color: #dba530;
    transition: all 0.3s ease-in-out;
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services .title a {
    color: #111;
}

.services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
    color: #fff;
}

.services .icon-box:hover .icon i {
    color: #fff;
}

/* CTA */

.cta {
    color: white;
    background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.8)), url(../images/hero/cta-bg.webp) center center;
    background-size: cover;
    padding: 180px 0;
}

/* Clientes */

.portfolio img {
    -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray; /* IE */
    opacity: .4;
    transition: var(--transition);
}

.portfolio img:hover {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
    transition: var(--transition);
}

/* Contato */

.contato .info {
    width: 100%;
    background: #fff;
    text-align: left;
}

.contato .info i {
    font-size: 24px;
    color: #dba530;
    float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fdeff2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contato .info h4 {
    padding: 0 0 0 70px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #493c3e;
}

.contato .info p {
    padding: 0 0 0 70px;
    margin-bottom: 0;
    font-size: 14px;
    color: #816a6e;
}

.contato .info .email,
.contato .info .phone {
    margin-top: 40px;
}

.contato .info .email:hover i,
.contato .info .address:hover i,
.contato .info .phone:hover i {
    background: #dba530;
    color: #fff;
    font-size: 24px;
}

/* Footer */

#footer {
    color: #444444;
    font-size: 14px;
    background: #f6f4f4;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
    padding: 40px 0 40px 0;
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Nunito", sans-serif;
    color: #777777;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #ea6981;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #dba530;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #f7c2cc;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 15px;
    padding: 0 22px;
    background: #dba530;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #b99a11;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #444444;
}

#footer .social-links a {
    font-size: 20px;
    display: inline-block;
    background: #dba530;
    color: #fff;
    line-height: 42px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #b99a11;
    color: #fff;
    text-decoration: none;
}