:root {
    --primary-color: #E85934;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-text: #f5f5f5;
    --gray-text: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
}

/* ===== HEADER ULTRA PREMIUM ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(236, 137, 36, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
  }
  
  header.scrolled {
    padding: 20px 8%;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(236, 137, 36, 0.2);
  }
  
  header.hidden {
    transform: translateY(-100%);
  }
  
  /* LOGO ANIMADA */
  .logo {
    height: 90px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    filter: drop-shadow(0 5px 15px rgba(236, 137, 36, 0.2));
  }
  
  .logo::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, 
      rgba(236, 137, 36, 0.4) 0%, 
      transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
  }
  
  .logo:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 5px 20px rgba(236, 137, 36, 0.4));
  }
  
  .logo:hover::before {
    opacity: 1;
  }
  
  header.scrolled .logo {
    height: 55px;
    filter: drop-shadow(0 3px 10px rgba(236, 137, 36, 0.1));
  }
  
  /* NAVEGAÇÃO PREMIUM */
  .navbar {
    display: flex;
    gap: 50px;
    position: relative;
  }
  
  .navbar a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
  }
  
  .navbar a:hover {
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(236, 137, 36, 0.4);
  }
  
  .navbar a::before,
  .navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
      var(--primary-color) 0%, 
      var(--secondary-color) 100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .navbar a::before {
    top: 0;
    left: 0;
  }
  
  .navbar a::after {
    bottom: 0;
    right: 0;
  }
  
  .navbar a:hover::before,
  .navbar a:hover::after {
    width: 100%;
  }
  
  /* EFEITO ATIVO */
  .navbar a.active {
    color: var(--primary-color);
  }
  
  .navbar a.active::before,
  .navbar a.active::after {
    width: 100%;
  }
  
  /* MENU TOGGLE ANIMADO */
  .menu-toggle {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    background: rgba(236, 137, 36, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(236, 137, 36, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.4s;
  }
  
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light-text);
    position: absolute;
    left: 8px;
    transition: all 0.4s;
  }
  
  .menu-toggle span:nth-child(1) {
    top: 12px;
  }
  
  .menu-toggle span:nth-child(2) {
    top: 19px;
  }
  
  .menu-toggle span:nth-child(3) {
    top: 26px;
  }
  
  .menu-toggle.active {
    background: rgba(236, 137, 36, 0.2);
    border-color: rgba(236, 137, 36, 0.4);
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* EFEITO DE PARTÍCULAS */
  .header-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: floatParticle 10s infinite linear;
  }
  
  @keyframes floatParticle {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 0.8; }
    100% { transform: translate(100px, -100px); opacity: 0; }
  }
  
  /* RESPONSIVIDADE */
  @media (max-width: 1200px) {
    .navbar {
      gap: 35px;
    }
    
    .navbar a {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 992px) {
    .navbar {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      border-left: 1px solid rgba(236, 137, 36, 0.1);
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
      z-index: 1000;
    }
    
    .navbar.active {
      right: 0;
    }
    
    .menu-toggle {
      display: block;
    }
    
    .logo {
      height: 70px;
    }
    
    header.scrolled .logo {
      height: 50px;
    }
  }
  
  @media (max-width: 576px) {
    header {
      padding: 25px 5%;
    }
    
    .logo {
      height: 60px;
    }
    
    header.scrolled .logo {
      height: 45px;
    }
    
    .navbar {
      width: 250px;
    }
  }
/* ===== HERO SECTION WITH TECH PARTICLES ===== */
/* ===== HERO SECTION - VERSÃO 100% FUNCIONAL ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: -webkit-fill-available;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    overflow: hidden;
    background-color: #0E0B0B;
    box-sizing: border-box;
    isolation: isolate;
}

#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23E85934"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23E85934"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23E85934"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 3;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg) translateZ(0);
}

.hero-content {
    max-width: 600px;
    z-index: 4;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--light-text), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 10px 20px rgba(232, 89, 52, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(232, 89, 52, 0.4);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* MOBILE - AJUSTES DEFINITIVOS */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: -webkit-fill-available;
        padding-bottom: 0;
    }
    
    .hero-wave {
        height: 80px;
        bottom: -1px;
        background-size: 100% 80px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 5%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-wave {
        height: 60px;
        background-size: 100% 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* ===== SERVICES SECTION - VERSÃO CORRIGIDA ===== */
.services {
    padding: 120px 8% 60px; /* Reduzido o padding-bottom de 180px para 60px */
    position: relative;
    overflow: visible; /* Alterado de hidden para visible */
    background: linear-gradient(to bottom, 
        #0D0D0D 0%, 
        #0D0D0D 40%, 
        #1A0E0B 50%, 
        #2A130E 60%, 
        #411B11 70%, 
        #5C2515 80%, 
        #7A321B 90%,
        #9C3F22 100%);
    z-index: 1; /* Reduzido de 2 para 1 */
}

/* Efeitos de luz ajustados */
.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 137, 36, 0.15) 0%, rgba(232,89,52,0) 70%);
    filter: blur(30px);
    z-index: 0;
    animation: floatLight 12s infinite alternate ease-in-out;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 137, 36, 0.1) 0%, rgba(232,89,52,0) 70%);
    filter: blur(40px);
    z-index: 0;
    animation: floatLight 15s infinite alternate-reverse ease-in-out;
}

