/* ===== BASE ===== */
.modern-header {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ===== CORES ===== */
:root {
    --main-orange: #e67e22;
    --dark-orange: #d35400;
    --menu-background-color: #333333;
}

/* ===== HEADER ===== */
.header-gradient {
    background: linear-gradient(135deg, var(--main-orange) 0%, var(--dark-orange) 100%);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== LOGO ===== */
.logo-container {
    background: white;
    padding: 0.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container img {
    height: 70px;
}

/* ===== TEXTO ===== */
.title-block h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.title-block p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* ===== HAMBURGER ===== */
.hamburger-icon {
    width: 40px;
    height: 30px;
    display: none; /* só aparece no mobile */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 9999;
}

.icon-line {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== MENU MOBILE ===== */
nav {
    background: var(--menu-background-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
    z-index: 1000;
}

nav.show {
    height: 100%;
    overflow-y: auto;
}

nav ul {
    list-style: none;
    padding: 60px 20px;
    margin: 0;
    text-align: center;
}

nav ul li {
    font-size: 20px;
    color: #fff;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

/* ÍCONES MENU */
nav ul li i {
    color: var(--main-orange);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .hamburger-icon {
        display: flex;
    }
}


@media (max-width: 1024px) {

    nav ul li {
        display: flex;
        align-items: center;
        font-size: 15px;
        gap: 10px;
    }

    nav ul li i {
        font-size: 0.9rem;
        min-width: 20px;
        text-align: center;
    }

}
