/* SYSTEM TOKENS */
:root {
  /* Colors */
  --bg-color: #0A0A0A;
  --surface-color: #111111;
  --border-color: #1F1F1F;

  --primary-color: #2563EB;
  --primary-hover: #1D4ED8;
  --accent-color: #3B82F6;

  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #52525B;

  --success-color: #22C55E;
  --danger-color: #EF4444;
  --vip-color: #F59E0B;

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Light Theme overrides */
[data-theme="light"] {
  --bg-color: #F8FAFC;
  --surface-color: #FFFFFF;
  --border-color: #E2E8F0;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
}

/* Daltonismo filter on html */
html[data-colorblind="true"] {
  filter: contrast(1.2) saturate(1.5);
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* UTILITIES */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-spacing {
  padding: 6rem 0;
}

.surface-alt {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

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

/* TYPOGRAPHY */
.headline-large {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.headline-medium {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.subheadline {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 2rem;
}

.label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: all var(--transition-normal);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
  background-color: rgba(37, 99, 235, 0.05);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  width: 100%;
}

@media (min-width: 640px) {
  .btn-large {
    width: auto;
  }
}

/* CARDS & COMPONENTS */
.card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.glow-hover:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
  will-change: transform, box-shadow;
}

/* GLOW EFFECTS */
.glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  filter: blur(150px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.hero-glow {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.glow-border {
  position: relative;
  overflow: hidden;
}
.glow-border::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1000px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  z-index: 1000;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.5rem;
}

.navbar-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-logo span {
  color: var(--primary-color);
}

.navbar-links {
  display: none;
}

@media (min-width: 992px) {
  .navbar-links {
    display: flex;
    gap: 2rem;
  }
  
  .navbar-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--transition-fast);
  }
  
  .navbar-links a:hover {
    color: var(--text-primary);
  }
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.hidden-mobile {
  display: none;
}

@media (min-width: 992px) {
  .hidden-mobile {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
}

.mobile-nav.open {
  display: flex;
}

.mobile-link {
  padding: 1rem 0;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}

.mobile-link:last-child {
  border-bottom: none;
}

/* SECTIONS SPECIFIC */

/* Hero */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: var(--bg-color);
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(15, 23, 42, 0.5) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(17, 17, 17, 0.5) 0px, transparent 50%);
  background-size: 200% 200%;
  animation: mesh-movement 15s ease infinite alternate;
}
[data-theme="light"] .hero {
  background-image: 
    radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(37, 99, 235, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(248, 250, 252, 0.8) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(241, 245, 249, 0.8) 0px, transparent 50%);
}
@keyframes mesh-movement {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-badge i {
  width: 16px;
  height: 16px;
}

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

.trust-signal {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 1.75rem;
  font-family: var(--font-mono);
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Hero Visual & Mockups */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .hero-visual {
    margin-top: 0;
  }
}

.mockup-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 500px;
}

.glass-panel {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-site {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 380px;
  z-index: 1;
}

.mockup-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dots {
  display: flex;
  gap: 6px;
}
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
}
.dots span:nth-child(1) { background: #EF4444; }
.dots span:nth-child(2) { background: #F59E0B; }
.dots span:nth-child(3) { background: #22C55E; }

.url {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 1rem;
  border-radius: 100px;
  flex: 1;
  text-align: center;
}

.mockup-body {
  padding: 2rem;
}

.mockup-line {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.mockup-line.title { width: 80%; height: 24px; margin-bottom: 1.5rem; background: rgba(37, 99, 235, 0.2); }
.mockup-line.text { width: 100%; height: 12px; }
.mockup-line.text.short { width: 60%; }

.mockup-btn {
  width: 120px;
  height: 36px;
  background: var(--primary-color);
  border: none;
  border-radius: 6px;
  margin-top: 1.5rem;
}

.mockup-chat {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85%;
  padding: 1.5rem;
  z-index: 2;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-icon {
  color: #25D366;
  width: 18px;
  height: 18px;
}

.chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  max-width: 85%;
  line-height: 1.4;
}

.chat-bubble.received {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border-bottom-left-radius: 4px;
}

.chat-bubble.sent {
  background: rgba(37, 99, 235, 0.15);
  color: var(--text-primary);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 20px;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.glass-badge {
  position: absolute;
  top: 60px;
  right: -20px;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.glass-badge i {
  color: var(--success-color);
  width: 20px;
  height: 20px;
}

.glass-badge div {
  display: flex;
  flex-direction: column;
}

.glass-badge strong {
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.glass-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.floating-element {
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.floating-element-alt {
  animation: float-alt 8s ease-in-out infinite;
  will-change: transform;
}

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

@keyframes float-alt {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px) translateX(5px); }
  100% { transform: translateY(0px); }
}

/* Delay animations for mock chat to simulate flow */
.typing-delay {
  animation: fadeOut 0.1s forwards 3s;
}
.message-delay {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
  border: none;
  animation: slideDownIn 0.3s forwards 3s;
}

@keyframes fadeOut {
  to { opacity: 0; height: 0; padding: 0; margin: 0; border: none; }
}
@keyframes slideDownIn {
  to {
    opacity: 1;
    height: auto;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
  }
}

/* Problem */
.lista-dores {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lista-dores li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.125rem;
}
.icon-accent { color: var(--danger-color); flex-shrink: 0; }
.icon-success { color: var(--success-color); flex-shrink: 0; }

.statement-box {
  margin-top: 3rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
  background: rgba(37, 99, 235, 0.05);
  border-radius: 0 8px 8px 0;
}
.statement-box.statement-accent {
  border-left-color: var(--success-color);
  background: rgba(34, 197, 94, 0.05);
}
.statement {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Solution */
.card-solucao {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-solucao h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
}

/* Deliverables */
.entregaveis-lista {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.entregavel-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.entregavel-item .numero {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 0.25rem;
}
.entregavel-item h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Para Quem */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.checklist li {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.125rem;
}

/* Processo */
.process-grid { margin-top: 3rem; }
.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-left: 2px solid var(--border-color);
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--primary-color);
}
.process-step h3 {
  color: var(--text-primary);
  font-size: 1.125rem;
}

/* Prova Social */
.testimonial-card {
  max-width: 700px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-primary);
}
.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.client-details {
  display: flex;
  flex-direction: column;
}
.client-details strong {
  color: var(--text-primary);
}
.client-details span {
  font-size: 0.875rem;
}
.google-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.star-icon {
  color: #F59E0B;
  fill: #F59E0B;
  width: 16px;
  height: 16px;
}

/* Oferta */
.oferta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.oferta-lista {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.oferta-lista li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: var(--text-primary);
}
.oferta-lista i {
  color: var(--success-color);
}
.pricing {
  margin: 3rem 0 1.5rem;
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}
.price {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
}
.parcelamento {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.escassez {
  color: var(--danger-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

/* FAQ Accordion */
.accordion {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
}
.accordion-item {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  transition: border-color var(--transition-fast);
}
.accordion-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.accordion-item:hover {
  border-color: rgba(255,255,255,0.15);
}
.accordion-item:has(.active) {
  border-color: rgba(255,255,255,0.15);
}
.accordion-header {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.accordion-header:hover {
  background: transparent;
}
.accordion-header .chevron {
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}
.accordion-header.active .chevron {
  transform: rotate(180deg);
  color: var(--primary-color);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-content p {
  padding: 0 0 1.5rem 0;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-color);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.footer-brand h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.flags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--text-primary);
}
.footer-links .text-primary {
  color: var(--primary-color);
  font-weight: 600;
}
.sm-icon {
  width: 16px;
  height: 16px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float i {
  width: 32px;
  height: 32px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
  animation: none;
}
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility Floating Menu */
.accessibility-floating {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 100;
}
.a11y-trigger {
  background-color: var(--surface-color);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  z-index: 2;
}
.a11y-trigger:hover {
  border-color: var(--text-muted);
  transform: scale(1.05);
}
.a11y-menu {
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 0;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 240px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: bottom left;
  z-index: 1;
}
.accessibility-floating.open .a11y-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.a11y-header {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.a11y-row:last-child {
  margin-bottom: 0;
}
.a11y-row span {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.a11y-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}
.a11y-btn:hover {
  border-color: var(--text-muted);
}

/* Testimonials Grid */
.testimonials-grid {
  margin-top: 2rem;
}

/* Portfolio Section */
.portfolio-item {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
}
.portfolio-mockup {
  background: rgba(37, 99, 235, 0.05);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}
.portfolio-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  opacity: 0.5;
}
.portfolio-info {
  padding: 1.5rem;
}
.portfolio-info h4 {
  color: var(--text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.portfolio-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.view-link {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.view-link i {
  width: 14px;
  height: 14px;
}

/* Addon Card */
.addon-card {
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--primary-color);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
[data-theme="light"] .addon-card {
  background: rgba(37, 99, 235, 0.02);
}
@media (min-width: 640px) {
  .addon-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.5rem 2rem;
  }
}
.addon-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
@media (min-width: 640px) {
  .addon-header {
    flex-direction: row;
  }
}
.addon-header i {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
}
.addon-header h4 {
  color: var(--text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.addon-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.addon-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr 1.1fr 1fr;
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  position: relative;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.pricing-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(17, 17, 17, 0.8) 100%), var(--surface-color);
  border: 2px solid var(--primary-color);
  padding: 3rem 2rem;
  transform: translateY(-10px) scale(1.02);
  z-index: 2;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.2), inset 0 0 20px rgba(37, 99, 235, 0.1);
  animation: float-featured 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
[data-theme="light"] .pricing-card.featured {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%), var(--surface-color);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15), inset 0 0 20px rgba(37, 99, 235, 0.05);
}

@keyframes float-featured {
  0% { transform: translateY(-10px) scale(1.02); box-shadow: 0 0 40px rgba(37, 99, 235, 0.2), inset 0 0 20px rgba(37, 99, 235, 0.1); }
  50% { transform: translateY(-15px) scale(1.02); box-shadow: 0 0 50px rgba(37, 99, 235, 0.4), inset 0 0 25px rgba(37, 99, 235, 0.2); }
  100% { transform: translateY(-10px) scale(1.02); box-shadow: 0 0 40px rgba(37, 99, 235, 0.2), inset 0 0 20px rgba(37, 99, 235, 0.1); }
}

@media (max-width: 991px) {
  .pricing-card.featured {
    transform: none !important;
    animation: none;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
  }
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-header {
  margin-bottom: 1rem;
  text-align: center;
}
.plan-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.featured .plan-icon {
  width: 48px;
  height: 48px;
}
.plan-header h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.featured .plan-header h3 {
  font-size: 1.5rem;
}
.plan-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.plan-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.plan-price .currency {
  font-size: 1rem;
  color: var(--text-muted);
  vertical-align: top;
  position: relative;
  top: 0.5rem;
}
.plan-price .value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}
.plan-price .installment {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.plan-price .installment.font-bold {
  font-weight: 700;
}

.pricing-card .oferta-lista {
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-card .oferta-lista li {
  margin-bottom: 1rem;
  align-items: flex-start;
}
.pricing-card .oferta-lista i {
  color: var(--text-muted);
  margin-top: 2px;
}
.featured .oferta-lista i {
  color: var(--primary-color);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Other Services */
.more-services-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}
.more-services-content.expanded {
  max-height: 1000px;
  opacity: 1;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
}
.service-card i {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.service-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Exclusive Pricing Styles */
.exclusive-card {
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
[data-theme="light"] .exclusive-card {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 0.25rem;
}

.subscription-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  display: inline-block;
}
[data-theme="light"] .subscription-note {
  background: rgba(0,0,0,0.05);
}
.subscription-note.highlight {
  color: var(--vip-color);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  font-weight: 600;
}

.vip-card {
  border: 1px solid rgba(245, 158, 11, 0.4) !important;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, rgba(15, 23, 42, 0.9) 100%) !important;
}
[data-theme="light"] .vip-card {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
}
.vip-card .popular-badge {
  background: var(--vip-color);
  color: #fff;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.vip-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vip-color), transparent);
  box-shadow: 0 0 20px var(--vip-color);
}

.text-vip {
  color: var(--vip-color) !important;
}

.btn-vip {
  background: var(--vip-color);
  color: #0F172A;
  border: none;
  font-weight: 700;
}
.btn-vip:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  color: #0F172A;
}

/* DYNAMIC TESTIMONIALS */
.dynamic-testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}

.testimonial-quote-container {
  position: relative;
  padding: 0 2rem;
  max-width: 800px;
  text-align: center;
}

.quote-mark {
  position: absolute;
  font-size: 5rem;
  font-family: serif;
  color: var(--text-primary);
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.quote-mark.left {
  top: -1.5rem;
  left: -0.5rem;
}
.quote-mark.right {
  bottom: -3rem;
  right: -0.5rem;
}

.testimonial-quote-text {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.5;
  transition: all 0.4s ease-out;
  will-change: transform, opacity, filter;
  max-width: 700px;
  margin: 0 auto;
}

/* Animation states for quote */
.testimonial-quote-text.animating {
  opacity: 0;
  filter: blur(4px);
  transform: scale(0.98);
}

.testimonial-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.testimonial-role-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.5s ease-out;
  will-change: transform, opacity;
}

.testimonial-role-text.animating {
  opacity: 0;
  transform: translateY(8px);
}

.testimonial-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dt-avatar-btn {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 2px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background-color, box-shadow, padding;
}

.dt-avatar-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
}

.dt-avatar-btn.active {
  background: var(--text-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
}
.dt-avatar-btn.hover-expand:not(.active) {
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .dt-avatar-btn.active {
  background: var(--text-primary);
}

.dt-avatar-img-wrapper {
  position: relative;
  flex-shrink: 0;
}

.dt-avatar-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dt-avatar-btn.active .dt-avatar-img {
  box-shadow: 0 0 0 2px var(--bg-color);
}
.dt-avatar-btn:not(.active):hover .dt-avatar-img {
  transform: scale(1.05);
}

.dt-avatar-name-wrapper {
  display: grid;
  grid-template-columns: 0fr;
  opacity: 0;
  margin-left: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: grid-template-columns, opacity, margin-left;
}

.dt-avatar-btn.active .dt-avatar-name-wrapper,
.dt-avatar-btn.hover-expand .dt-avatar-name-wrapper {
  grid-template-columns: 1fr;
  opacity: 1;
  margin-left: 0.5rem;
}

.dt-avatar-name {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  color: var(--text-primary);
  transition: color 0.3s;
}

.dt-avatar-btn.active .dt-avatar-name {
  color: var(--bg-color);
}

[data-theme="light"] .dt-avatar-btn.active .dt-avatar-name {
  color: var(--bg-color);
}

.vip-price-col {
  text-align: right;
}

@media (max-width: 768px) {
  .vip-price-col {
    text-align: left !important;
  }
}
