* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0b; /* Fondo oscuro profundo */
    background-image: url('https://images.unsplash.com/photo-1557597774-9d2739f85a76?auto=format&fit=crop&q=80&w=2000'); /* Imagen de fondo sutil */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 11, 0.95) 0%, rgba(20, 20, 25, 0.8) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    color: #fff;
}

.logo span {
    color: #d4af37; /* Dorado elegante */
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 strong {
    font-weight: 600;
    color: #d4af37;
}

p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #d4af37;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: #d4af37;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.email {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email:hover {
    color: #d4af37;
}

footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    left: 0;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 1px;
}

/* Responsivo para móviles */
@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .email { font-size: 1.1rem; }
}

/* ... (Mantener los estilos anteriores y añadir estos) ... */

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Borde con toque dorado */
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    gap: 15px;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #d4af37;
}

.btn-submit {
    background: #d4af37;
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.btn-submit:hover {
    background: #f1c40f;
    transform: translateY(-2px);
}

.direct-contact span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.direct-contact a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

/* Ajuste móvil */
@media (max-width: 600px) {
    .input-group {
        flex-direction: column;
    }
    .contact-card {
        padding: 1.5rem;
    }
}
