/* =========================
   RESET + BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #6d28d9;
  --purple-dark: #5b21b6;
  --text: #1c1d1f;
  --muted: #4d4d4d;
  --line: #d1d7dc;
  --banner: #c7edf1;
  --white: #ffffff;
  --bg-soft: #f7f7f7;
  --shadow-soft: 0 2px 12px rgba(28, 29, 31, 0.14);
  --shadow-card: 0 2px 8px rgba(28, 29, 31, 0.08);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1c1d1f;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* FORZAR CONSISTENCIA */
h1,
h2,
h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  margin: 0;
}

/* =========================
   TIPOGRAFÍA GLOBAL
========================= */
.hero h1,
.hero-title,
.banner h1 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: 2.2rem;
  color: #1c1d1f;
  max-width: 700px;
}

.skills-intro h2,
.testimonials-header h2 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  font-size: 1.7rem;
  color: #1c1d1f;
  max-width: 720px;
}

.career-boost-header h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 2rem;
  line-height: 1.05;
  color: #1c1d1f;
  max-width: 760px;
}

.cta-form-left h2 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  max-width: 480px;
}

.skills-intro p,
.career-boost-header p,
.testimonials-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  max-width: 800px;
}

.cta-form-left p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.skills-intro h2 em {
  font-style: italic;
  font-weight: 700;
}

button,
.btn,
a.btn {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

section h2 {
  margin-bottom: 8px;
}

section p {
  margin-bottom: 16px;
}

/* =========================
   UTILIDADES
========================= */
.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-outline {
  border: 1px solid var(--purple);
  color: var(--purple);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(109, 40, 217, 0.06);
}

.btn-primary {
  border: 1px solid var(--purple);
  background: var(--purple);
  color: #ffffff !important;
}

.btn-primary:hover {
  background: var(--purple-dark);
}

/* =========================
   TOP BANNER
========================= */
.top-banner {
  width: 100%;
  background: var(--banner);
  position: relative;
  padding: 12px 52px 12px 16px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-banner__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.top-banner__desktop {
  display: block;
  text-align: center;
}

.top-banner__text {
  font-size: 16px;
  line-height: 1.35;
  color: var(--text);
}

.top-banner__text strong {
  font-weight: 700;
}

.top-banner__separator {
  margin: 0 6px;
  color: #5a5a5a;
}

.top-banner__subtext {
  color: #2f3b4a;
}

.top-banner__link {
  margin-left: 6px;
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.top-banner__link:hover,
.top-banner__mobile-link:hover {
  text-decoration: underline;
}

.top-banner__mobile {
  display: none;
}

.top-banner__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
}

/* =========================
   MAIN HEADER
========================= */
.main-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s ease;
}

.main-header.hide {
  transform: translateY(-100%);
}

.main-header__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 16px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 34px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.nav a,
.header-actions > a {
  text-decoration: none;
  color: #3e4143;
  font-size: 15px;
  white-space: nowrap;
}

.search-box {
  flex: 1;
  height: 46px;
  border: 1px solid #8a8da1;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  min-width: 180px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box i {
  color: #6b7280;
  font-size: 16px;
  margin-right: 12px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  background: transparent;
  color: var(--text);
}

.search-box input::placeholder {
  color: #6b7280;
}

.search-box.active,
.hero__mobile-search-box.active {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.globe-btn {
  border: 1px solid var(--purple);
  border-radius: 10px;
  width: 42px;
  height: 42px;
}

.mobile-actions {
  display: none;
}

/* =========================
   HERO PRINCIPAL
========================= */
.hero {
  width: 100%;
  background: var(--bg-soft);
  padding: 0 16px 28px;
}

.hero__wrap {
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 1585px;
  margin: 0 auto;
  height: 560px;
  overflow: hidden;
  background: #bfeaec;
}

.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #bfeaec;
}

.hero__card {
  position: absolute;
  top: 66px;
  left: 74px;
  width: 470px;
  background: #ffffff;
  padding: 30px 30px 28px;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.hero__card h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #1c1d1f;
  margin-bottom: 18px;
}

.hero__card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #1c1d1f;
  margin-bottom: 22px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  background: var(--purple);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hero__btn:hover {
  background: var(--purple-dark);
}

.hero__mobile-search {
  display: none;
}

/* =========================
   SECCIÓN HABILIDADES
========================= */
.skills-section {
  width: 100%;
  background: var(--bg-soft);
  padding: 38px 16px 60px;
}

.skills-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.skills-intro {
  max-width: 280px;
  margin-bottom: 24px;
}

.skills-intro h2 {
  line-height: 1.25;
  margin-bottom: 16px;
}

.skills-intro p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6a6f73;
}

.desktop-skills {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 14px;
}

.skills-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.skills-track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.skill-card {
  flex: 0 0 calc((100% - 28px) / 3);
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(28, 29, 31, 0.12);
}

