:root {
  --primary-teal: #00a88f;
  --indigo-soft: #6366f1;
  --purple-pink: #a855f7;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --medium-gray: #64748b;
  --soft-black: #0f172a;
  --light-green: #dcfdf7;
  --neon-cyan: #06ffa5;
  --neon-purple: #8b5cf6;
  --dark-purple: #1e1b4b;
  --glass-white: rgba(255, 255, 255, 0.1);
  --glass-dark: rgba(15, 23, 42, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Outfit', sans-serif; */
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--soft-black);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.btn {
  padding: 18px 50px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 30px;
  display: inline-block;
  border: 0;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(
    135deg,
    var(--soft-black) 0%,
    var(--dark-purple) 50%,
    var(--soft-black) 100%
  );
}

.animated-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      var(--neon-cyan) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, var(--purple-pink) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, var(--indigo-soft) 0%, transparent 50%);
  opacity: 0.1;
  animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }

  50% {
    opacity: 0.2;
    transform: scale(1.1);
  }
}

/* Floating Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: floatParticle 15s linear infinite;
  opacity: 0.6;
}

.particle:nth-child(2n) {
  background: var(--purple-pink);
  animation-duration: 20s;
}

.particle:nth-child(3n) {
  background: var(--indigo-soft);
  animation-duration: 25s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Hero Section - Futuristic */
.hero-futuristic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--purple-pink));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.hero-title-future {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2rem;
  /* background: linear-gradient(135deg, var(--white) 0%, var(--neon-cyan) 50%, var(--purple-pink) 100%); */
  background: rgb(9, 203, 174);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* text-shadow: 0 0 50px rgba(6, 255, 165, 0.5); */
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.highlight-end {
  font-size: 3rem;
  font-weight: 400;
  display: inline-block;
}

@keyframes titleGlow {
  0% {
    filter: brightness(1) saturate(1);
  }

  100% {
    filter: brightness(1.2) saturate(1.3);
  }
}

.hero-subtitle-future {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.btn-neon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  color: var(--soft-black);
  padding: 18px 36px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(6, 255, 165, 0.4);
}

.btn-neon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.btn-neon:hover::before {
  left: 100%;
}

.btn-neon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 50px rgba(6, 255, 165, 0.6);
  color: var(--soft-black);
  text-decoration: none;
}

