@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');
/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f5f5f5;
}

/* Barra de navegacion */
.navbar {
  
    background-color: #093a27;
    padding: 15px 0;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative; 
    z-index: 9999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-left, .nav-right {
    display: flex;
    gap: 15px;
}

.nav-link {
    color: #f4f7f4; 
    text-decoration: none;
    padding: 12px 24px; 
    
    font-size: 1.1rem;     
    font-weight: 600;      
    letter-spacing: 0.5px; 
    text-transform: capitalize; 
    
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-block; 
}


.nav-link:hover {
    background-color: #1CD146; 
    color: white;
    transform: translateY(-2px); 
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}
.logoimg {
    width: 600px;
    height: auto;
    display: block;
    margin: 40px auto;
}


.nav-container {
    justify-content: flex-start;
    gap: 20px;
}

.nav-right {
    margin-left: auto;
}


