/* GENERAL */
body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #f9f9f9;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #D5D9D9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header a {
    font-size: 1em;
    color: #cee4c0;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.header a:hover {
    color: white;
    background-color: #008d52;
    border-radius: 5px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-left: 5px;
}

/* NAV MENU */
.header ol {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.header ol li {
    height: 100%;
}

/* FOOTER */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: #ffffff;
    border-top: 1px solid #D5D9D9;
    padding: 1em;
    gap: 1em;
}

a:link {
    text-decoration: none;
}

.social {
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: cover;
    transition: transform 0.3s;
}

.social:hover {
    transform: scale(1.1);
}

.footer-fb    { background-image: url('../images/fb.ico'); }
.footer-twitter { background-image: url('../images/twitter.ico'); }
.footer-instagram { background-image: url('../images/instagram.ico'); }
.footer-linkedin  { background-image: url('../images/linkedin.ico'); }

/* FORMULARIOS */
form {
    text-align: center;
    margin-top: 20px;
}

.caja {
    display: block;
    margin: 10px auto;
}

.caja label {
    display: block;
    margin-bottom: 5px;
}

.caja input {
    width: 12em;
    height: 2.5em;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* BOTÓN SUBMIT */
.submit {
    width: 10em;
    height: 2.5em;
    font-family: 'Quicksand', sans-serif;
    color: white;
    background-color: #b8e495;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit:hover {
    background-color: #66a71c;
}

/* TABLAS */
.tablita {
    display: inline-block;
    margin-top: 20px;
}

.tabla {
    border-collapse: collapse;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    background-color: white;
}

table tr th {
    border: 1px solid #D5D9D9;
    width: 100px;
    height: 30px;
    color: white;
    background-color: #a5cfa1;
    text-align: center;
    padding: 8px;
}

td {
    border: 1px solid #D5D9D9;
    width: 100px;
    height: 30px;
    text-align: center;
    padding: 8px;
}

/* MENU */
.menu {
    height: inherit;
}

.menu li {
    display: inline;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    height: 60px;
    background-color: #ffffff;
    border-top: 1px solid #D5D9D9;
    padding: 1em 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.social {
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.social:hover {
    transform: scale(1.1);
}

.footer-fb {
    background-image: url('images/fb.ico');
}

.footer-twitter {
    background-image: url('images/twitter.ico');
}

.footer-instagram {
    background-image: url('images/instagram.ico');
}

.footer-linkedin {
    background-image: url('images/linkedin.ico');
}