@keyframes floatLight {
    0% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
    100% { transform: translate(-20px, -20px); }
}

/* DIVISOR ENTRE SEÇÕES */
.section-divider {
    height: 1px;
    background: transparent;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

/* ESTILOS DO TÍTULO DA SEÇÃO */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3; /* Aumentado para garantir visibilidade */
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.section-title p {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* GRID DE SERVIÇOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* CARDS DE SERVIÇO */
.service-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.9));
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(232, 89, 52, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(232,89,52,0.08) 0%, rgba(232,89,52,0) 50%);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(232, 89, 52, 0.25);
    border-color: rgba(232, 89, 52, 0.3);
}

/* ÍCONES E CONTEÚDO */
.service-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(232, 89, 52, 0.4));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.service-card:hover h3::after {
    width: 70px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* LISTA DE RECURSOS */
.service-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    transition: transform 0.3s;
}

.service-card:hover .feature-item {
    transform: translateX(5px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(232, 89, 52, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    background-color: rgba(232, 89, 52, 0.25);
    transform: rotate(10deg);
}

.feature-text h4 {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.92rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* BOTÃO */
.service-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-right: 10px;
}

.service-btn::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.service-btn:hover {
    color: var(--light-text);
    transform: translateX(5px);
}

.service-btn:hover::after {
    width: 100%;
}

.service-btn i {
    margin-left: 8px;
    transition: all 0.3s;
}

.service-btn:hover i {
    margin-left: 12px;
    transform: rotate(-45deg);
    filter: drop-shadow(0 0 4px rgba(232, 89, 52, 0.6));
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .services {
        padding: 80px 5% 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 30px;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 8% 150px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, 
        #9D4122 0%,
        #7A321B 10%,
        #5C2515 20%,
        #411B11 30%,
        #2A130E 40%,
        #1A0E0B 50%,
        #0D0D0D 60%,
        #0D0D0D 100%);
    margin-top: -80px;
    z-index: 1;
}

/* Efeitos de luz */
.about::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236,137,36,0.2) 0%, rgba(236,137,36,0) 70%);
    filter: blur(50px);
    z-index: 0;
    animation: pulseLight 8s infinite alternate;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,89,52,0.15) 0%, rgba(232,89,52,0) 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseLight 12s infinite alternate-reverse;
}

@keyframes pulseLight {
    0% { opacity: 0.3; transform: scale(0.95); }
    100% { opacity: 0.7; transform: scale(1.05); }
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(232,89,52,0.15) 0%, rgba(232,89,52,0) 50%);
    z-index: 1;
    transition: all 0.5s ease;
}

.about-image:hover::before {
    background: linear-gradient(45deg, rgba(232,89,52,0.25) 0%, rgba(232,89,52,0) 70%);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

.about-image:hover img {
    transform: scale(1.08) rotate(-1deg);
    filter: brightness(1.05) contrast(1.05);
}

.about-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 25px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--light-text);
    transition: width 0.4s ease;
}

.about-content:hover h2::after {
    width: 100px;
}

.about-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    position: relative;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    min-width: 120px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--light-text);
    transition: width 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
    width: 100%;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    position: absolute;
    right: -15px;
    top: 5px;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.6);
}

.stat-label {
    font-size: clamp(0.8rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--light-text);
}

