:root {
    --primary: #fbbf24; /* Amarillo Fixeame */
    --primary-dark: #d97706;
    --bg-dark: #18181b; /* Gris oscuro industrial */
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Typography */
.fixeame-font {
    font-weight: 800;
}

.fixeame-gradient {
    background: linear-gradient(135deg, #fcd34d, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Header */
header {
    padding: 20px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(24, 24, 27, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Language Dropdown */
.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 15px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    white-space: nowrap;
}

.lang-dropdown a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-card {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-main {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 18px 36px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

/* Page Content */
.page-content {
    padding: 50px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    margin-bottom: 30px;
    color: var(--primary);
}

.page-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Cookies */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 30px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn-accept {
    background: var(--primary);
    color: #000;
}

.btn-settings {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

#cookie-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    padding: 40px;
    width: 90%;
    max-width: 500px;
}

/* Footer */
footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary);
}

@media(max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-card { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
    #cookie-banner { flex-direction: column; gap: 20px; text-align: center; }
}
