/* ======= ESTILO GERAL ======= */
body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: #424242;
    background-color: #f8f8f8;
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    background-color: #f57c00;
}

.navbar-brand span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.nav-link {
    color: #fff !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffe0b2 !important;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 90vh;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* BOTÕES */
.btn-primary {
    background-color: #f57c00;
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #e65100;
}

/* SEÇÕES */
.section-title {
    font-weight: 600;
    color: #212121;
}

.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* FOOTER */
.footer {
    background-color: #f57c00;
}
