* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: url('img/background.jpg') no-repeat center center/cover;
  font-family: Arial, sans-serif;
}

.overlay {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* menos oscuro */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 12px;
}

.logo {
  max-width: 140px;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 8px;
}

p {
  font-size: 1em;
}

/* Botón Instagram */
.insta-btn {
  margin-top: 20px;
  background-color: #ffffff;
  color: #000000;
  padding: 6px 14px 6px 6px;        /* más delgado */
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}
.insta-btn:hover {
  background-color: #e0e0e0;
}

.insta-icon {
  width: 50px !important;
  height: 50px !important;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
