/* Variables */
:root {
    --primary-color: #46a701;
    --primary-dark: #2a5601;
    --secondary-color: #2ecc71;
    --text-color: #333333;
    --text-light: #777777;
    --bg-color: #f8f9fa;
    --bg-light: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
  }
  
  /* Background Image */
  #bgAgar {
    position: fixed;
    inset: 0;
    background-image: url("/../assets/img/bg.png") !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    z-index: -1;
  }
  
  /* Reset & Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: transparent;
    position: relative;
    min-height: 100vh;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover:not(:where(nav a, nav * a)) {
    color: var(--primary-dark);
  }
  
  /* Layout */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  /* Header */
  header {
    background-color: var(--bg-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem; /* Añadir más padding a los lados */
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    padding: 0 1rem;
    position: relative;
    top: -6px;
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  nav ul li a {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    transition: var(--transition);
  }
  
  nav ul li a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  nav ul li a.active {
    background-color: var(--primary-dark);
    color: white;
  }
  
  nav ul li a i {
    margin-right: 0.5rem;
  }
  
  /* Main Content */
  main {
    padding: 2rem 0;
  }
  
  .privacy-section,
  .terms-section,
  .contact-section {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .page-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .page-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }
  
  /* Cards */
  .card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  }
  
  .card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
  }
  
  .card p {
    margin-bottom: 1rem;
  }
  
  .card p:last-child {
    margin-bottom: 0;
  }
  
  .card a {
    font-weight: 600;
  }
  
  /* Lists */
  ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  ol li {
    margin-bottom: 1rem;
  }
  
  ol li:last-child {
    margin-bottom: 0;
  }
  
  ul {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  ul li {
    margin-bottom: 0.5rem;
  }
  
  ul li:last-child {
    margin-bottom: 0;
  }
  
  /* Strong and emphasized text */
  strong, em {
    color: var(--primary-dark);
  }
  
  /* Contact Page specific styles */
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }
  
  .contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .contact-list li i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
  }
  
  .discord-logo {
    width: 36px;
    height: 36px;
    /* margin-right: 1rem; */
    object-fit: contain;
    position: relative;
    left: -8px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      padding: 1rem;
    }
  
    nav ul {
      margin-top: 1rem;
    }
  
    nav ul li {
      margin-left: 0.5rem;
      margin-right: 0.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .card {
      padding: 1.5rem;
    }
  
    .page-title {
      font-size: 2rem;
    }
  
    nav ul {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    nav ul li {
      margin: 0.5rem;
    }
  }
