/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

.logo {
    width: 300px;
    height: 278px;
    object-fit: contain;
    margin-bottom: 20px;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.thumbnail {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

/* Responsive: tablets */
@media (max-width: 768px) {
    .thumbnail {
        width: 45%;
    }

    .logo {
        width: 200px;
        height: 200px;
    }
}

/* Responsive: móviles */
@media (max-width: 480px) {
    .thumbnail {
        width: 90%;
    }

    .logo {
        width: 150px;
        height: 150px;
    }
}