:root {
  --primary: #ff2e63;
  --secondary: #08d9d6;
  --dark: #121212;
  --darker: #0a0a0a;
  --light: #eaeaea;
  --accent: #8a2be2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--darker);
  color: var(--light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparente inicial */
  backdrop-filter: blur(10px); /* Efeito de desfoque */
  transition: all 0.3s ease;
  z-index: 999;
}
/* Header ao rolar (mais transparente) */
header.header-scrolled {
    background: rgba(0, 0, 0, 0.1); /* Mais transparente */
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Ajustar cores do texto para melhor visibilidade */
header nav ul li a {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

header.header-scrolled nav ul li a {
    text-shadow: none;
}


.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo span {
  font-size: 32px;
  color: var(--secondary);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--light);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover:after {
  width: 100%;
}

/* Hero section com Parallax - ATIVO EM MOBILE */
.hero {
  height: 140vh;
  background:
    linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)),
    url("midia/mira.JPG") center/cover no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 200px;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, var(--primary) 0%, transparent 10%),
    linear-gradient(135deg, var(--secondary) 0%, transparent 10%);
  opacity: 0.1;
}

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

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: var(--light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn:hover:before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 46, 99, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  margin-left: 20px;
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--darker);
  box-shadow: 0 10px 20px rgba(8, 217, 214, 0.4);
}

/* Services section */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title h2:after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--dark);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 46, 99, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 46, 99, 0.2);
  border-color: var(--primary);
}

.service-card:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover:before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.service-card p {
  color: var(--light);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Plans section */
.plans {
  background-color: var(--dark);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.plan-card {
  background-color: var(--darker);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 217, 214, 0.1);
}

.plan-card.featured {
  transform: scale(1.05);
  border: 1px solid var(--secondary);
  box-shadow: 0 20px 40px rgba(8, 217, 214, 0.2);
}

.plan-card.featured:before {
  content: "RECOMENDADO";
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--primary);
  color: var(--light);
  transform: rotate(45deg);
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(8, 217, 214, 0.2);
  border-color: var(--secondary);
}

.plan-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.plan-price {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light);
}

.plan-price span {
  font-size: 16px;
  opacity: 0.7;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  color: var(--light);
  opacity: a0.8;
}

.plan-features li:last-child {
  border-bottom: none;
}

/* Process section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.process-step p {
  color: var(--light);
  opacity: 0.8;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background-color: var(--dark);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--darker);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(255, 46, 99, 0.1);
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--light);
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  background-color: var(--primary);
  opacity: 0.8;
}

.author-name {
  font-weight: 600;
  color: var(--secondary);
}

.author-title {
  font-size: 14px;
  opacity: 0.7;
}

/* CTA section */
.cta {
  background:
    linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)),
    url("/api/placeholder/1200/800") center/cover no-repeat;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, var(--primary) 0%, transparent 30%),
    linear-gradient(135deg, var(--secondary) 0%, transparent 30%);
  opacity: 0.1;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: var(--darker);
  padding: 50px 0 20px;
  border-top: 1px solid rgba(255, 46, 99, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--secondary);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}

/* Whatsapp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.6);
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .plan-card.featured {
    transform: scale(1);
  }

  .header-content {
    flex-direction: column;
  }

  nav ul {
    margin-top: 20px;
  }

  nav ul li {
    margin-left: 15px;
    margin-right: 15px;
  }

  .btn {
    display: block;
    margin: 10px 0;
    text-align: center;
  }

  .btn-secondary {
    margin-left: 0;
  }
}

/* Funnel Steps Section */
.funnel-steps {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.funnel-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.funnel-step:before {
  content: "";
  position: absolute;
  left: 35px;
  top: 70px;
  height: calc(100% - 50px);
  width: 2px;
  background: linear-gradient(var(--primary), var(--secondary));
}

.funnel-step:last-child:before {
  display: none;
}

.funnel-step-number {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-right: 30px;
}

.funnel-step-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.funnel-step-content p {
  color: var(--light);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--dark);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 217, 214, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(8, 217, 214, 0.2);
  border-color: var(--secondary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary);
  text-align: center;
}

