:root {
    --primary: #00f7ff;
    --secondary: #6d30ff;
    --dark: #080b1a;
    --darker: #05070f;
    --light: #ffffff;
    --accent: #ff2e93;
    --text: #e0e0ff;
    --glass-bg: rgba(20, 33, 61, 0.6);
    --card-bg: rgba(30, 43, 71, 0.4);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s ease;
  }
  
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Compensa a altura do header fixo */
  --scroll-timeline: 800ms;
  --scroll-ease: cubic-bezier(0.22, 1, 0.36, 1);
}  .grecaptcha-badge {
    display: none !important;
   }
  
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/1462889/pattern.svg');
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Efeito de iluminação de fundo */
  .bg-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 48, 255, 0.15) 0%, rgba(0, 247, 255, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(40px);
    animation: glow-move 25s infinite alternate ease-in-out;
  }
  
  .bg-glow:nth-child(1) {
    top: -20%;
    right: -20%;
  }
  
  .bg-glow:nth-child(2) {
    bottom: -30%;
    left: -20%;
    background: radial-gradient(circle, rgba(255, 46, 147, 0.15) 0%, rgba(109, 48, 255, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
    animation-delay: -5s;
  }
  
  @keyframes glow-move {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 5%) scale(1.05); }
    100% { transform: translate(-5%, -5%) scale(0.95); }
  }
  
  /* HEADER E NAVEGAÇÃO */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(8, 11, 26, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 1px;
  }
  
  .logo span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 2px;
  }
  
  .logo-icon {
    margin-right: 12px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
  }
  
  .logo-icon img {
    vertical-align: middle;
  }
  
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin: 0 15px;
    position: relative;
  }
  
  .nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
    transition: var(--transition);
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* HERO SECTION */
  .hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 11, 26, 0.9) 0%, rgba(5, 7, 15, 0.85) 100%);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: badge-float 3s ease-in-out infinite;
  }

  .hero-badge span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .hero h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--light);
  }

  .hero h1 .highlight {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
  }

  .hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(224, 224, 255, 0.9);
    line-height: 1.5;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
    color: rgba(224, 224, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: linear-gradient(45deg, var(--accent), #ff6b35);
    box-shadow: 0 10px 30px rgba(255, 46, 147, 0.4);
    transform: scale(1.1);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
  }

  .hero-guarantee {
    margin-top: 30px;
    padding: 15px 25px;
    background: rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 50px;
    display: inline-block;
  }

  .hero-guarantee span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
  }

  @keyframes badge-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
  }
  
  @keyframes text-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  
  .btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(0, 247, 255, 0.3);
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
  }
  
  .btn:hover::before {
    opacity: 1;
  }
  
  .btn span {
    position: relative;
    z-index: 2;
  }
  
  .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 247, 255, 0.4);
  }
  
  /* FEATURES SECTION */
  .features {
    padding: 120px 0;
    position: relative;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 70px;
  }
  
  .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .section-title p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(224, 224, 255, 0.8);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transition: height 0.5s ease;
  }
  
  .feature-card:hover::before {
    height: 100%;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .feature-icon {
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(109, 48, 255, 0.1));
    color: var(--primary);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 247, 255, 0.15);
  }
  
  .feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--light);
    transition: var(--transition);
  }
  
  .feature-card:hover h3 {
    color: var(--primary);
  }
  
  .feature-card p {
    font-size: 15px;
    color: rgba(224, 224, 255, 0.7);
    flex-grow: 1;
  }
  
  /* Resto dos estilos CSS, incluindo seções about, cta, contact e footer */
  .about {
    padding: 120px 0;
    position: relative;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(to right, var(--light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: rgba(224, 224, 255, 0.8);
  }
  
  .about-text .btn {
    margin-top: 20px;
  }
  
  .about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
  }
  
  
  /* PORTFOLIO SECTION */
  .portfolio {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.02) 0%, rgba(109, 48, 255, 0.02) 100%);
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
  }
  
  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.9) 0%, rgba(109, 48, 255, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
  }
  
  .portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
  }
  
  .portfolio-info {
    text-align: center;
    color: var(--light);
    padding: 20px;
  }
  
  .portfolio-info h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .portfolio-info p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
  }
  
  .portfolio-link {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
  }
  
  .portfolio-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }

  /* CTA SECTION */
  .cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.05) 0%, rgba(109, 48, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
  }
  
  .cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('https://assets.codepen.io/1462889/pattern.svg');
    opacity: 0.05;
    z-index: 0;
  }
  
  .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .cta h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
  }
  
  .cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(224, 224, 255, 0.8);
  }
  
  /* CONTATO */
  .contact {
    padding: 120px 0;
    position: relative;
  }
  
  .contact-form {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .contact-form::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
  }
  
  .contact-form::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 46, 147, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
  }
  
  .form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--light);
  }
  
  .form-group input, 
  .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 16px;
    transition: var(--transition);
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .form-group input:focus, 
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 247, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
  }
  
  .btn-submit {
    width: 100%;
    padding: 16px;
    margin-top: 15px;
  }
  
  /* FOOTER */
  footer {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    padding: 80px 0 30px;
    position: relative;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light);
  }
  
  .footer-logo span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .footer-col p {
    margin-bottom: 25px;
    color: rgba(224, 224, 255, 0.7);
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transform: translateY(-5px);
  }
  
  .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(224, 224, 255, 0.5);
  }
  
  /* ANIMAÇÕES E RESPONSIVIDADE */
  @media screen and (max-width: 992px) {
    .hero h1 {
      font-size: 48px;
    }
    
    .about-content {
      grid-template-columns: 1fr;
    }
    
    .about-image {
      order: -1;
      margin-bottom: 40px;
    }
    
    .portfolio-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .hero {
      padding: 120px 0 80px;
    }
    
    .hero h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }
    
    .hero-subtitle {
      font-size: 16px;
      margin-bottom: 30px;
    }
    
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 30px 0;
    }
    
    .stat-number {
      font-size: 24px;
    }
    
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .btn {
      width: 250px;
    }
    
    .hero-guarantee {
      margin-top: 20px;
      padding: 12px 20px;
    }
    
    .hero-badge {
      margin-bottom: 20px;
    }
    
    .section-title h2 {
      font-size: 32px;
    }
    
    .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .portfolio-image {
      height: 200px;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background: rgba(8, 11, 26, 0.95);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: 0.5s;
      backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
      right: 0;
    }
    
    .nav-links li {
      margin: 15px 0;
    }
    
    .contact-form {
      padding: 30px;
    }
  }
  
  /* ELEMENTOS FUTURISTAS EXTRAS */
  .cyber-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
      transparent, 
      var(--primary), 
      var(--primary), 
      transparent);
    opacity: 0.3;
    z-index: 0;
  }
  
  .cyber-line.top {
    top: 0;
  }
  
  .cyber-line.bottom {
    bottom: 0;
  }
  
  /* Partículas flutuantes */
  .particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  
  .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-up var(--duration) infinite ease-in-out;
  }
  
  @keyframes float-up {
    0% {
      transform: translateY(100vh) scale(0);
      opacity: 0;
    }
    20% {
      opacity: 0.5;
    }
    100% {
      transform: translateY(-100px) scale(1);
      opacity: 0;
    }
  }

  /* ESTILOS PARA A SEÇÃO PROMOCIONAL */
  .promotion-box {
    background: linear-gradient(135deg, 
      rgba(0, 247, 255, 0.15) 0%, 
      rgba(109, 48, 255, 0.15) 50%, 
      rgba(255, 46, 147, 0.15) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 247, 255, 0.3);
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: promotion-pulse 3s infinite alternate ease-in-out;
  }

  .promotion-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
      transparent, 
      rgba(0, 247, 255, 0.1), 
      transparent, 
      rgba(109, 48, 255, 0.1),
      transparent);
    animation: promotion-shine 4s infinite linear;
    pointer-events: none;
  }

  .promotion-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent), #ff6b35);
    color: var(--light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 46, 147, 0.4);
    animation: promotion-bounce 2s infinite ease-in-out;
  }

  .promotion-price {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .old-price {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 400;
    position: relative;
  }

  .old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent), #ff6b35);
    transform: translateY(-50%);
    animation: strike-through 0.8s ease-out;
  }

  .new-price {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 247, 255, 0.5);
    animation: price-glow 2s infinite alternate ease-in-out;
  }

  .promotion-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
  }

  .promotion-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
  }

  .promotion-features span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    padding: 8px 15px;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(0, 247, 255, 0.2);
    transition: var(--transition);
  }

  .promotion-features span:hover {
    background: rgba(0, 247, 255, 0.2);
    transform: translateY(-2px);
  }

  .btn-promotion {
    background: linear-gradient(45deg, var(--accent), #ff6b35, var(--primary));
    background-size: 200% 200%;
    animation: gradient-shift 3s infinite ease-in-out;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
      0 10px 30px rgba(255, 46, 147, 0.4),
      0 0 20px rgba(0, 247, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .btn-promotion:hover {
    transform: translateY(-3px);
    box-shadow: 
      0 12px 25px rgba(255, 46, 147, 0.5),
      0 0 25px rgba(0, 247, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .promotion-disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    font-style: italic;
    text-align: center;
  }

  /* ANIMAÇÕES PARA A PROMOÇÃO */
  @keyframes promotion-pulse {
    0% { 
      border-color: rgba(0, 247, 255, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    100% { 
      border-color: rgba(255, 46, 147, 0.5);
      box-shadow: 0 25px 50px rgba(255, 46, 147, 0.2);
    }
  }

  @keyframes promotion-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  }

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

  @keyframes strike-through {
    0% { width: 0; }
    100% { width: 100%; }
  }

  @keyframes price-glow {
    0% { 
      text-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
    }
    100% { 
      text-shadow: 0 0 30px rgba(109, 48, 255, 0.8), 0 0 40px rgba(0, 247, 255, 0.6);
    }
  }

  @keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* RESPONSIVIDADE PARA A PROMOÇÃO */
  @media screen and (max-width: 768px) {
    .promotion-box {
      padding: 30px 20px;
      margin: 30px 0;
    }
    
    .new-price {
      font-size: 36px;
    }
    
    .promotion-features {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    
    .btn-promotion {
      font-size: 16px;
      padding: 16px 30px;
    }
  }

  /* BOTÃO CTA NO NAVBAR */
  .btn-nav-cta {
    background: linear-gradient(45deg, var(--primary), var(--secondary)) !important;
    color: var(--light) !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    margin-left: 15px !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(0, 247, 255, 0.3) !important;
  }

  .btn-nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 247, 255, 0.4) !important;
    color: var(--light) !important;
  }

  .btn-nav-cta::after {
    display: none !important;
  }

  /* NOVA SEÇÃO DE PRICING */
  .pricing-container {
    display: flex;
    justify-content: center;
    margin: 50px 0;
  }

  .pricing-card {
    background: linear-gradient(135deg, 
      rgba(0, 247, 255, 0.1) 0%, 
      rgba(109, 48, 255, 0.1) 50%, 
      rgba(255, 46, 147, 0.1) 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 247, 255, 0.3);
    box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
    animation: pricing-glow 4s infinite alternate ease-in-out;
  }

  .pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary);
  }

  .pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--accent), #ff6b35);
    color: var(--light);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 46, 147, 0.4);
    animation: badge-pulse 2s infinite ease-in-out;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .pricing-price .old-price {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
  }

  .pricing-price .new-price {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
  }

  .pricing-price .price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
  }

  .pricing-features {
    margin: 30px 0;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    color: var(--light);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .feature-icon {
    font-size: 18px;
    min-width: 25px;
  }

  .btn-pricing {
    width: 100%;
    background: linear-gradient(45deg, var(--accent), #ff6b35, var(--primary));
    background-size: 200% 200%;
    color: var(--light);
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 
      0 15px 35px rgba(255, 46, 147, 0.4),
      0 0 25px rgba(0, 247, 255, 0.3);
    animation: gradient-shift 3s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }

  .btn-pricing:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
      0 20px 40px rgba(255, 46, 147, 0.6),
      0 0 35px rgba(0, 247, 255, 0.5);
  }

  /* PROCESSO DE PEDIDO */
  .order-process {
    margin: 60px 0;
    text-align: center;
  }

  .order-process h3 {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--light);
  }

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

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.3);
  }

  .step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--light);
  }

  .step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
  }

  /* CAIXA DE GARANTIA */
  .guarantee-box {
    background: rgba(0, 247, 255, 0.1);
    border: 2px solid rgba(0, 247, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
    text-align: center;
  }

  .guarantee-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
  }

  .guarantee-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
  }

  /* ANIMAÇÕES PARA PRICING */
  @keyframes pricing-glow {
    0% { 
      border-color: rgba(0, 247, 255, 0.3);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }
    100% { 
      border-color: rgba(255, 46, 147, 0.5);
      box-shadow: 0 30px 60px rgba(255, 46, 147, 0.2);
    }
  }

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

  /* RESPONSIVIDADE PARA PRICING */
  @media screen and (max-width: 768px) {
    .pricing-card {
      padding: 30px 20px;
      margin: 20px;
    }

    .pricing-card.featured {
      transform: none;
    }
    
    .pricing-price .new-price {
      font-size: 42px;
    }
    
    .process-steps {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .btn-pricing {
      font-size: 18px;
      padding: 16px 30px;
    }

    .btn-nav-cta {
      display: inline-block !important;
      margin-top: 10px !important;
    }
  }

/* Animação para o botão "Contratar Agora" no menu de navegação */
.btn-nav-cta {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s !important;
  background: rgba(14, 17, 34, 0.9) !important;
  border-radius: 30px !important;
  padding: 8px 20px !important;
  border: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

/* Efeito de borda gradiente animada */
.btn-nav-cta::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 400% 400%;
  border-radius: 32px;
  animation: border-animate 4s linear infinite;
}

@keyframes border-animate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Fundo do botão - layer interno para criar o efeito de borda */
.btn-nav-cta::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: rgba(14, 17, 34, 0.95);
  border-radius: 28px;
  z-index: -1;
}

