/* 
 * NovaG - Agência de Desenvolvimento Web
 * Arquivo principal de estilos - Versão Moderna e Tecnológica
 */

/* Variáveis CSS Atualizadas */
:root {
  /* Paleta principal com tons mais tecnológicos */
  --primary-color: #4361ee;
  --primary-hover: #3a56d4;
  --secondary-color: #3f37c9;
  --accent-color: #6610f2;
  --tech-blue: #0070f3;
  --tech-purple: #8a2be2;
  --tech-cyan: #06b6d4;
  --dark-color: #1E293B;
  --dark-blue: #0f172a;
  --light-color: #f8f9fa;
  --light-blue: #ebf4ff;
  --gray-color: #64748b;
  --gray-dark: #475569;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  
  /* Fontes */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Efeitos e dimensões */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-tech: 0 8px 32px rgba(78, 106, 253, 0.18);
  --glass-effect: backdrop-filter: blur(16px) saturate(180%);
  --transition: all 0.3s ease;
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --section-spacing: 100px;
}

/* Importação de fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* Estilos Gerais Modernizados */
body {
  font-family: var(--font-primary);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #fafafa;
  position: relative;
}

/* Efeitos gerais de scroll */
html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
  line-height: 1.3;
}

h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  font-size: 1.05rem;
  color: #555;
}

a {
  color: var(--primary-color);
  transition: var(--transition);
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover);
}

section {
  padding: var(--section-spacing) 0;
  position: relative;
}

.section-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 36px;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

.section-header h2:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 60px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-header.text-center h2:before {
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--gray-color);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 130px 0 80px;
  margin-bottom: 0;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fafafa;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.page-header h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 15px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.container {
  position: relative;
  z-index: 1;
}

/* Navbar */
.navbar {
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 28px;
  color: var(--tech-blue);
  letter-spacing: -0.5px;
}

.navbar-brand img {
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 10px 15px;
  color: var(--dark-color);
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 5px;
  left: 15px;
  background: linear-gradient(90deg, var(--tech-blue), var(--tech-purple));
  transition: var(--transition-smooth);
  border-radius: 3px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: calc(100% - 30px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--tech-blue);
}

.navbar .dropdown-menu {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 15px 0;
  min-width: 220px;
  margin-top: 15px;
}

.navbar .dropdown-item {
  padding: 10px 25px;
  font-weight: 500;
  transition: var(--transition);
}

.navbar .dropdown-item:hover {
  background-color: rgba(67, 97, 238, 0.05);
  color: var(--primary-color);
}

/* HERO DESIGN MELHORADO E MODERNIZADO */
.hero-section {
  background-image: linear-gradient(135deg, var(--tech-blue) 0%, var(--tech-purple) 100%);
  color: var(--light-color);
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh; /* Altura aumentada */
  display: flex;
  align-items: center;
}

.hero-section .container {
  position: relative;
  z-index: 5;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(15,23,42,0.85) 40%, rgba(67,97,238,0.65) 100%);
  z-index: 1;
}

/* Partículas animadas */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.hero-title, .hero-text, .hero-buttons {
  position: relative;
  z-index: 5;
}

/* Efeito gráfico de grade */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  z-index: 3;
  opacity: 0.3;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 28px rgba(0,0,0,0.4), 0 2px 0 rgba(0,0,0,0.3);
  margin-bottom: 25px;
  line-height: 1.3;
}

.hero-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 40px;
  max-width: 650px;
}

.hero-buttons .btn {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.hero-buttons .btn-light {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border: none;
}

.hero-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Estilo modernizado para a imagem hero */
.hero-logo-image {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transition: var(--transition-smooth);
  max-width: 85%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-logo-image:hover {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5)) brightness(1.1);
}

/* Estilo para o badge de tecnologia */
.tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.tech-badge i {
  margin-right: 8px;
  color: var(--tech-cyan);
}

/* Services Section Modernizada */
.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  transition: var(--transition-smooth);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
  border-radius: var(--border-radius-xl);
}

/* Gradiente de fundo sutil */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(102, 16, 242, 0.05) 0%, rgba(0, 112, 243, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-20px);
  box-shadow: var(--shadow-tech);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
  opacity: 1;
}

/* Removendo a mudança de cor do texto no hover para manter a legibilidade */
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number {
  color: var(--dark-color) !important;
  position: relative;
  z-index: 5;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1) rotate(10deg);
  position: relative;
  z-index: 5;
}

.service-icon {
  font-size: 32px;
  color: var(--tech-blue);
  margin-bottom: 25px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 112, 243, 0.08);
  border-radius: 20px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 20px rgba(0, 112, 243, 0.1);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  transition: var(--transition);
  font-weight: 700;
}

.service-card p {
  transition: var(--transition);
  font-size: 1rem;
  color: var(--gray-color);
}

/* Tech number indicator */
.service-number {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.08;
  color: var(--tech-blue);
  transition: var(--transition);
}

.service-card:hover .service-number {
  opacity: 0.15;
}

/* About Section */
.about-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(67, 97, 238, 0.05);
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(67, 97, 238, 0.05);
  z-index: 0;
}

