/* ═══════════════════════════════════════════════════════════════════════════
   Montse Rego — Landing B2B Diagnóstico de Equipos
   Página estática para WordPress — diagnostico-equipo.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --brand-blue: #1597E5;
  --brand-teal: #2ABFBF;
  --brand-teal-dark: #1A9999;
  --brand-navy: #0B1829;
  --brand-navy-mid: #0F2035;
  --brand-text-dark: #0D1B2A;
  --brand-text-mid: #4A5568;
  --brand-text-light: #718096;
  --brand-gray-light: #F7F8FA;
  --brand-gray-mid: #E2E8F0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--brand-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

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

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

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-section { margin-top: 3rem; }
.mb-section { margin-bottom: 3rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

.bounce { animation: bounce 2s infinite; }

/* ─── SECTION TITLE DECORATIONS ─── */
.section-title {
  font-family: 'Gentium Basic', Georgia, serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--brand-text-dark);
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

.section-title-line {
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: var(--brand-teal);
  border-radius: 2px;
}

.section-title-line-center {
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title-line-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3px;
  background: var(--brand-teal);
  border-radius: 2px;
}

.section-title-line-white {
  position: relative;
  padding-bottom: 0.75rem;
}
.section-title-line-white::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: var(--brand-teal);
  border-radius: 2px;
}

/* ─── BADGES ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: 'Open Sans', sans-serif;
}

.badge-blue {
  background: rgba(21,151,229,0.2);
  color: var(--brand-blue);
  border: 1px solid rgba(21,151,229,0.3);
}

.badge-blue-light {
  background: rgba(21,151,229,0.1);
  color: var(--brand-blue);
}

.badge-teal-light {
  background: rgba(42,191,191,0.1);
  color: var(--brand-teal-dark);
}

.badge-teal-dark {
  background: rgba(42,191,191,0.2);
  color: var(--brand-teal);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  color: white;
  background: var(--brand-blue);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(21,151,229,0.4);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  color: white;
  background: var(--brand-teal);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(42,191,191,0.3);
  border: none;
  cursor: pointer;
}
.btn-teal:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(42,191,191,0.4);
}
.btn-teal:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-teal-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  color: white;
  background: var(--brand-teal);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-teal-sm:hover { opacity: 0.9; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: var(--brand-text-mid);
  background: var(--brand-gray-light);
  border: 1px solid var(--brand-gray-mid);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  background: #0A66C2;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-linkedin:hover { opacity: 0.9; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(11,24,41,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo {
  height: 2rem;
  width: 2rem;
  object-fit: contain;
}
.nav-brand-text {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Open Sans', sans-serif;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.25rem;
  font-weight: 600;
  color: white;
  font-size: 0.875rem;
  background: var(--brand-blue);
  font-family: 'Open Sans', sans-serif;
  transition: all 0.2s;
}
.nav-cta:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-navy);
}
.hero-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-gradient-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.3;
  background: radial-gradient(ellipse at 80% 20%, rgba(21,151,229,0.25) 0%, transparent 60%);
}
.hero-gradient-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33%;
  height: 50%;
  opacity: 0.2;
  background: radial-gradient(ellipse at 20% 80%, rgba(42,191,191,0.2) 0%, transparent 60%);
}
.hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-content {
  max-width: 42rem;
}
.hero-title {
  font-family: 'Gentium Basic', Georgia, serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }

.text-brand-blue { color: var(--brand-blue); }

.hero-paragraph {
  font-size: 1rem;
  color: rgba(191,219,254,0.9);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-family: 'Open Sans', sans-serif;
}
@media (min-width: 640px) { .hero-paragraph { font-size: 1.125rem; } }

.hero-mobile-photo {
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}
.hero-mobile-photo img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  object-fit: cover;
  object-position: top;
  max-height: 500px;
}
@media (min-width: 1024px) {
  .hero-mobile-photo { display: none; }
}

.hero-desktop-photo {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.hero-desktop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media (min-width: 1024px) {
  .hero-desktop-photo { display: block; }
}

.hero-detect-box {
  margin-bottom: 2rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: rgba(21,151,229,0.1);
  border: 1px solid rgba(21,151,229,0.2);
}
.detect-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--brand-teal);
  font-family: 'Open Sans', sans-serif;
}
.detect-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.detect-item span:last-child {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Open Sans', sans-serif;
}
.check-icon {
  color: var(--brand-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: 'Open Sans', sans-serif;
}

.hero-cta {
  margin-bottom: 2rem;
}

.hero-obtain {
  margin-top: 2rem;
}
.obtain-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Open Sans', sans-serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(147,197,253,0.6);
}

/* ─── SIGNALS SECTION ─── */
.section-signals {
  padding: 5rem 0;
  background: var(--brand-gray-light);
}
@media (min-width: 1024px) { .section-signals { padding: 7rem 0; } }

