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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header .logo-empresa {
    margin-bottom: 30px;
}

header .logo-empresa img {
    max-width: 250px;
    height: auto;
}

main {
    flex-grow: 1;
}

main .content {
    margin-bottom: 40px;
}

main h1 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-links a {
    color: #333;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #777;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

footer .logo-provedor img {
    max-width: 100px;
    height: auto;
}

@media (max-width: 600px) {
    header .logo-empresa img {
        max-width: 200px;
    }

    footer .logo-provedor img {
        max-width: 80px;
    }

    .social-links {
        gap: 20px;
    }
}