.about-content {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.about-section img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature i {
  color: var(--success-color);
  margin-right: 15px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  background-color: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature span {
  font-weight: 500;
  font-size: 18px;
}

/* Portfolio Section */
.portfolio-section {
  background-color: #fafafa;
}

/* Cards de Portfolio Modernizados */
.portfolio-item {
  position: relative;
  margin-bottom: 30px;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.portfolio-wrap {
  transition: var(--transition-smooth);
  transform-style: preserve-3d;
}

.portfolio-item:hover .portfolio-wrap {
  transform: rotateY(10deg);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  color: white;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  color: white;
  font-size: 24px;
  margin-bottom: 10px;
  transform: translateY(25px);
  transition: all 0.5s ease;
  opacity: 0;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  transform: translateY(25px);
  transition: all 0.5s ease 0.1s;
  opacity: 0;
  max-width: 300px;
}

.portfolio-overlay .btn {
  transform: translateY(25px);
  transition: all 0.5s ease 0.2s;
  opacity: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
}

.portfolio-overlay .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p,
.portfolio-item:hover .portfolio-overlay .btn {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-item img {
  transition: all 0.8s ease;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-xl);
  filter: brightness(0.9) contrast(1.1);
}

.portfolio-item:hover img {
  transform: scale(1.12) rotate(-3deg);
  filter: brightness(0.7) contrast(1.2);
}

/* Blog Section */
.blog-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.blog-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  color: var(--gray-color);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--dark-color);
  transition: var(--transition);
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card .btn {
  align-self: flex-start;
}

/* Blog Page Styles */
.blog-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 130px 0 80px;
  position: relative;
}

.blog-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fafafa;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.blog-content {
  padding: 80px 0;
}

.blog-sidebar-widget {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.blog-sidebar-widget h4 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-search .input-group {
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.blog-search .form-control {
  border: none;
  padding: 15px 20px;
  height: auto;
}

.blog-search .btn {
  padding: 0 20px;
}

.blog-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-categories li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.blog-categories li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-categories li a {
  color: #555;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  transition: var(--transition);
}

.blog-categories li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.recent-post {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h5 {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.recent-post-content h5 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.recent-post-content h5 a:hover {
  color: var(--primary-color);
}

.recent-post-content .date {
  font-size: 14px;
  color: var(--gray-color);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
}

.blog-tags a {
  display: inline-block;
  background: #f5f5f5;
  padding: 6px 15px;
  margin: 0 8px 8px 0;
  border-radius: 30px;
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.blog-tags a:hover {
  background: var(--primary-color);
  color: #fff;
}

.blog-pagination {
  margin-top: 50px;
}

.page-link {
  border: none;
  padding: 12px 18px;
  color: var(--dark-color);
  font-weight: 600;
  background-color: #f5f5f5;
  margin: 0 5px;
  border-radius: var(--border-radius);
}

.page-item.active .page-link {
  background-color: var(--primary-color);
  color: #fff;
}

.page-link:hover {
  background-color: var(--primary-hover);
  color: #fff;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: var(--border-radius);
}

/* Products Section */
.product-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.product-title {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-description {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-price {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.price-info {
  display: flex;
  align-items: center;
}

.current-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
}

.old-price {
  color: var(--gray-color);
  font-size: 16px;
  text-decoration: line-through;
  margin-left: 15px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions .btn {
  flex: 1;
}

/* Products Page Styles */
.products-filters {
  background: #fff;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.filters-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 0;
  white-space: nowrap;
}

.filter-group .form-select {
  min-width: 180px;
  border: 1px solid #eee;
  padding: 10px 15px;
  border-radius: var(--border-radius);
}

.view-options {
  display: flex;
  gap: 10px;
}

.view-options button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  border: 1px solid #eee;
  background: #fff;
  transition: var(--transition);
}

.view-options button.active,
.view-options button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
}

.products-list .product-card {
  flex-direction: row;
  height: auto;
}

.products-list .product-img {
  width: 300px;
  height: 100%;
  flex-shrink: 0;
}

/* Shop Section */
.shop-item {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.shop-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.shop-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.shop-item:hover .shop-img img {
  transform: scale(1.08);
}

.shop-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.shop-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  opacity: 0;
  padding: 0 20px;
}

.shop-item:hover .shop-actions {
  bottom: 20px;
  opacity: 1;
}

.shop-action-btn {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.shop-action-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.shop-action-btn.active {
  background: var(--primary-color);
  color: white;
}

.shop-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.shop-category {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.shop-title {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.shop-title a {
  color: var(--dark-color);
  transition: var(--transition);
}

.shop-title a:hover {
  color: var(--primary-color);
}

.shop-price {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.shop-price .current-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 24px;
}

.shop-price .old-price {
  color: var(--gray-color);
  font-size: 16px;
  text-decoration: line-through;
  margin-left: 15px;
}

/* Shop Categories Section */
.shop-categories {
  padding-top: 30px;
}

.category-card {
  position: relative;
  margin-bottom: 30px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 250px;
}

.category-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 53, 87, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

.category-overlay h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 15px;
}

.category-card:hover .category-img img {
  transform: scale(1.1);
}

/* Promo Banner */
.promo-banner {
  padding: 80px 0;
  background-color: #f5f7ff;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.1);
}

.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.1);
}

.promo-content {
  padding: 30px;
}

.promo-content h2 {
  margin-bottom: 20px;
  font-size: 36px;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.promo-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.promo-features li i {
  color: var(--success-color);
  margin-right: 15px;
  font-size: 18px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #fff;
  position: relative;
}

/* Testimonials com design moderno */
.testimonial-card {
  background-color: #fff;
  padding: 35px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--tech-blue), var(--tech-purple));
}

.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(0, 0, 0, 0.03);
  line-height: 0;
}

.testimonial-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-tech);
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.7;
  margin: 0;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 15px;
  border: 4px solid #f5f5f5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-author img {
  border-color: rgba(0, 112, 243, 0.1);
}

.author-info h5 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: var (--dark-color);
}

.author-info span {
  font-size: 14px;
  color: var(--tech-blue);
  font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.svg');
  opacity: 0.1;
}

.newsletter-content h2 {
  color: white;
  margin-bottom: 20px;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.newsletter-form .input-group {
  box-shadow: var(--shadow-md);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form .form-control {
  padding: 15px 25px;
  border: none;
  font-size: 16px;
  height: auto;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.newsletter-form .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

.newsletter-form .btn:hover {
  background-color: #000;
}

/* Contact Section */
.contact-section {
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(67, 97, 238, 0.05);
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(67, 97, 238, 0.05);
  z-index: 0;
}

.contact-info {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.contact-item i {
  font-size: 22px;
  color: var(--tech-blue);
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  margin-right: 25px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-item i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 112, 243, 0.1), rgba(138, 43, 226, 0.1));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.contact-item:hover i {
  transform: translateY(-8px) rotate(5deg);
  box-shadow: 0 15px 25px rgba(0, 112, 243, 0.15);
  color: #fff;
  background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
}

.contact-item:hover i::after {
  opacity: 1;
}

.contact-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark-color);
  font-weight: 700;
}

.contact-item p {
  color: var(--gray-color);
  font-size: 1rem;
}

/* Melhorias para a seção de contato */
.contact-form {
  background: #fff;
  padding: 45px 35px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.contact-form:hover {
  box-shadow: var(--shadow-tech);
  transform: translateY(-8px);
}

.contact-form input,
.contact-form textarea {
  font-size: 1.05rem;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  margin-bottom: 20px;
  background: #f8fafc;
  color: var(--dark-color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--tech-blue);
  background: #fff;
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 112, 243, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  padding: 15px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
  color: #fff;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 112, 243, 0.15);
  transition: all 0.4s ease;
}

.contact-form .btn:hover {
  box-shadow: 0 15px 30px rgba(0, 112, 243, 0.25);
  transform: translateY(-5px);
}

.contact-form .alert {
  font-size: 1rem;
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 14px 18px;
}

@media (max-width: 767px) {
  .contact-form {
    padding: 25px 10px;
  }
  .contact-form .btn {
    width: 100%;
    padding: 14px 0;
  }
}

/* --- Aviso de Cookies --- */
.cookie-consent {
  position: fixed;
  left: 50%;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #222;
  color: #fff;
  padding: 24px 16px 16px 16px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 16px 16px 0 0;
  max-width: 540px;
  margin: 0 auto;
  transform: translateX(-50%);
}
.cookie-consent.show {
  display: flex;
  animation: slideUp 0.5s;
}
@keyframes slideUp {
  from { 
    transform: translate(-50%, 100%);
    opacity: 0; 
  }
  to { 
    transform: translate(-50%, 0);
    opacity: 1; 
  }
}
.cookie-text {
  flex: 1 1 300px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-text a {
  color: #ffd600;
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn.cookie-accept {
  background: #4361ee;
  color: #fff;
}
.cookie-btn.cookie-accept:hover {
  background: #2746b6;
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
}
.cookie-btn.cookie-settings:hover {
  background: #f5f5f5;
}
@media (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
    padding: 18px 8px 8px 8px;
    font-size: 0.95rem;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Footer */
.footer {
  background: linear-gradient(to right, var(--dark-blue), var(--dark-color));
  color: #fff;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  z-index: 0;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  transform: translateY(-100%);
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  display: inline-block;
  color: #fff;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.footer-about p {
  opacity: 0.8;
  margin-bottom: 30px;
  color: #fff;
}

.footer-heading {
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 1.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.footer-links li a:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 14px;
  color: var(--primary-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links li a:hover:before {
  opacity: 1;
  transform: translateX(0);
}

.footer-social {
  margin-top: 30px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-5px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 60px;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
  text-align: center;
  color: #fff;
}

/* Botões */
.btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--tech-purple), var(--tech-blue));
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 112, 243, 0.15);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
  transform: translateY(-3px);
}

.btn-outline-light {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-light {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark-color);
}

.btn-light:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
  transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: -60px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
}

.back-to-top.show {
  bottom: 30px;
  opacity: 1;
}

.back-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Keyframes for Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animações e efeitos adicionais */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 50px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

.animate-slideInUp {
  animation: slideInUp 0.8s ease-out forwards;
}

/* Delay para animações em sequência */
.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}
.delay-5 {
  animation-delay: 1s;
}

/* Cursor personalizado para elementos interativos */
.cursor-hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%234361ee" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/></svg>') 12 12, auto;
}

/* Responsive */
@media (max-width: 1199px) {
  :root {
    --section-spacing: 80px;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  :root {
    --section-spacing: 70px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 140px 0 100px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-text {
    font-size: 18px;
  }
  
  .about-content {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-spacing: 60px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-section {
    padding: 120px 0 80px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-text {
    font-size: 16px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .contact-item {
    margin-bottom: 30px;
  }
  
  .filters-wrapper {
    margin-bottom: 20px;
  }
  
  .products-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .view-options {
    align-self: flex-end;
  }
  
  .recent-post-img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 575px) {
  :root {
    --section-spacing: 50px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-buttons .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
  
  .contact-item i {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-right: 15px;
  }
  
  .newsletter-form .btn {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .newsletter-form .form-control {
    padding: 12px 15px;
  }
  
  .footer {
    padding: 60px 0 0;
  }
  
  .footer-heading {
    margin-top: 30px;
  }
}

/* --- Customizações específicas da página inicial (antes estavam inline em index.php) --- */
.hero-logo-image {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
  transition: all 0.5s ease;
  max-width: 80%;
}
.hero-logo-image:hover {
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  transform: translateY(-5px);
}
.counter-section {
  background-image: linear-gradient(135deg, rgba(67, 97, 238, 0.9), rgba(63, 55, 201, 0.9)), url('../images/counter-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
}
.counter-item {
  padding: 30px 15px;
}
.counter-icon {
  margin-bottom: 15px;
}
.counter {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}
.counter-item h5 {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 18px;
}
.map-section {
  position: relative;
}
.ceo-section {
  position: relative;
  overflow: hidden;
}
.ceo-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(67, 97, 238, 0.05);
  z-index: 0;
}
.ceo-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: var(--shadow-lg);
}
.ceo-content {
  position: relative;
  z-index: 1;
}
.ceo-content h3 {
  font-size: 32px;
  margin-bottom: 5px;
  font-weight: 700;
}
.ceo-content h4 {
  font-size: 20px;
  font-weight: 600;
}
.ceo-quote {
  background: rgba(67, 97, 238, 0.05);
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  position: relative;
}
.ceo-quote i {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 10px;
}
.ceo-quote p {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--dark-color);
  margin: 0;
}
.social-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #0077b5;
  color: white;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}
.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
  color: white;
}
.social-link i {
  margin-right: 8px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    margin-top: 40px;
  }
  .ceo-image {
    margin-bottom: 30px;
  }
  .ceo-quote {
    margin: 20px 0;
  }
}

/* Novos efeitos modernos para design mais tecnológico */

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(31, 38, 135, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-card-dark {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: #fff;
  transition: var(--transition-smooth);
}

.glass-card-dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Partículas e fundos interativos */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Efeito de grade tecnológica */
.tech-grid-bg {
  position: relative;
}

.tech-grid-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(67, 97, 238, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 97, 238, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
}

/* Gradientes modernos */
.gradient-blue-purple {
  background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-btn {
  background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
  color: #fff;
  border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.gradient-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--tech-purple), var(--tech-blue));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.gradient-btn:hover::before {
  opacity: 1;
}

.gradient-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
}

/* Botões com efeito neon */
.neon-btn {
  background-color: transparent;
  border: 2px solid var(--tech-blue);
  color: var(--tech-blue);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
  text-shadow: 0 0 8px rgba(0, 112, 243, 0.5);
  box-shadow: 0 0 15px rgba(0, 112, 243, 0.3);
}

.neon-btn:hover {
  color: #fff;
  border-color: var(--tech-blue);
  box-shadow: 0 0 25px rgba(0, 112, 243, 0.5);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.neon-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--tech-blue);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.neon-btn:hover::before {
  transform: scaleX(1);
}

/* Cards com movimento 3D */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: var(--transition-smooth);
}

.tilt-card-inner {
  transform-style: preserve-3d;
  transition: var(--transition-smooth);
}

.tilt-card:hover .tilt-card-inner {
  transform: rotateY(10deg) rotateX(5deg);
}

.tilt-card-front, 
.tilt-card-back {
  backface-visibility: hidden;
}

/* Badges de tecnologia */
.tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tech-blue);
  transition: var(--transition);
  border: 1px solid rgba(67, 97, 238, 0.2);
}

.tech-badge:hover {
  background: rgba(67, 97, 238, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.15);
}

.tech-badge i {
  margin-right: 8px;
  color: var(--tech-blue);
}

/* Indicador de número em estilo tech */
.tech-number {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--tech-blue);
  background: rgba(0, 112, 243, 0.1);
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
}