.feature-card p {
  color: var(--light);
  opacity: 0.8;
  line-height: 1.6;
  text-align: center;
  font-size: 14px;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  color: var(--light);
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background-color: var(--dark);
  color: var(--secondary);
  font-size: 18px;
}

.comparison-table tr:hover {
  background-color: rgba(255, 46, 99, 0.05);
}

.highlight {
  background-color: rgba(255, 46, 99, 0.1);
  border-left: 4px solid var(--primary);
}

.check {
  color: #32cd32;
  font-size: 20px;
}

.cross {
  color: var(--primary);
  font-size: 20px;
}

/* Animation classes */
.glowing {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255, 46, 99, 0.5);
  }
  to {
    box-shadow:
      0 0 20px rgba(255, 46, 99, 0.8),
      0 0 30px rgba(8, 217, 214, 0.7);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: var(--dark);
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  position: relative;
  border: 1px solid var(--primary);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--light);
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--secondary);
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--light);
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgb(255, 255, 255);
  color: var(--dark);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 10px rgba(8, 217, 214, 0.2);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 46, 99, 0.3);
}

/* ===================================
   VIDEO SECTION
   =================================== */
.video-section {
  position: relative;
  padding: 80px 0;
  width: 100%;
  background:
    linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
    url("midia/video-background.jpg") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  z-index: 1;
}

.video-section .container {
  position: relative;
  z-index: 2;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
  background: #000;
}

/* Desktop */
@media (min-width: 769px) {
    .video-section {
        padding: 100px 0;
    }
}

/* Mobile - Centralizado */
@media (max-width: 768px) {
    .video-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .video-section .container {
        width: 100%;
        padding: 20px;
    }
    
    .video-wrapper {
        margin: 0 auto 20px;
        max-width: 100%;
    }
}

/* Services Section com overlap */
.services-overlap {
  position: relative;
  z-index: 10;
  margin-top: -250px;
  background: white;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
  padding-top: 100px;
}

.services-overlap h2 {
  margin-top: 0;
}

/* ===================================
   MOBILE - PARALLAX ATIVO
   =================================== */
@media (max-width: 768px) {
  .hero {
    height: 100vh !important;
    padding-bottom: 100px !important;
    /* MANTÉM background-attachment: fixed para parallax em mobile */
  }

  .services-overlap {
    margin-top: -100px;
    border-radius: 30px 30px 0 0;
    padding-top: 60px;
  }

  .video-section {
    padding: 60px 0;
  }

  .video-wrapper {
    padding: 0 15px;
  }

  .video-wrapper video {
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .services-overlap {
    margin-top: -60px;
    border-radius: 20px 20px 0 0;
    padding-top: 40px;
  }

  .video-section {
    padding: 40px 0;
  }

  .video-wrapper {
    padding: 0 10px;
  }

  .video-wrapper video {
    border-radius: 10px;
  }
}
.btn-center-wrapper {
  text-align: center;
  margin-top: 20px; /* ajuste conforme necessário */
}
.btn-centered {
  display: block;
  margin: 20px auto 0 auto;
  width: fit-content; /* ou defina uma largura específica */
}
/* Selo no Header - Responsivo */

.header-badge {
  position: absolute;
  z-index: 1000;
  animation: pulse-badge 2s infinite;
}

.header-badge img {
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header-badge img:hover {
  transform: scale(1.1);
}

/* Desktop */
@media (min-width: 769px) {
  .header-badge {
    top: 15px;
    right: 30px;
  }

  .header-badge img {
    width: 90px;
    height: 90px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header-badge {
    top: 10px;
    right: 15px;
  }

  .header-badge img {
    width: 55px;
    height: 55px;
  }
}

@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