/* Responsividade */
@media (max-width: 992px) {
    .about {
        flex-direction: column;
        gap: 40px;
        padding: 100px 8% 120px;
    }
    
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        width: 100%;
        text-align: center;
    }
    
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stats {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 80px 5% 100px;
    }
    
    .stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: calc(50% - 15px);
        padding: 15px;
    }
}
/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
    --primary-color: #EC8924; /* Laranja vibrante */
    --secondary-color: #6C3DF2; /* Roxo elétrico */
    --dark-bg: #0D0D0D; /* Fundo escuro */
    --darker-bg: #080808; /* Fundo mais escuro */
    --light-text: #FFFFFF; /* Texto claro */
    --gray-text: #B8B8B8; /* Texto cinza */
    --glow-intensity: 0.8; /* Intensidade do brilho */
  }
  
  /* ===== ESTILOS DO PORTFÓLIO ===== */
  .portfolio {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    margin-top: -80px;
    isolation: isolate;
  }
  
  /* EFEITOS DE BORDA CURVADA DINÂMICOS */
  .portfolio::before,
  .portfolio::after {
    content: '';
    position: absolute;
    top: 0;
    width: 400px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    z-index: -1;
    opacity: 0.7;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .portfolio::before {
    left: 0;
    border-bottom-right-radius: 200px;
    transform: translateX(-50%) scaleY(1.5);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
  }
  
  .portfolio::after {
    right: 0;
    border-bottom-left-radius: 200px;
    transform: translateX(50%) scaleY(1.5);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  }
  
  .portfolio:hover::before {
    transform: translateX(-40%) scaleY(1.6) rotate(-2deg);
    opacity: 0.9;
  }
  
  .portfolio:hover::after {
    transform: translateX(40%) scaleY(1.6) rotate(2deg);
    opacity: 0.9;
  }
  
  /* TÍTULO DA SEÇÃO */
  .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .section-title p {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* GRID DE PORTFÓLIO DINÂMICO */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  
  /* ITENS DO PORTFÓLIO SUPER DINÂMICOS */
  .portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform;
  }
  
  .portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
  }
  
  /* OVERLAY MODERNO */
  .portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 30%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 3;
    transform: translateY(0);
    transition: all 0.6s ease;
  }
  
  .portfolio-overlay h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
  }
  
  .portfolio-overlay h3 span {
    color: var(--light-text);
  }
  
  .portfolio-overlay p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.15s;
  }
  
  .portfolio-link {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
  }
  
  .portfolio-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  /* EFEITOS HOVER AVANÇADOS */
  .portfolio-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(236, 137, 36, 0.4);
  }
  
  .portfolio-item:hover .portfolio-image {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
  }
  
  .portfolio-item:hover .portfolio-overlay h3,
  .portfolio-item:hover .portfolio-overlay p,
  .portfolio-item:hover .portfolio-link {
    transform: translateY(0);
    opacity: 1;
  }
  
  .portfolio-item:hover .portfolio-link i {
    transform: translateX(5px);
  }
  
  .portfolio-link:hover {
    color: var(--light-text);
  }
  
  /* BORDA LUMINOSA ANIMADA */
  .portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
      var(--primary-color) 0%, 
      var(--secondary-color) 50%, 
      transparent 100%);
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s, background-position 0.8s;
    background-size: 200% 200%;
    background-position: 0% 0%;
    z-index: 4;
  }
  
  .portfolio-item:hover::after {
    opacity: 1;
    background-position: 100% 100%;
  }
  
  /* EFEITO DE LUZ INTERNA */
  .portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle at center, 
      rgba(236, 137, 36, 0.2) 0%, 
      transparent 70%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s;
  }
  
  .portfolio-item:hover::before {
    opacity: 1;
  }
  
  /* EFEITOS DE LUZ FLUTUANTES */
  .light-effect {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 137, 36, 0.15) 0%, rgba(236, 137, 36, 0) 70%);
    filter: blur(60px);
    z-index: 0;
    animation: floatOrbitReverse 18s infinite linear, pulse 8s infinite alternate;
  }
  
  .light-effect:nth-child(2) {
    top: 20%;
    left: -10%;
    background: radial-gradient(circle, rgba(108, 61, 242, 0.15) 0%, rgba(108, 61, 242, 0) 70%);
    animation: floatOrbit 22s infinite linear reverse, pulse 6s infinite alternate-reverse;
  }
  
  /* ANIMAÇÕES PERSONALIZADAS */
  @keyframes floatOrbit {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(100px, 50px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
  
  @keyframes floatOrbitReverse {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-80px, -30px) rotate(-180deg); }
    100% { transform: translate(0, 0) rotate(-360deg); }
  }
  
  @keyframes pulse {
    0% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 0.6; transform: scale(1.05); }
    100% { opacity: 0.3; transform: scale(0.95); }
  }
  
  @keyframes itemEntrance {
    from {
      opacity: 0;
      transform: scale(0.95) translateY(20px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
  
  /* RESPONSIVIDADE */
  @media (max-width: 1200px) {
    .portfolio::before,
    .portfolio::after {
      width: 300px;
    }
  }
  
  @media (max-width: 992px) {
    .portfolio {
      padding: 150px 0 90px;
    }
    
    .portfolio::before,
    .portfolio::after {
      width: 250px;
      height: 150px;
    }
    
    .portfolio-grid {
      gap: 25px;
    }
    
    .portfolio-item {
      height: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .portfolio {
      padding: 130px 0 70px;
      margin-top: -60px;
    }
    
    .section-title h2 {
      font-size: 2rem;
    }
    
    .portfolio::before,
    .portfolio::after {
      width: 200px;
      height: 120px;
    }
    
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
    
    .portfolio-item {
      height: 280px;
    }
    
    .portfolio-overlay {
      padding: 20px;
    }
    
    .portfolio-overlay h3 {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .portfolio::before,
    .portfolio::after {
      width: 150px;
      height: 100px;
    }
    
    .section-title h2 {
      font-size: 1.8rem;
    }
    
    .portfolio-overlay h3 {
      font-size: 1.3rem;
    }
    
    .portfolio-overlay p {
      font-size: 0.9rem;
    }
  }

/* ===== VARIÁVEIS ===== */
:root {
  --primary-color: #EC8924;
  --secondary-color: #6C3DF2;
  --dark-bg: #0A0A0A;
  --darker-bg: #070707;
  --light-text: #FFFFFF;
  --gray-text: #B8B8B8;
}

/* ===== TESTEMUNHOS ULTRA PREMIUM ===== */
.testimonials {
  padding: 150px 8%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  isolation: isolate;
}

/* EFEITOS DE LUZ 3D */
.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: floatOrbit 25s infinite linear;
}

.testimonials::before {
  top: -30%;
  left: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, 
    rgba(236, 137, 36, 0.25) 0%, 
    rgba(236, 137, 36, 0) 70%);
  animation: pulseGlow 8s infinite alternate, floatOrbit 30s infinite linear;
}

.testimonials::after {
  bottom: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, 
    rgba(108, 61, 242, 0.2) 0%, 
    rgba(108, 61, 242, 0) 70%);
  animation: pulseGlow 10s infinite alternate-reverse, floatOrbitReverse 35s infinite linear;
}

/* ANIMAÇÕES PERSONALIZADAS */
@keyframes pulseGlow {
  0% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 0.8; transform: scale(1.1); }
  100% { opacity: 0.4; transform: scale(0.9); }
}

@keyframes floatOrbit {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(100px, 50px) rotate(360deg); }
}

