/* ===== RESET E BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a202c;
  background: #ffffff;
  overflow-x: hidden;
}

/* ===== UTILITÁRIOS ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.875rem; font-weight: 600; }

p {
  margin: 0 0 1rem 0;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-outline:hover {
  background: #667eea;
  color: #fff;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ===== NAVEGAÇÃO ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 32, 80, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.brand-logo {
  height: 2.625rem;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link:focus {
  color: #667eea;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.cta-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-link:hover::after {
  width: 0;
}

.language-selector {
  display: flex;
  gap: 0.375rem;
}

.lang-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.375rem;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 1.5625rem;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#particles-canvas,
.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#particles-canvas {
  z-index: 1;
}

.hero-gradient {
  z-index: 2;
  background: linear-gradient(180deg, rgba(15, 32, 80, 0.7) 0%, rgba(15, 32, 80, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-word {
  display: block;
  animation: fadeInUp 0.8s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.3s; }
.title-word:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== SEÇÕES GERAIS ===== */
.section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(5, 15, 40, 0.05) 0%, rgba(5, 15, 40, 0) 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.trust-item {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(118, 75, 162, 0.1));
  border: 1px solid rgba(102, 126, 234, 0.2);
  backdrop-filter: blur(1rem);
  transition: all 0.3s ease;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 60%);
  filter: blur(16px);
  pointer-events: none;
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 15, 39, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.trust-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
}

.trust-logo::after {
  content: '✔';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd 0%, #764ba2 100%);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.trust-item p {
  color: rgba(68, 12, 132, 0.9);
  font-size: 0.98rem;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.625rem;
}

.trust-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.125rem;
  padding: 1.625rem 1.375rem;
  color: #fff;
  text-align: center;
}

.trust-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.625rem;
}

.trust-stat-label {
  color: rgba(32, 135, 180, 0.72);
  font-size: 0.95rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 5.625rem 0;
  background: linear-gradient(180deg, rgba(15, 32, 80, 0.05), rgba(15, 32, 80, 0));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(1rem);
  transition: all 0.3s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -42px;
  right: -42px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.15), transparent 60%);
  filter: blur(16px);
  pointer-events: none;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.875rem;
  height: 3.875rem;
  border-radius: 1.125rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.18), rgba(118, 75, 162, 0.18));
  font-size: 30px;
  margin-bottom: 1.125rem;
}

.stat-value {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.suffix {
  font-size: 1.2rem;
  color: rgba(203, 213, 255, 0.9);
}

.stat-title {
  margin-top: 1.125rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 15, 39, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 6.25rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 244, 255, 0.98) 100%);
  border: 1px solid rgba(102, 126, 234, 0.22);
  border-radius: 1.5rem;
  padding: 2.5rem 1.875rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(102, 126, 234, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 80px rgba(102, 126, 234, 0.22);
  border-color: rgba(102, 126, 234, 0.45);
}

.service-header {
  position: relative;
  margin-bottom: 1.5rem;
  height: 80px;
}

.service-icon {
  font-size: 48px;
  animation: iconFloat 3s ease-in-out infinite;
}

.service-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a202c;
}

.service-desc {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
}

.service-features li {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}

.btn-learn-more {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-learn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 6.25rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.timeline-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 0.75rem;
  padding: 2.5rem 1.875rem;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.4);
}

.timeline-marker {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
}

.timeline-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a202c;
}

.timeline-desc {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.timeline-features {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.375rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  padding: 6.25rem 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 2px solid rgba(102, 126, 234, 0.2);
  color: #667eea;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 255, 0.98) 100%);
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.18);
  transition: all 0.3s ease;
  box-shadow: 0 20px 45px rgba(102, 126, 234, 0.08);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
}

.portfolio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #fff;
  text-shadow: 0 6px 22px rgba(0,0,0,0.6);
}

.overlay-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 0.875rem;
  margin-bottom: 0.9375rem;
  opacity: 0.95;
}

.btn-view-project {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-view-project:hover {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 1.875rem;
}

.portfolio-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1a202c;
}

.portfolio-info p {
  color: rgba(33, 43, 77, 0.78);
  font-size: 0.875rem;
  margin-bottom: 0.9375rem;
}

.project-tags {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.375rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5625rem;
}

.blog-card {
  text-decoration: none;
  color: inherit;
}

.blog-card .card {
  border-radius: 1.125rem;
  transition: all 0.3s ease;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(246,249,255,0.98));
  border: 1px solid rgba(102, 126, 234, 0.16);
  box-shadow: 0 16px 40px rgba(102, 126, 234, 0.08);
}

.blog-card:hover .card {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(102,126,234,0.18);
}

.blog-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.875rem;
  height: 100%;
}

.blog-card-title {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.blog-card-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #586174;
}

.blog-link {
  align-self: flex-start;
  margin-top: auto;
  font-weight: 700;
  color: #0d6efd;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 6.25rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 245, 255, 0.98) 100%);
  border-radius: 1.125rem;
  padding: 2.5rem 1.875rem;
  border: 1px solid rgba(102, 126, 234, 0.18);
  transition: all 0.3s ease;
  box-shadow: 0 22px 50px rgba(102, 126, 234, 0.08);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}

.testimonial-header {
  display: flex;
  gap: 0.9375rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar-initials {
  font-size: 1.125rem;
}

.testimonial-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: rgba(33, 43, 77, 0.72);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 0.9375rem;
  letter-spacing: 4px;
}

.testimonial-text {
  color: rgba(33, 43, 77, 0.78);
  font-size: 0.875rem;
  line-height: 1.8;
  font-style: italic;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6.25rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 31.25rem;
  height: 31.25rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(6.25rem, -6.25rem);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 1.875rem;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.8);
  padding: 3.75rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0px;
  max-width: 1400px;
  margin: 0 auto 3.75rem;
  
}

.footer-col {
  
  text-align: center;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
   text-align: center;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 0.9375rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #667eea;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #667eea;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.6;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2.5rem;
  max-width: 31.25rem;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: #666;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  color: #1a202c;
}

.modal-text {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1.875rem;
  line-height: 1.6;
}

.modal-body {
  text-align: center;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  z-index: 2000;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.32);
}

.whatsapp-float svg {
  display: block;
  stroke: #fff;
  width: 22px;
  height: 22px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons button {
    width: 100%;
  }

  .filter-btn {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 4.375rem;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 32, 80, 0.99);
    padding: 1.25rem;
    gap: 0.625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .language-selector {
    margin-left: 0;
  }

  .lang-btn {
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
  }

  .whatsapp-float {
    width: 3rem;
    height: 3rem;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float svg {
    width: 1.125rem;
    height: 1.125rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
  }
}
