/* OWIA Landing Page - estilo original mejorado */
:root {
  --azul-noche: #020a2d;
  --azul-profundo: #061245;
  --azul-vivo: #3073fd;
  --violeta-ia: #6924fc;
  --cian-guia: #06c2e7;
  --verde-aqua: #00d8c6;
  --gris-niebla: #d1d9e5;
  --blanco: #ffffff;
  --texto: #eef4ff;
  --texto-suave: #aebbd2;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --card-border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(105, 36, 252, 0.25), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(6, 194, 231, 0.18), transparent 30%),
    radial-gradient(circle at 30% 70%, rgba(0, 216, 198, 0.08), transparent 26%),
    var(--azul-noche);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: clamp(78px, 9vw, 110px) 0;
  position: relative;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(2, 10, 45, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-logo,
.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--blanco);
}

.brand-name,
.footer-brand span {
  font-size: 1.4rem;
}

.brand-name {
  color: #ffffff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--texto-suave);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:not(.btn) {
  transition: color 0.22s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
  color: var(--verde-aqua);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--card);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blanco);
  margin: 5px auto;
  transition: 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-nav {
  background: linear-gradient(135deg, var(--verde-aqua), var(--cian-guia), var(--azul-vivo));
  color: var(--azul-noche);
  box-shadow: 0 18px 40px rgba(0, 216, 198, 0.18);
}

.btn-secondary,
.btn-plan {
  background: rgba(255, 255, 255, 0.08);
  color: var(--blanco);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover,
.btn-plan:hover {
  border-color: rgba(0, 216, 198, 0.4);
  background: rgba(255, 255, 255, 0.11);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(36px, 6vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--verde-aqua);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--verde-aqua);
  box-shadow: 0 0 22px var(--verde-aqua);
}

h1,
h2,
h3,
h4 {
  line-height: 1.06;
  letter-spacing: -0.052em;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.34rem, 2.2vw, 1.85rem);
  font-weight: 850;
}

h4 {
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 850;
}

.hero-subtitle {
  max-width: 690px;
  margin-top: 24px;
  color: var(--texto-suave);
  font-size: clamp(1.02rem, 1.6vw, 1.26rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  max-width: 760px;
}

.hero-metrics div {
  min-width: 0;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}

.hero-metrics strong {
  display: block;
  color: var(--blanco);
  font-size: 1.08rem;
}

.hero-metrics span {
  color: var(--texto-suave);
  font-size: 0.84rem;
}

.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
}

.ai-orbit {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.14) 0 2px, transparent 2px),
    radial-gradient(circle, rgba(6, 194, 231, 0.12), transparent 58%);
  background-size: 34px 34px, auto;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 80px rgba(48, 115, 253, 0.14), var(--shadow);
}

.orbit {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.20);
  animation: spin 26s linear infinite;
}

.orbit-two {
  inset: 21%;
  animation-duration: 18s;
  animation-direction: reverse;
}

.core-card {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--azul-noche);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.core-card img {
  width: 105px;
  height: 105px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.core-card span {
  font-weight: 900;
}

.floating-card {
  position: absolute;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  font-weight: 850;
  white-space: nowrap;
}

.card-whatsapp { top: 6%; left: 50%; transform: translateX(-50%); }
.card-crm { top: 27%; right: -4%; }
.card-agent { bottom: 24%; right: 0; }
.card-sales { bottom: 6%; left: 50%; transform: translateX(-50%); }
.card-consulting { bottom: 24%; left: -2%; }
.card-marketing { top: 27%; left: -4%; }

.section-heading {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--texto-suave);
  margin-top: 18px;
  font-size: 1.05rem;
}

.compare,
.crm,
.owia360 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255,255,255,0));
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.compare-card,
.solution-card,
.plan-card,
.crm-intro,
.contact-form,
.consulting-main,
.mini-card,
.roadmap article {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.compare-card {
  padding: 34px;
}

.compare-card h3 {
  margin-bottom: 24px;
}

.compare-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  color: var(--texto-suave);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-card li:last-child {
  border-bottom: 0;
}

.before-card span {
  color: #ff6980;
  font-weight: 900;
}

.after-card span {
  color: var(--verde-aqua);
  font-weight: 900;
}

.compare-arrow {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violeta-ia), var(--cian-guia));
  color: var(--blanco);
  font-size: 2rem;
  font-weight: 900;
}

.consultoria {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 216, 198, 0.09), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
}

.consulting-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 20px;
  align-items: stretch;
}

.consulting-main {
  padding: 32px;
  min-height: 100%;
}