.btn-glass {
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  color: var(--white);
  padding: 18px 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-visual-3d {
  position: relative;
  perspective: 1000px;
}

.code-terminal {
  background: var(--glass-dark);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  /* font-family: 'Fira Code', monospace; */
  font-size: 0.9rem;
  color: var(--neon-cyan);
  position: relative;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.code-terminal:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red {
  background: #ff5f57;
}

.terminal-dot.yellow {
  background: #ffbd2e;
}

.terminal-dot.green {
  background: #28ca42;
}

.code-line {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.line-number {
  color: var(--medium-gray);
  margin-right: 1rem;
  font-size: 0.8rem;
  width: 20px;
}

.syntax-keyword {
  color: var(--purple-pink);
}

.syntax-string {
  color: var(--neon-cyan);
}

.syntax-function {
  color: #fbbf24;
}

.syntax-comment {
  color: var(--medium-gray);
}

.floating-element {
  position: absolute;
  background: var(--glass-white);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: floatElement 6s ease-in-out infinite;
}

.floating-element.element-1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  bottom: 30%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes floatElement {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Typing Animation */
.typing-cursor {
  display: inline-block;
  background-color: var(--neon-cyan);
  width: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* Pulsing Elements */
.pulse-element {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Matrix Rain Effect */
.matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
}

.matrix-char {
  position: absolute;
  color: var(--neon-cyan);
  /* font-family: 'Fira Code', monospace; */
  font-size: 14px;
  animation: matrixFall 8s linear infinite;
}

@keyframes matrixFall {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* Stats Animation */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-cyan);
  display: block;
  text-shadow: 0 0 20px rgba(6, 255, 165, 0.6);
  animation: statGlow 3s ease-in-out infinite alternate;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes statGlow {
  0% {
    text-shadow: 0 0 20px rgba(6, 255, 165, 0.6);
  }

  100% {
    text-shadow: 0 0 30px rgba(6, 255, 165, 0.9);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-future {
    font-size: 3rem;
  }

  .highlight-end {
    font-size: 2rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .code-terminal {
    transform: none;
    font-size: 0.8rem;
  }

  .floating-element {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title-future {
    font-size: 2.5rem;
  }

  .hero-subtitle-future {
    font-size: 1.2rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
  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);
  }
}

/* Grid Lines Background */
.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: linear-gradient(rgba(6, 255, 165, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 255, 165, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* ooo */
:root {
  --primary-teal: #00a88f;
  --indigo-soft: #6366f1;
  --purple-pink: #a855f7;
  --white: #ffffff;
  --light-gray: #fafbfc;
  --medium-gray: #6b7280;
  --medium-gray-2: #a0acc3;
  --soft-black: #111827;
  --light-green: #ecfdf5;
  --accent-yellow: #fbbf24;
  --border-light: #e5e7eb;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.1);
}

/* Reset básico para evitar conflictos */
.content-editorial * {
  box-sizing: border-box;
}

.content-editorial {
  /* font-family: 'Space Grotesk', sans-serif; */
  line-height: 1.6;
  color: var(--soft-black);
  background: var(--white);
}

/* Typography */
.content-mono {
  /* font-family: 'JetBrains Mono', monospace; */
}

/* Section Styles */
.content-section {
  padding: 120px 0;
  position: relative;
}

.content-section-number {
  font-size: 2rem;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.content-section-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--soft-black);
  line-height: 1.2;
}

.content-section-desc {
  font-size: 1.5rem;
  color: var(--medium-gray);
  margin-bottom: 4rem;
  /* max-width: 600px; */
}

/* Features Section - Card Layout */
.content-features-section {
  background: var(--light-gray);
}

.content-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.content-feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.content-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal), var(--purple-pink));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.content-feature-card:hover::before {
  transform: scaleX(1);
}

.content-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.content-feature-number {
  width: 40px;
  height: 40px;
  background: var(--primary-teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--soft-black);
}

.content-feature-desc {
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.content-feature-link {
  color: var(--primary-teal);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.content-feature-link:hover {
  color: var(--purple-pink);
  text-decoration: none;
  transform: translateX(5px);
}

/* API Section - Split Layout */
.content-api-section {
  background: white;
}

.content-api-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-endpoint-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-teal);
}

.content-endpoint-method {
  display: inline-block;
  background: var(--primary-teal);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.content-endpoint-url {
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 1.2rem;
  color: var(--soft-black);
  font-weight: 500;
}

.content-code-block {
  background: var(--soft-black);
  border-radius: 12px;
  padding: 2rem;
  color: #e5e7eb;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 0.9rem;
  overflow-x: auto;
}

.content-code-block .content-keyword {
  color: #a78bfa;
}

.content-code-block .content-string {
  color: #34d399;
}

.content-code-block .content-number {
  color: #fbbf24;
}

.content-code-block .content-comment {
  color: #6b7280;
}

/* Pricing - Minimal Cards */
.content-pricing-section {
  background: var(--light-gray);
}

.content-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.content-pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.content-pricing-card.content-popular {
  border-color: var(--primary-teal);
  transform: scale(1.05);
}

.content-pricing-card.content-popular::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-teal);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.content-price-plan {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.content-price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 0.5rem;
}

.content-price-period {
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.content-price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.content-price-features li {
  padding: 0.5rem 0;
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-price-features .fa-check {
  color: var(--primary-teal);
}

.content-btn-pricing {
  background: var(--soft-black);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.content-btn-pricing:hover {
  background: var(--primary-teal);
  transform: translateY(-2px);
  color: white;
}

.content-btn-pricing.content-secondary {
  background: transparent;
  color: var(--soft-black);
  border: 2px solid var(--border-light);
}

.content-btn-pricing.content-secondary:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
}

/* Contact - Two Column */
.content-contact-section {
  background: white;
}

.content-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-contact-info {
  padding-top: 2rem;
}

.content-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.content-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--light-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  font-size: 1.2rem;
}

.content-form-modern {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 16px;
}

.content-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.content-form-field {
  margin-bottom: 1.5rem;
}

.content-form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--soft-black);
  font-size: 1.2rem;
}

.content-form-input {
  width: 100%;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  background: white;
}

.content-form-input:focus {
  border-color: var(--primary-teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 168, 143, 0.1);
}

.content-btn-form {
  background: var(--soft-black);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.content-btn-form:hover {
  background: var(--primary-teal);
  transform: translateY(-2px);
  color: white;
}

/* FAQ - Accordion Style */
.content-faq-section {
  background: var(--light-gray);
}

.content-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.content-faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.content-faq-question {
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--soft-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.content-faq-question:hover {
  background: var(--light-gray);
}

.content-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.content-faq-question.content-active .content-faq-icon {
  transform: rotate(45deg);
}

.content-faq-answer {
  padding: 1.5rem 2rem 2rem;
  color: var(--medium-gray);
  line-height: 1.6;
  display: none;
}

.content-faq-answer.content-active {
  display: block;
  animation: content-slideDown 0.3s ease;
}

@keyframes content-slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer - Clean */
.content-footer {
  background: var(--soft-black);
  color: white;
  padding: 4rem 0 2rem;
}

.content-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.content-footer-brand h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-teal);
}

.content-footer-brand p {
  color: var(--medium-gray-2);
  line-height: 1.6;
  font-size: 1.4rem;
}

.content-footer-column h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.content-footer-column ul {
  list-style: none;
  padding: 0;
}

.content-footer-column li {
  /* margin-bottom: 0.5rem; */
}

.content-footer-column a {
  color: var(--medium-gray-2);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.content-footer-column .location {
  color: var(--medium-gray-2);
  font-size: 1.3rem;
}

.content-footer-column a:hover {
  color: var(--primary-teal);
}

.content-footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--medium-gray-2);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .content-section-title {
    font-size: 2.2rem;
  }

  .content-api-grid,
  .content-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-form-row {
    grid-template-columns: 1fr;
  }

  .content-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .content-pricing-card.content-popular {
    transform: none;
  }
}

@media (max-width: 576px) {
  .content-features-grid,
  .content-pricing-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 80px 0;
  }

  .content-form-modern {
    padding: 2rem;
  }
}

/* Inicio menu header */
.header-home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0 20px;
}

.header-home .text-primary {
  /*color: #00A2A7 !important;*/
  color: #00a88f !important;
}

.header-home .btn-primary {
  background: #00a88f !important;
  color: #fff !important;
}

.header-home a {
  text-decoration: none !important;
  color: #fff !important;
}

.header-home .btn-primary:before {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  border-radius: 8px !important;
}

.header-home .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4) !important;
}