/* Efeito de hover */
.btn-nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4) !important;
}

.btn-nav-cta:hover::before {
  animation: border-animate 2s linear infinite;
}

/* Efeito de clique/pressionar */
.btn-nav-cta:active {
  transform: translateY(1px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.1s, box-shadow 0.1s !important;
}

/* Estilização do texto */
.btn-nav-cta span {
  position: relative;
  z-index: 2;
  color: #ffffff !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 15px !important;
}

/* Animação para o botão "Aproveitar oferta especial" */
.whatsapp-redirect {
  position: relative !important;
  overflow: hidden !important;
  background: rgba(14, 17, 34, 0.9) !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 15px 35px !important;
}

/* Efeito de borda gradiente animada para o botão de promoção */
.whatsapp-redirect::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary), var(--accent));
  background-size: 400% 400%;
  border-radius: 32px;
  animation: border-animate-promo 5s linear infinite;
}

@keyframes border-animate-promo {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Fundo interno do botão de promoção */
.whatsapp-redirect::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: rgba(14, 17, 34, 0.95);
  border-radius: 28px;
  z-index: -1;
}

/* Efeito de hover para o botão de promoção */
.whatsapp-redirect:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}

.whatsapp-redirect:hover::before {
  animation: border-animate-promo 3s linear infinite;
}

/* Efeito de clique/pressionar para o botão de promoção */
.whatsapp-redirect:active {
  transform: translateY(1px) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.1s, box-shadow 0.1s !important;
}

/* Estilização do texto do botão de promoção */
.whatsapp-redirect span {
  position: relative;
  z-index: 5;
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-size: 18px !important;
}

@media screen and (max-width: 768px) {
  .whatsapp-redirect {
    padding: 14px 25px !important;
  }
  
  .whatsapp-redirect::before {
    animation: border-animate-promo 8s linear infinite;
  }
  
  .whatsapp-redirect span {
    font-size: 16px !important;
  }
}
