/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 10px;
  background-color: #000000;
  padding: 10px;
}

.header h1 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.3;
}

.header h1 .highlight {
  background-color: #dc2626;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 800;
  text-shadow: none;
}

/* Video Section */
.video-section {
  margin-bottom: 0px;
}

.video-player {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  background-color: transparent;
  border-radius: 8px;
  overflow: visible;
  position: relative;
  z-index: 10;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-content {
  text-align: center;
  padding: 20px;
}

.video-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #ffffff;
}

.video-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.control-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.control-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.play-icon {
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #000000;
}

.restart-icon {
  width: 24px;
  height: 24px;
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
}

/* Partners Section */
.partners-section {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 80px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 10px 15px;
  position: relative;
  z-index: 1;
}

.partners-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #333333;
  position: relative;
}

.partners-label::before,
.partners-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 2px;
  background-color: #dddddd;
}

.partners-label::before {
  left: 20px;
}

.partners-label::after {
  right: 20px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: nowrap;
}

.logo-item {
  display: flex;
  align-items: center;
}

.logo {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  min-width: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.veja-logo {
  background-color: transparent;
  color: #dc2626;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.play-circle {
  width: 12px;
  height: 12px;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6px;
  color: #ffffff;
}

.msn-logo {
  background-color: transparent;
  color: #666666;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.msn-logo::after {
  content: "🦋";
  font-size: 14px;
}

.g1-logo {
  background-color: transparent;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.g1-logo::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #dc2626;
  border-radius: 50%;
  z-index: 1;
}

.g1-logo .g1-symbol {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.uol-logo {
  background-color: transparent;
  color: #ff6600;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.uol-logo::before {
  content: "☀️";
  font-size: 14px;
}

/* Comments Section */
.comments-section {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  margin-top: 10px;
}

.comments-container {
  width: 100%;
}

.comments-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.comments-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.comments-list::-webkit-scrollbar {
  width: 6px;
}

.comments-list::-webkit-scrollbar-track {
  background: #2a2a2a;
  border-radius: 3px;
}

.comments-list::-webkit-scrollbar-thumb {
  background: #666666;
  border-radius: 3px;
}

.comments-list::-webkit-scrollbar-thumb:hover {
  background: #888888;
}

.comment {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2a2a2a;
}

.comment:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.comment-avatar {
  flex-shrink: 0;
}

.comment-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.commenter-name {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.comment-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.action {
  font-size: 12px;
  color: #888888;
  cursor: pointer;
  transition: color 0.3s ease;
}

.action:hover {
  color: #ffffff;
}

.timestamp {
  font-size: 12px;
  color: #888888;
}

.comment-text {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .header h1 {
    font-size: 16px;
  }

  .header h1 .highlight {
    padding: 3px 6px;
    font-size: 16px;
  }

  .video-player {
    max-width: 100%;
  }

  .video-text {
    font-size: 14px;
  }

  .control-btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .partners-logos {
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 10px;
  }

  .logo {
    font-size: 14px;
    padding: 0;
    min-width: auto;
    flex-shrink: 0;
  }

  .partners-label {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .partners-label::before,
  .partners-label::after {
    width: 50px;
  }

  .partners-label::before {
    left: 10px;
  }

  .partners-label::after {
    right: 10px;
  }

  .comments-section {
    padding: 20px;
  }

  .comments-title {
    font-size: 16px;
  }

  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .comment-actions {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .video-controls {
    gap: 12px;
  }

  .control-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .header h1 .highlight {
    padding: 2px 4px;
    font-size: 14px;
  }

  .partners-logos {
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 5px;
  }

  .logo {
    font-size: 12px;
    padding: 0;
    min-width: auto;
    flex-shrink: 0;
  }

  .partners-label {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .partners-label::before,
  .partners-label::after {
    width: 30px;
  }

  .partners-label::before {
    left: 5px;
  }

  .partners-label::after {
    right: 5px;
  }
}

/* Exit Intent Modal */
.exit-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.exit-modal-content {
  background-color: #dc2626;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.3s ease;
}

.exit-modal-header {
  background-color: #b91c1c;
  padding: 20px;
  text-align: center;
  border-radius: 12px 12px 0 0;
}

.exit-modal-header h2 {
  margin: 0;
  font-size: 32px;
  color: #ffffff;
}

.exit-modal-body {
  padding: 30px;
  text-align: center;
}

.exit-modal-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.exit-modal-btn {
  background-color: #ffffff;
  color: #dc2626;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  width: 100%;
}

.exit-modal-btn:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.exit-modal-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.exit-modal-close:hover {
  opacity: 1;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .exit-modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .exit-modal-text {
    font-size: 16px;
  }

  .exit-modal-btn {
    font-size: 14px;
    padding: 12px 25px;
  }

  .exit-modal-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .exit-modal-body {
    padding: 20px;
  }

  .exit-modal-text {
    font-size: 14px;
  }

  .exit-modal-btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}