.consulting-main p {
  color: var(--texto-suave);
  margin-top: 14px;
}

.consulting-main strong {
  display: block;
  margin-top: 24px;
  color: var(--verde-aqua);
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.mini-card h4 {
  margin-bottom: 10px;
}

.mini-card p {
  color: var(--texto-suave);
  font-size: 0.96rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  padding: 28px;
  min-height: 245px;
  transition: 0.25s ease;
}

.solution-card:hover,
.plan-card:hover,
.mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 216, 198, 0.35);
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(105, 36, 252, 0.26), rgba(6, 194, 231, 0.20));
  font-size: 1.55rem;
}

.solution-card p,
.plan-card p,
.crm-intro p,
.contact-copy p,
.roadmap p {
  color: var(--texto-suave);
  margin-top: 12px;
}

.solution-card strong {
  display: block;
  margin-top: 18px;
  color: var(--verde-aqua);
}

.crm-intro {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  margin-bottom: 32px;
}

.crm-badge {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 216, 198, 0.16), rgba(105, 36, 252, 0.20));
}

.crm-badge span {
  color: var(--texto-suave);
  font-weight: 700;
}

.crm-badge strong {
  margin-top: 8px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-bottom: 58px;
}

.flow-step {
  position: relative;
  padding: 22px 16px;
  min-height: 150px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
}

.flow-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-aqua), var(--azul-vivo));
  color: var(--azul-noche);
  font-weight: 900;
}

.flow-step p {
  color: var(--texto);
  font-weight: 750;
  font-size: 0.94rem;
}

.plans-header {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: 0.25s ease;
}

.featured-plan {
  background: linear-gradient(180deg, rgba(0, 216, 198, 0.16), rgba(255, 255, 255, 0.08));
  border-color: rgba(0, 216, 198, 0.35);
}

.premium-plan {
  background: linear-gradient(180deg, rgba(105, 36, 252, 0.20), rgba(255, 255, 255, 0.08));
  border-color: rgba(105, 36, 252, 0.45);
}

.plan-kicker {
  color: var(--verde-aqua) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.plan-desc {
  min-height: 68px;
}

.price {
  min-height: 74px;
  margin: 20px 0 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.price strong {
  font-size: 1.45rem;
  color: var(--blanco);
}

.price span {
  color: var(--texto-suave);
}

.setup {
  margin: 0 0 14px !important;
  color: var(--verde-aqua) !important;
  font-weight: 800;
  font-size: 0.92rem;
}

.plan-card ul {
  margin-bottom: 24px;
}

.plan-card li {
  position: relative;
  padding: 9px 0 9px 24px;
  color: var(--texto-suave);
  font-size: 0.93rem;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--verde-aqua);
  font-weight: 900;
}

.btn-plan {
  margin-top: auto;
}

.plans-note {
  max-width: 920px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--texto-suave);
  font-size: 0.92rem;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.roadmap article {
  padding: 28px;
  min-height: 240px;
}

.roadmap article span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--verde-aqua), var(--azul-vivo));
  color: var(--azul-noche);
  font-weight: 900;
}

.contact {
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.whatsapp-main {
  margin-top: 28px;
}

.contact-form {
  padding: 32px;
}

.contact-form label {
  display: block;
  margin: 14px 0 8px;
  color: var(--texto);
  font-weight: 700;
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--blanco);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--verde-aqua);
  box-shadow: 0 0 0 4px rgba(0, 216, 198, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(209, 217, 229, 0.58);
}

.contact-form button {
  width: 100%;
  margin-top: 20px;
}

.form-message {
  min-height: 24px;
  margin-top: 14px;
  color: var(--verde-aqua);
  font-weight: 700;
}

.site-footer {
  padding: 54px 0 26px;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.footer-grid p,
.footer-grid a {
  color: var(--texto-suave);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--verde-aqua);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--texto-suave);
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom > span {
  display: block;
  width: 100%;
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 900;
  border: 0;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
}

.floating-whatsapp {
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-aqua), var(--cian-guia));
  color: var(--azul-noche);
  font-size: 1.7rem;
  font-weight: 900;
}

.back-to-top {
  right: 22px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  display: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--blanco);
  border: 1px solid var(--card-border);
}

