/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme Colors */
    --primary-color: #00d4ff;
    --secondary-color: #0099cc;
    --accent-color: #66e0ff;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-secondary: linear-gradient(135deg, #66e0ff 0%, #00d4ff 100%);
}

[data-theme="dark"] {
    /* Dark Theme Colors */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e0;
    --bg-primary: #1a202c;
    --bg-secondary: #2d3748;
    --bg-card: #2d3748;
    --border-color: #4a5568;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

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

/* Navigation Styles */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

[data-theme="dark"] #navbar {
    background: rgba(26, 32, 44, 0);
}

#navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#navbar .nav-logo .logo-img {
    height: 40px;
    width: auto;
}

#navbar .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

#navbar .nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

#navbar .nav-link:hover {
    color: var(--primary-color);
}

#navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

#navbar .nav-link:hover::after {
    width: 100%;
}

#navbar .nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#navbar .theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar .theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(180deg);
}

#navbar .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

#navbar .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
/* Estilos originais mantidos */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

#home .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* NOVOS ELEMENTOS ADICIONADOS */

/* Grid de listras sutis */
#home .grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

#home .grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#home .grid-lines.horizontal {
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 49px,
    rgba(255, 255, 255, 0.02) 50px,
    rgba(255, 255, 255, 0.02) 51px
  );
}

#home .grid-lines.vertical {
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 49px,
    rgba(255, 255, 255, 0.02) 50px,
    rgba(255, 255, 255, 0.02) 51px
  );
}

/* Formas geométricas modernas */
#home .geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

#home .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0.05;
  animation: geometricFloat 8s ease-in-out infinite;
}

#home .shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

#home .shape-4 {
  width: 120px;
  height: 120px;
  bottom: 40%;
  right: 20%;
  animation-delay: 1s;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  border-radius: 0;
}

@keyframes geometricFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-15px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(10px) rotate(240deg) scale(0.9);
  }
}

/* Partículas flutuantes */
#home .particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

#home .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.15;
  animation: particleFloat 6s linear infinite;
}

#home .particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

#home .particle:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
  animation-duration: 7s;
}

#home .particle:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 9s;
}

#home .particle:nth-child(4) {
  left: 40%;
  animation-delay: 0.5s;
  animation-duration: 6s;
}

#home .particle:nth-child(5) {
  left: 60%;
  animation-delay: 1.5s;
  animation-duration: 8s;
}

#home .particle:nth-child(6) {
  left: 70%;
  animation-delay: 2.5s;
  animation-duration: 7s;
}

#home .particle:nth-child(7) {
  left: 80%;
  animation-delay: 3s;
  animation-duration: 9s;
}

#home .particle:nth-child(8) {
  left: 90%;
  animation-delay: 0.8s;
  animation-duration: 6s;
}

#home .particle:nth-child(9) {
  left: 15%;
  animation-delay: 2.8s;
  animation-duration: 10s;
}

#home .particle:nth-child(10) {
  left: 25%;
  animation-delay: 3.2s;
  animation-duration: 8s;
}

#home .particle:nth-child(11) {
  left: 35%;
  animation-delay: 1.2s;
  animation-duration: 9s;
}

#home .particle:nth-child(12) {
  left: 45%;
  animation-delay: 4.1s;
  animation-duration: 7s;
}

#home .particle:nth-child(13) {
  left: 55%;
  animation-delay: 0.3s;
  animation-duration: 11s;
}

#home .particle:nth-child(14) {
  left: 65%;
  animation-delay: 3.7s;
  animation-duration: 8s;
}

#home .particle:nth-child(15) {
  left: 75%;
  animation-delay: 1.9s;
  animation-duration: 9s;
}

#home .particle:nth-child(16) {
  left: 85%;
  animation-delay: 4.3s;
  animation-duration: 7s;
}

#home .particle:nth-child(17) {
  left: 5%;
  animation-delay: 2.1s;
  animation-duration: 10s;
}

#home .particle:nth-child(18) {
  left: 95%;
  animation-delay: 3.9s;
  animation-duration: 8s;
}

#home .particle:nth-child(19) {
  left: 50%;
  animation-delay: 1.7s;
  animation-duration: 9s;
}

#home .particle:nth-child(20) {
  left: 12%;
  animation-delay: 4.7s;
  animation-duration: 11s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Elementos flutuantes originais mantidos */
