/* Configurações Gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* Cor de fundo suave */
    color: #333;
}

/* Header */
.header-topo {
    background: #000080;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    max-height: 60px;
}

/* Conteúdo Central */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

h1 {
    color: #0056b3; /* Azul padrão eloDigital */
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.subtitulo {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

/* Vídeo Responsivo */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Dashboard de Botões */
.dashboard-links {
    display: flex;
    flex-direction: column; /* Um abaixo do outro */
    gap: 15px; /* Espaço entre botões */
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 25px;
    background: #ffffff;
    color: #0056b3;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    border-left: 5px solid #0056b3; /* Detalhe lateral */
}

/* Ícones dos botões */
.link-card .material-icons {
    margin-right: 15px;
    font-size: 24px;
}

/* Efeito ao passar o mouse */
.link-card:hover {
    background: #0056b3;
    color: #fff;
    transform: translateY(-3px);
}

footer {
	color: #ffffff;
	background: #000080;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	
}

/* Responsividade para Celular */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    h1 {
        font-size: 2rem;
    }
    .link-card {
        font-size: 1rem;
        padding: 15px;
    }
}