/* ============================================
   DIVINE REPLICA - style.css
   Reconstrução visual 1:1 e responsiva (Fundo Branco)
   ============================================ */

/* --- Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Nunito:wght@400;600;700&display=swap');

/* --- Reset --- */
*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, sans-serif;
  background-color: #ffffff;
  color: #1c1e21;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

/* --- Container Geral --- */
.a-b-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
}

/* --- Warning Banner --- */
.atomicat-container-108a637 {
  width: 100%;
  background-color: #020309;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #111;
}

.warning-text-container {
  max-width: 500px;
  width: 100%;
  padding: 12px 16px;
  text-align: center;
}

.warning-text {
  color: #f0d080;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

/* --- Video Section --- */
.atomicat-container-c005146 {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 16px 15px;
  background-color: #ffffff;
}

.video-container-inner {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-player-wrapper {
  width: 100%;
  background-color: #000000;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-player-wrapper vturb-smartplayer {
  width: 100%;
  display: block;
}

/* --- Comments Section --- */
.atomicat-container-c59c51b {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  padding: 15px 16px 40px;
}

.comments-container-inner {
  max-width: 500px;
  width: 100%;
}

.a-co {
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

/* Comments Header */
.a-co-h {
  border-bottom: 1px solid #e9ebee;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.a-co-ht {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1c1e21;
}

/* Comments List Layout */
.flexBox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual Comment Card */
.a-fb-parent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.a-fb-thumb {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.a-fb-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-fb-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.a-fb-text {
  font-family: Helvetica, Arial, sans-serif;
  background-color: #f0f2f5;
  padding: 8px 12px;
  border-radius: 18px;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
}

.a-fb-user {
  color: #385898;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
  cursor: pointer;
  margin-bottom: 2px;
}

.a-fb-user:hover {
  text-decoration: underline;
}

.a-fb-comm {
  color: #1c1e21;
  font-size: 13px;
  line-height: 1.4;
}

/* Comment actions bottom row */
.a-fb-misc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-left: 8px;
  font-family: Helvetica, Arial, sans-serif;
}

.a-fb-misc-left {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.a-fb-misc-txt {
  color: #4267b2;
  cursor: pointer;
  font-weight: 600;
}

.a-fb-misc-txt:hover {
  text-decoration: underline;
}

.a-fb-dot {
  color: #90949c;
}

.a-fb-time {
  color: #90949c;
}

/* Likes badge */
.a-fb-likes {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}

.a-fb-like-img {
  width: 14px;
  height: 14px;
  display: block;
}

.a-fb-likes span {
  color: #90949c;
  font-size: 12px;
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 480px) {
  .atomicat-container-108a637 {
    background-color: #063f8c;
  }

  .warning-text {
    font-size: 15px;
    line-height: 1.3;
  }

  .atomicat-container-c005146 {
    padding: 0;
  }

  .video-player-wrapper {
    border-radius: 0;
    box-shadow: none;
  }

  .a-fb-thumb {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .a-fb-text {
    padding: 6px 10px;
    border-radius: 14px;
  }

  .a-fb-user {
    font-size: 12px;
  }

  .a-fb-comm {
    font-size: 12px;
  }
}