#home .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#home .floating-element {
  position: absolute;
  color: var(--primary-color);
  opacity: 0.1;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

/* Novos elementos web com posicionamento */
#home .floating-element.web-element {
  opacity: 0.08;
  font-size: 1.8rem;
}

#home .floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

#home .floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

#home .floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

#home .floating-element:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 1s;
}

#home .floating-element:nth-child(5) {
  top: 15%;
  right: 40%;
  animation-delay: 3s;
}

#home .floating-element:nth-child(6) {
  bottom: 15%;
  right: 10%;
  animation-delay: 5s;
}

#home .floating-element:nth-child(7) {
  top: 70%;
  left: 5%;
  animation-delay: 1.5s;
}

#home .floating-element:nth-child(8) {
  top: 30%;
  left: 40%;
  animation-delay: 3.5s;
}

#home .floating-element:nth-child(9) {
  bottom: 50%;
  right: 5%;
  animation-delay: 2.5s;
}

#home .floating-element:nth-child(10) {
  top: 80%;
  left: 30%;
  animation-delay: 4.5s;
}

#home .floating-element:nth-child(11) {
  top: 10%;
  left: 60%;
  animation-delay: 1.8s;
}

#home .floating-element:nth-child(12) {
  bottom: 40%;
  left: 50%;
  animation-delay: 3.8s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Linha curvada decorativa */
#home .curved-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 170px;
  pointer-events: none;
  z-index: 3;
  width: 90%;
  margin: 0 auto;
  border-radius: 100px;
}

#home .curved-line svg {
  width: 100%;
  height: 100%;
}

#home .curved-line path {
  filter: drop-shadow(0 0 12px rgb(0, 247, 255)) drop-shadow(0 0 25px rgba(0, 255, 255, 0.822));
  animation: subtlePulse 4s ease-in-out infinite alternate;
}

@keyframes subtlePulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}

/* Resto dos estilos originais mantidos */
#home .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 2rem;
}

#home .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

#home .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#home .typewriter {
  color: var(--text-primary);
  border-right: 3px solid var(--primary-color);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    border-color: var(--primary-color);
  }
  51%,
  100% {
    border-color: transparent;
  }
}

#home .hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

#home .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

#home .btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

#home .btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow);
}

#home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#home .btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

#home .btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

#home .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

#home .code-window {
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border-color);
}

#home .window-header {
  background: var(--bg-secondary);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
}

#home .window-controls {
  display: flex;
  gap: 0.5rem;
}

#home .control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

#home .control.close {
  background: #ff5f57;
}
#home .control.minimize {
  background: #ffbd2e;
}
#home .control.maximize {
  background: #28ca42;
}

#home .window-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

#home .code-content {
  padding: 1.5rem;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}

#home .code-line {
  display: flex;
  margin-bottom: 0.5rem;
}

#home .line-number {
  color: var(--text-secondary);
  margin-right: 1rem;
  min-width: 20px;
}

#home .tag {
  color: #e06c75;
}
#home .string {
  color: #98c379;
}

#home .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

#home .scroll-arrow {
  color: var(--primary-color);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsividade para os novos elementos */
@media (max-width: 768px) {
  #home .geometric-shapes .shape {
    opacity: 0.03;
  }

  #home .floating-element {
    font-size: 1.5rem;
    opacity: 0.06;
  }

  #home .floating-element.web-element {
    font-size: 1.3rem;
    opacity: 0.05;
  }

  #home .grid-lines.horizontal,
  #home .grid-lines.vertical {
    opacity: 0.5;
  }
}

/* About Section */
#sobre {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

#sobre .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

#sobre .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#sobre .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

#sobre .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

#sobre .about-text {
    display: grid;
    gap: 2rem;
}

#sobre .about-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#sobre .about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

#sobre .card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

#sobre .about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

#sobre .about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

#sobre .about-stats {
    display: grid;
    gap: 2rem;
}

#sobre .stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#sobre .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

#sobre .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

#sobre .stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Services Section */
#servicos {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

#servicos::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.02));
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

#servicos::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--primary-rgb), 0.01));
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

#servicos .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

#servicos .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

#servicos .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% {
        width: 60px;
        opacity: 1;
    }
    50% {
        width: 80px;
        opacity: 0.7;
    }
}

#servicos .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

#servicos .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

#servicos .service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

#servicos .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

#servicos .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

#servicos .service-card:hover::after {
    opacity: 1;
}

#servicos .service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

