/* Global Styles */
:root {
  --primary: #00c2cb;
  --primary-dark: #00a5ad;
  --primary-light: #4cdbdf;
  --secondary: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --success: #10b981;
  --blue-gradient: linear-gradient(to right, #00c2cb, #06b6d4);
  --purple-gradient: linear-gradient(to right, #8b5cf6, #ec4899);
  --orange-gradient: linear-gradient(to right, #f59e0b, #f97316);
  --green-gradient: linear-gradient(to right, #10b981, #22c55e);
  --red-gradient: linear-gradient(to right, #ef4444, #f43f5e);
  --indigo-gradient: linear-gradient(to right, #4f46e5, #7c3aed);
  --whatsapp-green: #25d366;
}

@font-face {
  font-family: "Satoshi";
  src: url("https://cdn.fontshare.com/wf/XGFVYY27UIVU5GSHPKG5YGFUH3QVTY3I/JXNJFH7QZZGEOPN2J36GFGQOGA4V26WC/SATOSHI-VARIABLE.TTF")
    format("truetype");
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

body {
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray);
}

.title-underline {
  height: 4px;
  width: 80px;
  background: var(--primary);
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.title-underline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shimmer 2s infinite;
}

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

/* Melhorar a aparência dos botões */
.btn-glow {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary);
  color: white;
  border: none;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 194, 203, 0.3);
}

.btn-glow i {
  margin-left: 8px;
}

.btn-glow span {
  position: relative;
  z-index: 2;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% 200%;
  animation: gradientBG 3s ease infinite;
  z-index: 1;
}

.btn-glow:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 194, 203, 0.4);
  color: white;
}

.btn-outline-glow {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-outline-glow span {
  position: relative;
  z-index: 2;
}

.btn-outline-glow:hover {
  border-color: white;
  color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

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

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
  object-fit: contain;
}

.loader-text {
  display: none;
}

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

/* Custom Cursor */
.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
}

.cursor-dot-outline {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 194, 203, 0.2);
}

/* Navbar - Melhorado e mais moderno */
.navbar {
  padding: 1rem 0;
  transition: all 0.4s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px -1px rgba(0, 0, 0, 0.1), 0 2px 10px -1px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.navbar-logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: rotate(5deg);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(to right, #fff, #cbd5e1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Melhorias no menu de navegação */
.navbar-nav {
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
  color: rgba(255, 255, 255, 0.8) !important;
}

.nav-link:hover {
  color: white !important;
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0;
}

.nav-link:hover::after {
  width: 80%;
  opacity: 1;
}

.nav-link.active {
  color: white !important;
  font-weight: 600;
}

.nav-link.active::after {
  width: 80%;
  opacity: 1;
}

/* Botão de serviços no header - Melhorado */
.nav-item.services-btn {
  margin-left: 0.5rem;
}

.nav-link.services-btn-link {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white !important;
  border-radius: 30px;
  padding: 0.5rem 1.25rem !important;
  box-shadow: 0 4px 10px rgba(0, 194, 203, 0.3);
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

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

.nav-link.services-btn-link:hover::before {
  left: 100%;
}

.nav-link.services-btn-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 194, 203, 0.4);
  background: linear-gradient(45deg, var(--primary-light), var(--primary));
}

.nav-link.services-btn-link::after {
  display: none;
}

/* Animação para o menu mobile */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  transform: scale(1.1);
}

/* Animação para o menu dropdown */
.navbar-collapse {
  transition: all 0.4s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: var(--secondary);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.4) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.9));
  z-index: 2;
}

/* Remover os elementos tech-background que não são mais necessários */
.tech-background,
.tech-grid,
.tech-dots,
.tech-circuit {
  display: none;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-logo-container {
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 194, 203, 0.5));
  object-fit: contain;
}

.glitch-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: white;
}

.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--primary);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--primary-light);
  clip: rect(24px, 450px, 100px, 0);
  animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip: rect(20px, 450px, 39px, 0);
  }
  20% {
    clip: rect(63px, 450px, 78px, 0);
  }
  40% {
    clip: rect(44px, 450px, 56px, 0);
  }
  60% {
    clip: rect(89px, 450px, 98px, 0);
  }
  80% {
    clip: rect(32px, 450px, 54px, 0);
  }
  100% {
    clip: rect(67px, 450px, 72px, 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip: rect(67px, 450px, 91px, 0);
  }
  20% {
    clip: rect(24px, 450px, 35px, 0);
  }
  40% {
    clip: rect(88px, 450px, 96px, 0);
  }
  60% {
    clip: rect(12px, 450px, 23px, 0);
  }
  80% {
    clip: rect(54px, 450px, 69px, 0);
  }
  100% {
    clip: rect(35px, 450px, 51px, 0);
  }
}

