* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  
  background-image: url('../BgADESCO_guarjila.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
}

.footer-credits {
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333333;
  font-size: 0.95rem;
}

.footer-credits strong {
  color: #000000;
  font-weight: 700;
}

@media (max-width: 768px) {
  .footer-credits {
    font-size: 0.85rem;
    padding: 12px 15px;
  }
}