/* Efeito de ondas SVG */
.wave-section {
  position: relative;
  overflow: hidden;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-99%);
  z-index: 1;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(99%);
  z-index: 1;
}

/* Decoração de fundo com círculos estilo blockchain */
.blockchain-bg {
  position: relative;
  overflow: hidden;
}

.blockchain-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(67, 97, 238, 0.3);
  animation: rotate 60s linear infinite;
}

.blockchain-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}

.blockchain-circle:nth-child(2) {
  width: 500px;
  height: 500px;
  bottom: -250px;
  left: -200px;
  animation-duration: 80s;
  animation-direction: reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Efeito de texto digital com ruído */
.digital-text {
  position: relative;
  display: inline-block;
}

.digital-text::before,
.digital-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.digital-text::before {
  left: 2px;
  text-shadow: -1px 0 #00fffc;
  animation: digital-glitch 2s infinite linear alternate-reverse;
}

.digital-text::after {
  left: -2px;
  text-shadow: 3px 0 #ff00ff;
  animation: digital-glitch 3s infinite linear alternate-reverse;
}

@keyframes digital-glitch {
  0% {
    clip-path: inset(30% 0 0 0);
  }
  20% {
    clip-path: inset(0 30% 0 0);
  }
  40% {
    clip-path: inset(0 0 30% 0);
  }
  60% {
    clip-path: inset(0 0 0 30%);
  }
  80% {
    clip-path: inset(10% 10% 10% 10%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* Animação de digitação avançada */
.typing-effect {
  border-right: 3px solid var(--tech-blue);
  white-space: nowrap;
  overflow: hidden;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--tech-blue) }
}

/* Loading spinner tecnológico */
.tech-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  border: 3px solid rgba(67, 97, 238, 0.1);
  border-radius: 50%;
  border-top-color: var(--tech-blue);
  animation: tech-spin 1s ease-in-out infinite;
}

@keyframes tech-spin {
  to { transform: rotate(360deg); }
}

/* Botão flutuante moderno */
.float-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(67, 97, 238, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: translateY(-10px) rotate(10deg);
  box-shadow: 0 15px 35px rgba(67, 97, 238, 0.35);
}

/* Campos de formulário com design tecnológico */
.tech-input {
  background-color: rgba(247, 248, 252, 0.8);
  border: 2px solid rgba(67, 97, 238, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.tech-input:focus {
  border-color: var(--tech-blue);
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.15);
  background-color: #fff;
  outline: none;
}

/* Linha de timeline tecnológica */
.tech-timeline {
  position: relative;
  padding-left: 50px;
}

.tech-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, var(--tech-blue), var(--tech-purple));
}

