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

:root {
  --bg: #080808;
  --bg-soft: #101010;
  --text: #ffffff;
  --muted: #b3b3b3;
  --red: #e50914;
  --card: #141414;
  --line: rgba(255,255,255,0.08);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(229, 9, 20, 0.12), transparent 30%),
    linear-gradient(to bottom, #050505, #0d0d0d 30%, #080808);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* LOADING */
.loading-screen {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  color: var(--red);
  font-size: clamp(2.2rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: 4px;
  animation: pulseLogo 1.5s infinite ease-in-out;
  text-align: center;
  padding: 0 16px;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* INTRO */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 400;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.85)),
    url("assets/fotos/foto4.jpg") center/cover no-repeat;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.intro-screen.show {
  display: flex;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(229,9,20,0.1), transparent 35%),
    linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.25));
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  width: 100%;
  animation: introFade 1.6s ease;
  padding: 0 10px;
}

@keyframes introFade {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.intro-mini {
  color: #ffd6d9;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.intro-content h1 {
  font-size: clamp(2.6rem, 9vw, 6rem);
  margin-bottom: 14px;
  line-height: 0.95;
}

.intro-text {
  color: #ececec;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* LOGIN */
.login-body {
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.82)),
    url("https://images.unsplash.com/photo-1518199266791-5375a83190b7?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  min-height: 100vh;
}

.login-backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(229,9,20,0.18), transparent 30%),
    linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.65));
}

.login-wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-panel {
  width: 100%;
  max-width: 440px;
  background: rgba(0,0,0,0.76);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 42px 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.login-logo {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 2rem;
  margin-bottom: 18px;
}

.login-panel h1 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.login-subtitle {
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-form input,
.login-form button {
  height: 54px;
  border-radius: 10px;
  font-size: 1rem;
}

.login-form input {
  background: rgba(28,28,28,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  padding: 0 14px;
  width: 100%;
}

.login-form button {
  background: var(--red);
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.login-form button:hover {
  filter: brightness(1.06);
}

.error-msg {
  color: #ff7b7b;
  min-height: 20px;
}

/* PERFIS */
.profiles-body {
  background: #121212;
  min-height: 100vh;
}

.profiles-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
  align-items: center;
}

.profiles-page h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
}

.profiles-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.profile-card {
  background: transparent;
  border: none;
  color: #d8d8d8;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease;
}

.profile-card:hover {
  transform: scale(1.06);
  color: white;
}

.profile-avatar {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  background: #222;
}

.profile-card:hover .profile-avatar {
  border-color: white;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PARTÍCULAS */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(229,9,20,0.18), transparent);
  animation: floatParticle linear infinite;
  filter: blur(1px);
  opacity: 0.55;
}

@keyframes floatParticle {
  from {
    transform: translateY(100vh) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-20vh) scale(1.2);
    opacity: 0;
  }
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(0,0,0,0.45));
  backdrop-filter: blur(8px);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.brand {
  color: var(--red);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 1.9rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: #d6d6d6;
  text-decoration: none;
}

.nav a.active,
.nav a:hover {
  color: white;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.icon-btn,
.logout-btn,
.surprise-btn,
.arrow-btn {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: white;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  min-height: 42px;
}

.arrow-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 1.5rem;
}

.surprise-btn {
  background: rgba(229,9,20,0.9);
  border-color: rgba(229,9,20,1);
}

.icon-btn:hover,
.logout-btn:hover,
.surprise-btn:hover,
.arrow-btn:hover {
  filter: brightness(1.06);
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  padding: 60px 40px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.hero-netflix {
  background:
    linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.45) 45%, rgba(8,8,8,0.2) 100%),
    url("https://images.unsplash.com/photo-1501901609772-df0848060b33?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.28)),
    linear-gradient(to top, rgba(0,0,0,0.66), transparent);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffd8db;
  background: rgba(229,9,20,0.12);
  border: 1px solid rgba(229,9,20,0.35);
}

.hero-content h1,
.page-hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

