/* ==================== FONDO ==================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('../img/fondo_inicio.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ==================== HEADER ==================== */
.main-header {
    background: #0D0D0D;
    padding: 10px 20px;
    border-bottom: 3px solid #8C5C03;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LOGO */
.logo {
    width: 55px;
    height: auto;
}

/* MENU */
.menu a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-size: 16px;
    font-weight: bold;
}

.menu a:hover {
    color: #F2CF1D;
}

/* ==================== FORMULARIO ==================== */
.form-section {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.form-container {
    width: 380px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Campos */
input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Botón */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: #8C5C03;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.btn-submit:hover {
    background: #704803;
}

/* Mensaje */
#mensaje {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: #0D0D0D;
    color: white;
    text-align: center;
    padding: 10px 0;
    border-top: 3px solid #8C5C03;
    margin-top: 40px;
}