.header-home .nav-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-home .logo {
  font-size: 24px;
  font-weight: bold;
  color: #6366f1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-home .nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.header-home .nav-item {
  position: relative;
}

.header-home .nav-link {
  text-decoration: none;
  color: #374151 !important;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.header-home .nav-link:hover {
  color: #6366f1 !important;
}

.header-home .nav-link.has-dropdown::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s ease;
}

.header-home .nav-link.has-dropdown.active::after {
  transform: rotate(180deg);
}

.header-home .nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-home .btn {
  padding: 8px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.header-home .btn-secondary {
  background: transparent !important;
  color: #374151 !important;
  border: 2px solid #e5e7eb !important;
}

.header-home .btn-secondary:hover {
  background: #f9fafb !important;
  border-color: #6366f1 !important;
  color: #6366f1 !important;
}

.header-home .btn-primary:before {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  border-radius: 8px !important;
}

.header-home .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4) !important;
}

.header-home .dropdown {
  position: fixed;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 1140px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 0px;
}

.header-home .dropdown.active {
  opacity: 1;
  visibility: visible;
}

.header-home .dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.header-home .service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
}

.header-home .service-card:hover {
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.1);
}

.header-home .service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-home .service-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.header-home .service-icon i {
  font-size: 25px;
  width: 25px;
  height: 25px;
  color: #00a88f;
  text-align: center;
  line-height: 1;
}

.header-home .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header-home .service-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.header-home .service-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.header-home .dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 999;
  display: none;
}

.header-home .dropdown-overlay.active {
  display: block;
}

.header-home .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  color: #374151;
  transition: color 0.3s ease;
}

.header-home .mobile-menu-toggle:hover {
  color: #6366f1;
}

.header-home .mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.header-home .mobile-menu.active {
  max-height: 100vh;
  overflow-y: auto;
}

.header-home .mobile-nav-menu {
  list-style: none;
  padding: 20px;
}

.header-home .mobile-nav-item {
  border-bottom: 1px solid #f3f4f6;
}

.header-home .mobile-nav-item:last-child {
  border-bottom: none;
}

.header-home .mobile-nav-link {
  text-decoration: none;
  color: #374151 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.header-home .mobile-nav-link:hover {
  color: #6366f1 !important;
}

.header-home .mobile-nav-link.has-dropdown .dropdown-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.header-home .mobile-nav-link.has-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.header-home .mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9fafb;
  margin: 0 -20px;
}

