/* ==== ESTILOS DA HOME PAGE - PROPAGANDA ==== */
/* TEMA AZUL/VERDE ESCURO - CORES DO TOPO */

/* FUNDO GERAL DO BODY - AZUL ESCURO */
body {
  background: linear-gradient(135deg, #0d1f2d 0%, #0a1620 100%) !important;
  background-attachment: fixed !important;
}

/* CONTAINER PRINCIPAL COM CORES DO TOPO */
.container {
  background: linear-gradient(135deg, #0f2435 0%, #0d1f2d 100%) !important;
  background-attachment: fixed !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 40px !important;
  border-radius: 0 !important;
}

/* Barra de rolagem - fina e oculta, aparece ao passar o mouse */
.container::-webkit-scrollbar {
  width: 6px;
}

.container::-webkit-scrollbar-track {
  background: transparent;
}

.container::-webkit-scrollbar-thumb {
  background: rgba(30, 150, 200, 0.4);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.container::-webkit-scrollbar-thumb:hover {
  background: rgba(30, 150, 200, 0.8);
}

/* Seção Hero */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1a3a4e 0%, #154060 100%);
  border-radius: 20px;
  color: white;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(30, 150, 200, 0.3);
  box-shadow: 0 8px 32px rgba(30, 150, 200, 0.15);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(30, 150, 200, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* FUNDO ROXO DECORATIVO ATRÁS DO CELULAR */
.background-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 150, 200, 0.15), transparent);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hero-content {
  flex: 1;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.title-icon {
  display: inline-block;
  font-size: 54px;
  margin-right: 10px;
  animation: bounce 2s infinite;
}

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

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 15px;
  opacity: 0.95;
  font-weight: 600;
}

.hero-description {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.85;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1e96c8 0%, #0f7aa1 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 150, 200, 0.4);
  background: linear-gradient(135deg, #0f7aa1 0%, #1e96c8 100%);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-gradient {
  background: linear-gradient(135deg, #1e96c8 0%, #0f7aa1 100%);
  color: white;
  border: 2px solid transparent;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 150, 200, 0.4);
  background: linear-gradient(135deg, #0f7aa1 0%, #1e96c8 100%);
}

/* Mockup do Celular */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #0a0a0a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
    inset 0 0 0 8px rgba(102, 126, 234, 0.2), 0 0 40px rgba(102, 126, 234, 0.3);
  position: relative;
  animation: floatPhone 3s ease-in-out infinite;
}

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

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 25px;
  background: #0a0a0a;
  border-radius: 0 0 30px 30px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 35px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ===== CAROUSEL DO MOCKUP - SVG IMAGES ===== */

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.screen-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-slide.active {
  opacity: 1;
}

.screen-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-svg {
  width: 100%;
  height: 100%;
  max-width: 280px;
  max-height: 560px;
}
.mini-chart {
  width: 100%;
  height: 80px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
  align-items: flex-end;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 10px 8px;
}

.month-bar {
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(102, 126, 234, 0.3) 0%,
    rgba(118, 75, 162, 0.3) 100%
  );
  border-radius: 3px 3px 0 0;
  position: relative;
  transition: all 0.4s ease;
  min-height: 3px;
}

.month-bar.current {
  background: linear-gradient(180deg, #4caf50 0%, #45a049 100%);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.month-bar:hover {
  opacity: 0.8;
}

.month-name {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #1e96c8;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(30, 150, 200, 0.6);
}

.dot:hover {
  background: rgba(30, 150, 200, 0.7);
}

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

/* Seção Funcionalidades */
.funcionalidades-section {
  margin-bottom: 60px;
  background: linear-gradient(
    135deg,
    rgba(30, 150, 200, 0.12),
    rgba(15, 122, 161, 0.12)
  );
  border-radius: 20px;
  padding: 50px 40px;
  border: 2px solid rgba(30, 150, 200, 0.2);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: white;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.funcionalidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 30px rgba(30, 150, 200, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(30, 150, 200, 0.2);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(30, 150, 200, 0.15);
  border-color: rgba(30, 150, 200, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e96c8 0%, #0f7aa1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: white;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.feature-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.feature-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  background: rgba(30, 150, 200, 0.1);
  color: #1e96c8;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(30, 150, 200, 0.2);
}

/* Seção Stats */
.stats-section {
  background: linear-gradient(135deg, #1a3a4e 0%, #154060 100%);
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(30, 150, 200, 0.3);
  box-shadow: 0 8px 32px rgba(30, 150, 200, 0.2);
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(30, 150, 200, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.stat-text {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
}

/* Seção CTA */
.cta-section {
  background: linear-gradient(135deg, #1a3a4e 0%, #154060 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border: 2px solid rgba(30, 150, 200, 0.3);
  box-shadow: 0 8px 32px rgba(30, 150, 200, 0.2);
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(30, 150, 200, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.cta-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Responsividade */
@media (max-width: 1024px) {
  .funcionalidades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .funcionalidades-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-section {
    padding: 30px 20px;
    gap: 30px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .feature-card {
    padding: 20px;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }

  .stats-section {
    padding: 40px 20px;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
  }

  .stat-number {
    font-size: 28px;
  }

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

@media (max-width: 480px) {
  .funcionalidades-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-section {
    padding: 20px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .btn-lg {
    padding: 12px 24px;
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 13px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-description {
    font-size: 14px;
  }

  .container {
    padding: 10px;
  }
}