#servicos .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    transition: all 0.4s ease;
    z-index: 3;
}

#servicos .service-icon .icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: all 0.4s ease;
}

#servicos .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

#servicos .service-card:hover .service-icon .icon-bg {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(-45deg) translateX(-100%);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-45deg) translateX(100%);
    }
}

#servicos .service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 3;
    transition: color 0.3s ease;
}

#servicos .service-card:hover h3 {
    color: var(--primary-color);
}

#servicos .service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
    transition: color 0.3s ease;
}

#servicos .service-card:hover p {
    color: var(--text-primary);
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 4;
}

.service-overlay .overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.service-overlay .overlay-content i {
    transition: transform 0.3s ease;
}

#servicos .service-card:hover .service-overlay {
    transform: translateY(0);
}

#servicos .service-card:hover .service-overlay .overlay-content i {
    transform: translateX(5px);
}

/* Particle Animation */
#servicos .service-card:hover {
    animation: cardGlow 2s ease-in-out infinite alternate;
}

@keyframes cardGlow {
    from {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
    to {
        box-shadow: 0 25px 50px rgba(var(--primary-rgb), 0.2);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    #servicos .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    #servicos .service-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    #servicos {
        padding: 4rem 0;
    }
    
    #servicos .section-title {
        font-size: 2rem;
    }
    
    #servicos .section-subtitle {
        font-size: 1.1rem;
    }
    
    #servicos .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    #servicos .service-card:hover {
        transform: translateY(-10px) rotateX(0deg);
    }
}

@media (max-width: 576px) {
    #servicos .service-card {
        padding: 1.5rem;
    }
    
    #servicos .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    #servicos .service-card h3 {
        font-size: 1.2rem;
    }
}

/* Loading Animation for Cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#servicos .service-card {
    animation: slideInUp 0.6s ease-out forwards;
}

#servicos .service-card:nth-child(1) { animation-delay: 0.1s; }
#servicos .service-card:nth-child(2) { animation-delay: 0.2s; }
#servicos .service-card:nth-child(3) { animation-delay: 0.3s; }
#servicos .service-card:nth-child(4) { animation-delay: 0.4s; }
#servicos .service-card:nth-child(5) { animation-delay: 0.5s; }
#servicos .service-card:nth-child(6) { animation-delay: 0.6s; }
/* Portfolio Section */
#portfolio {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Elementos flutuantes decorativos */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Header da seção */
#portfolio .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

#portfolio .section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

#portfolio .section-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 1rem;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Filtros */
#portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.filter-container {
  display: flex;
  gap: 8px;
  background: var(--bg-card);
  padding: 8px;
  border-radius: 60px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

#portfolio .filter-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.filter-text {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.filter-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

#portfolio .filter-btn.active .filter-bg,
#portfolio .filter-btn:hover .filter-bg {
  transform: scale(1);
}

#portfolio .filter-btn.active .filter-text,
#portfolio .filter-btn:hover .filter-text {
  color: white;
}

/* Grid do portfólio - CORRIGIDO */
#portfolio .portfolio-grid {
  display: block;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  justify-items: center;
}

#portfolio .portfolio-item {
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease-out forwards;
  width: 100%;
  max-width: 450px;
}

#portfolio .portfolio-item:nth-child(1) {
  animation-delay: 0.1s;
}
#portfolio .portfolio-item:nth-child(2) {
  animation-delay: 0.2s;
}
#portfolio .portfolio-item:nth-child(3) {
  animation-delay: 0.3s;
}
#portfolio .portfolio-item:nth-child(4) {
  animation-delay: 0.4s;
}
#portfolio .portfolio-item:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-card {
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
  width: 100%;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.02));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  border-radius: 24px;
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-card:hover {
  transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

/* Imagem do projeto */
#portfolio .portfolio-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.3));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.portfolio-card:hover .image-overlay {
  opacity: 1;
}

#portfolio .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.15) rotate(2deg);
}

/* Overlay com informações */
#portfolio .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.95), rgba(var(--primary-rgb), 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 3;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

#portfolio .portfolio-info {
  text-align: center;
  color: white;
  padding: 2rem;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

.portfolio-card:hover .portfolio-info {
  transform: translateY(0);
}

.project-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#portfolio .portfolio-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

#portfolio .portfolio-info p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
  font-size: 1rem;
}

/* Links do projeto */
#portfolio .portfolio-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