.tech-timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.tech-timeline-item::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--tech-blue);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
  z-index: 1;
}

.tech-timeline-item:hover::before {
  background: var(--tech-blue);
  box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.3);
}

/* Estatísticas em estilo tech */
.tech-stat {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.tech-stat:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-tech);
}

.tech-stat-value {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.tech-stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
}

/* Separador de seção moderno */
.tech-divider {
  height: 4px;
  width: 100px;
  margin: 30px auto;
  background: linear-gradient(90deg, rgba(67, 97, 238, 0), var(--tech-blue), rgba(138, 43, 226, 0.8), rgba(138, 43, 226, 0));
  border-radius: 2px;
}

/* Melhorias responsivas */
@media (max-width: 991px) {
  .glass-card, .glass-card-dark {
    padding: 25px;
  }
  
  .tech-timeline {
    padding-left: 40px;
  }
  
  .tech-timeline-item::before {
    left: -40px;
  }
}

@media (max-width: 767px) {
  .tech-timeline {
    padding-left: 30px;
  }
  
  .tech-timeline-item::before {
    left: -30px;
    width: 15px;
    height: 15px;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Estilos adicionais para elementos tecnológicos modernos */

/* Efeito de gradiente em textos */
.gradient-blue-purple {
    background: linear-gradient(to right, var(--tech-blue), var(--tech-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Estilo para o badge tecnológico */
.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50px;
    margin-bottom: 10px;
    border: 1px solid rgba(67, 97, 238, 0.2);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--tech-blue);
    transition: var(--transition);
}

.tech-badge i {
    margin-right: 6px;
    color: var(--tech-blue);
}

.tech-badge:hover {
    background: rgba(67, 97, 238, 0.15);
    transform: translateY(-2px);
}

/* Background com grade tecnológica */
.tech-grid-bg {
    position: relative;
    overflow: hidden;
}

.tech-grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(67, 97, 238, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67, 97, 238, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

/* Estilos para cards de vidro (glassmorphism) */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    padding: 25px;
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-card-dark {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 25px;
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    color: white;
}

.glass-card-dark:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Efeito tilt 3D para cards */
.tilt-card {
    perspective: 1500px;
    transform-style: preserve-3d;
}

.tilt-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

/* Timeline tecnológica */
.tech-timeline {
    position: relative;
    padding: 20px 0;
    margin-top: 50px;
}

.tech-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(102, 16, 242, 0), 
        rgba(102, 16, 242, 0.5) 20%, 
        rgba(102, 16, 242, 0.5) 80%, 
        rgba(102, 16, 242, 0)
    );
    transform: translateX(-50%);
}

.tech-timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
    left: 0;
}

.tech-timeline-item:nth-child(even) {
    left: 50%;
    padding-right: 0;
    padding-left: 40px;
}

.tech-timeline-dot {
    position: absolute;
    top: 20px;
    right: -11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--tech-purple);
    box-shadow: 0 0 0 4px rgba(102, 16, 242, 0.2), 0 0 15px rgba(102, 16, 242, 0.6);
    z-index: 1;
}

