/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  font-family: Arial, sans-serif;
  flex-direction: column;
  background-image: url("../images/bg.png");
}

.main-wrapper {
  position: relative;
  height: 95vh;
  display: flex;
  flex-direction: column;
  perspective: 1500px;
  padding-top: 50px;
  box-sizing: border-box;
}

.title {
  font-size: 3rem;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

h1,
h2,
h3,
.app-title {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
  color: hsl(0, 3%, 87%);
}

.container-carrossel {
  margin-top: -20px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}

.carrossel-item {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.carrossel-item::before,
.carrossel-item::after {
  pointer-events: none;
}

.wave-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  border-radius: 20px;
}

.carrossel-item:hover {
  filter: brightness(1) contrast(1.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.carrossel-item:nth-child(1) {
  background: rgba(145, 70, 255, 0.7);
  backdrop-filter: blur(8px);
}

.carrossel-item:nth-child(2) {
  background: rgba(255, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.carrossel-item:nth-child(3) {
  background: rgba(0, 200, 0, 0.7);
  backdrop-filter: blur(8px);
}

.carrossel-item:nth-child(4) {
  background: rgba(0, 40, 120, 0.7);
  backdrop-filter: blur(8px);
}

.carrossel-item:nth-child(5) {
  background: rgba(0, 180, 255, 0.7);
  backdrop-filter: blur(8px);
}

/* FOOTER */
footer {
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #9b59b6;
}

.social-links .contact {
  font-size: 1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.footer-text {
  color: #aaa;
  font-size: 0.9rem;
}

/* CARD */
.card-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  border: 1px inset rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  width: 80%;
  color: #fff;
}

/* Logo */
.card-logo {
  width: 130px;
  margin-top: 15px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

/* Título */
.card-title-twitch {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(125, 60, 255, 0.85);
  padding: 5px 15px;
  border-radius: 8px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.card-title-youtube {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(255, 0, 0, 0.7);
  padding: 5px 15px;
  border-radius: 8px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.card-title-kick {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(0, 200, 0, 0.7);
  padding: 5px 15px;
  border-radius: 8px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.card-title-multichat {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(0, 40, 120, 0.7);
  padding: 5px 15px;
  border-radius: 8px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.card-title-chatobs {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(0, 180, 255, 0.7);
  padding: 5px 15px;
  border-radius: 8px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

/* Texto */
.card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}



/* **********************
DISABLE
*/
.carrossel-item.disabled {
  cursor: not-allowed;
}

.comming-soon {
  color: red;
}

/* ===== KEYFRAMES RESPONSIVOS ===== */
@media screen and (max-width: 1440px) {
  .carrossel-item {
    transform: scale(0.85);
  }
}

@media screen and (max-width: 1280px) {
  .carrossel-item {
    transform: scale(0.75);
  }
}

@media screen and (max-width: 1080px) {
  .carrossel-item {
    transform: scale(0.65);
  }
}

@media screen and (max-width: 720px) {
  .carrossel-item {
    width: 300px;
    height: 200px;
  }

  .card-content {
    width: 90%;
    padding: 10px;
    font-size: 0.85rem;
  }

  .card-title-twitch,
  .card-title-youtube,
  .card-title-kick,
  .card-title-multichat,
  .card-title-chatobs {
    font-size: 1rem;
    top: -10px;
    left: 10px;
    padding: 3px 8px;
  }

  .card-text {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .card-logo {
    width: 80px;
    margin-top: 10px;
  }
}