#portfolio .portfolio-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#portfolio .portfolio-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.preview-link:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--primary-color) !important;
}

.visit-link:hover {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* Responsividade */
@media (max-width: 1024px) {
  #portfolio .portfolio-grid {
    max-width: 900px;
    gap: 2.5rem;
  }

  #portfolio .portfolio-item {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  #portfolio .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 2rem;
  }

  #portfolio .portfolio-item {
    max-width: 100%;
  }

  .filter-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  #portfolio .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  #portfolio .section-title {
    font-size: 2.5rem;
  }

  #portfolio .section-subtitle {
    font-size: 1.1rem;
  }

  #portfolio .portfolio-image {
    height: 220px;
  }

  #portfolio .portfolio-info {
    padding: 1.5rem;
  }

  #portfolio .portfolio-info h3 {
    font-size: 1.3rem;
  }

  #portfolio .portfolio-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* Footer do card */
.portfolio-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-card);
    position: relative;
    z-index: 2;
}

.project-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-tag {
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .tech-tag {
    transform: translateY(-2px);
}

.tech-tag:nth-child(1) { animation-delay: 0.1s; }
.tech-tag:nth-child(2) { animation-delay: 0.2s; }
.tech-tag:nth-child(3) { animation-delay: 0.3s; }

/* Responsividade */
@media (max-width: 1200px) {
    #portfolio .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    #portfolio {
        padding: 6rem 0;
    }
    
    #portfolio .section-title {
        font-size: 2.5rem;
    }
    
    .filter-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #portfolio .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .portfolio-card:hover {
        transform: translateY(-15px) rotateX(0deg) rotateY(0deg);
    }
    
    #portfolio .section-title {
        font-size: 2rem;
    }
    
    #portfolio .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    #portfolio {
        padding: 4rem 0;
    }
    
    .portfolio-card {
        margin: 0 1rem;
    }
    
    #portfolio .portfolio-info {
        padding: 1.5rem;
    }
    
    .portfolio-footer {
        padding: 1rem 1.5rem;
    }
    
    .filter-container {
        margin: 0 1rem;
    }
    
    #portfolio .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Animação de entrada para os filtros */
.filter-container {
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de loading nos cards */
.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s ease;
    z-index: 4;
}

.portfolio-card:hover::after {
    left: 100%;
}


/* ===== PRICING SECTION ===== */
#pricing.pricing-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Background animado */
#pricing .pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#pricing .pricing-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#pricing .orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.05));
    animation: floatOrb 8s ease-in-out infinite;
}

#pricing .orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

#pricing .orb-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

#pricing .orb-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

#pricing .pricing-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

#pricing .grid-line {
    position: absolute;
    background: var(--primary-color);
}

#pricing .grid-line:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 25%;
    animation: gridPulse 4s ease-in-out infinite;
}

#pricing .grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 50%;
    animation: gridPulse 4s ease-in-out infinite 1s;
}

#pricing .grid-line:nth-child(3) {
    width: 100%;
    height: 1px;
    top: 30%;
    animation: gridPulse 4s ease-in-out infinite 2s;
}

#pricing .grid-line:nth-child(4) {
    width: 100%;
    height: 1px;
    top: 70%;
    animation: gridPulse 4s ease-in-out infinite 3s;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Header da seção */
#pricing .pricing-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

#pricing .pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

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

#pricing .pricing-badge i {
    animation: fireFlicker 1.5s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

#pricing .pricing-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

#pricing .highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

#pricing .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.1); }
}

#pricing .pricing-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card principal */
#pricing .pricing-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

#pricing .pricing-card-container {
    position: relative;
}

#pricing .pricing-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#pricing .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    opacity: 0.1;
    animation: cardRotate 8s linear infinite;
    z-index: 0;
}

@keyframes cardRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#pricing .pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(var(--primary-rgb), 0.2);
}

#pricing .card-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

#pricing .price-badge {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

#pricing .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

#pricing .price {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin: 0 5px;
    text-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

#pricing .cents {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

#pricing .price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
}

#pricing .old-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

#pricing .discount {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: discountPulse 2s ease-in-out infinite;
}

@keyframes discountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

#pricing .price-description {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Features */
#pricing .card-features {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

#pricing .card-features h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

#pricing .features-grid {
    display: grid;
    gap: 15px;
}

#pricing .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

#pricing .feature-item:hover {
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateX(5px);
}

#pricing .feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

#pricing .feature-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* CTA */
#pricing .card-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

