/* style.css */
:root { --bg-light: #f8fafc; --text-dark: #0f172a; --accent-blue: #0284c7; --border-light: #e2e8f0; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-light); color: var(--text-dark); display: flex; flex-direction: column; min-height: 100vh; }

/* HEADER MEJORADO */
header { background: #fff; border-bottom: 1px solid var(--border-light); padding: 15px 0; }
.header-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo a { font-size: 20px; font-weight: 800; color: var(--text-dark); text-decoration: none; }
.logo span { color: var(--accent-blue); }

.nav-menu { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-menu a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 14px; }

/* DROPDOWNS */
.dropdown { position: relative; cursor: pointer; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border-light); border-radius: 8px; padding: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 1000; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; padding: 5px 0; }

/* FOOTER MEJORADO */
footer { background: #fff; border-top: 1px solid var(--border-light); padding: 30px 0; margin-top: auto; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { text-decoration: none; color: #64748b; font-size: 13px; }