/* MetaRO Design System - Versão Corrigida */  
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&display=swap');  
  
/* Reset */  
* {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;  
}  
  
/* Variáveis CSS */  
:root {  
    --primary-gold: #ffd700;  
    --dark-gold: #b8860b;  
    --text-primary: #ffffff;  
    --text-secondary: #cccccc;  
    --bg-card: rgba(26, 26, 46, 0.95);  
    --border-color: rgba(255, 215, 0, 0.2);  
    --border-gold: rgba(255, 215, 0, 0.3);  
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.1);  
}  
  
/* Body */  
body {  
    font-family: 'Exo 2', sans-serif;  
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);  
    color: var(--text-primary);  
    line-height: 1.6;  
    min-height: 100vh;  
}  
  
/* Header Fixo */  
.header-fixed {  
    position: fixed;  
    top: 0;  
    left: 0;  
    right: 0;  
    z-index: 1000;  
    background: rgba(26, 26, 46, 0.95);  
    backdrop-filter: blur(10px);  
    border-bottom: 1px solid var(--border-gold);  
}  
  
/* Navbar */  
.navbar {  
    padding: 0;  
}  
  
.nav-container {  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
    padding: 1rem 2rem;  
    max-width: 1200px;  
    margin: 0 auto;  
}  
  
/* Logo à esquerda */  
.nav-brand {  
    display: flex;  
    align-items: center;  
}  
  
.nav-brand img {  
    height: 50px;  
    width: auto;  
    transition: transform 0.3s ease;  
}  
  
.nav-brand img:hover {  
    transform: scale(1.05);  
}  
  
/* Menu central */  
.nav-menu {  
    display: flex;  
    gap: 2rem;  
    align-items: center;  
}  
  
.nav-link {  
    color: var(--text-primary);  
    text-decoration: none;  
    font-weight: 500;  
    transition: color 0.3s ease;  
    padding: 0.5rem 0;  
}  
  
.nav-link:hover {  
    color: var(--primary-gold);  
}  
  
/* Botão Criar Conta à direita */  
.nav-actions {  
    display: flex;  
    align-items: center;  
    gap: 1rem;  
}  
  
.welcome-text {  
    color: var(--text-secondary);  
    font-size: 0.9rem;  
}  
  
/* Botões */  
.btn {  
    padding: 0.75rem 1.5rem;  
    border: none;  
    border-radius: 8px;  
    font-weight: 600;  
    text-decoration: none;  
    display: inline-flex;  
    align-items: center;  
    justify-content: center;  
    cursor: pointer;  
    transition: all 0.3s ease;  
    font-size: 0.9rem;  
    height: 48px;  
}  
  
.btn-primary {  
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));  
    color: #000;  
}  
  
.btn-primary:hover {  
    transform: translateY(-2px);  
    box-shadow: var(--shadow-gold);  
}  
  
/* Menu Mobile */  
.nav-toggle {  
    display: none;  
    flex-direction: column;  
    gap: 4px;  
    cursor: pointer;  
}  
  
.nav-toggle span {  
    width: 25px;  
    height: 3px;  
    background: var(--primary-gold);  
    transition: all 0.3s ease;  
}  
  
/* Main Content */  
.main-content {  
    margin-top: 80px;  
    min-height: calc(100vh - 80px);  
}  
  
/* Cards Universais */  
.content-card, .form-card, .feature-card, .info-card {  
    background: var(--bg-card);  
    backdrop-filter: blur(10px);  
    border: 1px solid var(--border-gold);  
    border-radius: 16px;  
    padding: 2rem;  
    margin-bottom: 2rem;  
    box-shadow: var(--shadow-gold);  
    transition: transform 0.3s ease, box-shadow 0.3s ease;  
}  
  
.content-card:hover, .form-card:hover, .feature-card:hover, .info-card:hover {  
    transform: translateY(-5px);  
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);  
}  
  
/* Hero Section */  
.hero {  
    min-height: 100vh;  
    background-size: cover;  
    background-position: center;  
    background-attachment: fixed;  
    position: relative;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
}  
  