@keyframes floatOrbitReverse {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-100px, -50px) rotate(-360deg); }
}

/* SLIDER DE DEPOIMENTOS */
.testimonial-slider {
  max-width: 1000px;
  margin: 80px auto 0;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.testimonial-item {
  background: linear-gradient(145deg, #111111, #0A0A0A);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
  border: 1px solid rgba(236, 137, 36, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
              inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(236, 137, 36, 0.1) 0%, 
    rgba(108, 61, 242, 0.05) 50%, 
    transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s;
}

.testimonial-item.active {
  display: block;
  animation: fadeInUp 0.8s ease-out both;
}

.testimonial-item:hover {
  transform: translateY(-15px) scale(1.02) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 40px 80px rgba(236, 137, 36, 0.3),
              inset 0 0 0 1px rgba(236, 137, 36, 0.3);
  border-color: rgba(236, 137, 36, 0.4);
}

.testimonial-item:hover::before {
  opacity: 1;
}

/* EFEITO DE ENTRADA */
@keyframes fadeInUp {
  from { 
    opacity: 0;
    transform: translateY(50px) rotateX(20deg);
  }
  to { 
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* AVATAR DO CLIENTE - 3D EFFECT */
.client-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(236, 137, 36, 0.5),
              0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
}

.client-avatar::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 45deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s;
  filter: blur(10px);
}

.client-avatar:hover {
  transform: scale(1.15) rotateY(15deg);
  box-shadow: 0 0 50px rgba(236, 137, 36, 0.8),
              0 15px 40px rgba(0, 0, 0, 0.5);
}

.client-avatar:hover::before {
  opacity: 0.6;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.6s;
  transform-style: preserve-3d;
}

.client-avatar:hover img {
  transform: scale(1.08) rotateZ(-2deg);
  filter: brightness(1.1) contrast(1.1);
}

/* TEXTO DO DEPOIMENTO */
.testimonial-text {
  color: var(--light-text);
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.9;
  font-size: 1.25rem;
  position: relative;
  padding: 0 30px;
  font-weight: 300;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.5;
  position: absolute;
  font-family: serif;
  transition: all 0.4s;
}

.testimonial-text::before {
  top: -20px;
  left: 0;
}

.testimonial-text::after {
  bottom: -40px;
  right: 0;
}

.testimonial-item:hover .testimonial-text::before,
.testimonial-item:hover .testimonial-text::after {
  opacity: 0.8;
  transform: scale(1.2);
}

/* INFORMAÇÕES DO CLIENTE */
.client-info {
  margin-top: 40px;
}

.client-name {
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.4s;
}

.testimonial-item:hover .client-name {
  color: var(--primary-color);
  text-shadow: 0 2px 10px rgba(236, 137, 36, 0.5);
}

.client-role {
  color: var(--gray-text);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.client-role::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-color) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s, width 0.4s;
}

.testimonial-item:hover .client-role::after {
  opacity: 1;
  width: 80px;
}

/* CONTROLES DO SLIDER - PREMIUM */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 30px;
  position: relative;
}

.slider-prev, 
.slider-next {
  background: rgba(236, 137, 36, 0.1);
  border: 1px solid rgba(236, 137, 36, 0.3);
  color: var(--gray-text);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 15px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.slider-prev::before,
.slider-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, 
    rgba(236, 137, 36, 0.3) 0%, 
    rgba(108, 61, 242, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.slider-prev:hover, 
.slider-next:hover {
  background: rgba(236, 137, 36, 0.2);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(236, 137, 36, 0.4);
}

.slider-prev:hover::before,
.slider-next:hover::before {
  opacity: 1;
}

/* PONTOS DE NAVEGAÇÃO */
.slider-dots {
  display: flex;
  gap: 20px;
}

.slider-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(184, 184, 184, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(236, 137, 36, 0.1);
}

.slider-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, 
    var(--primary-color) 0%, 
    var(--secondary-color) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.slider-dot:hover {
  transform: scale(1.5);
  background-color: transparent;
}

.slider-dot.active {
  transform: scale(1.5);
  background-color: transparent;
  box-shadow: 0 0 15px rgba(236, 137, 36, 0.5);
}

.slider-dot.active::before,
.slider-dot:hover::before {
  opacity: 1;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .testimonials {
    padding: 120px 5%;
  }
  
  .testimonial-item {
    padding: 40px 30px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 100px 5%;
  }
  
  .testimonial-item {
    padding: 30px 20px;
  }
  
  .client-avatar {
    width: 90px;
    height: 90px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .slider-prev, 
  .slider-next {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .slider-dot {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 576px) {
  .testimonials {
    padding: 80px 5%;
  }
  
  .client-avatar {
    width: 80px;
    height: 80px;
  }
  
  .testimonial-text {
    padding: 0 15px;
  }
  
  .slider-controls {
    gap: 20px;
    margin-top: 40px;
  }
  
  .slider-prev, 
  .slider-next {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .slider-dots {
    gap: 15px;
  }
}
/* ===== CTA SECTION - ULTRA PREMIUM ===== */
.cta {
    padding: 160px 8%;
    background: linear-gradient(135deg, #080808 0%, #0A0A0A 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  
  /* EFEITOS DE LUZ 3D DINÂMICOS */
  .cta::before,
  .cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    animation: floatOrbit 30s infinite linear;
  }
  
  .cta::before {
    top: -40%;
    left: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, 
      rgba(236, 137, 36, 0.35) 0%, 
      rgba(236, 137, 36, 0) 70%);
    animation: pulseGlow 8s infinite alternate, floatOrbit 35s infinite linear;
  }
  
  .cta::after {
    bottom: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
      rgba(108, 61, 242, 0.25) 0%, 
      rgba(108, 61, 242, 0) 70%);
    animation: pulseGlow 10s infinite alternate-reverse, floatOrbitReverse 40s infinite linear;
  }
  
  /* ANIMAÇÕES PERSONALIZADAS */
  @keyframes pulseGlow {
    0% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 0.8; transform: scale(1.1); }
    100% { opacity: 0.4; transform: scale(0.95); }
  }
  
  @keyframes floatOrbit {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(360deg); }
  }
  
  @keyframes floatOrbitReverse {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-100px, -50px) rotate(-360deg); }
  }
  
  /* CONTEÚDO PRINCIPAL */
  .cta-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 70px;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(236, 137, 36, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
  }
  
  .cta-content:hover {
    transform: translateY(-10px) rotateX(1deg) rotateY(1deg);
    box-shadow: 0 40px 80px rgba(236, 137, 36, 0.4),
                inset 0 0 0 1px rgba(236, 137, 36, 0.4);
  }
  
  /* TÍTULO COM EFEITO ESPECIAL */
  .cta h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(90deg, #EC8924, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s infinite alternate;
  }
  
  @keyframes textShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }
  
  .cta h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      var(--primary-color) 50%, 
      transparent 100%);
    border-radius: 3px;
    transition: all 0.5s ease;
  }
  
  .cta-content:hover h2::after {
    width: 150px;
    background: linear-gradient(90deg, 
      var(--secondary-color) 0%, 
      var(--primary-color) 50%, 
      var(--secondary-color) 100%);
  }
  
  /* TEXTO DESCRITIVO */
  .cta p {
    color: var(--gray-text);
    margin-bottom: 50px;
    line-height: 1.9;
    font-size: 1.3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transition: all 0.5s ease;
  }
  
  .cta-content:hover p {
    color: var(--light-text);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  /* BOTÃO ULTRA PREMIUM */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, 
      var(--primary-color) 0%, 
      #e84a1a 100%);
    box-shadow: 0 15px 40px rgba(232, 89, 52, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
    transform-style: preserve-3d;
  }
  
  .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
      #e84a1a 0%, 
      var(--primary-color) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s;
  }
  
  .cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0) 60%
    );
    transform: rotate(30deg);
    z-index: -2;
    transition: all 0.8s ease;
  }
  
  .cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(232, 89, 52, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.2);
    color: white;
  }
  
  .cta-btn:hover::before {
    opacity: 1;
  }
  
  .cta-btn:hover::after {
    left: 100%;
    top: 100%;
  }
  
  .cta-btn i {
    margin-left: 12px;
    font-size: 1.1rem;
    transition: transform 0.4s ease;
  }
  
  .cta-btn:hover i {
    transform: translateX(8px) rotate(360deg);
  }
  
  /* EFEITO DE PARTÍCULAS DINÂMICAS */
  .cta-particle {
    position: absolute;
    background: rgba(236, 137, 36, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: floatParticle 15s infinite linear;
  }
  
  @keyframes floatParticle {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    20% { opacity: 0.8; }
    100% { transform: translate(100px, -100px) rotate(360deg); opacity: 0; }
  }
  
  /* RESPONSIVIDADE */
  @media (max-width: 1200px) {
    .cta h2 {
      font-size: 3rem;
    }
    
    .cta p {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 992px) {
    .cta {
      padding: 120px 5%;
    }
    
    .cta-content {
      padding: 50px 40px;
    }
    
    .cta h2 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .cta {
      padding: 100px 5%;
    }
    
    .cta-content {
      padding: 40px 30px;
    }
    
    .cta h2 {
      font-size: 2.2rem;
    }
    
    .cta p {
      font-size: 1.1rem;
    }
    
    .cta-btn {
      padding: 18px 40px;
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 576px) {
    .cta h2 {
      font-size: 1.8rem;
    }
    
    .cta p {
      font-size: 1rem;
    }
    
    .cta-btn {
      padding: 16px 35px;
      font-size: 1rem;
    }
    
    .cta-content {
      padding: 30px 20px;
    }
  }


/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 80px 8% 30px;
    position: relative;
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
    
    .stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--darker-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        height: auto;
        padding-bottom: 80px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .feature-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
.cta-particle {
    position: absolute;
    background: rgba(232, 89, 52, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(1px);
    will-change: transform;
}

/* Efeito de brilho nas partículas */
.cta-particle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.3;
    z-index: -1;
}

/* Estrutura Principal */
.space-faq {
  padding: 120px 8%;
  background: #0D0D0D;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cosmic-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Títulos */
.galaxy-title {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 15px;
  color: white;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(236, 137, 36, 0.5);
}

.neon-accent {
  color: #EC8924;
}

.subtitle {
  text-align: center;
  color: #B8B8B8;
  font-size: 1.2rem;
  margin-bottom: 50px;
}

/* Acordeão */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cosmic-accordion {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 137, 36, 0.3);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.cosmic-accordion:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(236, 137, 36, 0.3);
}

.accordion-btn {
  width: 100%;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.star-icon {
  color: #EC8924;
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.question {
  flex: 1;
}

.arrow-icon {
  font-size: 1.5rem;
  transition: transform 0.4s ease;
  color: #EC8924;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.panel-content {
  padding: 0 30px 25px;
  color: #B8B8B8;
  line-height: 1.7;
}

/* Efeitos Espaciais */
.star-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.star {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  animation: twinkle 2s infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.3; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.1); }
}

.rocket {
  position: absolute;
  font-size: 2.5rem;
  z-index: 1;
  animation: flyRocket 25s linear infinite;
  transform: translateX(-150px) rotate(-45deg);
  opacity: 0.7;
}

@keyframes flyRocket {
  0% { transform: translateX(-150px) rotate(-45deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateX(calc(100vw + 150px)) rotate(-45deg); opacity: 0; }
}

.comet {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, #EC8924, transparent);
  top: 20%;
  right: -100px;
  transform: rotate(-20deg);
  filter: blur(1px);
  animation: cometFly 40s linear infinite;
}

@keyframes cometFly {
  0% { right: -100px; opacity: 0; }
  10% { opacity: 1; }
  100% { right: 100%; opacity: 0; }
}

/* Responsivo */
@media (max-width: 768px) {
  .space-faq {
    padding: 80px 5%;
  }
  
  .galaxy-title {
    font-size: 2.4rem;
  }
  
  .accordion-btn {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .panel-content {
    padding: 0 20px 20px;
  }
  
  .rocket {
    font-size: 1.8rem;
  }
}

/* ===== SERVIÇOS COM ONDULAÇÕES (VERSÃO DINÂMICA) ===== */
.dynamic-services {
    position: relative;
    padding: 150px 8% 180px; /* Padding maior para a ondulação */
    background-color: #0E0B0B;
    color: var(--light-text);
    overflow: hidden;
}

/* ONDA SUPERIOR (MANTIDA DO SEU ESTILO ORIGINAL) */
.dynamic-services::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23E85934"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23E85934"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23E85934"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* CARDS DINÂMICOS (MANTENDO SUA IDENTIDADE) */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(145deg, rgba(25,25,25,0.9), rgba(15,15,15,0.9));
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(232, 89, 52, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* EFEITO DE LUZ AO PASSAR O MOUSE */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(232, 89, 52, 0.1),
        transparent
    );
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(232, 89, 52, 0.25);
    border-color: rgba(232, 89, 52, 0.4);
}

/* ÍCONES ANIMADOS */
.service-icon {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 10px rgba(232, 89, 52, 0.5));
}

/* TÍTULO COM EFEITO */
.service-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--light-text);
    position: relative;
    display: inline-block;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.4s;
}

.service-card:hover .service-title::after {
    width: 70px;
}

/* TECNOLOGIAS INTERATIVAS */
.service-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.service-techs span {
    background: rgba(232, 89, 52, 0.1);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.service-techs span:hover {
    background: rgba(232, 89, 52, 0.3);
    transform: translateY(-3px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .dynamic-services {
        padding: 100px 5% 150px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
}
  /* e pra manter o laranja destacado */
  .new-services .new-section-title h2 span:nth-child(2) {
    color: #EC8924;
  }
  /* Impede a rolagem horizontal no celular */
html, body {
    overflow-x: hidden;  /* Impede a rolagem horizontal */
    width: 100%; /* Garante que o conteúdo não ultrapasse a largura da tela */
}

/* Ajustes de responsividade */
@media (max-width: 768px) {
    /* Adicional: garantir que o conteúdo se ajuste corretamente em telas menores */
    body {
        overflow-x: hidden; /* Impede rolagem lateral */
    }
}

/* PROCESSO DE DESENVOLVIMENTO */
.process-section {
  padding: 100px 5%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(5, 5, 5, 0.98));
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(232, 89, 52, 0.08) 0%, transparent 50%);
  z-index: -1;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: var(--light-text);
}

.section-title span {
  color: var(--primary-color);
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-card {
  display: flex;
  margin-bottom: 40px;
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.8), rgba(15, 15, 15, 0.9));
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(232, 89, 52, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(8px);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(232, 89, 52, 0.2);
  border-color: rgba(232, 89, 52, 0.3);
}

.process-icon {
  width: 60px;
  height: 60px;
  background: rgba(232, 89, 52, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  color: var(--primary-color);
  font-size: 1.8rem;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}

.process-card:hover .process-icon {
  background: rgba(232, 89, 52, 0.25);
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(232, 89, 52, 0.4));
}

.process-connector {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: rgba(232, 89, 52, 0.3);
}

.process-content h3 {
  font-size: 1.4rem;
  color: var(--light-text);
  margin-bottom: 12px;
  position: relative;
}

.process-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.process-card:hover h3::after {
  width: 70px;
}

.process-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
}

.process-features {
  margin-top: 15px;
}

.process-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: transform 0.3s;
}

