html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

header {
    min-height: 80px;
    position: relative;
    z-index: 1;
}

    header .container-fluid {
        position: relative;
        z-index: 1;
    }



body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
    background-image: url('/img/background-desfoque3.jpg'); /* imagem nítida inicial */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    transition: background-image 1s ease-in-out;
}

main.flex-fill {
    flex: 1;
}

.shadow {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) !important;
}


.content {
    position: relative;
    z-index: 1; /* Garante que o conteúdo apareça acima da imagem de fundo */
}

.form-control {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .form-control:focus {
        border-color: #258cfb;
        box-shadow: 0 0 0 0.2rem rgba(37, 140, 251, 0.25);
    }


footer {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #258cfb;
    border-color: #258cfb;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #1c6fd8;
        border-color: #1c6fd8;
    }


/* Para o menu colapsado no mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #ffffff; /* fundo branco sólido */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-radius: 0.5rem;
    }
}

header {
    position: relative;
    z-index: 1;
}

    header::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            linear-gradient( to right, rgba(255, 255, 255, 1) 10%,
            rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 1) 35%,
            rgba(255, 255, 255, 0.5) 75%,
            rgba(255, 255, 255, 0.4) 100% );
        pointer-events: none;
        z-index: 0;
    }


.btn-gold {
    background-color: #C7A871;
    border-color: #C7A871;
    color: white;
}

    .btn-gold:hover {
        background-color: #b89164;
        border-color: #b89164;
    }


