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


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


.montserrat-p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}


p {
    font-family: "Montserrat", sans-serif;
	font-size: .7em;
    color: #343434;
	padding-left: 10%;
}





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



/* Navbar Styles */
.navbar {
    position: fixed;
    top: 4%; /* Mantiene el margen superior */
    left: 50%;
    transform: translateX(-50%); /* Centra horizontalmente */
    width: 80%;
    background-color: #fff; /* Color barra menú */
    opacity: 0.8;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    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: #1A4A7A;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Logo Center */
.logo {
    position: absolute;
    left: 95%;
    transform: translateX(-50%);
}

.logo img {
	margin-top: 6%;
    width: 150px;
	z-index: 100;
}



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

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

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 35px;
        left: 0;
		margin-left: 1%;
		padding-left: 3%;
        background-color: #1A4A7A;
		border-radius: 0px 0px 10px 10px;
		opacity: .8;
        width: 70%;
        text-align: left;
        z-index: 20;
    }
	
	.nav-list a {
		color: #fff;
		font-size: 15px;
	}

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

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

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


}