.process-features i {
  margin-right: 8px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.process-card:hover .process-features li {
  transform: translateX(5px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .process-card {
      flex-direction: column;
      padding: 25px;
  }
  
  .process-icon {
      margin-right: 0;
      margin-bottom: 20px;
  }
  
  .process-connector {
      display: none;
  }
}
/* ONDA SUPERIOR (Estilo igual ao seu, mas invertida) */
.process-section {
  position: relative;
  padding-top: 80px; /* Espaço para a onda */
  margin-top: -1px; /* Garante que cubra a seção anterior */
}

.process-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23e85934"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23e85934"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23e85934"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  /* Remova a transform: rotate() para manter a onda invertida naturalmente */
}
/* ONDA INTERNA NOS CARDS - VERSÃO FUNCIONAL */
.process-card {
  position: relative;
  overflow: hidden; /* Garante que a onda não ultrapasse o card */
}

.process-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 40" preserveAspectRatio="none"><path d="M0,0V20C200,15,400,10,600,15S1000,25,1200,20V0Z" fill="%23e85934" opacity="0.08"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0; /* Fica atrás do conteúdo */
  opacity: 20;
  transition: opacity 0.3s;
}

.process-card:hover::after {
  opacity: 0.3; /* Fica ainda mais transparente no hover */
}

