/* Imagen flotante */
.image-wrapper {
  position: absolute;
  top: 380px;
  left: 100px;
  width: 40vw;
  height: 300px;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  border-top-right-radius: 120px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  background: rgba(33, 45, 58, 0.5);
  backdrop-filter: blur(5px);
  overflow: hidden;
  padding: 24px 18px;
  gap: 18px;
}

.flotante-contenido {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 18px;
}
.flotante-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.flotante-contenido p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.5;
}
.flotante-botones {
  display: flex;
  gap: 12px;
}
.flotante-btn {
  background: #1a1a1a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.2s;
}
.flotante-btn:hover {
  background: #212d3a;
}

@media (max-width: 900px) {
  .image-wrapper {
    width: 90vw;
    height: 260px;
    top: 120px;
    padding: 12px 8px;
  }
  .image-wrapper img {
    width: 120px;
    height: 100%;
  }
}
@media (max-width: 600px) {
  .image-wrapper {
    width: 98vw;
    height: 160px;
    top: 80px;
    padding: 6px 4px;
    gap: 8px;
  }
  .image-wrapper img {
    width: 60px;
    height: 100%;
  }
  .flotante-contenido p {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .flotante-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}
