/* Estilo do Corpo da Página */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Estilo do Conteúdo Principal */
.content {
    transition: margin-left 0.3s;
    flex: 1;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    /* Adicionado para centralizar o conteúdo principal */
    max-width: 1800px;
    /* Definindo a largura máxima do conteúdo principal */

}
.btn-custom {
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 15px 4px rgba(0,0,0,0.06);
    background-color: lightgreen;
    color: white;
    cursor: pointer;
}

.btn-custom:hover {
    background-color: darkgreen;
}

.input-file {
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 15px 4px rgba(0,0,0,0.06);
}
/* Estilo dos Cards */
.card {
    margin-bottom: 20px;
}

.card img {
    max-width: 100%;
    height: auto;
}

/* Estilo da Imagem */


/* Estilo da Seção de Apresentação */
.apresentacao {
    text-align: justify;
    background-color: #3498db;
    color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.historia {
    text-align: center;
}

.apresentacao p {
    font-size: 18px;
    line-height: 1.6;
}

/* Estilo do Título de Serviços */
.service {
    color: #333;
    background-color: #ecf0f1;
    padding: 30px;
    margin-top: 20px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.service h2 {
    font-size: 28px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    display: inline-block;
    /* Adicionado para que a borda fique apenas abaixo do texto */
}

/* Estilo da Descrição */
.explicacao {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

/* Animação nos Cards */
.card {
    transition: transform .2s;
}

.card:hover {
    transform: scale(1.05);
}

/* Estilo do Rodapé */
.footer {
    background-color: #202cac;
    color: #ffffff;
    padding: 50px 0;
    
}

/* Estilo da Imagem do Rodapé */
#img-footer {
    height: 160px;

}

/* Estilo do Logo no Rodapé */
.footer img.footer-logo {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.footer img.footer-logo:hover {
    transform: scale(1.1);
}

/* Estilo das Seções no Rodapé */
.footer-section {
    margin-bottom: 20px;
}

/* Estilo dos Links no Rodapé */
.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffc107;
}

/* Estilo das Redes Sociais no Rodapé */
.footer-social {
    text-align: center;
}

.footer-social i {
    font-size: 30px;
    margin: 0 15px;
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social i:hover {
    color: #ffc107;
    transform: scale(1.2);
}

/* Estilo da Linha Divisória no Rodapé */
.hr-divider {
    border: 0;
    height: 1px;
    background-color: #574f49;
    margin: 20px 0;
}

/* Estilo dos Links no Rodapé (Lista) */
.footer-links {
    text-align: center;
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #dcdcdc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
}

/* Estilo do Texto no Rodapé */
.footer-text {
    transition: color 0.3s ease;
}

.footer-text:hover {
    color: #ffc107;
}

/* Estilo do Texto de Direitos Autorais no Rodapé */
.footer-copyright {
    font-size: 14px;
    color: #6c757d;
}


/* breadcrumb */
.header {
    background-color: #f3f3f3;
    text-align: center;
    padding: 5px; /* Adicione um valor desejado para o preenchimento */
    opacity: 0;
    animation: fadeIn 0.6s forwards ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

h1 {
    margin: 0;
    font-size: 44px; /* Ajuste conforme necessário */

    @media screen and (max-width: 768px) {
        font-size: 36px; /* Ajuste para telas pequenas */
    }
}

p {
    margin-top: 10px; /* Ajuste conforme necessário */

    @media screen and (max-width: 768px) {
        margin-top: 5px; /* Ajuste para telas pequenas */
    }
}




