
/* ==== ESTILOS GENERALES ==== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }

  h1, h2 {
    color: #d7ac00;
  }

  a {
    color: #d7ac00;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  /* ==== HEADER CENTRADO ==== */
  header {
    background-color: #ffcc00;
    color: #222;
    display: flex;
    justify-content: center; /* centra todo el bloque */
    align-items: center;     /* centra verticalmente */
    gap: 50px;               /* espacio entre logo y menú */
    padding: 20px 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    width: 45px;
    height: 45px;
  }
  
  .menu {
    display: flex;
    gap: 30px;
  }
  
  .menu a {
    color: #222;
    font-weight: bold;
    font-size: 1.05em;
  }
  
  .menu a:hover {
    text-decoration: underline;
  }

  /* ==== CONTENIDO ==== */
  main {
    max-width: 800px;
    margin: 30px auto;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  /* ==== FOOTER ==== */
  footer {
    text-align: center;
    color: #666;
    padding: 20px;
    font-size: 0.9em;
  }

  .privacidad-link {
    text-align: right; /* 👈 cambia de center a right */
    margin: 40px 20px 10px; /* agregué margen lateral para que no toque el borde */
  }
  
  .privacidad-link a {
    color: #f1c40f; /* tu color amarillo */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .privacidad-link a:hover {
    text-decoration: underline;
    color: #d4ac0d;
  }

/* ==== RESPONSIVE ==== */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
}