/* RESET DE ESTILOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #000; /* Fondo negro puro */
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.gold { color: #A67C00; }

/* HEADER (ARRIBA) */
.main-header {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid #1a1a1a;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { 
    height: 65px; /* Tamaño imponente del logo */
    width: auto;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 15px;
    font-weight: 400;
    transition: 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #A67C00;
}

/* SECCIÓN HERO (CONTENIDO PRINCIPAL) */
.hero {
    padding-top: 150px; /* Espacio para el header fijo */
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, #1a1400 0%, #000 60%);
}

.hero-wrapper {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.hero-text { flex: 1.2; min-width: 350px; }
.hero-form { flex: 1; min-width: 350px; display: flex; justify-content: center; }

.main-title {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.description {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 35px;
    max-width: 500px;
}

.check-list p { margin-bottom: 15px; font-weight: bold; font-size: 16px; }
.check-list span { color: #A67C00; margin-right: 12px; }

/* FORMULARIO */
.form-card {
    background: #0f0f0f;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    transition: 0.3s;
}

.form-card:hover { border-color: #A67C00; }

.form-card h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 22px;
    letter-spacing: 2px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #A67C00;
    outline: none;
}

.file-box {
    border: 1px dashed #444;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
}

.file-box p { font-size: 13px; margin-bottom: 10px; color: #888; }

.payment-info {
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #A67C00, #d4af37);
    color: #000;
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(166, 124, 0, 0.4);
}

/* FOOTER (ABAJO) */
.main-footer {
    background: #050505;
    padding: 80px 0 20px 0;
    border-top: 1px solid #1a1a1a;
    width: 100%;
}

.footer-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo { height: 50px; margin-bottom: 20px; }

.footer-col { flex: 1; min-width: 250px; }

.footer-col h4 { margin-bottom: 25px; font-size: 17px; }

.footer-col p { color: #888; font-size: 15px; margin-bottom: 10px; }

.social-links a {
    color: #888;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: 0.3s;
}

.social-links a:hover { color: #A67C00; }

.copy-bar {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #111;
    font-size: 12px;
    color: #444;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-text { flex: none; }
    .description { margin: 0 auto 30px; }
    .check-list { display: inline-block; text-align: left; }
    .nav-menu { display: none; } /* Ocultar menú en móvil para simplicidad */
}