.section-header-left {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.signals-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .signals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .signals-grid { grid-template-columns: repeat(4, 1fr); } }

.signal-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  background: white;
  border-left: 3px solid var(--brand-blue);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: all 0.2s;
}
.signal-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.signal-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  background: rgba(21,151,229,0.12);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 700;
}
.signal-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}

.highlight-quote {
  max-width: 42rem;
  margin: 3rem auto 0;
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
  background: var(--brand-navy);
  color: white;
}
.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  font-family: 'Gentium Basic', Georgia, serif;
}
.quote-subtext {
  font-size: 1rem;
  margin-top: 0.75rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  font-family: 'Open Sans', sans-serif;
}
.quote-line {
  margin-top: 1rem;
  width: 2.5rem;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
  background: var(--brand-teal);
}

/* ─── AREAS SECTION ─── */
.section-areas {
  padding: 5rem 0;
  background: white;
}
@media (min-width: 1024px) { .section-areas { padding: 7rem 0; } }

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

.area-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--brand-gray-mid);
  background: white;
  transition: all 0.3s;
}
.area-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.area-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: var(--brand-blue);
  color: white;
}
.area-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--brand-text-dark);
  font-family: 'Gentium Basic', Georgia, serif;
}
.area-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}

.test-note {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--brand-teal);
  background: rgba(42,191,191,0.06);
  max-width: 42rem;
}
.test-note p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}
.test-note strong {
  color: var(--brand-teal-dark);
}

.impacts-section {
  margin-top: 4rem;
}
.impacts-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--brand-text-dark);
  font-family: 'Gentium Basic', Georgia, serif;
}
@media (min-width: 640px) { .impacts-title { font-size: 1.875rem; } }

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

.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.impact-item span:last-child {
  font-size: 1rem;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}
.check-teal {
  color: var(--brand-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ─── DIAGNOSTIC SECTION ─── */
.section-diagnostic {
  padding: 5rem 0;
  background: white;
}
@media (min-width: 1024px) { .section-diagnostic { padding: 7rem 0; } }

.diagnostic-container {
  max-width: 56rem;
  margin: 0 auto;
}

.diagnostic-main-title {
  font-family: 'Gentium Basic', Georgia, serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--brand-text-dark);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .diagnostic-main-title { font-size: 2.25rem; } }

.diagnostic-subtitle {
  font-size: 1rem;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
  max-width: 42rem;
  margin: 0 auto;
}

/* Form cards */
.form-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--brand-gray-light);
  border: 1px solid var(--brand-gray-mid);
  margin-bottom: 2rem;
}
.form-section-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--brand-blue);
  font-family: 'Open Sans', sans-serif;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--brand-text-dark);
  font-family: 'Open Sans', sans-serif;
}
.form-field .optional {
  font-size: 0.75rem;
  color: var(--brand-text-light);
}
.form-field .required {
  font-size: 0.75rem;
  color: #e53e3e;
}
.form-field input {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--brand-gray-mid);
  font-size: 0.875rem;
  font-family: 'Open Sans', sans-serif;
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-field input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(21,151,229,0.1);
}
.form-field input.error {
  border-color: #e53e3e;
}

