@font-face {
    font-family: 'Futura-Book';
    src: url('../fonts/Futura-Book.eot');
    src: url('../fonts/Futura-Book.eot#iefix') format('embedded-opentype'),
        url('../fonts/Futura-Book.woff2') format('woff2'),
        url('../fonts/Futura-Book.woff') format('woff'),
        url('../fonts/Futura-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Futura-Book', 'Inter', sans-serif !important;
    overflow-x: hidden;
    min-height: 100vh;
}

.container-bg {
    background: linear-gradient(45deg, #00a9ad, #005ca9);
    background-size: 100%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    height: 100%;
}

.container-bg h1 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
}

.container-principal {
    height: auto;
    margin: 0 auto;
    margin-bottom: 1.6rem;
    background-color: white;
    width: 450px;
    max-width: 100%;
    color: black;
    border-radius: .4rem;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 30%);
    padding: 0rem 0rem;
}

@media (max-width: 576px) {
    .container-principal {
        padding: 0rem 0rem !important;
    }
}

.container-principal img {
    width: 100%;
}

.line {
    width: 100%;
    margin: .8rem 0rem;
    border-bottom: dashed #bebebe 1px;
}

.botoes {
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.3rem;
}

.botoes a {
    width: 100%;
}

.botoes button {
    background-color: #f39200;
    color: white;
    font-weight: 500;
    width: 100%;
    border: none;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: .2rem;
    margin-bottom: .6rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.botoes button:hover {
    background-color: #173e68;
}

button.btn-nao {
    background-color: transparent !important;
    border: solid 2px grey;
    color: grey;
}

button.btn-nao:hover {
    background-color: rgba(128, 128, 128, 0.1) !important;
}

/* Menu Inferior Fixo */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.bottom-menu-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-menu-items {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.bottom-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    min-width: 80px;
}

.bottom-menu-item i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.bottom-menu-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

.bottom-menu-item:hover,
.bottom-menu-item.active {
    color: #f39200;
    background-color: rgba(243, 146, 0, 0.1);
}

.bottom-menu-item:last-child:hover {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

/* Item de usuário no menu (não clicável) */
.bottom-menu-user-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.bottom-menu-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    color: #173e68;
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.1), rgba(0, 92, 169, 0.1));
    border-radius: 0.5rem;
    border: 1px solid rgba(243, 146, 0, 0.2);
}

.bottom-menu-user i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #f39200;
}

.bottom-menu-user span {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: #173e68;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Espaçamento inferior para não sobrepor o menu */
body {
    padding-bottom: 70px;
}

/* Responsivo */
@media (max-width: 576px) {
    .bottom-menu-item {
        min-width: 60px;
        padding: 0.4rem 0.5rem;
    }

    .bottom-menu-item i {
        font-size: 1.3rem;
    }

    .bottom-menu-item span {
        font-size: 0.7rem;
    }

    .bottom-menu-user {
        ` padding: 0.4rem 0.5rem;
    }

    .bottom-menu-user i {
        font-size: 1.3rem;
    }

    .bottom-menu-user span {
        font-size: 0.65rem;
    }
}