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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    padding: 20px;
}

header {
    background: #870f06;
    padding: 20px;
    text-align: center;
}

header img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease-in-out;
}

header img:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s ease-in-out;
}

nav a:hover {
    background: #ffffff;
    color: #870f06;
    border-radius: 5px;
}

.wrapper {
    max-width: 800px;
    margin: 20px auto;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
}

h2 {
    color: #e63946;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in-out;
}

p {
    text-align: justify;
    margin-bottom: 15px;
}

aside {
    text-align: center;
    margin: 20px 0;
}

aside img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease-in-out;
}

aside img:hover {
    transform: rotate(-3deg) scale(1.1);
}

footer {
    background: #870f06;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}

footer p {
    margin: 0;
    color: #ffffff;
}

footer nav ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividad */
@media (max-width: 768px) {
    .wrapper {
        padding: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

