* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #2d2d2d;
    background: url('../img/windowss.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

header {
    background: rgba(26, 26, 26, 0.85);
    color: #ffffff;
    padding: 2% 5%;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(184, 161, 93, 0.89);
    width: 80%;
    margin: 20px 0;
}

header h1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
    color: #e0c67b;
    font-weight: 700;
    text-align: center;
    animation: fadeIn 2.5s ease-in-out;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 15px;
    padding: 10px 0;
    width: 100%;
}

nav ul li a {
    display: flex;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: #e0c67b;
    color: #333;
}

section {
    text-decoration: none;
    background: #ffffff;
    padding: 40px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(184, 161, 93, 0.89);
    width: 80%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.5);
}

.contenedor-1{
   display: flex;
   justify-content: center;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

h2 {
    color: #444;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 18px;
    text-align: center;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a5a5a;
    text-align: left;
}

footer {
    background-color: #1a1a1a;
    box-shadow: 0 0 20px rgba(184, 161, 93, 0.89);
    color: #b3b3b3;
    text-align: left;
    padding: 20px;
    font-size: 0.9rem;
    margin-top: 40px;
    border-radius: 8px;
    width: 80%;
}

footer a {
    color: #e0c67b;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

button {
    padding: 12px 25px;
    border: none;
    background-color: #e0c67b;
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(184, 161, 93, 0.89);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #d4b765;
    transform: scale(1.05);
}

.peu {
    text-align: center;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