.hero::before {  
    content: '';  
    position: absolute;  
    top: 0;  
    left: 0;  
    right: 0;  
    bottom: 0;  
    background: rgba(0, 0, 0, 0.6);  
}  
  
.hero-content {  
    position: relative;  
    z-index: 1;  
    text-align: center;  
    padding: 2rem;  
}  
  
/* Títulos */  
.hero-title {  
    font-size: 4rem;  
    font-weight: 800;  
    color: var(--primary-gold);  
    margin-bottom: 1rem;  
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);  
}  
  
.hero-subtitle {  
    font-size: 1.5rem;  
    color: var(--text-primary);  
    margin-bottom: 2rem;  
    font-weight: 300;  
}  
  
/* Feature Cards */  
.features-grid {  
    display: grid;  
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));  
    gap: 2rem;  
    margin: 3rem 0;  
}  
  
.feature-card {  
    text-align: center;  
    padding: 2.5rem;  
}  
  
.feature-icon {  
    font-size: 3rem;  
    margin-bottom: 1rem;  
    display: block;  
}  
  
.feature-title {  
    font-size: 1.5rem;  
    font-weight: 700;  
    color: var(--primary-gold);  
    margin-bottom: 1rem;  
}  
  
.feature-description {  
    color: var(--text-secondary);  
    line-height: 1.6;  
}  
  
/* Footer */  
.footer {  
    background: rgba(26, 26, 46, 0.95);  
    border-top: 1px solid var(--border-gold);  
    padding: 2rem;  
    text-align: center;  
    color: var(--text-secondary);  
}  
  
/* Responsivo */  
@media (max-width: 768px) {  
    .nav-menu {  
        display: none;  
        position: absolute;  
        top: 100%;  
        left: 0;  
        width: 100%;  
        background: rgba(26, 26, 46, 0.98);  
        backdrop-filter: blur(10px);  
        flex-direction: column;  
        padding: 1rem 0;  
        border-top: 1px solid var(--border-gold);  
        z-index: 999;  
    }  
      
    .nav-menu.active {  
        display: flex !important;  
    }  
      
    .nav-link {  
        padding: 1rem 2rem;  
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);  
    }  
      
    .nav-toggle {  
        display: flex;  
    }  
      
    .nav-toggle.active span:nth-child(1) {  
        transform: rotate(45deg) translate(5px, 5px);  
    }  
      
    .nav-toggle.active span:nth-child(2) {  
        opacity: 0;  
    }  
      
    .nav-toggle.active span:nth-child(3) {  
        transform: rotate(-45deg) translate(7px, -6px);  
    }  
      
    .nav-container {  
        padding: 1rem;  
    }  
      
    .nav-actions {  
        display: none;  
    }  
      
    .hero-title {  
        font-size: 2.5rem;  
    }  
      
    .hero-subtitle {  
        font-size: 1.2rem;  
    }  
      
    .features-grid {  
        grid-template-columns: 1fr;  
        gap: 1rem;  
    }  
      
    .feature-card {  
        padding: 1.5rem;  
    }  
}  
  
/* Animações */  
@keyframes fadeInUp {  
    from {  
        opacity: 0;  
        transform: translateY(30px);  
    }  
    to {  
        opacity: 1;  
        transform: translateY(0);  
    }  
}  
  
.fade-in-up {  
    animation: fadeInUp 0.6s ease-out;  
}  
  
/* Seleção de texto */  
::selection {  
    background: var(--primary-gold);  
    color: #000;  
}
/* Header fixo e compensação de conteúdo */  
.header-fixed {  
    position: fixed;  
    top: 0;  
    left: 0;  
    right: 0;  
    z-index: 1000;  
    background: rgba(26, 26, 46, 0.95);  
    backdrop-filter: blur(10px);  
    border-bottom: 1px solid var(--border-gold);  
}  
  
/* Compensação para o header fixo */  
.main-content {  
    margin-top: 80px;  
}  
  
.hero {  
    min-height: 100vh;  
    padding-top: 80px; /* Evita que o fique coberto pelo header */  
    background-image: url('<?php echo $this->themePath('main/hero_account.jpg') ?>');  
    background-size: cover;  
    background-position: center;  
    background-attachment: fixed;  
}