body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-image: url('../images/background.jpg');
    /* <-- TU IMAGEN DE FONDO */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 650px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.97);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.logo {
    max-width: 250px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.8em;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-top: 15px;
}

.slogan {
    font-size: 1.5em;
    font-weight: 700;
    color: #d82c21;
    /* Color rojo del logo */
    margin: 30px 0;
    letter-spacing: 1px;
}

.separator {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 40px auto;
    width: 80%;
}

.contact-prompt {
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.social-links a {
    color: #1a1a1a;
    font-size: 1.8em;
    margin: 0 15px;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: #d82c21;
    transform: scale(1.1);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.1em;
    }

    .container {
        padding: 40px 25px;
    }
}