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

html, body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  background: url('../img/fondo.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Englebert', sans-serif;
  overflow-y: auto;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.search-box {
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.logo-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  animation: fadeZoomIn 1s ease-out;
}

@keyframes fadeZoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.btn-search {
  background-color: #dc3545;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border: none;
  transition: all 0.2s;
}

.btn-search:hover {
  background-color: #f8f520;
  color: #000;
  transform: scale(1.03);
}

footer {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.social-icons a {
  color: #ff0000;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.2s;
}

.social-icons a:hover {
  color: #fffb20;
  transform: scale(1.1);
}

.social-icons a .icon-label {
  display: none;
  font-size: 0.75rem;
  color: #ccc;
}

@media (max-width: 480px) {
  footer {
    padding: 0.75rem 0 !important;
  }
  .social-icons a {
    font-size: 1.75rem;
  }
}
