@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --primary: #D9411E;
  --primary-rgb: 217, 65, 30;
  --secondary: #FF6A2A;
  --bg-dark: #0A0A0A;
  --bg-card: #161616;
  --bg-panel: #1E1E1E;
  --ui-border: #333333;
  --text-main: #FFFFFF;
  --text-dim: #A0A0A0;
  --glow: #FF9A3D;
}

/* Reset & Base */
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, .title, .navbar-item {
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Background Effect */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(217, 65, 30, 0.15) 0%, rgba(10, 10, 10, 0) 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header & Navbar */
header.section { padding: 3rem 0; }

.navbar {
  background: rgba(22, 22, 22, 0.8) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.navbar-item, .navbar-link {
  color: var(--text-main) !important;
  font-weight: 500;
  transition: all 0.3s;
}

.navbar-item:hover {
    color: var(--secondary) !important;
    background: transparent !important;
}

.navbar-dropdown {
    background: var(--bg-panel) !important;
    border: 1px solid var(--ui-border) !important;
    border-radius: 8px !important;
}

/* IP Copy Button */
#ip {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: white !important;
    border-radius: 8px;
    margin-left: 15px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(217, 65, 30, 0.3);
}

#ip:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217, 65, 30, 0.5); }

/* Logo */
.logo img {
  filter: drop-shadow(0 0 15px rgba(217, 65, 30, 0.4));
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo img:hover { transform: scale(1.1) rotate(2deg); filter: drop-shadow(0 0 25px var(--primary)); }

/* Articles & Cards */
.article {
    margin-bottom: 2.5rem;
}

.article-title {
    background: linear-gradient(90deg, var(--primary), rgba(217, 65, 30, 0));
    padding: 0.8rem 1.5rem;
    border-radius: 8px 8px 0 0;
    font-size: 1.4rem;
    border-left: 4px solid var(--glow);
}

.article-content {
    background: var(--bg-card);
    border: 1px solid var(--ui-border);
    border-top: none;
    padding: 2rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Product Design */
.produtos li {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--ui-border);
    border-radius: 12px;
    padding: 2rem 1rem;
    margin: 10px;
    width: calc(25% - 20px) !important;
    transition: all 0.4s;
}

.produtos li:hover {
    background: rgba(217, 65, 30, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.product-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--text-main), var(--glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 154, 61, 0.3));
}

.produtos h1 { font-size: 1.5rem; margin-top: 15px; color: var(--text-main); }
.produtos h2 { color: var(--glow); font-size: 1.8rem; letter-spacing: -1px; }

/* Buttons */
.button.is-success {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    border: none !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    height: 3rem;
}

/* Staff Section */
.equipe li img {
    border: 2px solid var(--ui-border);
    padding: 5px;
    background: var(--bg-dark);
    border-radius: 50%;
    transition: all 0.3s;
}

.equipe li:hover img {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary);
    transform: rotate(5deg);
}

/* Admin Specific */
.admin-sidebar {
    background: var(--bg-card);
    border-right: 1px solid var(--ui-border);
    min-height: 100vh;
    padding: 2rem 1rem;
}

.admin-nav-item {
    display: block;
    padding: 1rem;
    color: var(--text-dim);
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.admin-nav-item:hover, .admin-nav-item.active {
    background: var(--primary);
    color: white;
}

/* Footer */
.footer {
    background: var(--bg-dark) !important;
    border-top: 1px solid var(--ui-border);
    margin-top: 5rem;
}

@media screen and (max-width: 768px) {
    .produtos li { width: calc(50% - 20px) !important; }
}