.process-content {
  position: relative;
  z-index: 2; /* Garante que o texto fique acima da onda */
}

/* EFEITOS EXTRAS NOS CARDS */
.process-card {
  /* ... (mantenha seu código existente) ... */
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 1. EFEITO DE LUZ DINÂMICA */
.process-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      45deg,
      rgba(232, 89, 52, 0.05) 0%,
      rgba(232, 89, 52, 0) 50%
  );
  transform: rotate(30deg);
  z-index: 1;
  pointer-events: none;
  transition: all 0.6s ease;
  opacity: 0;
}

.process-card:hover::before {
  opacity: 1;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* 2. BORDAS ANIMADAS */
.process-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
      145deg,
      rgba(232, 89, 52, 0.3),
      rgba(232, 89, 52, 0)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: all 0.4s;
}

.process-card:hover::after {
  background: linear-gradient(
      145deg,
      rgba(232, 89, 52, 0.6),
      rgba(232, 89, 52, 0.1)
  );
}

/* 3. PARTÍCULAS FLUTUANTES */
.process-card .particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.process-card .particle {
  position: absolute;
  background: rgba(232, 89, 52, 0.15);
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}
.process-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.process-card::before {
  /* ... */
  background: radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(232, 89, 52, 0.1),
      transparent 70%
  );
}