/* ============================================
   AGENDA INFINITA - Design System
   Cores principais: Roxo #741b75, Verde #0a5c20
   ============================================ */

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */
header {
  background: linear-gradient(90deg, #0a0a0a 0%, #1a1a2e 100%);
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #741b75;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(116, 27, 117, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

header .header-content {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

header .header-line1 {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

header .header-line2 {
  display: block;
  font-size: 20px;
}

#descounttime {
  color: #ff3333;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(255, 51, 51, 0.6);
  animation: pulse-red 2s ease-in-out infinite;
  font-size: 22px;
  display: inline-block;
  margin-top: 5px;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================
   MAIN CONTENT
   ============================================ */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* ============================================
   HEADLINES
   ============================================ */
.headline-section {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
}

.headline-main {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.headline-main .highlight {
  background: linear-gradient(135deg, #741b75 0%, #9c27b0 100%);
  padding: 5px 15px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(116, 27, 117, 0.4);
}

.headline-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #e0e0e0;
  margin-bottom: 15px;
  font-weight: 500;
}

.headline-sub b {
  color: #ffffff;
  font-weight: 700;
}

.headline-sub u {
  text-decoration: none;
  border-bottom: 2px solid #741b75;
  padding-bottom: 2px;
}

.headline-warning {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #cccccc;
  font-style: italic;
}

.headline-warning span {
  text-decoration: line-through;
  text-decoration-color: #ff3333;
  text-decoration-thickness: 3px;
  color: #ff6666;
}

/* ============================================
   VIDEO SECTION (Formato 9:16 Vertical)
   ============================================ */
.video-section {
  margin: 30px auto;
  width: 100%;
  max-width: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 177.77%; /* 9:16 aspect ratio (16/9 = 1.777...) */
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(116, 27, 117, 0.2);
  border: 3px solid rgba(116, 27, 117, 0.3);
}

@media (min-width: 768px) {
    
}

@media (min-width: 1200px) {
}

.video-container vturb-smartplayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.buy-section {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0a5c20 0%, #0d7a2a 50%, #0a5c20 100%);
  color: white;
  text-decoration: none;
  padding: 25px 50px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 40px rgba(10, 92, 32, 0.4), 0 0 20px rgba(10, 92, 32, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 10px 40px rgba(10, 92, 32, 0.4), 0 0 20px rgba(10, 92, 32, 0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 15px 50px rgba(10, 92, 32, 0.6), 0 0 30px rgba(10, 92, 32, 0.5);
    transform: scale(1.02);
  }
}

.cta-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 50px rgba(10, 92, 32, 0.6);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button .cta-subtext {
  display: block;
  font-size: 0.6em;
  font-family: 'Cabin', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #f5e051;
  margin-top: 5px;
  text-transform: none;
  letter-spacing: 0.5px;
}

/* ============================================
   COMMENTS SECTION
   ============================================ */
.comments-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fb-comments {
  border: none !important;
  border-radius: 15px;
  padding: 20px;
  background: #ffffff;
  color: #1c1e21;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.fb-comments-header {
  padding: 15px 20px;
  border-bottom: 2px solid #e9ebee;
  margin-bottom: 20px;
}

.fb-comments-header span {
  color: #606770;
  font-weight: 600;
  font-size: 14px;
}

.fb-comments-wrapper {
  margin-bottom: 15px;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fb-comments-comment {
  width: 100%;
  border: none !important;
}

.fb-comments-comment-img {
  vertical-align: top;
  width: 48px;
  padding-right: 12px;
}

.fb-comments-comment-img img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9ebee;
  transition: transform 0.3s ease;
}

.fb-comments-comment-img img:hover {
  transform: scale(1.1);
  border-color: #741b75;
}

.fb-comments-comment-text {
  font-size: 14px;
  color: #1c1e21;
  line-height: 1.4;
  padding: 8px 12px;
  background: #f0f2f5;
  border-radius: 18px;
  margin-left: 8px;
}

.fb-comments-comment-name {
  font-size: 13px;
  font-weight: 600;
  color: #365899;
  margin-bottom: 4px;
}

.fb-comments-comment-name name {
  color: #365899;
  cursor: pointer;
  transition: color 0.2s;
}

.fb-comments-comment-name name:hover {
  color: #741b75;
  text-decoration: underline;
}

.mark-comments {
  color: #365899;
  font-weight: 600;
}

.fb-comments-comment-actions {
  padding: 8px 12px;
  font-size: 12px;
  color: #606770;
}

.fb-comments-comment-actions like,
.fb-comments-comment-actions reply {
  color: #606770;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.2s;
}

.fb-comments-comment-actions like:hover,
.fb-comments-comment-actions reply:hover {
  color: #741b75;
  text-decoration: underline;
}

.fb-comments-comment-actions likes {
  font-size: 13px;
  background: url(../images/like-icon.png) no-repeat left center;
  background-size: 20px;
  padding-left: 26px;
  padding-right: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-left: 10px;
  background-color: #fff;
  border: 1px solid #e9ebee;
  border-radius: 12px;
  color: #606770;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

.fb-comments-comment-actions date {
  color: #606770;
  font-size: 12px;
  margin-left: 10px;
}

.fb-comments-reply-wrapper {
  margin-left: 60px;
  border-left: 2px solid #e9ebee;
  padding-left: 15px;
  margin-top: 10px;
}

.fb-comments-loadmore {
  background: linear-gradient(135deg, #741b75 0%, #9c27b0 100%) !important;
  border: none !important;
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
  padding: 15px 30px;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fb-comments-loadmore:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(116, 27, 117, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  padding: 40px 20px;
  margin-top: 50px;
  border-top: 2px solid #741b75;
}

.pirataria {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.pirataria h3 {
  color: #ff3333;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 700;
}

.pirataria b {
  color: #f5e051;
}

.pirataria p {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  text-align: justify;
  max-width: 600px;
  margin: 0 auto;
}

.cpy {
  text-align: center;
  margin: 30px 0;
}

.cpy p {
  color: #666;
  font-size: 13px;
}

.links {
  text-align: center;
}

.links a {
  color: #aaa;
  font-size: 13px;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
  position: relative;
}

.links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #741b75;
  transition: width 0.3s;
}

.links a:hover {
  color: #fff;
}

.links a:hover::after {
  width: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  header {
    padding: 12px 15px;
  }
  
  header center {
    font-size: 12px;
  }
  
  main {
    padding: 20px 15px;
  }
  
  .headline-main {
    font-size: 1.3rem;
  }
  
  .headline-sub {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 20px 30px;
    font-size: 1.1rem;
    width: 90%;
    max-width: 400px;
  }
  
  .comments-section {
    padding: 15px 10px;
    margin: 30px 10px;
    max-width: 100%;
  }
  
  .fb-comments {
    padding: 10px;
  }
  
  .fb-comments-wrapper {
    margin-bottom: 10px;
  }
  
  .fb-comments-comment-text {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .fb-comments-comment-img {
    width: 40px;
    padding-right: 8px;
  }
  
  .fb-comments-comment-img img {
    width: 40px;
    height: 40px;
  }
  
  .fb-comments-reply-wrapper {
    margin-left: 20px;
    padding-left: 10px;
  }
  
  .fb-comments {
    padding: 15px;
  }
  
  .fb-comments-reply-wrapper {
    margin-left: 30px;
  }
  
  .video-container {
    border-radius: 10px;
    border-width: 2px;
  }
}

@media (max-width: 480px) {
  .headline-main {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 18px 25px;
    font-size: 1rem;
  }
  
  .fb-comments-comment-img {
    width: 40px;
  }
  
  .fb-comments-comment-img img {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Utility classes */
.hide {
  display: none !important;
}

.text-center {
  text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }