:root {
    --primary: #4065B8;
    --secondary: #FBCE45;
    --neutral: #FFF;
    --oscuro: #333;
}

/* General */
body,
html {
    margin: 0;
    padding: 0;
}

main {
    scroll-behavior: smooth;
}

/* Secciones de página */
.page-section {
    width: 100%;
    /*height: 100vh;*/
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 0px;

}

.svg-container {
    width: auto;
    height: 100dvh;
}

/* Estilos personalizados para cada página */
#home {
    background: var(--primary);
}

#about {
    background: var(--secondary);
}

#ethos {
    background: var(--neutral);
}

#proposito {
    background: var(--secondary);
}

#services {
    background: var(--primary);
}

#contact {
    background: var(--neutral);
}





/* Contenido */
.content {
    /*max-width: 600px;*/
}

/* Navbar */
/* Navbar */
.navbar {
    height: auto;
    background-color: rgba(0, 0, 0);
    z-index: 1000;
}

.navbar .nav-link {
    color: white !important;
    font-weight: bold;
}

.navbar .nav-link:hover {
    color: var(--secondary) !important;
}

/* Estilo para el botón del menú (mobile) */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-color: #FBCE45;
    border-radius: 2px;
    width: 30px;
    height: 30px;
    display: block;
    margin: 5px 0;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    background-color: #FBCE45;
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px 0;
}

/* Footer */
footer {
    background-color: var(--oscuro);
}

@media (max-width: 800px) {
    .svg-container {
        width: 100%;
        height: auto;
    }

    footer {
        background-color: var(--oscuro);
        font-size: 15px;
        height: 50px;
    }
}


/* Estilo del menú */
.menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 10;
    left: 0;
    width: 100%;
    background-color: var(--oscuro);
    color: white;
    padding: 10px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 50px;
}

.menu.show {
    transform: translateY(0);
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 10px;
    border-bottom: 1px solid var(--secondary);
}

.menu a:hover {
    background-color: #555;
}

/* Botón de menú */
.menu-button {
    background-color: var(--oscuro);
    color: var(--secondary);
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}