/* Importar fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --bg-dark: #0f0f0f;
    --bg-light: #1c1c1e;
    --primary: #ffcc00;
    --text-main: #f1f1f1;
    --text-secondary: #ccc;
    --accent: #ffc800;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: var(--primary);
    color: #000;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

nav a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--bg-dark);
}

.hero {
    padding: 2px 2px;
    text-align: center;
    background: linear-gradient(to right, #1c1c1e, #2e2e30);
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

main {
    flex: 1;
    padding: 40px 20px;
    background-color: var(--bg-light);
}

.features {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.features h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Formulario */
form {
    max-width: 600px;
    margin: auto;
    background-color: #2a2a2c;
    padding: 20px;
    border-radius: 10px;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: none;
    border-radius: 8px;
    background-color: #1c1c1e;
    color: var(--text-main);
}

button {
    background-color: var(--primary);
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
}

button:hover {
    background-color: #e6b800;
}

/* Footer */
footer {
    background: #1c1c1e;
    color: var(--text-secondary);
    text-align: center;
    padding: 20px;
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

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

    .contact-links {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .contact-link {
        font-size: 1rem;
        justify-content: flex-start;
        width: 100%;
        max-width: 320px;
    }

    .contact-link .icon {
        width: 35px;
        height: 35px;
    }
}

.logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 2px;
}

.contact-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #e6b800;
}

.contact-link .icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