#pricing .cta-button {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#pricing .button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

#pricing .cta-button:hover .button-shine {
    left: 100%;
}

#pricing .cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
}

#pricing .cta-button i {
    animation: rocketFly 2s ease-in-out infinite;
}

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

#pricing .cta-guarantee {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#pricing .cta-guarantee i {
    color: #2898a7;
}

/* Benefits */
#pricing .pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#pricing .benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#pricing .benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

#pricing .benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

#pricing .benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

#pricing .benefit-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Urgency */
#pricing .pricing-urgency {
    text-align: center;
    position: relative;
    z-index: 1;
}

#pricing .urgency-content {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    animation: urgencyPulse 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

#pricing .urgency-content i {
    font-size: 1.3rem;
    animation: clockTick 1s ease-in-out infinite;
}

@keyframes clockTick {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

/* ===== MAINTENANCE SECTION ===== */
#maintenance-plan.maintenance-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

#maintenance-plan .maintenance-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#maintenance-plan .maintenance-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

#maintenance-plan .wave-maintenance {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb), 0.04));
    border-radius: 50%;
    animation: waveMove 8s ease-in-out infinite;
}

#maintenance-plan .wave-1 {
    animation-delay: 0s;
    opacity: 0.6;
}

#maintenance-plan .wave-2 {
    animation-delay: 4s;
    opacity: 0.4;
    height: 80px;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

#maintenance-plan .maintenance-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

/* Info da manutenção */
#maintenance-plan .maintenance-info {
    padding-right: 2rem;
}

#maintenance-plan .maintenance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #2898a7, #20c997);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: maintenanceBadgePulse 3s ease-in-out infinite;
}

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

#maintenance-plan .maintenance-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

#maintenance-plan .highlight-maintenance {
    background: linear-gradient(135deg, #2898a7, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

#maintenance-plan .highlight-maintenance::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #2898a7, #20c997);
    border-radius: 2px;
}

#maintenance-plan .maintenance-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

#maintenance-plan .maintenance-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

#maintenance-plan .maintenance-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#maintenance-plan .maintenance-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #2898a7;
}

#maintenance-plan .feature-icon-maintenance {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2898a7, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

#maintenance-plan .feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-primary);
}

#maintenance-plan .feature-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Card de manutenção */
#maintenance-plan .maintenance-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #28a796;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#maintenance-plan .maintenance-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, #28a3a7, transparent);
    opacity: 0.08;
    animation: maintenanceRotate 10s linear infinite;
    z-index: 0;
}

@keyframes maintenanceRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#maintenance-plan .maintenance-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(40, 167, 69, 0.15);
}

#maintenance-plan .maintenance-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

#maintenance-plan .maintenance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00ffdd, #20c9bb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
    animation: maintenanceIconSpin 4s ease-in-out infinite;
}

@keyframes maintenanceIconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

#maintenance-plan .maintenance-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

#maintenance-plan .maintenance-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

#maintenance-plan .maintenance-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #28a7a1;
}

#maintenance-plan .maintenance-value {
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    line-height: 1;
    margin: 0 3px;
}

#maintenance-plan .maintenance-cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ffff;
}

#maintenance-plan .maintenance-period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-left: 5px;
}

#maintenance-plan .maintenance-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Benefícios da manutenção */
#maintenance-plan .maintenance-benefits {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

#maintenance-plan .maintenance-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

#maintenance-plan .maintenance-benefit:hover {
    transform: translateX(5px);
}

#maintenance-plan .maintenance-benefit i {
    color: #00eeff;
    font-size: 1.1rem;
    width: 20px;
}

#maintenance-plan .maintenance-benefit span {
    color: var(--text-primary);
    font-weight: 500;
}

/* CTA da manutenção */
#maintenance-plan .maintenance-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

#maintenance-plan .maintenance-button {
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(135deg, #02ffea, #20c9c0);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#maintenance-plan .maintenance-button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

#maintenance-plan .maintenance-button:hover .maintenance-button-shine {
    left: 100%;
}

#maintenance-plan .maintenance-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 238, 255, 0.3);
}

#maintenance-plan .maintenance-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#maintenance-plan .maintenance-note i {
    color: #17a2b8;
}

/* Garantia */
#maintenance-plan .maintenance-guarantee {
    text-align: center;
    position: relative;
    z-index: 1;
}

#maintenance-plan .guarantee-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

