
/* Conteúdo carregado */
iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================
   CARROSSEL 3D DE FOTOS
   ========================================================= */
.texto-destaque .carrossel-3d {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.carrossel-3d {
  perspective: 1000px;
  height: 350px;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carrossel {
  position: relative;
  width: 600px;
  height: 250px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carrossel img {
  position: absolute;
  width: 140px;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.8s ease, filter 0.8s ease, opacity 0.8s ease;
}

.carrossel img.destacada {
  transform: scale(1.3) translateZ(400px);
  z-index: 10;
  box-shadow: 0 0 25px rgba(255, 118, 0, 0.8);
}

/* Área dinâmica */
#tela-principal {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
}


/* RESPONSIVO */
@media (max-width: 768px) {
  .carrossel-3d {
    height: 260px;
  }

  .carrossel {
    width: 350px;
    height: 200px;
  }

  .carrossel img {
    width: 110px;
  }
}

