:root {
  --bg-dark: linear-gradient(to bottom, #0A1A2F 0%, #0D2A4A 50%, #1A4A6E 100%);
    --text-light: #FFFFFF;
    --text-secondary: #A0AEC0;
    --primary-color: #00FFFF;
    --secondary-color: #8A2BE2;
    --success-color: #00FF94;
    --error-color: #FF4C4C;
  }

  @font-face {
    font-family: nexa-regular;
    src:url(../fonts/nexa-regular.ttf);
  }
  @font-face {
    font-family: nexa-extralight;
    src:url(../fonts/Nexa-ExtraLight.ttf);
  }
  @font-face {
    font-family: nexa-heavy;
    src:url(../fonts/Nexa-Heavy.ttf);
  }

  html {
    min-height: 100%;
  }
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-dark);
    background-attachment: fixed;
    color: var(--pure-white);
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .contenido {
    margin: 80px auto;
    padding: 20px;
    background-color: var(--bg-dark);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .header a img {
    width: 200px;
    height: auto;
  }  
  
  .navbar {
   background-color: black;
    opacity: 0.8;
    border-bottom: 2px solid var(--primary-blue);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--primary-blue);
  
  }
  
  
  .navbar a {
    text-decoration: none;
    color: white;
    font-size: 16px;
  }
  
  .navbar a:hover{
    color: white;
  }
  
  .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .nav-links {
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li { 
    position: relative;
    list-style: none;
   }
  
   .nav-links li a { 
    text-decoration: none; 
    padding: 0.5rem 1rem;
     display: inline-block;
   }
  
  .nav-links li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .nav-links li:hover .dropdown { 
    width: 100%;
    display: block;
    background-color: transparent;
   }
  
   .nav-links li .dropdown li a {
     display: block; 
    padding: 0.5rem 1rem;
     white-space: nowrap;
     }
     .nav-links li .dropdown li a:hover { 
      border: var(--secondary-color);
     }
  
  .nav-links li:hover {
  border: var(--secondary-color) solid 2px;
    border-radius: 8px;
  
    transition: background-color 0.3s ease;
    cursor: pointer;
  }


  .titulo{
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-top: 80px;
    margin-bottom: 20px;

    font-weight: bold;
    text-decoration: underline;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    transition: transform 0.3s ease;
    opacity: 0.9;
    transform: scale(1.05);
    cursor: pointer;
    transition: box-shadow 0.3s ease;

  }

.politicas p{
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: justify;
  margin: 10px 0;
  line-height: 1.6;
  font-weight: normal;
  text-justify: inter-word;
  padding: 10px 0;
  
}
.politicas ul{
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: normal;
  text-align: justify;
  text-justify: inter-word;
  padding: 10px 0;
  border-radius: 10px;

}


  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px;
    color: var(--text-light);
    border-radius: 10px;
  }
  
  .footer-izquierda {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    width: 120px;
    margin-bottom: 10px;
  }
  
  .footer-derecha {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    min-width: 300px;
  }
  
  .footer-derecha a {
    text-decoration: none;
    color: var(--pure-white);
    }
  .footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section li {
    margin-bottom: 5px;
    color: var(--text-secondary);
  }
  
  .nav-links {
    display: flex;
  }
  
  .hamburguesa {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: flex;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
      position: absolute;
      top: 80%;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      padding: 0 1rem;
    }
  
    .nav-links.active {
      max-height: 1000px;
      opacity: 1;
  
    }
  
    .hamburguesa {
      display: block;
    }
  
    .nav-links li {
      width: 100%;
      text-align: center;
      padding: 10px 0;
    }
  
    .nav-links li .dropdown {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
      position: static;
      background: rgba(0, 0, 0, 0.8);
      box-shadow: none;
    }
  
    .nav-links li:hover .dropdown {
      max-height: 500px;
      opacity: 1;
    }
  }