/* 🎨 Paleta */
:root {
    --fundo-escuro: #222249;
    --cinza: #8F8F8F;
    --branco: #FFFFFF;
    --dourado: #B58D30;
}

body {
    background-color: var(--fundo-escuro);
    color: var(--branco);
    font-family: Arial, sans-serif;
}

/* 🔹 HERO */
.hero {
    position: relative;
    height: 90vh;
    background: url('../img/fabrica.jpg') center/cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

/* === HERO / CARROSSEL === */

#hero-carousel {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

/* imagens do carrossel */
.hero-img {
    object-fit: cover;
    height: 90vh;
}

/* overlay escuro */
#hero-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* texto sobreposto */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* shape dourado */
.shape {
    position: absolute;
    width: 60%;
    height: 50%;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(181,141,48,0.20), rgba(255,255,255,0));
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 4;
}


/* 🔹 Shape geométrico dourado */
.shape {
    position: absolute;
    width: 60%;
    height: 50%;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(181,141,48,0.20), rgba(255,255,255,0));
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
}

/* 🔹 Botões */
.btn-industrial {
    border: 2px solid var(--dourado);
    color: var(--dourado);
    text-transform: uppercase;
    font-weight: bold;
}

.btn-industrial:hover {
    background: var(--dourado);
    color: var(--fundo-escuro);
}

/* 🔹 Navegação */
nav a {
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    opacity: 0.9;
}

nav a:hover {
    opacity: 1;
    color: var(--dourado) !important;
}
