.header-1 {
    display: flex;
    justify-content: space-between;
    align-items: stretch; 
    background-color: #338c33;
    padding: 0;
    border-bottom: 1px solid #ddd;
    color: white;
    border-top: 1px solid #333;
    height: 80px; 
}

.container-img-titulo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.container-img-titulo img {
    height: 45px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container-img-titulo:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 5px;
}

.container-img-titulo h2 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.container-general-redes {
    width: 35%; 
    background-color: #f4f4f4;
    border-top-left-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.redes-sociales {
    display: flex;
    gap: 15px;
}

.redes-sociales a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3a9638;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: #fff;
}

.conteiner-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.logo-redes {
    width: 20px;
    height: 20px;
}

.link-logo {
    padding: 6px 8px;
    border: 3px solid #338c33;
    border-radius: 50%;
}   

.link-logo:hover {
    background-color: #338c33;
    border-color: #2a722a;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}


@media only screen and (max-width: 768px) {
    .header-1 {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .container-img-titulo {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        padding: 10px;
    }

    .container-img-titulo h2 {
        font-size: 18px;
        text-align: center;
    }

    .container-img-titulo img {
        height: 40px;
    }

    .container-general-redes {
        display: none;
    }

    .redes-sociales {
        gap: 10px;
    }

    .redes-sociales a {
        width: 30px;
        height: 30px;
    }

    .logo-redes {
        width: 18px;
        height: 18px;
    }

    .link-logo {
        padding: 5px;
    }
}
