@import url('layout/variables.css');
@import url('layout/estructura.css');


.boton-principal {
    display: flex;
    padding: 10px;
}

.boton-principal a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-white);
    font-weight: bold;
    background-color: var(--color-green-primary);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.boton-segundario {
    display: flex;
    padding: 10px;
}

.boton-segundario a {
    width: 100%;
    text-decoration: none;
    color: var(--color-black);
    font-weight: bold;
    border: 2px solid var(--color-green-primary);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}


.contenedor {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;

}

.header {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header .logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 20px;
}

.header .logo-container img {
    height: 70px;
}


.header .botones {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 20px;
}



.cuerpo {
    width: 100%;
    height: calc(100vh - 160px);
    display: flex;
    flex-direction: row;
    padding: 40px;

}

.cuerpo h1 {
    font-size: 36px;
    color: var(--color-black);
    margin-bottom: 20px;
}

.footer {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}