.tech-timeline-item:nth-child(even) .tech-timeline-dot {
    right: auto;
    left: -11px;
}

.tech-timeline-content {
    position: relative;
    z-index: 1;
}

.tech-timeline-year {
    position: absolute;
    top: -25px;
    left: 20px;
    background: var(--tech-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 112, 243, 0.3);
}

.tech-timeline-item .glass-card-dark {
    margin-top: 15px;
}

/* Ícones e números estatísticos */
.tech-stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-blue);
    font-size: 18px;
    flex-shrink: 0;
}

.tech-stat-number {
    font-weight: 700;
    color: var(--tech-blue);
    font-size: 20px;
}

/* Partículas de fundo */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Círculos de blockchain */
.blockchain-bg {
    position: relative;
    overflow: hidden;
}

.blockchain-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(67, 97, 238, 0.1);
    opacity: 0.2;
    pointer-events: none;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Botão com gradiente */
.gradient-btn {
    background: linear-gradient(to right, var(--tech-blue), var(--tech-purple));
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gradient-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--tech-purple), var(--tech-blue));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.gradient-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(102, 16, 242, 0.2);
}

.gradient-btn:hover:before {
    opacity: 1;
}

/* Responsividade para timeline */
@media (max-width: 768px) {
    .tech-timeline::before {
        left: 30px;
    }
    
    .tech-timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .tech-timeline-item:nth-child(even) {
        left: 0;
        padding-left: 70px;
    }
    
    .tech-timeline-dot {
        left: 19px;
        right: auto;
    }
    
    .tech-timeline-item:nth-child(even) .tech-timeline-dot {
        left: 19px;
    }
}