.field-error {
  font-size: 0.75rem;
  color: #e53e3e;
  margin-top: 0.375rem;
  font-family: 'Open Sans', sans-serif;
}

.privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.privacy-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  accent-color: var(--brand-blue);
  flex-shrink: 0;
  cursor: pointer;
}
.privacy-label span {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}
.privacy-label strong {
  color: var(--brand-text-dark);
}

.form-hint {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--brand-text-light);
  font-family: 'Open Sans', sans-serif;
}

/* Progress bar */
.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.block-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-blue);
  font-family: 'Open Sans', sans-serif;
}
.question-counter {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-text-light);
  font-family: 'Open Sans', sans-serif;
}
.progress-bar-container {
  width: 100%;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-gray-mid);
  overflow: hidden;
  margin-bottom: 2rem;
}
.progress-bar {
  height: 100%;
  border-radius: 9999px;
  background: var(--brand-blue);
  transition: width 0.5s ease-out;
}

/* Question card */
.question-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--brand-gray-light);
  border: 1px solid var(--brand-gray-mid);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .question-card { padding: 2.5rem; } }

.question-text {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: var(--brand-text-dark);
  font-family: 'Gentium Basic', Georgia, serif;
}
@media (min-width: 640px) { .question-text { font-size: 1.25rem; } }

.options-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.option-btn {
  width: 100%;
  text-align: left;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid var(--brand-gray-mid);
  background: white;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.2s;
  cursor: pointer;
}
.option-btn:hover {
  border-color: rgba(21,151,229,0.4);
}
.option-btn.selected {
  border-color: var(--brand-blue);
  background: rgba(21,151,229,0.08);
}
.option-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.option-radio {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.option-btn.selected .option-radio {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}
.option-radio-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: white;
  display: none;
}
.option-btn.selected .option-radio-dot {
  display: block;
}
.option-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-text-dark);
}
.option-btn.selected .option-label {
  color: var(--brand-blue);
}

/* Navigation buttons */
.nav-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Dots navigation */
.dots-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 2rem;
}
.dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--brand-gray-mid);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.dot.current {
  background: var(--brand-blue);
  transform: scale(1.3);
}
.dot.answered {
  background: var(--brand-teal);
}

/* ─── RESULT STYLES ─── */
.result-header {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--brand-navy);
  color: white;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .result-header { padding: 2.5rem; } }

.result-header .badge {
  background: rgba(255,255,255,0.1);
  color: var(--brand-teal);
}
.result-range {
  font-family: 'Gentium Basic', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .result-range { font-size: 1.875rem; } }

.result-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.result-title-row h3 {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
}
.result-subtitle {
  font-size: 1rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Open Sans', sans-serif;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.result-description {
  margin-bottom: 2rem;
}
.result-description p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}

.result-block {
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  background: var(--brand-gray-light);
  border: 1px solid var(--brand-gray-mid);
}
.result-block h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-text-dark);
  font-family: 'Gentium Basic', Georgia, serif;
}
.result-block ul {
  list-style: none;
  padding: 0;
}
.result-block li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.result-block li .bullet {
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.result-block li span:last-child {
  font-size: 0.875rem;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}

.result-risk {
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  border-left: 4px solid;
  background: rgba(0,0,0,0.02);
}
.result-risk h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--brand-text-dark);
  font-family: 'Gentium Basic', Georgia, serif;
}
.result-risk .risk-intro {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}
.result-risk ul {
  list-style: none;
  padding: 0;
}
.result-risk li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.result-risk li span:last-child {
  font-size: 0.875rem;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}

.result-suggestion {
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  background: var(--brand-gray-light);
  border: 1px solid var(--brand-gray-mid);
}
.result-suggestion h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--brand-text-dark);
  font-family: 'Gentium Basic', Georgia, serif;
}
.result-suggestion p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}

