/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }
  
  :root {
    --primary-color: #3498db;
    
    
  }
  
  body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }

  
  a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease;
}


/* Navbar moderno */
#navbar {
    position: fixed;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: black;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #ffc700;
    border-radius: 50%;
    bottom: 5px;
    right: -8px;
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.navbar-links li a {
    color: #212529;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ffc700;
    left: 0;
    bottom: 0;
    transition: all 0.3s ease;
}

.navbar-links li a:hover::after,
.navbar-links li a.active::after {
    width: 100%;
}

.navbar-links li a.active {
    color: black;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #212529;
}
  
  /* Header */
  .header-bg {
    background: linear-gradient(135deg, #fc5252 0%, #b8a500 100%);
    color: white;
    padding: 8rem 0 5rem;
    margin-bottom: 2rem;
  }
  
  .header-content {
    text-align: center;
    padding: 0 1rem;
  }
  
  .header-content h1 {
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 700;
  }
  
  /* Main Content */
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .title {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
  }
  
  .title h1 {
    font-size: 2rem;
    color: #222;
    display: inline-block;
  }
  
  .title h1:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ffc700;
    margin: 10px auto 0;
  }
  
  .politica {
    margin-bottom: 2.5rem;
  }
  
  .politica h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #222;
    border-left: 4px solid #ffc700;
    padding-left: 1rem;
  }
  
  .politica p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
  }

  .politica ul{
    margin-left: 20px;
  }
  
  .politica b {
    color: #ffc700;
  }
  
  /* Footer */
  .footer {
    background-color: #222;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
  }
  
  .container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .row-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-col {
    width: calc(25% - 30px);
    padding: 0 15px;
    margin-bottom: 30px;
  }
  
  .footer-col h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
  }
  
  .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #ffc700;
    height: 2px;
    width: 50px;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    font-size: 0.9rem;
    color: #bbbbbb;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .footer-col .social-links {
    display: flex;
    gap: 10px;
  }
  
  .footer-col .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .footer-col .social-links a:hover {
    background-color: #ffc700;
    transform: translateY(-3px);
  }
  
  /* Overlay */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
  }
  
  .overlay.active {
    display: block;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .footer-col {
      width: calc(50% - 30px);
    }
  }
  
  @media (max-width: 900px) {
      .navbar-container {
        padding: 5px;
    }
    
    .hamburger {
        display: block;
    }
    
    .navbar-links {
        position: fixed;
        top: 70px;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: 0.3s ease;
    }
    
    .navbar-links.active {
        right: 0;
    }
    
    .navbar-links li {
        width: 100%;
    }
    
    .navbar-links li a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .header-bg {
      padding: 7rem 0 4rem;
    }
    
    .header-content h1 {
      font-size: 2rem;
    }
    
    .container {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .title h1 {
      font-size: 1.7rem;
    }
    
    .politica h2 {
      font-size: 1.2rem;
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .politica {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
  }
  