@charset "UTF-8";
/* CSS Document */

body {
	margin: 0;
    padding: 0;
	background-color: #FAF2D3;
	font-family: "Lato", sans-serif;
    }

h1 {
	font-family: "Lato", sans-serif;
	color: #164194;
	font-style: normal;
	font-size: 1.8em;
}


.lato-regular {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2em;
	color: #666;
}





/* - - - - - - - - - - - - - - - -  */
/* MENU TOP */
/* - - - - - - - - - - - - -  - - - */

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ec6608; /* Color predeterminado */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1080px;
    padding: 0 10px;
    position: relative;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-list li {
    display: inline-block;
}

.nav-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #f4f4f4;
}

/* Logo Center */
.logo {
    position: absolute;
    left: 90%;
}

.logo img {
	margin-top: 10%;
    width: 60px;
}



/* Responsive Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    height: 4px;
    width: 30px;
    background-color: white;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 30px;
        left: 0;
		padding-left: 5%;
        background-color: #164194;
		opacity: .8;
        width: 30%;
        text-align: left;
        z-index: 1;
    }
	
	.nav-list a {
		font-size: 15px;
	}
	
	.nav-list a:hover {
		color: #ec6608;
	}

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 5px 0;
    }

    .menu-toggle {
        display: flex;
    }
	
	.logo {
    left: 75%;
}
	
	.logo img {
		margin-top: 10%;
    	width: 60px;
	}


}



