/*body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contact-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

h2 {
    margin-top: 0;
    color: #333;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Evita que el padding afecte el ancho 
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}*/


/* 1. Define aquí tus colores favoritos */
:root {
    --color-fondo:#1e1e1e ;        
    --color-tarjeta:#0a0a0a  ;      
    --color-primario:#c5a059 ;     
    --color-texto-principal:#f5f5f5 ;
    --color-texto-secundario: #f5f5f5;
    --color-input: #334155;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--color-fondo);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.contact-container {
    background: var(--color-tarjeta);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
    color: var(--color-texto-principal);
}

h2 {
    margin: 0 0 10px;
    color: var(--color-primario);
    text-align: center;
}

p {
    color: var(--color-texto-secundario);
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 25px;
}

label {
    display: block;
    margin: 15px 0 5px;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--color-fondo);
    border: 1px solid transparent;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

/* Efecto al hacer clic en los campos */
input:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primario);
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

button {
    background-color: var(--color-primario);
    color: #0f172a;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    margin-top: 25px;
    transition: transform 0.2s, background-color 0.2s;
}

button:hover {
    background-color:#e9d07d ;
    transform: translateY(-2px);
}

/* Diseño responsivo para móviles */
@media (max-width: 360px) {
    .contact-container {
        width: 90%;
        padding: 20px;
    }
}