#maintenance-plan .guarantee-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#maintenance-plan .guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: guaranteePulse 3s ease-in-out infinite;
}

@keyframes guaranteePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

#maintenance-plan .guarantee-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

#maintenance-plan .guarantee-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    #pricing .pricing-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    #pricing .pricing-benefits {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #pricing .benefit-item {
        flex: 1;
        min-width: 250px;
    }
    
    #maintenance-plan .maintenance-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    #maintenance-plan .maintenance-info {
        padding-right: 0;
        text-align: center;
    }
    
    #maintenance-plan .maintenance-features {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #pricing .pricing-section {
        padding: 6rem 0;
    }

    #pricing .pricing-title {
        font-size: 2.5rem;
    }

    #pricing .price {
        font-size: 4rem;
    }

    #pricing .pricing-card {
        padding: 2rem;
    }

    #pricing .pricing-benefits {
        flex-direction: column;
    }

    #pricing .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    #maintenance-plan .maintenance-section {
        padding: 4rem 0;
    }
    
    #maintenance-plan .maintenance-title {
        font-size: 2.2rem;
    }
    
    #maintenance-plan .maintenance-features {
        grid-template-columns: 1fr;
    }
    
    #maintenance-plan .maintenance-card {
        padding: 2rem;
    }
    
    #maintenance-plan .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    #pricing .pricing-title {
        font-size: 2rem;
    }

    #pricing .price {
        font-size: 3rem;
    }

    #pricing .currency,
    #pricing .cents {
        font-size: 1.5rem;
    }

    #pricing .pricing-card {
        padding: 1.5rem;
    }

    #pricing .urgency-content {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
    
    #maintenance-plan .maintenance-title {
        font-size: 1.8rem;
    }
    
    #maintenance-plan .maintenance-card {
        padding: 1.5rem;
    }
    
    #maintenance-plan .maintenance-value {
        font-size: 2.5rem;
    }
    
    #maintenance-plan .maintenance-currency,
    #maintenance-plan .maintenance-cents {
        font-size: 1rem;
    }
}


/* Clients Section */
#clientes {
    padding: 8rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos flutuantes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 25%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 40%;
    animation-delay: 6s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-20px) rotate(120deg) scale(1.1);
        opacity: 0.6;
    }
    66% {
        transform: translateY(10px) rotate(240deg) scale(0.9);
        opacity: 0.4;
    }
}

/* Header da seção */
#clientes .section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

#clientes .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

#clientes .section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Container principal */
.clients-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

/* Timeline */
.clients-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--border-color), var(--primary-color), var(--border-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: progressLine 3s ease-out forwards;
    animation-delay: 1s;
}

@keyframes progressLine {
    to {
        height: 100%;
    }
}

/* Items dos clientes */
.client-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.client-item:nth-child(2) { animation-delay: 0.2s; }
.client-item:nth-child(3) { animation-delay: 0.4s; }
.client-item:nth-child(4) { animation-delay: 0.6s; }
.client-item:nth-child(5) { animation-delay: 0.8s; }
.client-item:nth-child(6) { animation-delay: 1s; }
.client-item:nth-child(7) { animation-delay: 1.2s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.client-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-left: 3rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.client-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.02));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.client-content:hover::before {
    opacity: 1;
}

.client-content:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.client-content.reverse {
    margin-left: 0;
    margin-right: 3rem;
    flex-direction: row-reverse;
}

.client-content.reverse:hover {
    transform: translateX(-10px) translateY(-5px);
}

/* Ícones */
.client-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.client-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}

.icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.client-content:hover .client-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.4);
}

/* Informações */
.client-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.client-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.client-content:hover .client-info h3 {
    color: var(--primary-color);
}

.client-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.client-content:hover .client-info p {
    color: var(--text-primary);
}

