/* --- Conteúdo de: sigraweb-home.css (Estilos da Home) --- */

/* --- Container Principal com Fundo de Imagem --- */
.sigraweb-home-container {
    /* Define a área de visualização abaixo do Header */
    min-height: calc(100vh - 80px); /* Ajusta para Header e Footer */
    position: relative;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    /* Aplica a imagem de fundo (simulação) */
    background-image: url('../images/sigraweb_navio.jpg'); /* **SUBSTITUA** pelo caminho real */
    background-size: cover;
    background-position: center bottom;
}

/* Camada de Overlay Escura */
.sigraweb-home-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 51, 0.75); /* Overlay azul marinho escuro (75% opacidade) */
    z-index: 1;
}

/* Wrapper para o conteúdo (Texto e Card) */
.home-content-wrapper {
    position: relative;
    z-index: 2; /* Fica acima do overlay */
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alinha o card mais para cima */
    padding: 60px 0;
}

/* --- COLUNA DA ESQUERDA (Texto de Boas-vindas) --- */
.coluna-info-principal {
    max-width: 55%;
    color: white;
    padding-top: 50px; /* Alinha o texto com o card */
}

.titulo-principal {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.texto-apresentacao {
    font-size: 18px;
    line-height: 1.6;
    max-width: 550px;
}

/* --- COLUNA DA DIREITA (Card de Acesso) --- */
.coluna-acesso-card {
    min-width: 350px;
    max-width: 400px;
}

.card-acesso-home {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.titulo-card {
    font-size: 24px;
    font-weight: 600;
    color: var(--roxo-escuro);
    margin-bottom: 25px;
}

.form-login input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.link-esqueci-senha {
    color: var(--roxo-vibrante);
    font-size: 13px;
    text-decoration: none;
    float: right;
}

.btn-entrar-agora {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-top: 20px;
    background-color: white;
    border: 2px solid var(--roxo-vibrante);
    color: var(--roxo-vibrante);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}
.btn-entrar-agora:hover {
    background-color: var(--roxo-vibrante);
    color: white;
}

.ilustracao-acesso-placeholder {
    margin-top: 30px;
    height: 100px;
    /* Aqui ficaria o estilo para a ilustração do notebook */
    background-image: url('../img/ilustracao.jpg') ; 
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .sigraweb-home-container {
        padding: 50px 20px;
    }
    .home-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .coluna-info-principal {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .titulo-principal {
        font-size: 40px;
    }
    .coluna-acesso-card {
        min-width: 100%;
        max-width: 400px;
    }
    .coluna-info-principal {
        padding-top: 0;
    }

    /* --- Conteúdo adicional/modificado em: sigraweb-home.css --- */

/* Estilo para o CARD DE BOTÕES */
.card-acesso-home {
    /* Manter estilos existentes: fundo branco, padding, box-shadow */
    background-color: white;
    padding: 30px 40px; /* Mais padding para centralizar bem */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.titulo-card {
    /* Manter estilos existentes: cor roxo-escuro, tamanho */
    font-size: 24px;
    font-weight: 600;
    color: var(--roxo-escuro); 
    margin-bottom: 30px; /* Aumenta o espaço após o título */
}

/* Estilo BÁSICO dos Botões (Comum) */
.btn-home-acesso {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 6px; /* Levemente mais arredondado */
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona uma sombra sutil */
}

/* Estilo do Botão "Entrar Agora" */
.btn-entrar-agora {
 background-color: var(--roxo-vibrante); /* Cor de destaque Sigraweb */
    border: 2px solid var(--roxo-vibrante);
    color: white;
}
.btn-entrar-agora:hover {
    background-color: var(--roxo-escuro); /* Escurece no hover */
    border-color: var(--roxo-escuro);
    transform: translateY(-2px); /* Efeito de elevação */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Estilo do Botão "Solicitar Acesso" */
.btn-solicitar-acesso {
   background-color: white;
    border: 2px solid #ced4da; /* Borda cinza clara */
    color: var(--roxo-escuro);
}
.btn-solicitar-acesso:hover {
    background-color: var(--roxo-claro); /* Fundo roxo bem claro no hover */
    border-color: var(--roxo-vibrante); /* Borda fica roxa */
    transform: translateY(-2px); /* Efeito de elevação */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Ilustração (Se for uma imagem, ajuste a altura) */
.ilustracao-acesso-placeholder {
    margin-top: 25px;
    height: 150px; /* Aumenta a altura para caber a ilustração */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* Se você usar a imagem, aplique aqui */
    /* background-image: url('../images/acesso-ilustracao.png'); */
}
}