*{
	margin: 0;
	padding: 0;
	font-size: 100%;
	border: none;
	font-weight: 300;
	font-family: 'Lato', sans-serif;
	outline: none;
	box-sizing: border-box;
}

/* hero section with background image behind text */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('img1.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* optional overlay for contrast */
}

.headline {
    font-size: 4rem;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.subhead {
    font-size: 2rem;
    z-index: 1;
}

/* removed unused image and header rules */

.Title{
	width: 100%;
}

.rodape{
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    background: #fff; /* white banner */
    position: relative;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.copyright{
    color: #333;
    margin-top: 0;
    font-size: 0.9rem;
}

/* header/navbar styles */
.cabecalho {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to right, #CE2E3C, #DA6709);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: none;
    margin: 0;
}

.logo:hover {
    text-decoration: underline;
}

/*barra de menu*/
.btn-menu{
	width: 56px;
	height: 56px;
	text-align: center;
	color: #FFFFFF;
	background: rgba(255,255,255,0.2);
	border-radius: 56px 86px;
	cursor: pointer;
	transition: background 0.3s;
}

.btn-menu:hover {
    background: rgba(255,255,255,0.4);
}
/* menu*/
.menu{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9); /*RGB -->cor a--> transparencia vaira em percentagem matematica */
	top: 0;
	left: 0;
}

.btn-close{
	color:#FFFFFF;
	float: right;
	margin: 2% 3 0 0;
	font-size: 24px;
	cursor: pointer;
}
.menu ul{
	width: 100%;
	height: left;
	text-align: center;
}
.menu li{
	padding: 1.5%;
}
.menu li a{
	font-size: 32px;
	color: #FFFFFF;
	padding: 1.5% 3%;
}
.menu li a:hover{
	border: 1px solid #DA6709;
}