/* Ajuste para borda na imagem/vídeo e label acima */
.compare-card {
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: none;
  border: none;
}

.compare-card .label {
  margin-bottom: 12px;
  font-size: 1.1em;
  font-weight: 600;
  background: none;
  border: none;
  color: #ffe082;
  text-align: center;
  box-shadow: none;
}

.compare-card.destaque img,
.compare-card.destaque video {
  border: 3px solid #ffe082;
  box-shadow: 0 0 16px 0 #ffe08255;
  border-radius: 16px;
}

.compare-card img,
.compare-card video {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border: none;
  box-shadow: none;
  border-radius: 16px;
}
/* Fixar altura dos cards de comparação e centralizar conteúdo */
.compare-card {
  height: 400px; /* ajuste conforme necessário */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.compare-card img,
.compare-card video {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
:root {
  --azul: #0b1320;
  --dourado: #d4af37;
  --bege: #f5efe6;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bege);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.header {
  background: var(--azul);
  color: white;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  font-family: 'Cinzel';
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  height: 100vh;
  background: url('hero.jpg') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 32, 0.8);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
}

.hero-preview {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 30px 0;
}

.hero-preview img,
.hero-preview video {
  width: 250px;
  border-radius: 10px;
}

.destaque {
  transform: scale(1.1);
}

.btn-primary {
  background: var(--dourado);
  padding: 15px 30px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  border-radius: 5px;
}

.urgencia {
  margin-top: 10px;
  color: #ffd700;
}

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

.dark {
  background: var(--azul);
  color: white;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 250px;
}

.foto-cliente {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.compare-premium {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.compare-card {
  padding: 30px;
  border-radius: 10px;
  width: 220px;
}

.compare-card img,
.compare-card video {
  width: 100%;
  border-radius: 10px;
}

.label {
  background: var(--dourado);
  padding: 5px 10px;
  border-radius: 10px;
}

/* THUMBS */
.thumbs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.thumbs img:hover {
  opacity: 1;
  transform: scale(1.1);
  border: 2px solid #d4af37;
}

.cta {
  background: var(--azul);
  color: white;
  padding: 80px;
}

footer {
  background: var(--azul);
  color: white;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .steps,
  .cards {
    flex-direction: column;
  }
}
