/* --- Estilos específicos para Instagram --- */
.instagram-link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem; /* Más grande e impactante */
  font-weight: 900;
  text-decoration: none;
  color: #c7442d;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1;
}

.instagram-link:hover {
  color: #000;
  transform: skewX(-10deg); /* Efecto experimental al pasar el mouse */
}

/* Contenedor Visual */
.contacto-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.foto-contacto {
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(120%); /* Estilo retro/brutalista */
  border: 1px solid #000;
}

/* QR flotando sobre la imagen */
.qr-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: #f6f1ea;
  padding: 1rem;
  border: 2px solid #000;
  text-align: center;
  box-shadow: 8px 8px 0px #c7442d;
}

.qr-img {
  width: 100px;
  height: 100px;
}

.qr-overlay p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* Ajuste móvil 360px */
@media (max-width: 400px) {
  .instagram-link {
    font-size: 2.2rem;
  }
  
  .qr-overlay {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 2rem auto 0;
    width: fit-content;
  }
}