/* ========================================
   MELHORIAS DE UX/UI - HOME PAGE
   Design Profissional e Clean
   ======================================== */

/* Menu - Botão Beta Destacado */
.btn-beta-menu {
  background: linear-gradient(135deg, #198754, #0f5132) !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.btn-beta-menu:hover {
  background: linear-gradient(135deg, #0f5132, #198754) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

/* Beta Banner - Urgência e Escassez */
.beta-banner-urgency {
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.beta-banner-urgency strong {
  color: #ffd700;
  font-size: 14px;
}

/* ========================================
   CTA SECTION - DESIGN PROFISSIONAL
   ======================================== */

.cta-section {
  background: #ffffff;
  padding: 100px 0;
}

/* Left Content */
.cta-content-left {
  padding-right: 40px;
}

.cta-label {
  display: inline-block;
  background: linear-gradient(135deg, #0f5132, #198754);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.cta-description {
  font-size: 18px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Features List */
.cta-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 24px;
  color: #198754;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #198754, #0f5132);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.2);
}

.feature-item:hover .feature-icon i {
  color: #ffffff;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 15px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

/* Right Card */
.cta-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.cta-card-header {
  background: linear-gradient(135deg, #0f5132, #198754);
  padding: 35px 30px;
  text-align: center;
  color: #ffffff;
}

.cta-card-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.cta-card-header p {
  font-size: 15px;
  margin: 0;
  opacity: 0.9;
}

.cta-card-body {
  padding: 40px 30px;
}

/* Checklist */
.cta-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.cta-checklist li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 16px;
  color: #333333;
  border-bottom: 1px solid #f0f0f0;
}

.cta-checklist li:last-child {
  border-bottom: none;
}

.cta-checklist i {
  font-size: 20px;
  color: #198754;
  flex-shrink: 0;
}

/* CTA Button */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #198754, #0f5132);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.25);
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #0f5132, #198754);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(25, 135, 84, 0.35);
  color: #ffffff;
}

.cta-login {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666666;
}

.cta-login a {
  color: #198754;
  font-weight: 600;
  text-decoration: none;
}

.cta-login a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .cta-content-left {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  /* Header no topo */
  .header {
    position: fixed !important;
    top: 0 !important;
    z-index: 1050 !important;
  }
  
  /* Banner abaixo do header */
  .beta-banner {
    padding: 10px 0 !important;
    position: fixed !important;
    top: 80px !important;
    z-index: 1000 !important;
  }
  
  .beta-banner-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 13px;
    padding: 0 15px;
  }
  
  .beta-banner-badge {
    font-size: 12px !important;
    padding: 5px 12px !important;
  }
  
  .beta-banner-text {
    font-size: 13px !important;
    line-height: 1.5;
  }
  
  .beta-banner-urgency {
    margin: 5px 0 0 0 !important; /* Remover margem inferior */
    font-size: 12px;
    padding: 4px 12px;
  }
  
  .beta-banner-btn {
    display: none !important; /* Ocultar botão em mobile - já tem CTAs abaixo */
  }
  
  /* Body padding: header (80px) + banner (~70px em mobile sem botão) */
  body {
    padding-top: 150px !important;
  }
  
  main.main {
    margin-top: 0 !important;
  }
  
  /* Hero section - adicionar espaço para não sobrepor com banner */
  .hero {
    margin-top: 20px !important;
  }
  
  /* Menu mobile */
  .mobile-nav-toggle {
    z-index: 1051 !important;
  }
  
  .navmenu {
    top: 80px !important;
  }
  
  .navmenu.mobile-nav-active {
    top: 80px !important;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .cta-features {
    gap: 20px;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
  
  .feature-text h4 {
    font-size: 16px;
  }
  
  .feature-text p {
    font-size: 14px;
  }
  
  .cta-card-header {
    padding: 30px 25px;
  }
  
  .cta-card-header h3 {
    font-size: 22px;
  }
  
  .cta-card-body {
    padding: 30px 25px;
  }
  
  .cta-checklist li {
    font-size: 14px;
    padding: 10px 0;
  }
}

/* Scroll Down Button Improvement */
.scroll-down-wrapper {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-down-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-down-btn:hover {
  color: var(--accent-color);
  transform: translateY(5px);
}

.scroll-down-btn i {
  font-size: 24px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