.hero-description,
.page-hero-content p {
  max-width: 650px;
  color: #ebebeb;
  line-height: 1.75;
  font-size: 1.08rem;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn {
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-light {
  background: white;
  color: black;
}

.btn-dark {
  background: rgba(109,109,110,0.7);
  color: white;
}

.counter-box {
  display: inline-block;
  max-width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.counter-box h3 {
  margin-bottom: 8px;
}

.relationship-counter {
  color: #fff0f1;
  line-height: 1.6;
  word-break: break-word;
}

/* PAGE HERO */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 70px 40px 40px;
  background:
    linear-gradient(to top, rgba(8,8,8,1), rgba(8,8,8,0.4)),
    url("assets/fotos/foto4.jpg") center/cover no-repeat;
}

/* MAIN */
.main-content {
  position: relative;
  z-index: 2;
  padding: 12px 0 50px;
}

.row-section,
.season-section {
  padding: 24px 40px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}

.with-arrows {
  align-items: center;
}

.row-arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.section-head h2 {
  font-size: 1.6rem;
}

/* TEMPORADAS */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.season-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.22);
}

.season-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffd1d4;
  font-size: 0.95rem;
}

.season-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.season-card p {
  color: var(--muted);
  line-height: 1.65;
}

.selectable .season-card {
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.selectable .season-card:hover,
.selectable .season-card.active {
  transform: translateY(-6px);
  border-color: rgba(229,9,20,0.6);
}

/* FILEIRA */
.netflix-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px 6px 40px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.netflix-row::-webkit-scrollbar {
  height: 10px;
}

.netflix-row::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
}

.netflix-card {
  flex: 0 0 260px;
  min-width: 260px;
  position: relative;
  text-decoration: none;
  color: white;
  border-radius: 10px;
  overflow: visible;
  transition: z-index 0.2s ease;
}

.netflix-card:hover {
  z-index: 30;
}

.netflix-card-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #181818;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
  transform-origin: center center;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.netflix-card:hover .netflix-card-inner {
  transform: scale(1.22) translateY(-18px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.52);
}

.card-media {
  position: relative;
  width: 100%;
  height: 150px;
  background: #111;
}

.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-media video {
  display: none;
}

.netflix-card:hover .card-media video.preview-video {
  display: block;
}

.netflix-card:hover .card-media img.preview-image-hidden {
  display: none;
}

.card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.12));
  pointer-events: none;
}

.card-play-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(229,9,20,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.card-bottom {
  padding: 14px;
  background: linear-gradient(180deg, rgba(20,20,20,0.94), rgba(10,10,10,1));
}

.card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.82rem;
  color: #d6d6d6;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.card-pill {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.card-desc {
  color: #bdbdbd;
  font-size: 0.88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-expand-panel {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.netflix-card:hover .card-expand-panel {
  display: block;
}

.expand-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.expand-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
}

.expand-extra {
  font-size: 0.83rem;
  color: #d4d4d4;
  line-height: 1.5;
}

/* COMING SOON */
.coming-soon {
  padding: 20px 40px 50px;
}

.coming-soon-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 42px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(229,9,20,0.08), rgba(255,255,255,0.03)),
    #111;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.coming-soon-box span {
  color: #ffd3d6;
  letter-spacing: 1px;
}

.coming-soon-box h2 {
  margin: 12px 0;
  font-size: 2.1rem;
}

.coming-soon-box p {
  color: #d8d8d8;
  line-height: 1.7;
}

.hidden {
  display: none;
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-content {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1a1a1a, #101010);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.modal-content h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.modal-content p {
  color: #e7e7e7;
  line-height: 1.8;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* DETALHE */
.detail-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
}

.detail-media {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.detail-media img,
.detail-media video {
  width: 100%;
  display: block;
  max-height: 78vh;
  object-fit: cover;
}

.detail-info {
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
}

.detail-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffd3d6;
  background: rgba(229,9,20,0.12);
  border: 1px solid rgba(229,9,20,0.3);
}

.detail-info h1 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.detail-date {
  color: var(--muted);
  margin-bottom: 20px;
}

.detail-description {
  color: #ececec;
  line-height: 1.8;
  white-space: pre-line;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.08);
  padding: 12px 18px;
  border-radius: 10px;
}

.not-found {
  text-align: center;
  padding: 80px 20px;
}

