/* ===== Nova Soluciones Tecnológicas — Global Styles ===== */
:root {
  --primary: #3b1578;
  --primary-light: #4c1d95;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-glow: #c4b5fd;
  --dark: #0f172a;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --success: #10b981;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(139,92,246,.1), rgba(139,92,246,.05));
  color: var(--accent);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(139,92,246,.15);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 48px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), #c026d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(139,92,246,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139,92,246,.45);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,.45);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 40px;
  transition: var(--transition);
}

.navbar-logo .logo-dark { display: none; }
.navbar.scrolled .navbar-logo .logo-light { display: none; }
.navbar.scrolled .navbar-logo .logo-dark { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--gray-600); }
.navbar.scrolled .nav-links a:hover { color: var(--accent); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.12);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
}

.navbar.scrolled .lang-switch {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.lang-switch a {
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}

.lang-switch a.active {
  background: var(--accent);
  color: var(--white);
}

.navbar.scrolled .lang-switch a { color: var(--gray-500); }
.navbar.scrolled .lang-switch a.active { color: var(--white); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span { background: var(--gray-700); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0a1a 0%, #1a0a3e 40%, #5b21b6 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 20% 50%, rgba(139,92,246,.15), transparent),
    radial-gradient(ellipse 400px 400px at 80% 20%, rgba(139,92,246,.1), transparent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-float {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  animation: float 20s infinite ease-in-out;
}

.hero-float:nth-child(1) {
  width: 400px; height: 400px;
  background: var(--accent);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.hero-float:nth-child(2) {
  width: 300px; height: 300px;
  background: #c026d3;
  bottom: -50px; left: -50px;
  animation-delay: -7s;
}

.hero-float:nth-child(3) {
  width: 200px; height: 200px;
  background: var(--accent-light);
  top: 40%; left: 60%;
  animation-delay: -14s;
}

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(.95); }
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content { z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.25);
  color: var(--accent-light);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: .5px;
}

.hero-tag i { font-size: .7rem; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-light), #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-mockup {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.1);
}

.hero-mockup-bar {
  background: rgba(30,41,59,.95);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-mockup-dot:nth-child(1) { background: #ef4444; }
.hero-mockup-dot:nth-child(2) { background: #f59e0b; }
.hero-mockup-dot:nth-child(3) { background: #22c55e; }

.hero-mockup-body {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-line {
  height: 8px;
  border-radius: 4px;
  animation: shimmer 2s infinite ease-in-out;
}

.mockup-line:nth-child(1) { width: 70%; background: rgba(139,92,246,.3); animation-delay: 0s; }
.mockup-line:nth-child(2) { width: 90%; background: rgba(139,92,246,.2); animation-delay: .3s; }
.mockup-line:nth-child(3) { width: 50%; background: rgba(139,92,246,.25); animation-delay: .6s; }
.mockup-line:nth-child(4) { width: 80%; background: rgba(16,185,129,.2); animation-delay: .9s; }
.mockup-line:nth-child(5) { width: 60%; background: rgba(139,92,246,.2); animation-delay: 1.2s; }
.mockup-line:nth-child(6) { width: 75%; background: rgba(139,92,246,.15); animation-delay: 1.5s; }

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.mockup-stat {
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.05);
}

.mockup-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.mockup-stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .5px;
}

@keyframes shimmer {
  0%,100% { opacity: .5; }
  50% { opacity: 1; }
}

/* ---------- Clients / Social Proof ---------- */
.clients {
  padding: 80px 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: clip visible;
  overflow-clip-margin: 0px;
  clip-path: inset(-10px 0);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  padding: 10px 0;
  animation: marquee 120s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-width: 200px;
  height: 80px;
  background: transparent;
  border-radius: 12px;
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.client-logo:hover {
  border-color: rgba(139,92,246,.4);
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
  box-shadow: 0 4px 15px rgba(0,0,0,.3);
}

.client-logo-solid {
  background: var(--white);
}

.client-logo-solid:hover {
  background: var(--white);
}

.client-logo-text {
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--white);
}

.client-logo-text:hover {
  color: var(--white);
}

/* ---------- Services ---------- */
.services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #c026d3);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(139,92,246,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-icon.blue   { background: rgba(139,92,246,.1);  color: var(--accent); }
.service-icon.purple { background: rgba(192,38,211,.1);  color: #c026d3; }
.service-icon.green  { background: rgba(16,185,129,.1);  color: #10b981; }
.service-icon.orange { background: rgba(245,158,11,.1);  color: #f59e0b; }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-500);
  font-size: .95rem;
  line-height: 1.7;
}

/* ---------- Features ---------- */
.features {
  padding: 100px 0;
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-grid .feature-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.features-grid .feature-card:first-child h3 { color: var(--white); }
.features-grid .feature-card:first-child p { color: rgba(255,255,255,.75); }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  background: rgba(139,92,246,.1);
  color: var(--accent);
}

.features-grid .feature-card:first-child .feature-icon {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.feature-icon.ficon-magenta { background: rgba(192,38,211,.1);  color: #c026d3; }
.feature-icon.ficon-green   { background: rgba(16,185,129,.1);  color: #10b981; }
.feature-icon.ficon-orange  { background: rgba(245,158,11,.1);  color: #f59e0b; }
.feature-icon.ficon-red     { background: rgba(239,68,68,.1);   color: #ef4444; }
.feature-icon.ficon-cyan    { background: rgba(6,182,212,.1);   color: #06b6d4; }
.feature-icon.ficon-amber   { background: rgba(217,119,6,.1);   color: #d97706; }

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray-500);
  font-size: .9rem;
  line-height: 1.7;
}

.feature-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-visual-bar {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}

.feature-visual-fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--accent-light), #d946ef);
}

/* ---------- Why Us ---------- */
.why-us {
  padding: 100px 0;
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
}

.why-us-content p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.stat-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #c026d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: .8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.why-us-visual {
  position: relative;
}

.why-us-card {
  background: linear-gradient(135deg, var(--primary), #5b21b6);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139,92,246,.2), transparent);
}

.why-us-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
  position: relative;
}

.why-us-card p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  line-height: 1.7;
  position: relative;
}

.why-us-card-list {
  margin-top: 24px;
  position: relative;
}

.why-us-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}

.why-us-card-list li i {
  color: var(--success);
  font-size: .8rem;
}

/* ---------- Google Reviews Badge ---------- */
.google-reviews-badge {
  margin-bottom: 40px;
}

.google-badge-link {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  max-width: 540px;
  margin: 0 auto;
  transition: var(--transition);
}

.google-badge-link:hover {
  box-shadow: var(--shadow);
  border-color: rgba(66,133,244,.3);
  transform: translateY(-2px);
}

.google-g { flex-shrink: 0; }

.google-badge-info { flex: 1; }

.google-badge-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-badge-score {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

.google-badge-stars {
  display: flex;
  gap: 2px;
}

.google-badge-stars i {
  color: #f59e0b;
  font-size: .9rem;
}

.google-badge-text {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.google-badge-cta {
  font-size: .85rem;
  font-weight: 600;
  color: #4285F4;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-badge-cta i { font-size: .7rem; transition: var(--transition); }
.google-badge-link:hover .google-badge-cta i { transform: translateX(4px); }

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #f59e0b;
  font-size: .9rem;
}

.testimonial-text {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #c026d3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
}

.testimonial-role {
  font-size: .8rem;
  color: var(--gray-400);
}

.testimonial-source {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-source i { color: #4285F4; font-size: .85rem; }

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), #5b21b6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 500px at 30% 50%, rgba(139,92,246,.15), transparent),
    radial-gradient(ellipse 400px 400px at 70% 30%, rgba(139,92,246,.1), transparent);
}

.cta-section .container { position: relative; }

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 20px;
}

.footer-brand .footer-logo {
  height: 36px;
}

.footer h4 {
  color: var(--white);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .9rem;
}

.footer-contact li i {
  color: var(--accent-light);
  margin-top: 4px;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover { color: var(--accent-light); }

/* ---------- WhatsApp Floating ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.5);
}

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.6), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ---------- Scroll animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .features-grid .feature-card:first-child { grid-column: 1 / -1; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-visual { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .lang-switch { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .nav-links.active a { color: var(--gray-700); }

  .mobile-lang {
    display: flex !important;
    gap: 8px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
  }

  .mobile-lang a {
    font-size: .85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--gray-100);
    color: var(--gray-600);
  }

  .mobile-lang a.active {
    background: var(--accent);
    color: var(--white);
  }

  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-card:first-child { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .google-badge-link { flex-wrap: wrap; padding: 16px 20px; }
  .google-badge-cta { width: 100%; justify-content: center; margin-top: 4px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 320px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
}