.skill-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.skill-card__content {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #ffffff;
  border-radius: 14px;
  min-height: 80px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.skill-card__content h3 {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 500;
  color: #1c1d1f;
  max-width: 78%;
}

.skill-card__content span {
  font-size: 1.3rem;
  color: #6a6f73;
  flex-shrink: 0;
}

.skills-arrow {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #1c1d1f;
  box-shadow: 0 2px 10px rgba(28, 29, 31, 0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s ease;
}

.skills-arrow:hover {
  transform: scale(1.08);
}

.skills-arrow[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.mobile-skills {
  display: none;
}

.skills-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.skills-dot {
  width: 6px;
  height: 6px;
  background: #d1d5db;
  border-radius: 999px;
  transition: 0.2s ease;
  cursor: pointer;
}

.skills-dot.active {
  width: 22px;
  height: 6px;
  border-radius: 999px;
  background: #a435f0;
}

/* =========================
   CTA OSCURO + FORMULARIO
========================= */
.cta-form-section {
  width: 100%;
  background: #f7f7f7;
  padding: 26px 16px 60px;
}

.cta-form-shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.cta-form-card {
  background: linear-gradient(135deg, #1f2238 0%, #1b1f35 100%);
  border-radius: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.cta-form-left,
.compact-lead-form,
.lead-field input,
.lead-field select,
.lead-submit-btn {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cta-form-left {
  min-width: 0;
}

.compact-lead-form {
  width: 100%;
  max-width: 480px;
}

.lead-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.lead-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.lead-grid--1 {
  grid-template-columns: 1fr;
}

.lead-field {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 10px 12px 9px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-field:focus-within {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.lead-field label {
  display: block;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.lead-field input,
.lead-field select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.2;
  font-family: inherit;
  appearance: none;
}

.lead-field input::placeholder,
.lead-field select {
  color: rgba(255, 255, 255, 0.78);
}

.lead-field input[type="date"],
.lead-field input[type="time"] {
  color-scheme: dark;
}

.lead-submit-btn {
  width: 100%;
  min-height: 44px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  color: #1c1d1f;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.lead-submit-btn:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

.lead-form-msg {
  min-height: 18px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: #d8b4fe;
}

.cta-form-right {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-form-right img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

/* =========================
   SECCIÓN ACELERADOR
========================= */
.career-boost-section {
  width: 100%;
  background: #f7f7f7;
  padding: 18px 16px 56px;
}

.career-boost-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.career-boost-header {
  margin-bottom: 18px;
}

.career-boost-header p {
  max-width: 980px;
}

.career-boost-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 360px;
}

.career-card {
  background: #f5f6f8;
  border: 1px solid #d9dde3;
  border-radius: 16px;
  padding: 12px;
  overflow: hidden;
}

.career-card__image-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.career-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.career-card__body h3 {
  font-size: 0.96rem;
  line-height: 1.25;
  font-weight: 800;
  color: #1c1d1f;
  margin-bottom: 10px;
}

.career-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.career-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 20px;
  padding: 2px 6px;
  border: 1px solid #cfd5dd;
  border-radius: 4px;
  background: #ffffff;
  font-size: 0.68rem;
  line-height: 1;
  color: #4b5563;
}

.career-badge i {
  color: #b45309;
  font-size: 0.62rem;
}

.career-boost-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: #6d28d9;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.career-boost-link:hover {
  text-decoration: underline;
}

.career-boost-link span {
  font-size: 1rem;
}

/* =========================
   TESTIMONIOS
========================= */
.testimonials-section {
  width: 100%;
  background: #f7f7f7;
  padding: 18px 16px 64px;
}

.testimonials-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 20px;
}

.testimonials-header h2 {
  font-size: 1.6rem;
  line-height: 1.16;
  max-width: 760px;
}

.testimonials-desktop {
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  min-height: 264px;
  background: #ffffff;
  border: 1px solid #d8dde6;
  border-radius: 10px;
  padding: 18px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-hidden {
  display: none;
}

.testimonial-quote {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  color: #1c1d1f;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1c1d1f;
  margin-bottom: 18px;
}

.testimonial-brand {
  margin-top: auto;
  margin-bottom: 16px;
}

.testimonial-brand strong {
  display: block;
  font-size: 1rem;
  color: #1c1d1f;
  margin-bottom: 6px;
  font-weight: 700;
}

.testimonial-brand span {
  font-size: 0.86rem;
  line-height: 1.45;
  color: #6b7280;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 16px;
}

.testimonial-person img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-person strong {
  display: block;
  font-size: 0.9rem;
  color: #1c1d1f;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-person span {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #6b7280;
}

.testimonial-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6d28d9;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-link:hover {
  text-decoration: underline;
}

.testimonials-more-btn {
  margin-top: 18px;
  border: none;
  background: transparent;
  color: #6d28d9;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.testimonials-more-btn span {
  font-size: 1rem;
}

.testimonials-mobile {
  display: none;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  width: 100%;
  margin-top: 0;
}

.footer-top {
  background: #2d2f45;
  border-top: 1px solid #4a4d63;
  border-bottom: 1px solid #5b5d73;
}

.footer-top__inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 84px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-top__text {
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.2;
  font-weight: 700;
  max-width: 670px;
}

.footer-top__text strong {
  font-weight: 800;
}

.footer-top__logos {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-top__logos img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.96;
}

.footer-bottom {
  background: #1d2038;
}

.footer-bottom__inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.footer-bottom__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.footer-copy {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.2;
}

.footer-bottom__center {
  display: flex;
  justify-content: center;
}

.footer-bottom__right {
  display: flex;
  justify-content: flex-end;
}

.footer-link,
.footer-language {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.2;
}

.footer-link:hover,
.footer-language:hover {
  text-decoration: underline;
}

.footer-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-language i {
  font-size: 0.9rem;
}

/* =========================
   TABLET GENERAL
========================= */
@media (max-width: 1400px) {
  .hero__media {
    height: 500px;
  }

  .hero__card {
    top: 48px;
    left: 48px;
    width: 410px;
    padding: 24px 24px 22px;
  }

  .hero__card h1 {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .hero__card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .skills-intro h2,
  .testimonials-header h2 {
    font-size: 1.45rem;
  }

  .career-boost-header h2 {
    font-size: 2rem;
  }

  .cta-form-left h2 {
    font-size: 1.42rem;
    max-width: 360px;
  }

  .skills-intro p,
  .career-boost-header p,
  .testimonials-header p {
    font-size: 0.95rem;
  }

  .cta-form-left p {
    font-size: 0.9rem;
  }

  .header-actions a:nth-child(1),
  .header-actions a:nth-child(2) {
    display: none;
  }

  .hero {
    padding: 0 0 24px;
  }

  .hero__media {
    max-width: 100%;
    height: 430px;
  }

  .hero__card {
    top: 34px;
    left: 28px;
    width: 360px;
    padding: 22px 20px;
  }

  .hero__card h1 {
    font-size: 1.9rem;
    line-height: 1.08;
    letter-spacing: -0.3px;
  }

  .hero__card p {
    font-size: 0.96rem;
    line-height: 1.62;
    margin-bottom: 18px;
  }

  .hero__btn {
    min-height: 44px;
    font-size: 0.95rem;
  }

  .skill-card img {
    height: 280px;
  }

  .cta-form-card {
    grid-template-columns: 1fr 0.95fr;
    gap: 22px;
    padding: 22px;
  }

  .compact-lead-form {
    max-width: 100%;
  }

  .lead-field {
    padding: 9px 11px 8px;
  }

  .lead-field input,
  .lead-field select {
    font-size: 0.9rem;
  }

  .testimonials-header h2 {
    font-size: 1.38rem;
    max-width: 700px;
  }

  .testimonial-card {
    padding: 16px 16px 16px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .footer-top__inner {
    padding: 18px 24px;
    min-height: auto;
    gap: 20px;
  }

  .footer-top__text {
    font-size: 0.9rem;
    max-width: 520px;
  }

  .footer-top__logos {
    gap: 24px;
  }

  .footer-top__logos img {
    height: 24px;
  }

  .footer-bottom__inner {
    padding: 0 22px;
  }
}

/* =========================
   DESKTOP FIX HABILIDADES
========================= */
@media (min-width: 992px) {
  .skills-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
  }

  .skills-intro {
    max-width: 260px;
    padding-top: 30px;
    margin-bottom: 0;
  }

  .desktop-skills {
    position: relative;
    display: block;
  }

  .skills-arrow {
    position: absolute;
    bottom: -55px;
    top: auto;
  }

  .skills-arrow--left {
    left: 40%;
  }

  .skills-arrow--right {
    right: 40%;
  }

  .career-boost-section {
    padding: 20px 16px 64px;
  }

  .career-boost-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .career-boost-header {
    margin-bottom: 22px;
    text-align: center;
    max-width: 700px;
  }

  .career-boost-header h2 {
    font-size: 1.55rem;
  }

  .career-boost-header p {
    font-size: 0.92rem;
    max-width: 920px;
  }

  .career-boost-grid {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 350px;
  }

  .career-card {
    border-radius: 14px;
    padding: 12px;
    max-width: 360px;
    width: 100%;
  }

  .career-card__image {
    height: 180px;
  }

  .career-card__body h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .career-badge {
    font-size: 0.67rem;
  }

  .career-boost-link {
    text-align: center;
  }
}

/* =========================
   MOBILE / TABLET SMALL
========================= */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 1.3rem;
    line-height: 1.1;
  }

  .skills-intro h2,
  .testimonials-header h2 {
    font-size: 1.05rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .career-boost-header h2 {
    font-size: 1.05rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .cta-form-left h2 {
    font-size: 1.05rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .skills-intro p,
  .career-boost-header p,
  .testimonials-header p,
  .cta-form-left p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .desktop-only,
  .desktop-search {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex;
  }

  /* BANNER MÓVIL */
  .top-banner {
    min-height: auto;
    padding: 8px 38px 8px 10px;
  }

  .top-banner__desktop {
    display: none;
  }

  .top-banner__mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
  }

  .top-banner__mobile-strong {
    font-size: 11px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text);
    max-width: 255px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .top-banner__mobile-subtext {
    margin-top: 1px;
    font-size: 10px;
    line-height: 1.1;
    color: #334155;
    max-width: 215px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-banner__mobile-link {
    margin-top: 1px;
    font-size: 11px;
    line-height: 1;
    color: var(--purple);
    font-weight: 700;
    text-decoration: none;
  }

  .top-banner__close {
    right: 10px;
    font-size: 16px;
  }

  /* HEADER MÓVIL */
  .main-header__inner {
    min-height: 58px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: relative;
  }

  .mobile-left {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 1;
  }

  .logo img {
    height: 30px;
    max-width: 150px;
    object-fit: contain;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    margin-left: auto;
    z-index: 2;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  /* HERO MÓVIL */
  .hero {
    background: #ffffff;
    padding: 0;
  }

  .hero__wrap {
    max-width: 100%;
  }

  .hero__media {
    height: auto;
    background: transparent;
    overflow: visible;
  }

  .hero__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    background: transparent;
  }

  .hero__card {
    position: static;
    width: 100%;
    background: #ffffff;
    box-shadow: none;
    padding: 18px 20px 14px;
  }

  .hero__card h1 {
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 14px;
    color: #1c1d1f;
  }

  .hero__card p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 20px;
    color: #1c1d1f;
  }

  .hero__btn {
    display: flex;
    width: 100%;
    min-height: 56px;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .hero__mobile-search {
    display: block;
    padding: 0 20px 22px;
    background: #ffffff;
  }

  .hero__mobile-search-box {
    height: 52px;
    border: 1px solid #8a8da1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 12px 0 14px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .hero__mobile-search-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #1c1d1f;
    font-size: 1rem;
  }

  .hero__mobile-search-box input::placeholder {
    color: #6b7280;
  }

  .hero__mobile-search-box button {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #1c1d1f;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* SKILLS MÓVIL */
  .skills-section {
    padding: 26px 18px 40px;
    background: #ffffff;
  }

  .desktop-skills {
    display: none;
  }

  .mobile-skills {
    display: block;
  }

  .skills-intro {
    max-width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .skills-intro h2 {
    line-height: 1.22;
    font-weight: 300;
    margin-bottom: 10px;
  }

  .skills-intro h2 em {
    font-weight: 300;
  }

  .skills-intro p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .mobile-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .mobile-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
  }

  .mobile-card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    display: block;
  }

  .mobile-card .skill-card__content {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 64px;
    padding: 12px 12px 10px;
    border-radius: 10px;
  }

  .mobile-card .skill-card__content h3 {
    font-size: 0.9rem;
    line-height: 1.35;
    max-width: 76%;
    font-weight: 400;
  }

  .mobile-card .skill-card__content span {
    font-size: 1.1rem;
  }

  .hidden-card {
    display: none;
  }

  .mobile-show-more {
    margin-top: 14px;
    border: none;
    background: transparent;
    color: var(--purple);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-show-more i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
  }

  .mobile-show-more.active i {
    transform: rotate(180deg);
  }

  /* CTA MÓVIL */
  .cta-form-section {
    padding: 18px 14px 34px;
    background: #ffffff;
  }

  .cta-form-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 22px;
  }

  .cta-form-left h2 {
    max-width: 240px;
    margin-bottom: 8px;
  }

  .cta-form-left p {
    margin-bottom: 10px;
    max-width: 100%;
  }

  .compact-lead-form {
    max-width: 100%;
  }

  .lead-grid {
    gap: 8px;
    margin-bottom: 8px;
  }

  .lead-grid--2 {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .lead-grid--1 {
    grid-template-columns: 1fr;
  }

  .lead-field {
    border-radius: 12px;
    padding: 8px 10px 7px;
  }

  .lead-field label {
    font-size: 0.64rem;
    margin-bottom: 3px;
  }

  .lead-field input,
  .lead-field select {
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .lead-submit-btn {
    min-height: 42px;
    font-size: 0.85rem;
    border-radius: 12px;
    margin-top: 2px;
  }

  .lead-form-msg {
    font-size: 0.72rem;
    margin-top: 6px;
  }

  .cta-form-right {
    order: 2;
  }

  .cta-form-right img {
    max-width: 100%;
    border-radius: 14px;
  }

  /* CAREER MÓVIL */
  .career-boost-section {
    background: #ffffff;
    padding: 20px 14px 34px;
  }

  .career-boost-header {
    margin-bottom: 14px;
  }

  .career-boost-header h2 {
    margin-bottom: 6px;
    max-width: 280px;
  }

  .career-boost-header p {
    font-size: 0.72rem;
    line-height: 1.55;
    max-width: 310px;
  }

  .career-boost-grid {
    max-width: 100%;
  }

  .career-card {
    padding: 10px;
    border-radius: 14px;
  }

  .career-card__image-wrap {
    margin-bottom: 8px;
    border-radius: 9px;
  }

  .career-card__image {
    height: 154px;
  }

  .career-card__body h3 {
    font-size: 0.86rem;
    margin-bottom: 8px;
  }

  .career-card__meta {
    gap: 5px;
  }

  .career-badge {
    font-size: 0.62rem;
    padding: 2px 5px;
  }

  .career-boost-link {
    margin-top: 14px;
    font-size: 0.8rem;
  }

  /* TESTIMONIOS MÓVIL */
  .testimonials-section {
    background: #ffffff;
    padding: 18px 14px 36px;
  }

  .testimonials-desktop {
    display: none;
  }

  .testimonials-mobile {
    display: block;
  }

  .testimonials-header {
    margin-bottom: 14px;
  }

  .testimonials-header h2 {
    font-size: 0.95rem;
    line-height: 1.12;
    max-width: 310px;
  }

  .testimonials-mobile-shell {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .testimonials-mobile-track-wrap {
    overflow: hidden;
    flex: 1;
  }

  .testimonials-mobile-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
  }

  .testimonial-card--mobile {
    min-width: 100%;
    min-height: 252px;
    padding: 16px 16px 16px;
    border-radius: 10px;
  }

  .testimonial-card--mobile .testimonial-quote {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .testimonial-card--mobile .testimonial-text {
    font-size: 0.83rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .testimonial-card--mobile .testimonial-brand strong,
  .testimonial-card--mobile .testimonial-person strong {
    font-size: 0.82rem;
  }

  .testimonial-card--mobile .testimonial-brand span,
  .testimonial-card--mobile .testimonial-person span {
    font-size: 0.72rem;
  }

  .testimonial-card--mobile .testimonial-link {
    font-size: 0.8rem;
  }

  .testimonials-mobile-arrow {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #1c1d1f;
    box-shadow: 0 2px 8px rgba(28, 29, 31, 0.12);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
  }

  /* FOOTER MÓVIL */
  .footer-top {
    background: #2b2d45;
  }

  .footer-top__inner {
    min-height: auto;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-top__text {
    max-width: 290px;
    font-size: 0.82rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .footer-top__logos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 18px 24px;
    justify-content: flex-start;
  }

  .footer-top__logos img {
    height: 26px;
  }

  .footer-bottom {
    background: #1b1e36;
    border-top: 1px solid #4f5269;
  }

  .footer-bottom__inner {
    min-height: auto;
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-bottom__right {
    order: 1;
    justify-content: flex-start;
  }

  .footer-bottom__center {
    order: 2;
    justify-content: flex-start;
  }

  .footer-bottom__left {
    order: 3;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-language,
  .footer-link,
  .footer-copy {
    font-size: 0.88rem;
  }

  .footer-logo img {
    height: 32px;
  }
}

/* =========================
   MÓVIL PEQUEÑO
========================= */
@media (max-width: 430px) {
  .hero h1 {
    font-size: 1.15rem;
  }

  .skills-intro h2,
  .testimonials-header h2 {
    font-size: 0.95rem;
  }

  .career-boost-header h2 {
    font-size: 0.88rem;
    max-width: 255px;
  }

  .cta-form-left h2 {
    font-size: 0.86rem;
    line-height: 1.04;
    max-width: 220px;
  }

  .skills-intro p,
  .testimonials-header p,
  .cta-form-left p {
    font-size: 0.72rem;
  }

  .career-boost-header p {
    font-size: 0.68rem;
    max-width: 285px;
  }

  .top-banner {
    padding: 7px 36px 7px 8px;
  }

  .top-banner__mobile {
    padding: 0 8px;
  }

  .top-banner__mobile-strong {
    font-size: 10px;
    max-width: 230px;
  }

  .top-banner__mobile-subtext {
    font-size: 9px;
    max-width: 200px;
  }

  .top-banner__mobile-link {
    font-size: 10px;
  }

  .main-header__inner {
    min-height: 56px;
    padding: 0 6px;
  }

  .logo img {
    height: 28px;
    max-width: 135px;
  }

  .icon-btn {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .hero__card {
    padding: 16px 18px 12px;
  }

  .hero__card h1 {
    font-size: 1.35rem;
    line-height: 1.22;
    margin-bottom: 10px;
  }

  .hero__card p {
    font-size: 0.94rem;
    line-height: 1.58;
    margin-bottom: 18px;
  }

  .hero__btn {
    min-height: 56px;
    font-size: 1rem;
    border-radius: 12px;
  }

  .hero__mobile-search {
    padding: 0 18px 20px;
  }

  .hero__mobile-search-box {
    height: 52px;
  }

  .skills-section {
    padding: 24px 14px 36px;
  }

  .skills-intro h2 {
    font-size: 1.05rem;
  }

  .skills-intro p {
    font-size: 0.9rem;
  }

  .mobile-card img {
    height: 150px;
  }

  .mobile-card .skill-card__content h3 {
    font-size: 0.86rem;
  }

  .cta-form-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .cta-form-left p {
    font-size: 0.69rem;
    line-height: 1.5;
  }

  .lead-grid--2 {
    gap: 7px;
  }

  .lead-field {
    padding: 7px 9px 6px;
  }

  .lead-field label {
    font-size: 0.6rem;
  }

  .lead-field input,
  .lead-field select {
    font-size: 0.74rem;
  }

  .lead-submit-btn {
    min-height: 40px;
    font-size: 0.82rem;
  }

  .career-card__image {
    height: 150px;
  }

  .career-card__body h3 {
    font-size: 0.82rem;
  }

  .career-badge {
    font-size: 0.58rem;
  }

  .testimonials-header h2 {
    font-size: 0.88rem;
    max-width: 280px;
  }

  .testimonial-card--mobile {
    min-height: 240px;
    padding: 14px 14px 14px;
  }

  .testimonial-card--mobile .testimonial-text {
    font-size: 0.78rem;
  }

  .testimonials-mobile-arrow {
    width: 32px;
    height: 32px;
  }

  .footer-top__inner {
    padding: 16px 16px 14px;
  }

  .footer-top__text {
    max-width: 260px;
    font-size: 0.78rem;
  }

  .footer-top__logos {
    gap: 16px 20px;
  }

  .footer-top__logos img {
    height: 24px;
  }

  .footer-bottom__inner {
    padding: 14px 16px 16px;
    gap: 16px;
  }

  .footer-language,
  .footer-link,
  .footer-copy {
    font-size: 0.84rem;
  }

  .footer-logo img {
    height: 30px;
  }
}

/* =========================
   PARCHE HEADER DESKTOP
========================= */
@media (min-width: 992px) {
  .nav.desktop-only {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-actions.desktop-only {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* REDES: un poco más grandes y con color */
  .social-icon-link {
    width: 44px;
    height: 44px;
    border: 1px solid #d1d7dc;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #ffffff;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .social-icon-link i {
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .social-icon-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .social-icon-link:hover i {
    transform: scale(1.04);
  }

  .social-icon-link--tiktok {
    color: #111111;
  }

  .social-icon-link--tiktok i {
    font-size: 20px;
  }

  .social-icon-link--whatsapp {
    color: #25d366;
  }

  .social-icon-link--whatsapp i {
    font-size: 21px;
  }

  .social-icon-link--facebook {
    color: #1877f2;
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0 2px;
    box-shadow: none;
  }

  .social-icon-link--facebook i {
    font-size: 18px;
  }

  .social-icon-link--facebook:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.85;
  }

  /* enlaces de texto */
  .header-actions.desktop-only > a:not(.btn):not(.social-icon-link) {
    text-decoration: none;
    color: #2f3137;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
  }

  .header-actions.desktop-only > a:not(.btn):not(.social-icon-link):hover {
    color: #111111;
  }

  /* selector idioma con globo */
  .lang-dropdown {
    position: relative;
    flex-shrink: 0;
  }

  .lang-dropdown__trigger {
    width: 46px;
    height: 44px;
    border: 1px solid #1c1d1f;
    border-radius: 12px;
    background: #ffffff;
    color: #1c1d1f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .lang-dropdown__trigger i {
    font-size: 17px;
  }

  .lang-dropdown__trigger:hover {
    background: #f8f9fb;
  }

  .lang-dropdown.open .lang-dropdown__trigger {
    border-color: #6d28d9;
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.12);
  }

  .lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: #ffffff;
    border: 1px solid #d1d7dc;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 20;
  }

  .lang-dropdown.open .lang-dropdown__menu {
    display: block;
  }

  .lang-dropdown__item {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    color: #1c1d1f;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .lang-dropdown__item:hover {
    background: #f3f4f6;
  }

  .lang-dropdown__item.active {
    background: rgba(109, 40, 217, 0.08);
    color: #6d28d9;
  }
}

/* ajuste fino pantallas algo más compactas */
@media (min-width: 992px) and (max-width: 1200px) {
  .social-icon-link {
    width: 42px;
    height: 42px;
  }

  .social-icon-link--tiktok i {
    font-size: 19px;
  }

  .social-icon-link--whatsapp i {
    font-size: 20px;
  }

  .lang-dropdown__trigger {
    width: 42px;
    height: 42px;
  }
}

/* =========================
   PARCHE REDES SOCIALES - SUSTENTA
   Sin bordes | Con color original | Minimal
========================= */

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 6px;
  transition: all 0.2s ease;
}

/* tamaño ligeramente mayor pero elegante */
.social-icon-link i {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* hover sutil */
.social-icon-link:hover i {
  transform: scale(1.08);
  opacity: 0.85;
}

/* =========================
   COLORES ORIGINALES
========================= */

.social-icon-link--tiktok {
  color: #111111 !important;
}

.social-icon-link--whatsapp {
  color: #25d366 !important;
}

.social-icon-link--facebook {
  color: #0951ae !important;
}

/* =========================
   AJUSTE ESPACIADO HEADER
========================= */

.nav.desktop-only {
  gap: 10px;
}

.header-actions.desktop-only {
  gap: 12px;
}

/* =========================
   PARCHE HEADER MÓVIL
   TikTok + WhatsApp
========================= */
@media (max-width: 991px) {
  .mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-left: auto;
    z-index: 2;
  }

  .mobile-actions .icon-btn.mobile-social {
    width: 36px;
    height: 36px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    text-decoration: none;
  }

  .mobile-actions .icon-btn.mobile-social i {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-actions .icon-btn.mobile-social:hover i,
  .mobile-actions .icon-btn.mobile-social:active i {
    transform: scale(1.08);
    opacity: 0.85;
  }

  .mobile-social--tiktok {
    color: #111111 !important;
  }

  .mobile-social--whatsapp {
    color: #25d366 !important;
  }
}

@media (max-width: 430px) {
  .mobile-actions .icon-btn.mobile-social {
    width: 34px;
    height: 34px;
  }

  .mobile-actions .icon-btn.mobile-social i {
    font-size: 19px;
  }
}

/* =========================
   CONTROL VISIBILIDAD RESPONSIVE
========================= */

/* OCULTAR MOBILE EN DESKTOP */
@media (min-width: 769px) {
  .mobile-only,
  .mobile-actions {
    display: none !important;
  }
}

/* MOSTRAR SOLO EN MOVIL */
@media (max-width: 768px) {
  .mobile-only,
  .mobile-actions {
    display: inline-flex !important;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.mobile-menu__close {
  border: none;
  background: #f3f4f6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu__nav a {
  text-decoration: none;
  color: #1c1d1f;
  font-size: 15px;
}

.mobile-menu__divider {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 0;
}

/* =========================
   MOBILE MENU DRAWER REAL
========================= */

/* en desktop no debe existir visualmente */
@media (min-width: 769px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* en móvil */
@media (max-width: 768px) {
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu {
    width: 82%;
    max-width: 340px;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    padding: 14px 0 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
  }

  .mobile-menu__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 16px 10px;
  }

  .mobile-menu__close {
    border: none;
    background: #f3f4f6;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu__close i {
    font-size: 14px;
    color: #1c1d1f;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
  }

  .mobile-menu__group--primary a {
    color: #7c3aed;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;

  }

  .mobile-menu__title {
    font-size: 14px;
    font-weight: 700;
    color: #1c1d1f;
    margin-bottom: 2px;
  }

  .mobile-menu__nav a {
    text-decoration: none;
    color: #1c1d1f;
    font-size: 15px;
    line-height: 1.35;
  }

  .mobile-menu__soon {
    font-size: 13px;
    font-weight: 700;
    color: #7c3aed;
  }

  .mobile-menu__disabled {
    opacity: 0.42;
    pointer-events: none;
  }

  .mobile-menu__divider {
    height: 1px;
    background: #e5e7eb;
    margin: 18px 0;
  }
}

/* =========================
   TOOLTIP AULA VIRTUAL
========================= */
.soon-tooltip {
  position: relative;
}

@media (min-width: 992px) {
  .soon-tooltip::after {
    content: attr(data-soon);
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    min-width: 240px;
    max-width: 280px;
    background: #1c1d1f;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    text-align: center;
    z-index: 50;
  }

  .soon-tooltip::before {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 4px);
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #1c1d1f;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 50;
  }

  .soon-tooltip:hover::after,
  .soon-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* =========================
   BOTÓN REAL DEL BUSCADOR
========================= */
.search-trigger {
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 16px;
  margin-right: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.search-trigger:hover {
  color: #1c1d1f;
}

/* =========================
   SEARCH DRAWER
========================= */
.search-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 10000;
}

.search-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-drawer {
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(92vw, 560px);
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
  padding: 26px 22px 20px;
  transition: transform 0.25s ease;
}

.search-drawer-overlay.active .search-drawer {
  transform: translateX(-50%) translateY(0);
}

.search-drawer__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-drawer__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6d28d9;
  margin-bottom: 10px;
}

.search-drawer__title {
  font-family: "Inter", sans-serif;
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
  max-width: 92%;
}

.search-drawer__text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 18px;
}

.search-drawer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-drawer__btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.search-drawer__btn--primary {
  background: #6d28d9;
  color: #ffffff;
  border: 1px solid #6d28d9;
}

.search-drawer__btn--primary:hover {
  background: #5b21b6;
}

.search-drawer__btn--secondary {
  background: #ffffff;
  color: #6d28d9;
  border: 1px solid #6d28d9;
}

.search-drawer__btn--secondary:hover {
  background: rgba(109, 40, 217, 0.06);
}

@media (max-width: 991px) {
  .search-drawer {
    top: auto;
    bottom: 16px;
    width: calc(100vw - 24px);
    border-radius: 18px;
    padding: 22px 18px 18px;
  }

  .search-drawer__title {
    font-size: 1.1rem;
    max-width: 88%;
  }

  .search-drawer__text {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .search-drawer__actions {
    flex-direction: column;
  }

  .search-drawer__btn {
    width: 100%;
  }
}

/* =========================
   MODAL SERVICIO
========================= */
.service-card-trigger {
  cursor: pointer;
}

.service-card-trigger img,
.service-card-trigger .skill-card__content,
.service-card-trigger h3,
.service-card-trigger span {
  cursor: pointer;
}

.service-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.34);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  border-radius: 26px;
  padding: 22px 22px 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.service-modal-overlay.active .service-modal {
  transform: translateY(0) scale(1);
}

.service-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  color: #1c1d1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

.service-modal__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.10);
  color: #6d28d9;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-modal__title {
  font-family: "Inter", sans-serif;
  font-size: 2.05rem;
  line-height: 1.08;
  font-weight: 800;
  color: #1c1d1f;
  margin-bottom: 18px;
  padding-right: 56px;
}

.service-modal__label {
  font-size: 1rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 12px;
}

.service-modal__text {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 0;
}

.service-modal__btn {
  margin-top: 22px;
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  background: linear-gradient(90deg, #6d28d9 0%, #a855f7 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-modal__btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

@media (max-width: 991px) {
  .service-modal-overlay {
    align-items: flex-end;
    padding: 12px;
  }

  .service-modal {
    max-width: 100%;
    border-radius: 22px;
    padding: 18px 18px 18px;
  }

  .service-modal__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .service-modal__tag {
    min-height: 30px;
    font-size: 0.76rem;
    padding: 0 12px;
    margin-bottom: 14px;
  }

  .service-modal__title {
    font-size: 1.45rem;
    line-height: 1.12;
    margin-bottom: 14px;
    padding-right: 48px;
  }

  .service-modal__label {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .service-modal__text {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .service-modal__btn {
    min-height: 50px;
    border-radius: 14px;
    margin-top: 18px;
  }
}

html {
  scroll-behavior: smooth;
}

/* =========================
   AUTOCOMPLETE FORM
========================= */
.lead-autocomplete {
  position: relative;
}

.lead-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: none;
  z-index: 40;
  max-height: 320px;
  overflow-y: auto;
}

.lead-dropdown.show {
  display: block;
}

.lead-dropdown__item {
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.18s ease;
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
}

.lead-dropdown__item:last-child {
  border-bottom: none;
}

.lead-dropdown__item:hover,
.lead-dropdown__item.active {
  background: #f5f3ff;
}

.lead-dropdown__title {
  display: block;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.lead-dropdown__subtitle {
  display: block;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4b5563;
}

@media (max-width: 991px) {
  .lead-dropdown {
    top: calc(100% + 6px);
    border-radius: 14px;
    max-height: 260px;
  }

  .lead-dropdown__item {
    padding: 12px 12px;
  }

  .lead-dropdown__title {
    font-size: 0.9rem;
  }

  .lead-dropdown__subtitle {
    font-size: 0.78rem;
  }
}

/* =========================
   MODAL CONFIRMACIÓN AGENDA
========================= */
.agenda-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 10030;
}

.agenda-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.agenda-modal {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  padding: 22px 22px 20px;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.agenda-modal-overlay.active .agenda-modal {
  transform: translateY(0) scale(1);
}

.agenda-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  color: #1c1d1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

.agenda-modal__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.10);
  color: #6d28d9;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.agenda-modal__title {
  font-family: "Inter", sans-serif;
  font-size: 1.95rem;
  line-height: 1.08;
  font-weight: 800;
  color: #1c1d1f;
  margin-bottom: 16px;
  padding-right: 56px;
}

.agenda-modal__content {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 16px 16px 14px;
  margin-bottom: 18px;
}

.agenda-modal__list {
  display: grid;
  gap: 10px;
}

.agenda-modal__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px;
  align-items: start;
}

.agenda-modal__label {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
}

.agenda-modal__value {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5563;
  word-break: break-word;
}

.agenda-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.agenda-modal__btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.agenda-modal__btn--secondary {
  background: #eef2ff;
  color: #1f3b77;
}

.agenda-modal__btn--secondary:hover {
  background: #dbeafe;
}

.agenda-modal__btn--primary {
  background: linear-gradient(90deg, #6d28d9 0%, #a855f7 100%);
  color: #ffffff;
}

.agenda-modal__btn--primary:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

@media (max-width: 991px) {
  .agenda-modal-overlay {
    align-items: flex-end;
    padding: 12px;
  }

  .agenda-modal {
    max-width: 100%;
    border-radius: 22px;
    padding: 18px 18px 18px;
  }

  .agenda-modal__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .agenda-modal__tag {
    min-height: 30px;
    font-size: 0.76rem;
    padding: 0 12px;
    margin-bottom: 14px;
  }

  .agenda-modal__title {
    font-size: 1.35rem;
    line-height: 1.12;
    margin-bottom: 14px;
    padding-right: 48px;
  }

  .agenda-modal__content {
    padding: 14px 14px 12px;
  }

  .agenda-modal__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .agenda-modal__label,
  .agenda-modal__value {
    font-size: 0.9rem;
  }

  .agenda-modal__actions {
    flex-direction: column-reverse;
  }

  .agenda-modal__btn {
    width: 100%;
  }
}

/* =========================
   DRAWER HISTORIAS TESTIMONIOS
========================= */
.story-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.story-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.story-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(540px, 100%);
  height: 100%;
  background: #ffffff;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.story-drawer-overlay.active .story-drawer {
  transform: translateX(0);
}

.story-drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #f3f4f6;
  color: #1c1d1f;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.story-drawer__content {
  padding: 72px 28px 28px;
  overflow-y: auto;
  height: 100%;
}

.story-drawer__item {
  display: none;
}

.story-drawer__item.active {
  display: block;
}

.story-drawer__item h3 {
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 800;
  color: #1c1d1f;
  margin-bottom: 8px;
}

.story-drawer__meta {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 18px;
}

.story-drawer__item p {
  font-size: 1rem;
  line-height: 1.75;
  color: #1f2937;
  margin-bottom: 16px;
}

/* que el link se vea clicable */
.testimonial-link.open-story {
  cursor: pointer;
}

@media (max-width: 991px) {
  .story-drawer {
    width: 100%;
  }

  .story-drawer__content {
    padding: 68px 20px 24px;
  }

  .story-drawer__item h3 {
    font-size: 1.15rem;
  }

  .story-drawer__meta {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .story-drawer__item p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

.testimonial-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #1c1d1f;
  margin-bottom: 10px;
  display: block;
}

/* =========================
   FUNDADOR - TARJETA CLICABLE
========================= */
.founder-card {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.founder-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(28, 29, 31, 0.12);
}

.career-badge--icon {
  text-decoration: none;
  cursor: pointer;
}

.career-badge--icon i {
  font-size: 0.8rem;
}

.career-badge--icon[aria-label="TikTok"] {
  color: #111111;
}

.career-badge--icon[aria-label="LinkedIn"] {
  color: #0a66c2;
}

/* =========================
   DRAWER FUNDADOR
========================= */
.founder-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.founder-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.founder-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(760px, 100%);
  height: 100%;
  background: #ffffff;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.founder-drawer-overlay.active .founder-drawer {
  transform: translateX(0);
}

.founder-drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #f3f4f6;
  color: #1c1d1f;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.founder-drawer__content {
  height: 100%;
  overflow-y: auto;
  padding: 72px 28px 30px;
}

.founder-drawer__hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.founder-drawer__image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
}

.founder-drawer__image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.founder-drawer__eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6d28d9;
  margin-bottom: 8px;
}

.founder-drawer__intro h3 {
  font-size: 1.7rem;
  line-height: 1.08;
  font-weight: 800;
  color: #1c1d1f;
  margin-bottom: 10px;
}

.founder-drawer__meta {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 14px;
}

.founder-drawer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-drawer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1c1d1f;
}

.founder-drawer__socials a[aria-label="LinkedIn"] {
  color: #0a66c2;
}

.founder-drawer__section {
  margin-bottom: 28px;
}

.founder-drawer__section h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1c1d1f;
  margin-bottom: 10px;
}

.founder-drawer__section p {
  font-size: 1rem;
  line-height: 1.75;
  color: #1f2937;
  margin-bottom: 14px;
}

/* =========================
   ANILLOS DE VALORACIÓN
========================= */
.founder-rings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.founder-ring-card {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
}

.founder-ring {
  width: 92px;
  height: 92px;
  margin: 0 auto 12px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #1c1d1f;
  position: relative;
}

.founder-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.founder-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: #ffffff;
  border-radius: 999px;
}

.founder-ring span {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.founder-ring--one::before {
  background: conic-gradient(#7c3aed 0 88%, #e9d5ff 88% 100%);
}

.founder-ring--two::before {
  background: conic-gradient(#0f766e 0 87%, #ccfbf1 87% 100%);
}

.founder-ring--three::before {
  background: conic-gradient(#ea580c 0 85%, #ffedd5 85% 100%);
}

.founder-ring-card h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1c1d1f;
  margin-bottom: 8px;
}

.founder-ring-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #4b5563;
  margin: 0;
}

.founder-rating-summary {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.founder-rating-summary__score {
  font-size: 1.35rem;
  font-weight: 800;
  color: #6d28d9;
}

.founder-rating-summary__text {
  font-size: 0.92rem;
  color: #4b5563;
}

/* =========================
   CTA DRAWER
========================= */
.founder-drawer__cta {
  border-top: 1px solid #e5e7eb;
  padding-top: 18px;
  margin-top: 8px;
}

.founder-drawer__cta p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #1f2937;
  margin-bottom: 14px;
}

.founder-drawer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: #6d28d9;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease;
}

.founder-drawer__button:hover {
  background: #5b21b6;
}

/* =========================
   RESPONSIVE DRAWER
========================= */
@media (max-width: 991px) {
  .founder-drawer {
    width: 100%;
  }

  .founder-drawer__content {
    padding: 68px 20px 24px;
  }

  .founder-drawer__hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .founder-drawer__image-wrap {
    max-width: 260px;
  }

  .founder-drawer__intro h3 {
    font-size: 1.2rem;
  }

  .founder-drawer__meta {
    font-size: 0.84rem;
  }

  .founder-drawer__section p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .founder-rings {
    grid-template-columns: 1fr;
  }

  .founder-ring-card {
    text-align: left;
  }

  .founder-ring {
    margin: 0 0 12px;
  }

  .founder-rating-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* ==================================
   PARCHE: LOGO CLUB SUSTENTA MÁS GRANDE
================================== */

.logo {
  flex: 0 0 auto;
  min-width: 210px;
  justify-content: flex-start;
}

.logo img {
  width: 220px !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain;
  display: block;
}

/* Dar espacio vertical al logo */
.main-header__inner {
  min-height: 82px;
}

/* TABLET Y MÓVIL */
@media (max-width: 991px) {
  .main-header__inner {
    min-height: 64px;
  }

  .logo {
    min-width: auto;
  }

  .logo img {
    width: 175px !important;
    height: auto !important;
    max-width: 175px !important;
  }
}

/* CELULARES PEQUEÑOS */
@media (max-width: 430px) {
  .logo img {
    width: 150px !important;
    max-width: 150px !important;
  }
}

/* ==========================================
   PARCHE DEL NUEVO ENCABEZADO CLUB SUSTENTA
========================================== */

/* Redes sociales agrupadas */
.main-header .nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.main-header .social-icon-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 21px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.main-header .social-icon-link:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}

.main-header .social-icon-link--tiktok {
  color: #111111;
}

.main-header .social-icon-link--facebook {
  color: #1877f2;
}

.main-header .social-icon-link--whatsapp {
  color: #25d366;
}

/* Menú derecho */
.main-header .header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.main-header .header-actions > a:not(.btn) {
  color: #1c1d1f;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.main-header .header-actions > a:not(.btn):hover {
  color: var(--purple);
}

/* Botón principal */
.main-header .header-actions .btn-primary {
  min-width: 158px;
  height: 46px;
  padding: 0 20px;
  border-radius: 12px;
}

/* Botón destacado dentro del menú móvil */
.mobile-menu__cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 16px !important;
  border-radius: 12px;
  background: var(--purple);
  color: #ffffff !important;
  font-weight: 800 !important;
  text-align: center;
}

.mobile-menu__cta:hover {
  background: var(--purple-dark);
}

/* Ajuste para pantallas intermedias */
@media (max-width: 1250px) {
  .main-header .header-actions {
    gap: 12px;
  }

  .main-header .header-actions > a:not(.btn) {
    font-size: 14px;
  }

  .main-header .header-actions .btn-primary {
    min-width: 145px;
    padding: 0 15px;
  }

  .main-header .nav {
    gap: 8px;
  }
}

/* Redes del encabezado móvil */
@media (max-width: 991px) {
  .mobile-actions {
    gap: 1px;
  }

  .mobile-actions .mobile-social {
    width: 32px;
    height: 36px;
    font-size: 17px;
  }

  .mobile-social--tiktok {
    color: #111111;
  }

  .mobile-social--facebook {
    color: #1877f2;
  }

  .mobile-social--whatsapp {
    color: #25d366;
  }
}

/* En celulares muy pequeños ocultamos Facebook del encabezado,
   pero seguirá disponible dentro del menú burger */
@media (max-width: 430px) {
  .mobile-actions .mobile-social--facebook {
    display: none;
  }
}

/* ==========================================
   MÉTODO SUSTENTA
========================================== */

.metodo-section {
  width: 100%;
  background: #f7f4ff;
  padding: 34px 16px;
}

.metodo-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 430px;
  padding: 34px 38px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 82% 45%,
      rgba(168, 85, 247, 0.13),
      transparent 35%
    ),
    linear-gradient(135deg, #fbf9ff 0%, #f3edff 100%);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 36px;
  overflow: hidden;
}

.metodo-content {
  min-width: 0;
}

.metodo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--purple);
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.metodo-content h2 {
  max-width: 540px;
  margin: 0 0 16px;
  color: #1c1d1f;
  font-size: 2.65rem;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.metodo-content h2 span {
  color: var(--purple);
}

.metodo-description {
  max-width: 580px;
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: normal;
}

.metodo-description strong {
  color: #3f3f46;
  font-weight: 800;
}

.metodo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 9px;
}

.metodo-list li {
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: #374151;
  font-size: 0.96rem;
  line-height: 1.4;
  letter-spacing: normal;
}

.metodo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple);
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 900;
}

.metodo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--purple);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.18);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.metodo-btn:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.24);
}