/* Animações para efeitos tecnológicos */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Modo escuro */
.dark-mode {
    --dark-color: #f8f9fa;
    --light-color: #0f172a;
    background-color: #0f172a;
    color: #f8f9fa;
}

.dark-mode .navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
}

.dark-mode .glass-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.05);
    color: #f8f9fa;
}

.dark-mode .service-card {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.05);
    color: #f8f9fa;
}

.dark-mode .service-card h3,
.dark-mode .service-card p {
    color: #f8f9fa;
}

.dark-mode .section-header h2 {
    color: #f8f9fa;
}

.dark-mode .section-header p {
    color: rgba(248, 249, 250, 0.7);
}

/* Luzes de neon para destaque em modo escuro */
.dark-mode .tech-badge {
    box-shadow: 0 0 10px rgba(67, 97, 238, 0.3);
}

.dark-mode .service-icon {
    box-shadow: 0 0 15px rgba(0, 112, 243, 0.3);
}

/* Media queries para responsividade */
@media (max-width: 991px) {
    .tech-badge {
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        min-height: 70vh;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 100px 0;
    }
    
    .glass-card, .glass-card-dark {
        padding: 20px;
    }
}

/* Animações de digitação */
.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--tech-blue);
    animation: typing 3.5s steps(30, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--tech-blue) }
}

/* Efeito de scroll reveal */
.animate-fadeIn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fadeIn.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para os contadores circulares SVG */
.counter-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(216, 216, 216, 0.15) 0%, rgba(0, 0, 0, 0.01) 80%);
    z-index: 1;
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.counter-wrapper {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.counter-wrapper:hover {
    transform: translateY(-10px);
}

.svg-circle-counter {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.counter-circle-bg {
    stroke: rgba(200, 200, 200, 0.2);
}

.counter-circle-progress {
    stroke-linecap: round;
    transform-origin: center;
    transform: rotate(-90deg);
    transition: stroke-dashoffset 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.counter-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #333;
}

.counter-plus {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 2px;
    color: #666;
}

.counter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    margin-top: 10px;
}

/* Custom colors for each counter */
.svg-circle-counter[data-color="#4361ee"] .counter-circle-progress {
    stroke: #4361ee;
}

.svg-circle-counter[data-color="#3a0ca3"] .counter-circle-progress {
    stroke: #3a0ca3;
}

.svg-circle-counter[data-color="#7209b7"] .counter-circle-progress {
    stroke: #7209b7;
}

.svg-circle-counter[data-color="#f72585"] .counter-circle-progress {
    stroke: #f72585;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .counter-circle {
        width: 140px;
        height: 140px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .counter-circle {
        width: 120px;
        height: 120px;
    }
    
    .counter-number {
        font-size: 1.75rem;
    }
}

/* Estilos para os contadores circulares SVG */
.counter-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.counter-section .section-header {
  margin-bottom: 60px;
}

.counter-item {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 5;
}

.counter-circle-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
}