/* Melhorias estéticas gerais */
.impact-heading {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 30px rgba(0, 194, 203, 0.3);
  animation: fadeInUp 1.2s ease;
}

@media (max-width: 991.98px) {
  .impact-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .impact-heading {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .impact-heading {
    font-size: 1.75rem;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

/* Melhorar a aparência dos botões na seção hero */
.hero-buttons {
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons .btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 194, 203, 0.4);
  text-align: center;
}

.hero-buttons .btn-glow i {
  margin-left: 8px;
}

.hero-buttons .btn-glow span {
  position: relative;
  z-index: 2;
}

.hero-buttons .btn-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% 200%;
  animation: gradientBG 3s ease infinite;
  z-index: 1;
}

.hero-buttons .btn-glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shineEffect 3s infinite;
  z-index: 1;
}

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

.hero-buttons .btn-glow:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 194, 203, 0.6);
}

.hero-buttons .btn-outline-glow {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  border-radius: 30px;
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-outline-glow span {
  position: relative;
  z-index: 2;
}

.hero-buttons .btn-outline-glow:hover {
  border-color: white;
  color: white;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: fadeIn 1s ease 1s;
  animation-fill-mode: both;
  z-index: 3;
}

.scroll-indicator p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid white;
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
}

.wheel {
  width: 6px;
  height: 10px;
  background-color: white;
  border-radius: 3px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.3;
}

.hero-shapes .shape-1 {
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: var(--primary);
  animation: floatAnimation 8s ease-in-out infinite;
}

.hero-shapes .shape-2 {
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: #8b5cf6;
  animation: floatAnimation 10s ease-in-out infinite;
}

.hero-shapes .shape-3 {
  top: 40%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: #06b6d4;
  animation: floatAnimation 7s ease-in-out infinite;
}

.hero-shapes .shape-4 {
  bottom: 30%;
  left: 20%;
  width: 250px;
  height: 250px;
  background: #f97316;
  animation: floatAnimation 9s ease-in-out infinite;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* About Section */
.about-section {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

/* Melhorar a aparência dos cards */
.feature-card,
.service-card,
.testimonial,
.case-card,
.contact-info,
.contact-form {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  will-change: transform, box-shadow;
}

/* Adicionar efeitos de movimento aos boxes de conteúdo */
/* Feature Cards Animation */
.feature-card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: fadeInUp 1s ease;
  transform-origin: center bottom;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 194, 203, 0.1);
}

.feature-card:hover {
  animation: cardWiggle 1s ease;
}

@keyframes cardWiggle {
  0%,
  100% {
    transform: translateY(-10px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.feature-card:hover,
.testimonial:hover,
.contact-info:hover,
.contact-form:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 194, 203, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  transform: rotateY(180deg);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: white;
  transform: rotateY(180deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--primary);
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.history-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 194, 203, 0.1);
}

.history-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 194, 203, 0.05) 0%, transparent 100%);
  z-index: 0;
}

.history-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.history-card p {
  position: relative;
  z-index: 1;
  color: var(--gray);
}

.history-stats {
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, rgba(0, 194, 203, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.history-stats::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 194, 203, 0.2) 0%, transparent 70%);
  animation: pulse 3s infinite;
}

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

.stats-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.counter {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 0.25rem;
}