.metodo-btn span {
  font-size: 1rem;
  line-height: 1;
}

.metodo-image {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metodo-image img {
  display: block;
  width: 100%;
  max-width: 570px;
  height: auto;
  object-fit: contain;
}

/* TABLET */
@media (max-width: 1100px) {
  .metodo-container {
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    padding: 30px;
  }

  .metodo-content h2 {
    font-size: 2.2rem;
  }

  .metodo-description {
    font-size: 0.95rem;
  }

  .metodo-list li {
    font-size: 0.9rem;
  }
}

/* MÓVIL */
@media (max-width: 991px) {
  .metodo-section {
    padding: 24px 14px;
  }

  .metodo-container {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .metodo-content {
    order: 1;
  }

  .metodo-image {
    order: 2;
  }

  .metodo-content h2 {
    max-width: 420px;
    font-size: 2rem;
    line-height: 1.06;
    margin-bottom: 14px;
  }

  .metodo-description {
    font-size: 0.94rem;
    line-height: 1.58;
    margin-bottom: 16px;
  }

  .metodo-list {
    gap: 8px;
    margin-bottom: 20px;
  }

  .metodo-list li {
    font-size: 0.9rem;
  }

  .metodo-btn {
    min-height: 46px;
    font-size: 0.9rem;
  }

  .metodo-image img {
    max-width: 480px;
  }
}

/* MÓVIL PEQUEÑO */
@media (max-width: 430px) {
  .metodo-section {
    padding: 18px 12px;
  }

  .metodo-container {
    padding: 22px 18px;
    gap: 20px;
    border-radius: 18px;
  }

  .metodo-badge {
    margin-bottom: 12px;
    font-size: 0.66rem;
  }

  .metodo-content h2 {
    font-size: 1.65rem;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .metodo-description {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .metodo-list li {
    padding-left: 26px;
    font-size: 0.84rem;
  }

  .metodo-btn {
    width: 100%;
    padding: 0 16px;
  }
}

/* =====================================
   SOLO MÓVIL
===================================== */
@media (max-width: 991px) {

.mobile-menu .btn,
.mobile-menu .btn-primary{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    max-width:280px;   /* un poco más corto */
    height:42px;       /* menos alto */

    margin:12px auto;

    border-radius:10px;

    font-size:.95rem;
    font-weight:700;

    padding:0 18px;
}

}

/*=========================================
   MENÚ MÓVIL CLUB SUSTENTA
=========================================*/

@media (max-width:991px){

.mobile-menu__group--primary a{
    display:block;
    padding:8px 0;
    font-size:1.02rem;
    font-weight:500;
}

.mobile-menu__divider{
    margin:12px 0;
}

.mobile-menu__cta-wrapper{
    padding:8px 0;
    display:flex;
    justify-content:center;
}

.mobile-menu__cta{
    display:flex;
    justify-content:center;
    align-items:center;

    width:220px;      /* antes 100% */
    height:40px;

    border-radius:10px;

    background:var(--purple);
    color:#fff !important;

    font-size:.92rem;
    font-weight:700;

    text-decoration:none;
}

.mobile-menu__title{
    margin-bottom:8px;
}

.mobile-menu__group:last-child a{
    padding:5px 0;
    font-size:.98rem;
}

}

/* =========================================
   WHATSAPP FLOTANTE
========================================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 54px;
  padding: 0 18px;

  border-radius: 999px;
  background: #25d366;
  color: #ffffff;

  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.whatsapp-float i {
  font-size: 1.55rem;
  line-height: 1;
}

.whatsapp-float:hover {
  background: #1fbd5b;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.3);
  outline-offset: 4px;
}

/* MÓVIL */
@media (max-width: 767px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;

    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;

    border-radius: 50%;
  }

  .whatsapp-float__text {
    display: none;
  }

  .whatsapp-float i {
    font-size: 1.65rem;
  }
}

@media (max-width:991px){

.mobile-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

.mobile-social{
    width:26px;
    height:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

}

/* =========================================================
   FOOTER CORPORATIVO - CLUB SUSTENTA
========================================================= */

.site-footer {
  --footer-bg: #24253e;
  --footer-bg-dark: #1c1d33;
  --footer-text: #e8e8f1;
  --footer-muted: #b7b8c9;
  --footer-purple: #8b3dff;
  --footer-purple-light: #b783ff;
  --footer-green: #25d366;

  width: 100%;
  background: var(--footer-bg);
  color: var(--footer-text);
}

/* CONTENIDO PRINCIPAL */

.footer-main {
  padding: 64px 24px 52px;
}

.footer-main__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.25fr 1fr;
  gap: 48px;
}

.footer-column {
  min-width: 0;
}

/* MARCA */

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand__logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 5px;
}

.footer-brand__name {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.footer-brand__slogan {
  display: block;
  margin-top: 5px;
  color: var(--footer-purple-light);
  font-size: 13px;
  font-weight: 600;
}

.footer-description {
  max-width: 340px;
  margin: 22px 0 0;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* REDES SOCIALES */

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  background: var(--footer-purple);
  border-color: var(--footer-purple);
}

/* TÍTULOS */

.footer-title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 13px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 750;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--footer-purple);
}

/* LISTAS */

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 15px;
}