.counter-svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.counter-circle-bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.05);
  stroke-width: 8;
}

.counter-circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s ease;
}

/* Cores personalizadas para cada contador */
.counter-item:nth-child(1) .counter-circle {
  stroke: #4e54c8;
}

.counter-item:nth-child(2) .counter-circle {
  stroke: #0ea5e9;
}

.counter-item:nth-child(3) .counter-circle {
  stroke: #10b981;
}

.counter-item:nth-child(4) .counter-circle {
  stroke: #f59e0b;
}

.counter-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #333;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Cores de ícones personalizadas para cada contador */
.counter-item:nth-child(1) .counter-icon {
  color: #4e54c8;
}

.counter-item:nth-child(2) .counter-icon {
  color: #0ea5e9;
}

.counter-item:nth-child(3) .counter-icon {
  color: #10b981;
}

.counter-item:nth-child(4) .counter-icon {
  color: #f59e0b;
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 15px 0 10px;
  transition: all 0.3s ease;
}

.counter-title {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

/* Animação de conclusão para destacar os valores */
.counter-complete {
  animation: pulse 0.5s ease-in-out;
}

.circle-complete {
  animation: glow 1s ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes glow {
  0% { filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0)); }
  50% { filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.5)); }
  100% { filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0)); }
}

/* Estilos responsivos para dispositivos móveis */
@media (max-width: 767px) {
  .counter-circle-container {
    width: 120px;
    height: 120px;
  }
  
  .counter-icon {
    font-size: 2rem;
  }
  
  .counter-value {
    font-size: 2rem;
  }
  
  .counter-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .counter-section .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .counter-section .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .counter-circle-container {
    width: 100px;
    height: 100px;
  }
  
  .counter-circle-bg, .counter-circle {
    stroke-width: 6;
  }
  
  .counter-icon {
    font-size: 1.8rem;
  }
  
  .counter-value {
    font-size: 1.8rem;
    margin: 10px 0 5px;
  }
  
  .counter-title {
    font-size: 0.8rem;
  }
}

/* Estilos para contadores circulares SVG */
.counters-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 50px 0;
}

.counters-section .section-title {
    margin-bottom: 50px;
}

.counter-container {
    text-align: center;
    margin-bottom: 30px;
}

.svg-circle-counter {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
}

.counter-circle-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 10;
}

.counter-circle-progress {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.8s;
}

.counter-number-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.counter-number {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1;
}

