:root {
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --color-primary: #6b9223;
    --color-bg-dark: rgb(25, 25, 25);
    --color-text-light: aliceblue;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-bg-dark);
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-bg-dark);
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 5vw;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    background-image: url("/src/img/logo1.png");
    width: 180px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.nav-elements a {
    text-decoration: none;
    color: aliceblue;
    margin: 10px;
}

.contenido {
    margin-top: 30px;
    margin-left: 10vw;
}

footer {
    background-color: rgb(25, 25, 25);
    height: 100%;
    width: 100%;
    margin-right: 0;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

footer div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.fot-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.img-foot {
    background-image: url("/src/img/logo1.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 250px;
    height: 60px;
    filter: brightness(1.2);
}

footer h2 {
    color: var(--color-text-light);
    margin: 0;
    font-size: 1.2rem;
}

.as {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
}

footer div div a {
    margin: 10px;
    text-decoration: none;
    color: aliceblue;
}

.links {
    display: flex;
    flex-direction: column;
}

.legal {
    display: flex;
    flex-direction: column;
}

.cr {
    color: aliceblue;
}

.empresas-adif {
    width: 20vw;
    height: 15vh;
    background-image: url("/src/img/img10.jfif");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 33px;
}

.empresas div:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}