:root {
    --preto-grife: #1a1a1a;
    --dourado-grife: #daa520;
    --branco-grife: #f5f5f5;
    --timing-animation: 0.4s;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--preto-grife);
    color: var(--branco-grife);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Cabeçalho e Navegação Estilo Baunfire */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.site-logo {
    z-index: 101;
}

.site-logo img {
    max-width: 150px;
    height: auto;
}
.site-logo:hover {
    color: var(--branco-grife);
}

/* Ícone do Menu Mobile (Hambúrguer) */
.menu-toggle {
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 101;
}
.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    background: var(--branco-grife);
    height: 2px;
    width: 100%;
    border-radius: 2px;
    transition: all var(--timing-animation) ease-in-out;
}
.hamburger::before {
    transform: translateY(-10px);
}
.hamburger::after {
    transform: translateY(8px); /* (10px da barra de cima) - (2px da barra do meio) */
}

/* Animação do Hambúrguer para 'X' */
.menu-open .hamburger {
    background: transparent;
}
.menu-open .hamburger::before {
    transform: rotate(45deg);
}
.menu-open .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--preto-grife);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--timing-animation), visibility var(--timing-animation);
    z-index: 99;
}
.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}
.site-nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.site-nav-mobile li {
    margin: 2rem 0;
}
.site-nav-mobile a {
    color: var(--branco-grife);
    text-decoration: none;
    font-size: 2rem;
    text-transform: uppercase;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/[GRIFE]_HERO.jpg') no-repeat center center;
    background-size: cover;
}
.section {
    padding: 80px 0;
}
.section-app{
    padding: 80px 0 0 0;
}
.bg-dark-grife {
    background-color: #111;
}

.hero .btn.hero-button {
    border-color: var(--dourado-grife);
    color: var(--dourado-grife);
    animation: pulse 2s infinite;
}

.hero .btn.hero-button:hover {
    background-color: var(--dourado-grife);
    color: var(--preto-grife);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--dourado-grife);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 10px 20px rgba(218, 165, 32, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0);
    }
}

.map-responsive {
    overflow:hidden;
    position:relative;
    height:250px;
}

.map-responsive iframe {
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    color: #FFF;
    background-color: #128c7e;
}

#contato ul li a {
    text-decoration: none;
    color: var(--branco-grife);
}

#contato ul li a:hover {
    color: var(--dourado-grife);
}

.sobre-img {
    width: 50%;
    border-radius: 22px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}
