/* Ajuste de Altura para o Banner do ISM Cursos */
.custom-banner {
height: 100vh; /* Altura total da tela */
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
background-position: center;
}
/* Correção de Espaçamento */
.custom-banner img {
display: block;
max-width: 100%;
height: auto;
}
/* Ajustar Padding e Margem */
.custom-banner p, .custom-banner h1 {
margin: 0;
padding: 10px;
}
/* Remover Margem do Topo */
body {
margin-top: 0 !important;
}
header, .site-header {
margin-bottom: 0;
}