.stats-content p {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* Services Section */
.services-section {
  background-color: var(--secondary);
  color: white;
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1772&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

/* Ajustar o espaçamento para os cards de serviço sem o link "Saiba mais" */
/* Service Cards Animation */
.service-card {
  transition: all 0.5s ease;
  animation: fadeInUp 1s ease;
  transform-origin: center bottom;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 5%;
  width: 90%;
  height: 15px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  border-radius: 50%;
}

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

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0; /* Removido o margin-bottom que era para o link */
  flex-grow: 1; /* Faz o parágrafo ocupar o espaço disponível */
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  border-radius: 1rem;
  filter: blur(20px);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card:hover::before {
  opacity: 0.7;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.blue-gradient .service-icon {
  background: var(--blue-gradient);
}

.purple-gradient .service-icon {
  background: var(--purple-gradient);
}

.orange-gradient .service-icon {
  background: var(--orange-gradient);
}

.green-gradient .service-icon {
  background: var(--green-gradient);
}

.red-gradient .service-icon {
  background: var(--red-gradient);
}

.indigo-gradient .service-icon {
  background: var(--indigo-gradient);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
}

.service-link::after {
  content: "\F138";
  font-family: "bootstrap-icons";
  margin-left: 0.5rem;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: white;
}

.service-link:hover::after {
  transform: translateX(5px);
}

.service-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(1.5);
}

.service-card:hover .service-hover-image {
  opacity: 1;
}

/* Clients Section */
.clients-section {
  background-color: white;
  position: relative;
}

.clients-slider {
  padding-bottom: 50px;
}

/* Melhorar a aparência dos logos dos clientes */
/* Client Logo Animation */
.client-logo {
  transition: all 0.4s ease;
  background-color: var(--light);
  height: 120px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-light);
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.client-logo:hover {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
}

.client-logo-img {
  max-width: 80%;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: grayscale(30%);
}

.client-logo:hover .client-logo-img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.logo-placeholder {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray);
  transition: color 0.3s ease;
}

.client-logo:hover .logo-placeholder {
  color: var(--primary);
}

.testimonials-card {
  background-color: var(--light);
  padding: 3rem 2rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.testimonials-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 194, 203, 0.05) 0%, transparent 100%);
  z-index: 0;
}

.testimonials-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.testimonials-slider {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}

/* Testimonial Cards Animation */
.testimonial {
  transition: all 0.5s ease;
  animation: fadeInUp 1s ease;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #f59e0b;
  margin-bottom: 1.5rem;
}

.stars i {
  margin-right: 0.25rem;
}

.testimonial p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.testimonial p::before {
  content: "\F132";
  font-family: "bootstrap-icons";
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 1.5rem;
  color: rgba(0, 194, 203, 0.1);
  z-index: -1;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
}

.client-details h5 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.client-details p {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0;
  font-style: normal;
}

/* Cases Section */
.cases-section {
  background-color: var(--light);
  position: relative;
}

.cases-slider {
  padding-bottom: 50px;
}

.case-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.case-content {
  padding: 2.5rem;
}

.case-client {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.case-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.case-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.case-content h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.case-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.case-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.case-content ul li i {
  color: var(--primary);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.case-image {
  height: 100%;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1557682250-33bd709cbe85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1429&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-info {
  background-color: var(--light);
  padding: 2.5rem;
  border-radius: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 194, 203, 0.05) 0%, transparent 100%);
  z-index: 0;
}

.contact-info h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 194, 203, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: var(--primary);
}

.contact-icon i {
  font-size: 1.75rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon i {
  color: white;
}

.contact-details h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

/* Ajustar o espaçamento para os endereços na seção de contato */
.contact-details p {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details p strong {
  font-weight: 600;
  color: var(--secondary);
}

.contact-map {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.contact-form h3 {
  margin-bottom: 2rem;
  color: var(--secondary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
  color: var(--secondary);
}

/* Melhorar a aparência do formulário */
.form-control,
.form-select {
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-light);
  background-color: var(--light);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 194, 203, 0.25);
  background-color: white;
  transform: translateY(-2px);
}

.form-message {
  padding: 1rem;
  border-radius: 0.75rem;
}

.form-message.success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.form-message.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* Melhorar a aparência do botão de envio */
#submitBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background: var(--primary);
  color: white;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 194, 203, 0.3);
}

#submitBtn span {
  display: inline-block;
  color: white;
  position: relative;
  z-index: 2;
}

#submitBtn i {
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
  color: white;
}

/* Footer */
.footer-section {
  background-color: var(--secondary);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 20px 0 30px; /* Reduzir o padding vertical */
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 194, 203, 0.1) 0%, transparent 100%);
  z-index: 0;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

