:root {
    --primary-color: #ff4306;
    --secondary-color: #f7f4ee;
    --border-color: #e5eaef;
    --white: #ffffff;
    --black: #020000;
    --gray: #48535d;
    --light-gray: #eef0f3;
    --green: #35b871;
    --orange: #f4511e;
    --padding-horizontal: 0 13vw;
    --padding-section: 120px 13vw;
    --padding-button: 12px 24px;
    --border: 1px solid var(--border-color);
}

* {
    margin: 0;
    font-family: "Inter", sans-serif;
}

.header-logo {
    transition: filter 0.3s ease, opacity 0.3s ease;
    width: 185px;
}

.header-rodape {
    border-bottom: 2px solid var(--gray);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-rodape.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    border-bottom: 2px solid var(--border-color);
    padding: 12px 13vw;
}


@media (min-width: 768px) {

    .header-rodape {
        display: flex;
        padding: 12px 18vw;
        justify-content: space-between;
        align-items: center;
    }

    .link-logo {
        display: flex;
    }

    .header-link-button {
        padding: 12px 24px;
        border-radius: 50px;
        border: 1px solid var(--primary-color);
        background: var(--primary-color);
        color: var(--white);
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .header-link-button:hover {
        background-color: var(--white);
        color: var(--primary-color);

    }

    .header-buttons {
        display: flex;
        gap: 16px;
    }
}

@media (max-width: 768px) {

    .header-rodape {
        display: flex;
        padding: 12px 12px;
        justify-content: space-between;
        align-items: center;
    }

    .link-logo {
        display: flex;
    }

    .header-logo {
        display: flex;
        width: 120px;
    }

    .header-link-button {
        padding: 6px 12px;
        border-radius: 50px;
        border: 1px solid var(--primary-color);
        background: var(--primary-color);
        color: var(--white);
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .header-link-button:hover {
        background-color: var(--white);
        color: var(--primary-color);

    }

    .header-buttons {
        display: flex;
        gap: 16px;
    }

    .header-rodape.scrolled {
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
        border-bottom: 2px solid var(--border-color);
        padding: 12px 12px;
    }
}