/* Features */
.client-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.client-content:hover .feature-tag {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.feature-tag:nth-child(1) { animation-delay: 0.1s; }
.feature-tag:nth-child(2) { animation-delay: 0.2s; }
.feature-tag:nth-child(3) { animation-delay: 0.3s; }

/* Responsividade */
@media (max-width: 992px) {
    .timeline-line {
        left: 30px;
    }
    
    .client-content,
    .client-content.reverse {
        margin-left: 60px;
        margin-right: 0;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    #clientes {
        padding: 6rem 0;
    }
    
    #clientes .section-title {
        font-size: 2.5rem;
    }
    
    .client-content,
    .client-content.reverse {
        margin-left: 40px;
        padding: 1.5rem;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .client-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .icon-ripple {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .client-content,
    .client-content.reverse {
        margin-left: 20px;
        padding: 1rem;
    }
    
    .client-info h3 {
        font-size: 1.5rem;
    }
    
    .client-info p {
        font-size: 1rem;
    }
    
    .client-features {
        justify-content: center;
    }
}
/* Process Section */
#processo {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

#processo .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

#processo .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#processo .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

#processo .process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

#processo .process-step {
    position: relative;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#processo .process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

#processo .step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

#processo .step-content {
    padding-top: 1rem;
}

#processo .step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

#processo .step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

#processo .step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
#contato {
    padding: 6rem 0;
    background: var(--bg-primary);
}

#contato .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

#contato .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#contato .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

#contato .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

#contato .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#contato .contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#contato .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

#contato .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

#contato .contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

#contato .contact-details p {
    color: var(--text-secondary);
}

#contato .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

#contato .social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

#contato .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow);
}

#contato .contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

#contato .form-group {
    position: relative;
    margin-bottom: 2rem;
}

#contato .form-group input,
#contato .form-group select,
#contato .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

#contato .form-group input:focus,
#contato .form-group select:focus,
#contato .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

#contato .form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--bg-card);
    padding: 0 0.5rem;
}

#contato .form-group input:focus + label,
#contato .form-group input:not(:placeholder-shown) + label,
#contato .form-group select:focus + label,
#contato .form-group select:not([value=""]) + label,
#contato .form-group textarea:focus + label,
#contato .form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}

#contato .form-group select {
    cursor: pointer;
}

#contato .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

#contato .btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#contato .btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

#contato .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
#footer {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Background animado */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Ondas animadas */
.footer-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border-radius: 50%;
    animation: wave 6s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.7;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.5;
    height: 80px;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.3;
    height: 60px;
}

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

/* Partículas flutuantes */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: floatParticle 8s linear infinite;
}

.particle-1 {
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    left: 30%;
    animation-delay: 2s;
}

.particle-3 {
    left: 50%;
    animation-delay: 4s;
}

.particle-4 {
    left: 70%;
    animation-delay: 6s;
}

.particle-5 {
    left: 90%;
    animation-delay: 8s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Conteúdo do footer */
.footer-content {
    position: relative;
    z-index: 1;
    padding: 6rem 0 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Seção da marca */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    position: relative;
    display: inline-block;
    width: fit-content;
}

.logo-img {
    height: 60px;
    width: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.footer-logo:hover .logo-img {
    transform: scale(1.05);
}

.footer-logo:hover .logo-glow {
    opacity: 1;
}

.brand-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 400px;
}

/* Redes sociais */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover .social-icon::before {
    left: 100%;
}

.social-link:hover .social-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.4);
}

.social-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.social-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--bg-card);
}

.social-link:hover .social-tooltip {
    opacity: 1;
    bottom: -40px;
}

/* Grid de links */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-section h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
    padding-left: 10px;
}

.footer-section ul li a i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateX(5px);
}

.footer-section ul li a:hover i {
    transform: scale(1.2);
}

/* Contato */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info a,
.contact-info span {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.brand-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-link i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Botão scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
}

.scroll-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    opacity: 0;
    animation: scrollRipple 2s infinite;
}

@keyframes scrollRipple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-section:last-child {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 4rem 0 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .footer-social {
        justify-content: center;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    #home .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    #sobre .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    #contato .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    #footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    #navbar .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    #navbar .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    #navbar .hamburger {
        display: flex;
    }
    
    #navbar .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    #navbar .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    #navbar .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    #home .hero-title {
        font-size: 2.5rem;
    }
    
    #home .hero-buttons {
        justify-content: center;
    }
    
    #home .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    #servicos .services-grid,
    #clientes .clients-grid {
        grid-template-columns: 1fr;
    }
    
    #portfolio .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    #processo .process-timeline {
        grid-template-columns: 1fr;
    }
    
    #footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    #footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    #navbar .nav-container {
        padding: 1rem 15px;
    }
    
    #home .hero-title {
        font-size: 2rem;
        margin-top: 7rem;
    }
    
    #home .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    #servicos .services-grid,
    #portfolio .portfolio-grid,
    #clientes .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #servicos .service-card,
    #portfolio .portfolio-item,
    #clientes .client-card,
    #processo .process-step {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}