html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

h2 {
    font-style: normal;
    font-weight: bold;
    font-family: Arial;
    margin-top: 50px;
}

.body {
    background-color: #f4f4f4 !important;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0px 10px 10px 0px #808080;
    justify-content: center;
    align-content: center;
    margin-top: 50px;
}

.add-btn {
    background-color: deepskyblue;
    color: white;
    font-size: medium;
    font-weight: 600;
    width: 80px;
    border-radius: 15px;
    box-shadow: 0px 5px 10px 3px #808080;
}

.btn-success {
    width: 90px;
}

table {
    background-color: white;
    border-radius: 15px;
}

.division {
    font-weight: bolder;
    height: 1px;
    box-shadow: 8px 1px 10px 1px;
    margin-top: 20px;
}

.btn-info edit {
    width: 42px !important;
    margin-right: 5px;
    margin-top: -7px;
}

.fa-pencil {
    color: white !important;
}

.btn-danger edit {
    width: 42px !important;
    margin-top: -7px
}

.zoom-effect {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

    .zoom-effect:hover {
        transform: scale(1.2);
        box-shadow: 3px 10px 10px 3px gray;
    }


#logo {
    width: 220px;
    margin-right: 45px;
    margin-left: 30px;
}

.menu-hotsite {
    background-color: #5f9ea0b5;
    box-shadow: 0px 10px 49px 10px gray;
    border-radius: 25px;
    padding: 10px;
    margin-top: -15vh;
}

.menu {
    position: fixed;
    z-index: 99999;
    margin-top: 15vh;
    justify-content: center;
    width: 100%;
}

.nav-link {
    color: white !important;
}

.nav-item {
    font-size: x-large;
    font-weight: 400;
    transition: color 0.3s ease; /* Suaviza a transição */
}

    .nav-item:hover {
        color: #FF5733;
    }

footer {
    background-color: #ffa500a3;
    font-size: small;
    font-weight: 700;
    margin-top: auto; /* Empurra o footer para o final da página */
    padding-bottom: 20px;
}



#home {
    background-image: url('/img/Site/imagem2.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* Garante que a imagem cubra o container */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    height: 120vh; /* Define a altura do container como 100% da altura da janela */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Deixe o texto branco para boa visibilidade */
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%; /* Garante que ocupem 100% da altura da tela */
}

.container-1 {
    color: white;
    background-color: #41a9ae87;
    box-shadow: 5px 5px 5px 5px #00000070;
    border-radius: 10px;
    padding: 18px;
    max-width: 500px;
    margin-top: 46vh;
}


.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .contact-form h2 {
        text-align: center;
        margin-bottom: 20px;
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        font-weight: bold;
        margin-bottom: 5px;
        display: block;
    }

    .form-group .form-control {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
    }

        .form-group .form-control:focus {
            border-color: #007bff;
            outline: none;
        }

.btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .btn:hover {
        background-color: #0056b3;
    }



#quem-somos {
    background-color: #ffa50085;
    height: 100vh;
}

    #quem-somos .container {
        margin-top: -10vh;
    }

#servicos {
    background-image: url('/img/Site/imagem6.jpg');
    background-size: cover; /* Garante que a imagem cubra o container */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    align-items: center;
    justify-content: center;
    height: 120vh;
}


#contato {
    background-image: url('/img/Site/imagem8.jpg');
    background-size: cover; /* Garante que a imagem cubra o container */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    height: 120vh; /* Define a altura do container como 100% da altura da janela */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10vh;
}

.centered-select {
    text-align: center; /* Centraliza o texto do dropdown */
    text-align-last: center; /* Centraliza o texto selecionado */
}

.form-control {
    width: 250px !important;
}

.responsive-form {
    display: ruby;
}

@media (max-width: 500px) {
    .responsive-form {
        display: inline-block;
    }

    #contato {
        height: 120vh;
    }

    .mobile {
        width: 300px !important;
    }
}


/* Defina a animação */
@keyframes slideUp {
    0% {
        transform: translateY(100px); /* Inicia fora da tela */
        opacity: 0; /* Começa invisível */
    }

    100% {
        transform: translateY(0); /* Move para a posição normal */
        opacity: 1; /* Fica visível */
    }
}

/* Aplica a animação à classe .container-1 */
.container-1 {
    animation: slideUp 1s ease-out forwards; /* Duração de 1 segundo */
}

/* Definindo a animação para o menu */
@keyframes slideIn {
    0% {
        transform: translateX(-100%); /* Inicia fora da tela, à esquerda */
        opacity: 0; /* Começa invisível */
    }

    100% {
        transform: translateX(0); /* Move para a posição normal */
        opacity: 1; /* Fica visível */
    }
}

/* Aplica a animação ao menu com a classe .navbar */
.navbar {
    animation: slideIn 0.8s ease-out forwards; /* Duração de 0.8 segundos */
    position: fixed !important;
}


.img-simbol {
    z-index: -1;
    position: sticky;
    width: 200px;
}


#servicos .container {
    background-color: #cc8b1487;
    box-shadow: 10px 11px 34px 5px gray;
    color: white;
}

.card-body {
    background-color: cadetblue;
}

/* The actual timeline (the vertical ruler) */
.main-timeline-5 {
    position: relative;
    justify-content: center;
    left: auto;
}

    /* The actual timeline (the vertical ruler) */
    .main-timeline-5::after {
        content: "";
        position: absolute;
        width: 3px;
        top: 0;
        bottom: 0;
        left: auto;
    }

/* Container around content */
.timeline-5 {
    position: relative;
    background-color: inherit;
    justify-self: center;
    left: auto;
}

    /* The circles on the timeline */
    .timeline-5::after {
        content: "";
        position: absolute;
        width: 17px;
        height: 17px;
        right: 1px;
        top: 18px;
        border-radius: 50%;
        z-index: 1;
        justify-self: center;
    }

.main-timeline-5::after {
    justify-self: auto;
    background-color: red;
}

.right-5 {
    padding: 0px 0px 20px 40px;
    left: 0vh;
    width: 100%;
    justify-self: center;
}

    /* Add arrows to the right container (pointing left) */
    .right-5::before {
        content: " ";
        position: absolute;
        top: 18px;
        z-index: 1;
        border: medium solid #fff;
        border-width: 10px 10px 10px 0;
        border-color: transparent aliceblue transparent transparent;
        justify-self: center;
        display: block;
    }


.fa-history {
    color: white;
}


.border-left-success {
    border-left: .25rem solid #1cc88a !important;
}