.counter-label {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

.counter-text {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

/* Cores específicas para cada contador */
.counter-clients .counter-circle-progress {
    stroke: #4e73df;
}

.counter-projects .counter-circle-progress {
    stroke: #1cc88a;
}

.counter-hours .counter-circle-progress {
    stroke: #f6c23e;
}

.counter-awards .counter-circle-progress {
    stroke: #e74a3b;
}

/* Responsividade */
@media (max-width: 768px) {
    .svg-circle-counter {
        width: 150px;
        height: 150px;
    }
    
    .counter-number {
        font-size: 32px;
    }
    
    .counter-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .counters-section {
        padding: 50px 0;
    }
    
    .svg-circle-counter {
        width: 120px;
        height: 120px;
    }
    
    .counter-number {
        font-size: 28px;
    }
    
    .counter-circle-bg, .counter-circle-progress {
        stroke-width: 8;
    }
}

/* Estilos para a nova seção de contadores */
.counter-stats-section {
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.counter-stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.counter-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.counter-stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.counter-stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-stat-content h5 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Estilos para animação das barras de progresso */
.progress-bar-animated {
    transition: width 1.5s ease-in-out;
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

/* Timeline Tecnológica - Design Moderno */
.tech-timeline-bg {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
}

.tech-timeline-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(rgba(56, 189, 248, 0.1) 1px, transparent 1px),
        radial-gradient(rgba(56, 189, 248, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    pointer-events: none;
}

.modern-timeline {
    position: relative;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.7));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-card {
    background: rgba(17, 24, 39, 0.7);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #4f46e5, #8b5cf6);
    z-index: 1;
}

.timeline-card-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.5);
}

.tech-timeline-dot {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #60a5fa;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.8);
}

.tech-timeline-year {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.gradient-text {
    background-image: linear-gradient(to right, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.glow-badge {
    background: rgba(30, 58, 138, 0.8);
    border: 1px solid rgba(96, 165, 250, 0.5);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
    color: white;
    transition: all 0.3s ease;
}

.glow-badge:hover {
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
    transform: translateY(-2px);
}

/* Nossa Trajetória em Números - Design Moderno */
.counter-stats-section {
    background: linear-gradient(135deg, #111827, #1f2937);
    position: relative;
    overflow: hidden;
}

.counter-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.neon-text {
    color: #fff;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(99, 102, 241, 0.8),
        0 0 15px rgba(99, 102, 241, 0.5),
        0 0 20px rgba(99, 102, 241, 0.3);
    font-weight: bold;
}

.neo-stat-card {
    background: rgba(17, 24, 39, 0.7);
    border-radius: 16px;
    position: relative;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    overflow: hidden;
    height: 100%;
}

.neo-stat-card-active {
    transform: translateY(-5px);
    border-color: rgba(129, 140, 248, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(99, 102, 241, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(to right, #93c5fd, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f8fafc;
    margin-bottom: 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.stat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(96, 165, 250, 0.1));
    pointer-events: none;
    z-index: -1;
}

/* Barras de progresso animadas para o CEO */
.ceo-bio .progress-bar-animated {
    transition: width 1.5s ease-in-out;
}

.ceo-bio .progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    from { background-position: 1rem 0; }
    to { background-position: 0 0; }
}

/* Timeline Tecnológica - Design Moderno e Claro */
.tech-timeline-bg {
    background: linear-gradient(135deg, #f0f4f8, #e1e9f2);
    position: relative;
    overflow: hidden;
}

.tech-timeline-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        radial-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    pointer-events: none;
}

.modern-timeline {
    position: relative;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.5));
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #4f46e5, #8b5cf6);
    z-index: 1;
}

.timeline-card-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.tech-timeline-dot {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #60a5fa;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.8);
}

.tech-timeline-year {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.tech-timeline-content h3 {
    color: #1e3a8a;
    font-weight: 600;
}

.tech-timeline-content p {
    color: #475569;
}

.gradient-text {
    background-image: linear-gradient(to right, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}

.glow-badge {
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #4338ca;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
}

.glow-badge:hover {
    background: rgba(79, 70, 229, 0.15);
    box-shadow: 0 8px 16px rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
}

/* Nossa Trajetória em Números - Design Elegante */
.counter-stats-section {
    background: linear-gradient(135deg, #f3f4f6, #f8fafc);
    position: relative;
    overflow: hidden;
}

.counter-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233b82f6' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.modern-section-title {
    color: #1e3a8a;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.modern-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
}

.modern-section-subtitle {
    color: #475569;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.modern-stat-card {
    background: white;
    border-radius: 16px;
    position: relative;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    overflow: hidden;
    height: 100%;
    transform: translateY(30px);
    opacity: 0;
}

.modern-stat-card.animated {
    transform: translateY(0);
    opacity: 1;
}

.modern-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
    border-color: rgba(219, 234, 254, 1);
}

.modern-stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
}

.modern-stat-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.15;
}

.modern-stat-value {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.3s;
}

.modern-stat-card.animated .modern-stat-value {
    opacity: 1;
    transform: translateY(0);
}

.modern-stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.5s;
}

.modern-stat-card.animated .modern-stat-label {
    opacity: 1;
    transform: translateY(0);
}

.modern-stat-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    right: -30px;
    bottom: -30px;
    z-index: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent.show {
    display: flex;
    transform: translateY(0);
}

.cookie-consent-content {
    flex: 1;
}

.cookie-consent h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.cookie-consent p {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0.75rem;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.cookie-consent-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.cookie-consent-btn-accept {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border: none;
    color: white;
}

.cookie-consent-btn-accept:hover {
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.cookie-consent-btn-settings {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #4b5563;
}

.cookie-consent-btn-settings:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        padding: 1.25rem;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-consent-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
}

/* Para dispositivos muito pequenos */
@media (max-width: 360px) {
    .cookie-consent {
        padding: 1rem;
    }
    
    .cookie-consent h3 {
        font-size: 1.1rem;
    }
    
    .cookie-consent p {
        font-size: 0.9rem;
    }
}

/* Contato Links Otimizados para Mobile */
.contact-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    padding: 5px 10px;
    margin: -5px -10px;
    border-radius: 6px;
}

.contact-link:hover, .contact-link:focus {
    background-color: rgba(99, 102, 241, 0.05);
    color: #4f46e5;
    text-decoration: none;
}

.contact-value {
    font-weight: 500;
}

.mobile-action-icon {
    display: none;
    margin-left: 8px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Estilos responsivos para dispositivos móveis */
@media (max-width: 768px) {
    .mobile-action-icon {
        display: inline-flex;
        align-items: center;
    }
    
    .mobile-action-icon i {
        margin-right: 4px;
    }
    
    .contact-link {
        padding: 8px 12px;
        margin: -8px -12px;
        border: 1px solid rgba(99, 102, 241, 0.1);
    }
    
    .contact-link:active {
        background-color: rgba(99, 102, 241, 0.1);
        transform: translateY(1px);
    }
    
    .contact-item {
        margin-bottom: 1.5rem !important;
    }
}

/* Para dispositivos muito pequenos */
@media (max-width: 360px) {
    .contact-link {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mobile-action-icon {
        margin-left: 0;
        margin-top: 8px;
        align-self: flex-start;
    }
}

/* Timeline Tecnológica - Novo Background Futurista */
.tech-timeline-bg {
    background: linear-gradient(125deg, #0a1128 0%, #1a237e 100%);
    position: relative;
    overflow: hidden;
}

.tech-timeline-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.tech-timeline-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}