.result-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── ENFOQUE SECTION ─── */
.section-enfoque {
  padding: 5rem 0;
  background: var(--brand-navy);
}
@media (min-width: 1024px) { .section-enfoque { padding: 7rem 0; } }

.enfoque-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .enfoque-grid { grid-template-columns: 1fr 1fr; } }

.enfoque-title {
  font-family: 'Gentium Basic', Georgia, serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: white;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .enfoque-title { font-size: 2.25rem; } }

.enfoque-paragraph {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  font-family: 'Open Sans', sans-serif;
}
.enfoque-subtitle {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-teal);
  font-family: 'Open Sans', sans-serif;
}
.enfoque-pillars {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.enfoque-pillars span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  font-family: 'Open Sans', sans-serif;
}

.enfoque-card {
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.enfoque-card-line {
  width: 2.5rem;
  height: 4px;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  background: var(--brand-teal);
}
.enfoque-card-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: white;
  margin-bottom: 1rem;
  font-family: 'Gentium Basic', Georgia, serif;
}
.enfoque-card-highlight {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--brand-teal);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Gentium Basic', Georgia, serif;
}
.enfoque-card-cta {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ─── QUIEN SECTION ─── */
.section-quien {
  padding: 5rem 0;
  background: var(--brand-gray-light);
}
@media (min-width: 1024px) { .section-quien { padding: 7rem 0; } }

.quien-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .quien-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.quien-photo-wrapper {
  position: relative;
}
.quien-photo-bg {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: var(--brand-blue);
  opacity: 0.12;
}
.quien-photo {
  position: relative;
  border-radius: 1rem;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.quien-badge-acc {
  position: absolute;
  bottom: -1.25rem;
  right: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  background: var(--brand-navy);
  color: white;
}
@media (min-width: 640px) { .quien-badge-acc { right: -1.25rem; } }
.acc-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-teal);
  font-family: 'Open Sans', sans-serif;
}
.acc-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}
.acc-extra {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.25rem;
  color: var(--brand-teal);
  font-family: 'Open Sans', sans-serif;
}

.quien-text .badge { margin-bottom: 1rem; }
.quien-text .section-title { margin-bottom: 1.5rem; }
.quien-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--brand-text-mid);
  font-family: 'Open Sans', sans-serif;
}
.quien-role {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--brand-blue);
  font-family: 'Open Sans', sans-serif;
}

/* ─── TESTIMONIOS SECTION ─── */
.section-testimonios {
  padding: 5rem 0;
  background: var(--brand-gray-light);
}
@media (min-width: 1024px) { .section-testimonios { padding: 7rem 0; } }

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

.testimonio-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid var(--brand-gray-mid);
  transition: box-shadow 0.3s;
}
.testimonio-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.stars {
  margin-bottom: 1rem;
  color: var(--brand-teal);
  font-size: 0.875rem;
  letter-spacing: 2px;
}
.testimonio-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
  color: var(--brand-text-mid);
  font-family: 'Gentium Basic', Georgia, serif;
}
.testimonio-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--brand-gray-mid);
}
.author-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--brand-blue);
  flex-shrink: 0;
  font-family: 'Open Sans', sans-serif;
}
.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-text-dark);
  font-family: 'Open Sans', sans-serif;
}
.author-role {
  font-size: 0.75rem;
  color: var(--brand-text-light);
  font-family: 'Open Sans', sans-serif;
}

/* ─── FOOTER ─── */
.footer {
  padding: 2rem 0;
  background: #060F1A;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; } }

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  height: 2rem;
  width: 2rem;
  object-fit: contain;
  opacity: 0.8;
}
.footer-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Open Sans', sans-serif;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Open Sans', sans-serif;
  transition: color 0.2s;
}
.footer-link:hover { color: white; }
.footer-social {
  color: rgba(255,255,255,0.4);
  transition: opacity 0.2s;
}
.footer-social:hover { opacity: 1; color: white; }
