* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, sans-serif;
}

img {
    max-width: 100%;
}

nav {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.imagen-logo {
    width: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu {
    display: flex;
    list-style-type: none;
    gap: 1rem;
    align-items: center;
}

.btn {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.btn:hover {
    background-color: #ddd;
}

.btn-active {
    background-color: green;
    color: white;
}

.btn-active:hover {
    background-color: black;
}

.hero {
    height: 500px;
    background-image: linear-gradient(to right, rgba(135, 11, 40, 0.8), rgba(11, 103, 11, 0.8)), url("../img/fondo_cooperativa.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero-title {
    color: yellow;
    font-size: 3rem;
    text-align: center;
}

.hero-highlight {
    color: red;
}

.hero-paragraph {
    text-align: center;
    font-size: 1.2rem;
    padding-top: 1rem;
    padding-left: 5rem;
    padding-right: 5rem;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
    gap: 1rem;
}

.button {
    font-size: 1rem;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
}

.button.active {
    background-color: green;
    color: white;
}

.button.active:hover {
    filter: brightness(90%);
}

.gray {
    background-color: #eaeaea;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.white {
    background-color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.graysection, .whitesection {
    max-width: 1200px;
    margin: 0 auto;
}

.graysection h3, .whitesection h3 {
    margin-top: 2rem;
}

.graysection h4, .whitesection h4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.graysection p.left {
    text-align: justify ;
}

.gray h2, .white h2 {
    text-align:center;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.gray p {
    padding-top: 1rem;
    text-align: center;
}

.card-group {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.card img {
    width: 3rem;
    display: block;
    background: #eeeeee;
    border-radius: 50%;

}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: solid 1px lightgray;
    border-radius: 1rem ;
    padding: 1rem;
}

.card h3 {
    font-weight: 400;
}

.description {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1200px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.description .column {
    flex: 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rrhh {
    width: 70%;
}

.tag {
    background-color: #DBEAFE;
    color: #193cb8;
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 5px;
}

.column h3 {
    font-weight: 300;
    font-size: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.column h4 {
    color: #193cb8;
    padding-bottom: 2rem;
}

.column p {
    color: gray;
    padding-bottom: 2rem;
}

.content ul {
    list-style-type: none   ;
}

.content li {
    padding-bottom: 1rem;
}

.content p {
    text-align: justify;
}

footer {
    background-color: green;
    padding: 2rem;
    color: white;
}

.contactus {
    text-align: center;
}

.contactus h3 {
    padding-bottom: 2rem;
}

.contactus p {
    padding-bottom: 2rem;
}

.contactus .title {
    margin-bottom: 1rem;
}

.icon-group {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
}

.small-width {
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    background-color: #101828;
    color: white;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.sides {
    display: flex;
    justify-content: space-between;
}

.small {
    margin-top: 1rem;
    font-size: 0.7rem;
}

.footer-icon {
    width: 3rem;
    margin-bottom: 0.5rem;
}

.menu a {
    text-decoration: none;
    color: black;
}

p.justify {
    text-align: justify;
}

.empresas {
    padding-top: 2rem;
    list-style-position: inside;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 2rem;
}

td {
    border: solid 1px gray;
    padding: 0.5rem;
}

thead td {
    font-weight: 700;
    background-color: lightgray;
}

td:first-child {
    width: 70%;
}

.servicio {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.servicio img {
    width: 300px;
}

@media screen and (max-width: 1200px) {
    .gray, .white, .copyright {
        padding-left: 1rem;
        padding-right: 1rem;
    }

}

.center {
    text-align: center;
}