* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 900px;
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.logos img {
    max-height: 174px;
    max-width: 65.3%;
}

.title {
    margin-bottom: 100px; /* empujamos más el logo de Difusora hacia abajo */
}

.logo-difusora {
    max-width: 465px;
    height: auto;
    width: 100%;
}

.contact {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.contact a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    word-break: break-word;
}

@media (max-width: 600px) {
    .logos img {
        max-width: 65.3%;
        max-height: 117px;
    }
    .logo-difusora {
        max-width: 373px;
    }
    .contact a {
        font-size: 1rem;
    }
}
