/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/styles/globals.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  /* Brand — turquesa Mikambio Technologies */
  --brand:         #00C4CD;
  --brand-dark:    #009AA2;
  --brand-light:   #E0F9FA;
  --brand-glow:    rgba(0, 196, 205, 0.18);

  /* Dark surfaces — navy corporativo */
  --navy:          #0D2A50;
  --navy-mid:      #14336E;
  --navy-light:    #1A3A60;

  /* Accent — azul complementario (contraste con el turquesa) */
  --accent:        #3B82F6;
  --accent-dark:   #2563EB;
  --accent-glow:   rgba(59, 130, 246, 0.15);

  /* Text */
  --text-primary:  #1A1A2E;
  --text-secondary:#475569;
  --text-muted:    #94A3B8;
  --text-inverse:  #F8FAFC;

  /* Surface */
  --surface:       #F8FAFC;
  --surface-alt:   #F1F5F9;
  --border:        #E2E8F0;
  --border-dark:   rgba(255, 255, 255, 0.08);

  /* Product palette */
  --fintech:       #10B981;
  --fintech-light: rgba(16, 185, 129, 0.12);
  --healthtech:    #00C4CD;
  --healthtech-light: rgba(0, 196, 205, 0.12);
  --socialtech:    #F59E0B;
  --socialtech-light: rgba(245, 158, 11, 0.12);
  --commercetech:  #8B5CF6;
  --commercetech-light: rgba(139, 92, 246, 0.12);

  /* Typography */
  --font-heading:  'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-py:    clamp(5rem, 9vw, 8rem);
  --container:     min(1200px, 100% - 3rem);

  /* Radius */
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-full:   9999px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md:     0 4px 16px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.08);
  --shadow-lg:     0 10px 40px rgba(15, 23, 42, 0.14), 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-brand:  0 8px 30px rgba(0, 196, 205, 0.28);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Layout ── */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-py);
}

.section--dark {
  background: var(--navy);
  color: var(--text-inverse);
}

.section--alt {
  background: var(--surface);
}

.section--mid {
  background: var(--navy-mid);
  color: var(--text-inverse);
}

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag--dark {
  color: var(--accent);
  background: var(--accent-glow);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title--dark { color: var(--text-inverse); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.section-subtitle--dark { color: var(--text-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.975rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.32);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  background: rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-dark {
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  background: #fff;
}
.btn-outline-dark:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}

.btn-lg {
  padding: 0.9rem 2.25rem;
  font-size: 1.05rem;
}

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  color: var(--text-inverse);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-brand {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 1.5rem; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 1.5rem; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 1.5rem; gap: 1.5rem; }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: var(--radius-full);
  margin: 1rem auto;
}

/* ── Form elements ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.975rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  font-size: 0.8rem;
  color: #EF4444;
  margin-top: 0.25rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(3.5rem, 10vw, 5rem); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.625rem, 6vw, 2.25rem); }
}

@media (max-width: 480px) {
  .btn-lg { width: 100%; justify-content: center; }
}