.back-to-top.show {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero-grid,
  .contact-grid,
  .crm-intro,
  .consulting-layout {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .section-heading {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .cards-grid,
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .roadmap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(2, 10, 45, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

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

  .nav-links a {
    padding: 14px;
  }

  .btn-nav {
    margin-top: 8px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .navbar {
    height: 74px;
  }

  .nav-links {
    top: 74px;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.4vw, 2.55rem);
  }

  .hero-actions,
  .hero-metrics {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-metrics div {
    width: 100%;
  }

  .hero-visual {
    min-height: 370px;
  }

  .ai-orbit {
    width: min(100%, 335px);
  }

  .core-card {
    width: 148px;
    padding: 17px;
    border-radius: 24px;
  }

  .core-card img {
    width: 78px;
    height: 78px;
  }

  .floating-card {
    font-size: 0.72rem;
    padding: 8px 10px;
  }

  .card-whatsapp { top: 4%; left: 50%; }
  .card-crm { top: 28%; right: -2%; }
  .card-agent { bottom: 22%; right: -1%; }
  .card-sales { bottom: 4%; left: 50%; }
  .card-consulting { bottom: 22%; left: -1%; }
  .card-marketing { top: 28%; left: -2%; }

  .cards-grid,
  .plans-grid,
  .flow,
  .footer-grid,
  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .compare-card,
  .crm-intro,
  .contact-form,
  .plan-card,
  .solution-card,
  .consulting-main,
  .mini-card,
  .roadmap article {
    padding: 24px;
  }

  .plan-desc {
    min-height: 0;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .orbit {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .solution-card,
  .plan-card,
  .mini-card {
    transition: none;
  }
}


/* Sección visión OWIA */
.vision {
  padding-top: clamp(34px, 5vw, 70px);
  padding-bottom: clamp(70px, 8vw, 100px);
}

.vision-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 216, 198, 0.12), rgba(105, 36, 252, 0.16)),
    rgba(255, 255, 255, 0.07);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.vision-copy h2 {
  max-width: 820px;
  font-size: clamp(1.9rem, 3.8vw, 3.3rem);
}

.vision-copy p {
  color: var(--texto-suave);
  margin-top: 16px;
  max-width: 850px;
}

.vision-points {
  display: grid;
  gap: 12px;
}

.vision-points span {
  display: block;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  color: var(--blanco);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
}

/* Mejor centrado del logo dentro del core */
.core-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.core-card img {
  display: block;
  object-position: center;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .vision-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vision-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .vision-points {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 720px) {
  .vision-points {
    grid-template-columns: 1fr 1fr;
  }
}


/* Ajustes finales de estabilidad visual para producción web */
.ai-orbit {
  overflow: visible;
}

.ai-orbit .floating-card {
  z-index: 4;
  line-height: 1;
}

.ai-orbit .core-card {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ai-orbit .core-card img {
  display: block;
  width: 118px;
  height: auto;
  max-height: 118px;
  margin: 0 auto 14px;
  object-fit: contain;
  object-position: center center;
}

.ai-orbit .core-card span {
  color: var(--azul-noche);
}

.ai-orbit .card-marketing {
  top: 7%;
  left: 8%;
  right: auto;
  bottom: auto;
  transform: none;
}

.ai-orbit .card-whatsapp {
  top: 30%;
  left: -2%;
  right: auto;
  bottom: auto;
  transform: none;
}

.ai-orbit .card-agent {
  top: auto;
  left: 5%;
  right: auto;
  bottom: 18%;
  transform: none;
}

.ai-orbit .card-sales {
  top: auto;
  left: 50%;
  right: auto;
  bottom: 4%;
  transform: translateX(-50%);
}

.ai-orbit .card-consulting {
  top: auto;
  left: auto;
  right: 5%;
  bottom: 18%;
  transform: none;
}

.ai-orbit .card-crm {
  top: 30%;
  left: auto;
  right: -2%;
  bottom: auto;
  transform: none;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
}

.btn-nav.active {
  color: var(--azul-noche) !important;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(2, 10, 45, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

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

  .nav-links a {
    padding: 14px;
  }

  .btn-nav {
    margin-top: 8px;
  }
}

@media (max-width: 720px) {
  .ai-orbit .floating-card {
    font-size: 0.7rem;
    padding: 8px 10px;
  }

  .ai-orbit .core-card img {
    width: 84px;
    max-height: 84px;
    margin-bottom: 10px;
  }

  .ai-orbit .card-marketing {
    top: 5%;
    left: 4%;
  }

  .ai-orbit .card-whatsapp {
    top: 31%;
    left: -2%;
  }

  .ai-orbit .card-agent {
    bottom: 21%;
    left: -1%;
  }

  .ai-orbit .card-sales {
    bottom: 4%;
    left: 50%;
  }

  .ai-orbit .card-consulting {
    right: -2%;
    bottom: 21%;
  }

  .ai-orbit .card-crm {
    top: 31%;
    right: -2%;
  }
}
