
a {
    color: inherit;
    text-decoration: none;
}
.color-link {
    color: #0a78c2;
    text-decoration: underline;
}
/*botones*/
.btn {
    color: #ffff;
    padding: 12px 12px;
    border-radius: 30px;
    border: #fff 1px solid;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Rubik", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    background: none;
}

.btn-secondary {
    color: black;
    border: #ffff 1px solid;
    background-color: #fff;
}

.btn:hover {
    background-color: #b9322b;
}

@media (max-width:767px) {
    .btn-primary {
        font-size: 12px;
        width: 100%;
        max-width: 300px;
    }

    .btn-secondary {
        font-size: 12px;
    }
}
header{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    margin: 20px;
}
.header-aside{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}
.logo{
    max-width: 200px;
}
nav{
    display: flex;
    gap: 20px;
}
@media (max-width: 880px) {
    .header-aside{
        margin: 0;
        gap: 0;
    }
    nav{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    nav a{
        background-color: rgba(0, 0, 0, 0.534);
        color: white;
        border-radius: 25px;
        padding: 4px 10px;
        border: 1px solid rgba(255, 255, 255, 0.842);
    }
    #donar{
        background-color: rgba(0, 0, 0, 0.534);
        color: white;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.842);
    }
}
.hero-content{
    gap: 0px;
    background-color: rgba(0, 0, 0, 0.644);
    padding: 40px;
    border-radius: 10px;
}
h1{
    font-size: 80px;
    line-height: 80px;
}
#donar{
    margin-top: 20px;
}


footer {
    display: flex;
    padding: 20px !important;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-logo {
    color: #000;
}

.redes,
.links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
}

.links p,
.links a {
    max-width: 100%;
    /* no se salga del contenedor padre */
    word-wrap: break-word;
    /* permite cortar palabras largas */
    overflow-wrap: break-word;
}

@media (max-width: 779px) {
    footer {
        padding: 40px 20px !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

}
.contact-img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}