.header-home .mobile-dropdown.active {
  max-height: none;
  overflow: visible;
}

.header-home .mobile-service-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.header-home .mobile-service-card {
  background: white;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
}

.header-home .mobile-service-card:hover {
  border-color: #6366f1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.header-home .mobile-service-card .service-icon {
  font-size: 24px;
  margin-bottom: 8px;
  width: auto;
  height: auto;
  background: none;
  border: none;
  display: block;
}

.header-home .mobile-service-card .service-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.header-home .mobile-service-card .service-description {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}

.header-home .mobile-buttons {
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header-home .mobile-buttons .btn {
  padding: 12px 24px;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
}

.header-home .main-content {
  margin-top: 70px;
}

.header-home .info-content {
  margin-top: 70px;
  padding-top: 60px;
}

.header-home .demo-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.header-home .demo-section h1 {
  font-size: 32px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 40px;
}

@media (max-width: 1110px) {
  .header-home .nav-container {
    padding: 0 10px;
  }

  .header-home .logo {
    font-size: 20px;
  }

  .header-home .nav-menu,
  .header-home .nav-buttons {
    display: none;
  }

  .header-home .mobile-menu-toggle {
    display: block;
  }

  .header-home .dropdown {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #e5e7eb;
    padding: 20px;
  }

  .header-home .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .header-home .service-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .header-home .service-icon {
    align-self: center;
  }

  .hero-futuristic {
    /* padding-top: 70px; */
    /* padding-top: 10px; */
  }
}

@media (max-width: 480px) {
  .header-home .nav-container {
    height: 60px;
  }

  .header-home .logo {
    font-size: 18px;
  }

  .header-home .mobile-menu {
    top: 60px;
  }

  .header-home .main-content {
    margin-top: 60px;
  }

  .header-home .main-content > div:first-of-type {
    padding-top: 30px;
  }

  .hero-futuristic {
    padding-top: 70px;
  }
}

/*  */
.content-editorial {
  line-height: 1.6;
  color: var(--soft-black);
  background: var(--white);
}

.content-section {
  padding: 80px 0;
  position: relative;
}

.content-section-number {
  font-size: 1.8rem;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.content-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--soft-black);
  line-height: 1.2;
}

.content-section-desc {
  font-size: 1.3rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
}

/* Compact Languages Section */
.content-languages-compact {
  background: var(--light-gray);
}

.languages-showcase {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px var(--shadow-medium);
  text-align: center;
}

.languages-intro {
  margin-bottom: 2.5rem;
}

.languages-intro h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 0.8rem;
}

.languages-intro p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 0;
}

.languages-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.language-item {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.language-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--indigo-soft));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.language-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 8px 25px rgba(0, 168, 143, 0.15);
  border-color: var(--primary-teal);
}

.language-item:hover::before {
  transform: scaleX(1);
}

.language-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  position: relative;
}

.language-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.language-item:hover .language-icon img {
  transform: scale(1.1);
}

.language-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 0.3rem;
}

.language-tag {
  font-size: 0.8rem;
  color: var(--medium-gray);
  background: rgba(0, 168, 143, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-block;
}

.languages-cta-compact {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-compact {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-compact {
  background: var(--primary-teal);
  color: white;
  border: 2px solid var(--primary-teal);
}

.btn-primary-compact:hover {
  background: transparent;
  color: var(--primary-teal);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-secondary-compact {
  background: transparent;
  color: var(--soft-black);
  border: 2px solid var(--border-light);
}

.btn-secondary-compact:hover {
  border-color: var(--indigo-soft);
  color: var(--indigo-soft);
  text-decoration: none;
}

/* Key features strip */
.key-features {
  background: var(--soft-black);
  color: white;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-radius: 12px;
}

.features-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0;
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.features-list .fa-check {
  color: var(--primary-teal);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .content-section-title {
    font-size: 2.2rem;
  }

  .languages-showcase {
    padding: 2rem 1.5rem;
  }

  .languages-grid-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .language-item {
    padding: 1rem 0.5rem;
  }

  .language-icon {
    width: 36px;
    height: 36px;
  }

  .language-name {
    font-size: 0.9rem;
  }

  .language-tag {
    font-size: 0.7rem;
  }

  .features-list {
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .languages-cta-compact {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-compact {
    width: 200px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .languages-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-section {
    padding: 60px 0;
  }
}
/*  */

/* Utils */

.ml10 {
  margin-left: 10px;
}
