.mhostbanner {
    width: 100%;
    min-height: 500px; 
    background-image: url('../img/banner.webp');
    background-size: cover;      
    background-position: center;  
    background-repeat: no-repeat;  
    display: flex;
    align-items: center;         
    justify-content: center;      
    position: relative;            
}

/* Overlay escuro */
.mhostbanner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); /* camada escura */
    z-index: 1;
}

/* Conteúdo do banner */
.mhostbanner-content {
    position: relative;
    z-index: 2;                   /* acima do overlay */
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mhostbanner h1 {
    font-size: 6rem;
    margin-bottom: 10px;
}

.mhostbanner p {
    margin: 5px 0;
    font-size: 1.8rem;
}


.mhostbanner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.10); /* overlay */
	z-index: 1;
}

.mhostbanner-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
}

.mhostbanner h1 {
	font-size: 6rem;
	margin-bottom: 10px;
	color:#fff;
}

.mhostbanner p {
	margin: 5px 0;
	font-size: 1.8rem;
}


/**************************** REPONSIVE *****************************/

/* ===== Responsivo para telas menores ===== */
@media (max-width: 1024px) { /* tablets grandes e laptops menores */
    .mhostbanner h1 {
        font-size: 4.5rem;
    }
    .mhostbanner p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) { /* tablets e mobiles grandes */
    .mhostbanner {
        min-height: 400px;
    }
    .mhostbanner h1 {
        font-size: 3.5rem;
    }
    .mhostbanner p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) { /* mobiles pequenos */
    .mhostbanner {
        min-height: 300px;
    }
    .mhostbanner h1 {
        font-size: 2.5rem;
    }
    .mhostbanner p {
        font-size: 1rem;
    }
}
