/* =============================================
   TOUR VIRTUAL 360° - ESTILOS CSS SIN TAILWIND
   ============================================= */

/* Contenedor del tour virtual */
.tour-container {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  background-color: #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  border: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
  .tour-container {
    height: 75vh;
  }
}

/* =============================================
   INDICADOR FLOTANTE "ARRASTRE PARA EXPLORAR"
   ============================================= */

.tour-indicator {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0044a5;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s ease;
}

.tour-container:hover .tour-indicator {
  opacity: 0;
}

.tour-indicator-icon {
  width: 1.25rem;
  height: 1.25rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  flex-shrink: 0;
}

.tour-indicator-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Animación de pulso */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* =============================================
   IFRAME DEL TOUR
   ============================================= */

.tour-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =============================================
   UTILIDADES ADICIONALES
   ============================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}