/* TABLET */
@media (max-width: 980px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero,
  .row-section,
  .season-section,
  .detail-page,
  .coming-soon {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar {
    padding: 16px 24px;
  }

  .hero {
    min-height: 78vh;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .topbar {
    padding: 14px 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-left,
  .topbar-right {
    width: 100%;
  }

  .topbar-left {
    gap: 14px;
  }

  .brand {
    font-size: 1.6rem;
  }

  .nav {
    gap: 12px;
  }

  .topbar-right {
    justify-content: flex-start;
    gap: 8px;
  }

  .icon-btn,
  .logout-btn,
  .surprise-btn {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .hero,
  .page-hero,
  .row-section,
  .season-section,
  .detail-page,
  .coming-soon {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: 72vh;
    padding-top: 40px;
    padding-bottom: 30px;
    align-items: end;
  }

  .page-hero {
    min-height: 260px;
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .hero-content h1,
  .page-hero-content h1 {
    line-height: 0.95;
    margin-bottom: 14px;
  }

  .hero-description,
  .page-hero-content p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    min-height: 48px;
  }

  .counter-box {
    width: 100%;
    padding: 14px;
  }

  .relationship-counter {
    font-size: 0.95rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head h2 {
    font-size: 1.3rem;
  }

  .row-arrows {
    width: 100%;
    justify-content: flex-start;
  }

  .season-grid {
    grid-template-columns: 1fr;
  }

  .season-card {
    padding: 18px;
  }

  .netflix-row {
    gap: 10px;
    padding: 14px 2px 28px;
  }

  .netflix-card {
    flex: 0 0 180px;
    min-width: 180px;
  }

  .card-media {
    height: 110px;
  }

  .card-bottom {
    padding: 10px;
  }

  .card-title {
    font-size: 0.92rem;
  }

  .card-desc {
    font-size: 0.8rem;
  }

  .card-meta {
    font-size: 0.74rem;
    gap: 6px;
  }

  .netflix-card:hover .netflix-card-inner {
    transform: scale(1.06) translateY(-8px);
  }

  .card-expand-panel {
    display: none !important;
  }

  .detail-page {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .detail-info {
    padding: 20px;
  }

  .detail-info h1 {
    font-size: 1.8rem;
  }

  .modal-content {
    padding: 22px 18px;
  }

  .modal-content h2 {
    font-size: 1.6rem;
  }

  .profiles-grid {
    gap: 20px;
  }

  .profile-avatar {
    width: 110px;
    height: 110px;
  }

  .login-wrap {
    padding: 16px;
  }

  .login-panel {
    padding: 28px 20px;
  }

  .login-logo {
    font-size: 1.7rem;
  }

  .login-panel h1 {
    font-size: 1.8rem;
  }

  .intro-text {
    font-size: 0.95rem;
  }
}

/* CELULAR PEQUENO */
@media (max-width: 480px) {
  .brand {
    font-size: 1.45rem;
  }

  .nav a {
    font-size: 0.95rem;
  }

  .icon-btn,
  .logout-btn,
  .surprise-btn {
    font-size: 0.88rem;
    padding: 9px 12px;
  }

  .hero {
    min-height: 66vh;
  }

  .hero-kicker {
    font-size: 0.82rem;
    padding: 7px 11px;
  }

  .hero-content h1,
  .page-hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-description,
  .page-hero-content p {
    font-size: 0.92rem;
  }

  .counter-box h3 {
    font-size: 1rem;
  }

  .relationship-counter {
    font-size: 0.88rem;
  }

  .netflix-card {
    flex: 0 0 155px;
    min-width: 155px;
  }

  .card-media {
    height: 96px;
  }

  .card-play-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
    right: 8px;
    bottom: 8px;
  }

  .profile-avatar {
    width: 96px;
    height: 96px;
  }

  .profiles-page h1 {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }

  .login-form input,
  .login-form button {
    height: 50px;
    font-size: 0.95rem;
  }

  .loading-logo {
    letter-spacing: 2px;
  }
}

/* TELAS SEM HOVER */
@media (hover: none) {
  .netflix-card:hover .netflix-card-inner {
    transform: none;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25);
  }

  .netflix-card:hover .card-media video.preview-video {
    display: none;
  }

  .netflix-card:hover .card-media img.preview-image-hidden {
    display: block;
  }

  .card-expand-panel {
    display: none !important;
  }

  .profile-card:hover {
    transform: none;
  }
}