/* Ajustar o tamanho do logo no rodapé */
.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Ajustar o espaçamento do texto da empresa */
.company-info p {
  margin-bottom: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Ajustar o tamanho dos ícones sociais */
.social-link {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 1.1rem;
}

/* Success Modal */
.success-icon {
  width: 100px;
  height: 100px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.success-icon i {
  font-size: 3rem;
  color: var(--success);
}

/* Swiper Customization */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--gray-light);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

/* WhatsApp Button - Corrigido para ficar fixo na tela */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999; /* Aumentado para garantir que fique acima de tudo */
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.whatsapp-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: var(--whatsapp-green);
  color: white;
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.whatsapp-icon i {
  font-size: 24px;
  color: var(--whatsapp-green);
}

.whatsapp-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  max-width: 160px;
}

/* Animação de pulso para o botão do WhatsApp */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-button {
  animation: pulse-whatsapp 2s infinite;
}

/* Ajustes responsivos para o botão de WhatsApp */
@media (max-width: 767.98px) {
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-link {
    padding: 8px 15px 8px 8px;
  }

  .whatsapp-icon {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }

  .whatsapp-text {
    font-size: 0.8rem;
    max-width: 120px;
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    margin: 0.5rem 0;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .case-image {
    min-height: 250px;
  }

  .contact-info {
    margin-bottom: 2rem;
  }

  /* Melhorar a aparência do rodapé no mobile */
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .company-info {
    text-align: center;
  }

  .social-links {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .counter {
    font-size: 2.5rem;
  }

  .plus {
    font-size: 1.5rem;
  }
}

/* Melhorias para dispositivos móveis - substituir hover por active */
@media (hover: none) {
  .nav-link:active {
    color: white !important;
    transform: translateY(-2px);
  }

  .nav-link:active::after {
    width: 80%;
    opacity: 1;
  }

  .feature-card:active,
  .testimonial:active,
  .contact-info:active,
  .contact-form:active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .feature-card:active .feature-icon {
    background-color: var(--primary);
    transform: rotateY(180deg);
  }

  .feature-card:active .feature-icon i {
    color: white;
    transform: rotateY(180deg);
  }

  .feature-card:active h3 {
    color: var(--primary);
  }

  .service-card:active {
    transform: translateY(-5px);
  }

  .service-card:active .service-icon {
    transform: scale(1.1) rotate(5deg);
  }

  .service-link:active::after {
    transform: translateX(5px);
  }

  .client-logo:active {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
  }

  .client-logo:active .client-logo-img {
    transform: scale(1.05);
    filter: grayscale(0%);
  }

  .nav-link.services-btn-link:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 194, 203, 0.4);
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
  }

  .whatsapp-button:active {
    transform: translateY(-3px);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
  }

  .hero-buttons .btn-glow:active {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 194, 203, 0.5);
  }

  .hero-buttons .btn-outline-glow:active {
    border-color: white;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
  }
}

/* Ajustes responsivos para o botão de serviços */
@media (max-width: 991.98px) {
  .nav-item.services-btn {
    margin: 0.5rem 0;
  }

  .nav-link.services-btn-link {
    display: inline-block;
    text-align: center;
    margin: 0.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    margin: 0.5rem 0;
    width: 100%;
    max-width: 280px;
  }
}

/* Estilos para mensagens de sucesso/erro do formulário */
.form-message {
  display: none;
  padding: 15px;
  margin-top: 15px;
  border-radius: 8px;
}

.form-message.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
}

.form-message.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Ajustar os ícones de redes sociais */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

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

.social-link:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.social-link i {
  font-size: 1.2rem;
}

@media (max-width: 767.98px) {
  .social-links {
    margin-top: 1rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link i {
    font-size: 1.1rem;
  }
}

/* Adicionar estilos para validação de formulário */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group.has-error .form-control,
.form-group.has-error .form-select {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: block;
}

.form-control.is-invalid {
  border-color: #ef4444;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ef4444' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

.form-control.is-valid {
  border-color: #10b981;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

/* Floating animation for all cards */
.floating {
  animation: floating 3s ease infinite;
}

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

/* Bounce animation for icons */
.bounce-hover:hover {
  animation: bounce 0.8s ease;
}

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

/* Ajustar o botão "Nossos Serviços" para centralizar o texto corretamente */
.hero-buttons .btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 194, 203, 0.4);
  text-align: center;
}

.hero-buttons .btn-glow i {
  margin-left: 8px;
}

/* Ajustar o tamanho do botão "Solicite um orçamento" */
.services-section .btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 194, 203, 0.4);
  text-align: center;
}

.services-section .btn-glow:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 194, 203, 0.6);
}

