/* Index.css */

/* Menu (header content) */
nav {
    position: relative;
    z-index: 10; /* Garantir que o menu fique acima do banner */
}

/* Banner */
header {
    position: relative;
    background-position: center;
    height: auto; /* Permite que a altura seja dinâmica */
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    z-index: 1;
    color: white;
    padding: 0 15px;
    padding-top: 0; /* Remove o espaço acima do header */
    z-index: 1; /* Certificar que o banner fique abaixo do menu */
    height: auto; /* Permite que a altura se ajuste dinamicamente */
    border-bottom: 1px solid transparent; /* Remove borda sólida para usar border-image */
    border-image: linear-gradient(to right, #1e3d58, #00aaff); /* Gradiente suave para a borda */
    border-image-slice: 1;
    border-width: 1px; /* Reduz a espessura da borda */
}

/* Classe para aumentar a altura do banner */
.banner-large {
    height: 100vh; /* Aumentando a altura do banner para 100% da tela */
}

/* Estilo do texto no banner */
.bannerhic-text h1 {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.bannerhic-text p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #f5f5f5;
}

/* Estilo para as seções "faca-mais" */
.faca-mais {
    border-bottom: 1px solid transparent; /* Remove borda sólida para usar border-image */
    border-image: linear-gradient(to right, #1e3d58, #00aaff); /* Gradiente suave para a borda */
    border-image-slice: 1;
    border-width: 1px; /* Reduz a espessura da borda */
}

/* Estilo para a div container dentro de "faca-mais" */
.faca-mais .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.faca-mais .faca-mais-text {
    width: 50%;
    padding: 0 20px;
}

.faca-mais .faca-mais-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Botão "Entrar em contato" */
.botomLog {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.botomLog:hover {
    background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        height: 60vh; /* Ajuste de altura do banner para dispositivos menores */
    }

    .faca-mais .container {
        flex-direction: column;
        text-align: center;
    }

    .faca-mais-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .bannerhic-text h1 {
        font-size: 2.5em;
    }

    .bannerhic-text p {
        font-size: 1.1em;
    }
}