.footer-list a {
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #ffffff;
}

/* CONTACTO */

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.footer-contact i {
  width: 18px;
  margin-top: 3px;
  color: var(--footer-purple-light);
  text-align: center;
  flex-shrink: 0;
}

/* INFORMACIÓN EMPRESARIAL */

.footer-company-data {
  display: grid;
  gap: 17px;
}

.footer-data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-data__label {
  color: var(--footer-purple-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-data__value {
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ENLACES */

.footer-navigation li {
  position: relative;
  padding-left: 15px;
}

.footer-navigation li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--footer-purple);
}

/* BOTÓN WHATSAPP */

.footer-advisor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 230px;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--footer-green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.footer-advisor-button:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 13px 30px rgba(37, 211, 102, 0.28);
}

/* FRANJA INFERIOR */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--footer-bg-dark);
}

.footer-bottom__inner {
  width: min(1180px, 100%);
  min-height: 82px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-copyright,
.footer-legal-name {
  margin: 0;
  color: var(--footer-muted);
  font-size: 12px;
  line-height: 1.55;
}

.footer-copyright {
  flex-shrink: 0;
}

.footer-copyright strong,
.footer-legal-name strong {
  color: #ffffff;
}

/* TABLET */

@media (max-width: 1050px) {
  .footer-main__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 55px;
  }
}

/* MÓVIL */

@media (max-width: 650px) {
  .footer-main {
    padding: 48px 22px 40px;
  }

  .footer-main__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand__logo img {
    width: 56px;
    height: 56px;
  }

  .footer-brand__name {
    font-size: 20px;
  }

  .footer-description {
    max-width: none;
  }

  .footer-advisor-button {
    max-width: none;
  }

  .footer-bottom__inner {
    min-height: auto;
    padding: 24px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}