:root {
  --black: #050505;
  --dark: #0b1117;
  --dark-2: #101923;
  --gray: #808080;
  --muted: #66737f;
  --white: #ffffff;
  --soft: #f5f8fa;
  --soft-2: #eaf7f6;
  --turquoise: #4abdb4;
  --turquoise-2: #2f9d95;
  --line: rgba(255,255,255,.13);
  --line-dark: rgba(11,17,23,.1);
  --shadow: 0 24px 80px rgba(4, 16, 24, .16);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.nav-wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
  height: 74px;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  background: rgba(5, 5, 5, .72);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -.08em;
  color: var(--black);
  background: linear-gradient(135deg, var(--white), var(--turquoise));
  box-shadow: 0 12px 30px rgba(74,189,180,.28);
}

.brand-text strong {
  display: block;
  color: var(--white);
  font-size: .94rem;
  letter-spacing: .04em;
}

.brand-text span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: .72rem;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  font-weight: 600;
}

.nav a {
  transition: .25s ease;
}

.nav a:hover {
  color: var(--turquoise);
}

.header-cta {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  font-size: .9rem;
  transition: .25s ease;
}

.header-cta:hover {
  background: var(--turquoise);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 1.3rem;
  cursor: pointer;
}

.section {
  padding: 110px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 18%, rgba(74,189,180,.24), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.11), transparent 24%),
    linear-gradient(135deg, #050505 0%, #0c151d 45%, #101923 100%);
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(transparent, rgba(255,255,255,.05));
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .55;
  pointer-events: none;
}

.orb-one {
  width: 320px;
  height: 320px;
  right: 7%;
  top: 20%;
  background: rgba(74,189,180,.24);
}

.orb-two {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: 10%;
  background: rgba(255,255,255,.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.eyebrow,
.section-label,
.section-kicker,
.section-head span,
.final-box span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--turquoise);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 8px rgba(74,189,180,.12);
}

h1 {
  margin-top: 22px;
  font-size: 70px;
  line-height: 1.1;
  letter-spacing: -.075em;
  max-width: 760px;
}

.hero-text {
  margin-top: 28px;
  max-width: 650px;
  color: rgba(255,255,255,.72);
  font-size: 1.18rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s ease;
}

.btn-primary {
  background: var(--turquoise);
  color: var(--black);
  box-shadow: 0 18px 42px rgba(74,189,180,.28);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
}

.btn-secondary:hover {
  background: rgba(74,189,180,.18);
  border-color: rgba(74,189,180,.5);
  transform: translateY(-3px);
}

.btn-secondary.light {
  background: var(--black);
  color: var(--white);
}

.trust-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 610px;
}

.trust-row div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--white);
  font-size: 1.1rem;
}

.trust-row span {
  color: rgba(255,255,255,.58);
  margin-top: 5px;
  font-size: .86rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.dashboard-card {
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.065));
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 100px rgba(0,0,0,.38);
}

.main-card {
  position: absolute;
  right: 0;
  top: 44px;
  width: min(480px, 100%);
  padding: 26px;
}

.card-header,
.invoice-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header {
  color: rgba(255,255,255,.8);
  font-weight: 800;
}

.card-header small {
  color: var(--turquoise);
  font-weight: 900;
}

.status-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: 0 0 0 7px rgba(74,189,180,.16);
}

.invoice-box {
  margin-top: 26px;
  border-radius: 28px;
  background: var(--white);
  color: var(--dark);
  padding: 28px;
}

.invoice-line {
  height: 15px;
  width: 72%;
  border-radius: 999px;
  background: #dce7ea;
  margin-bottom: 16px;
}

.invoice-line.wide {
  width: 100%;
  height: 20px;
  background: linear-gradient(90deg, var(--turquoise), #c8f5f1);
}

.invoice-line.short {
  width: 48%;
}

.invoice-total {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid #e2eaed;
}

.invoice-total span {
  color: var(--muted);
  font-weight: 700;
}

.invoice-total strong {
  font-size: 1.8rem;
  letter-spacing: -.05em;
}

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

.mini-grid div {
  padding: 17px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.mini-grid span,
.mini-grid strong {
  display: block;
}

.mini-grid span {
  color: rgba(255,255,255,.52);
  font-size: .78rem;
}

.mini-grid strong {
  margin-top: 6px;
  color: var(--white);
}

.ok {
  color: var(--turquoise) !important;
}

.floating-card {
  position: absolute;
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  color: var(--dark);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.65);
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: var(--turquoise-2);
  font-weight: 900;
  font-size: .8rem;
}

.floating-card strong {
  margin-top: 5px;
  font-size: 1rem;
}

.card-a {
  left: 12px;
  top: 82px;
}

.card-b {
  left: 58px;
  bottom: 76px;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: .4fr 1fr;
  gap: 50px;
  align-items: start;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.intro-content p,
.section-head p,
.modules-copy p,
.security-card p,
.final-box p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.benefits {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin-top: 14px;
}

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

.benefit-card {
  min-height: 270px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 55px rgba(10, 25, 35, .06);
  transition: .28s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(74,189,180,.38);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: var(--soft-2);
  font-size: 1.55rem;
}

.benefit-card h3,
.step h3,
.module-item h3 {
  margin-top: 24px;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.benefit-card p,
.step p,
.module-item p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.process .section-head h2,
.process .section-head p {
  color: var(--white);
}

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

.step {
  min-height: 270px;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
}

.step strong {
  color: var(--turquoise);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -.08em;
}

.step h3 {
  color: var(--white);
}

.step p {
  color: rgba(255,255,255,.62);
}

.modules-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.modules-copy h2 {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--turquoise-2);
  font-weight: 900;
}

.module-list {
  display: grid;
  gap: 16px;
}

.module-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: 26px;
  background: var(--soft);
  border: 1px solid var(--line-dark);
}

.module-item span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--turquoise);
  font-weight: 900;
}

.module-item h3 {
  margin-top: 0;
}

.security {
  background: var(--soft);
}

.security-card {
  padding: 54px;
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 50px;
  align-items: center;
}

.security-card h2 {
  margin-top: 14px;
}

.security-points {
  display: grid;
  gap: 14px;
}

.security-points div {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--soft-2);
  color: var(--dark);
  font-weight: 800;
}

.final-cta {
  background: var(--white);
}

.final-box {
  text-align: center;
  padding: 80px 50px;
  border-radius: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(74,189,180,.35), transparent 28%),
    linear-gradient(135deg, #050505, #111c25);
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
}

.final-box h2 {
  max-width: 900px;
  margin: 16px auto 0;
}

.final-box p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.68);
}

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

.footer {
  padding: 34px 0;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer p {
  margin-top: 6px;
  color: rgba(255,255,255,.56);
}

.footer a {
  color: var(--turquoise);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .8s ease;
}

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

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .22s;
}

@media (max-width: 980px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav.active {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border-radius: 28px;
    background: rgba(5,5,5,.95);
    border: 1px solid rgba(255,255,255,.12);
  }

  .nav.active a {
    width: 100%;
    padding: 16px;
  }

  .hero-grid,
  .intro-grid,
  .modules-grid,
  .security-card {
    grid-template-columns: 1fr;
  }

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

  .main-card {
    left: 50%;
    transform: translateX(-50%);
  }

  .benefit-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header {
    top: 10px;
  }

  .nav-wrap {
    height: 66px;
    border-radius: 26px;
  }

  .brand-text span {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .trust-row,
  .benefit-grid,
  .steps,
  .mini-grid {
    grid-template-columns: 1fr;
  }

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

  .main-card {
    top: 30px;
    padding: 18px;
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .benefit-card,
  .step,
  .module-item,
  .security-card,
  .final-box {
    padding: 28px;
  }

  .module-item {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Logo oficial CIRROFACTURA */
.brand-logo-frame {
  height: 52px;
  min-width: 178px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero-logo-card {
  width: min(430px, 100%);
  padding: 14px 18px;
  border-radius: 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.22);
}

.hero-logo-card img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  display: block;
}

@media (max-width: 760px) {
  .brand-logo-frame {
    min-width: 138px;
    height: 48px;
    padding: 6px 12px;
  }

  .brand-logo {
    height: 36px;
  }

  .hero-logo-card {
    width: min(340px, 100%);
    padding: 12px 14px;
    margin: 0 auto 24px;
  }
}

/* === Ajuste de identidad solicitado: blanco principal, #005f57 secundario, #4abdba énfasis === */
:root {
  --primary: #ffffff;
  --secondary: #005f57;
  --accent: #4abdba;
  --accent-dark: #2f9d9a;
  --dark: #111827;
  --dark-2: #263238;
  --muted: #5f6f7a;
  --soft: #f8fbfb;
  --soft-2: rgba(72,72,72,.08);
  --turquoise: #4abdba;
  --turquoise-2: #2f9d9a;
  --line-dark: rgba(17, 24, 39, .10);
  --shadow: 0 24px 80px rgba(20, 42, 52, .12);
}

body {
  background: var(--primary);
  color: var(--dark);
}

.header { top: 18px; }

.nav-wrap {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 60px rgba(20,42,52,.12);
}

.brand-logo-frame {
  height: 54px;
  min-width: 190px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20,42,52,.10);
}

.brand-logo { height: 46px; }

.nav { color: rgba(17,24,39,.70); }
.nav a:hover { color: var(--accent-dark); }

.header-cta {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: 0 14px 32px rgba(72,72,72,.18);
}

.header-cta:hover {
  background: var(--accent);
  color: var(--dark);
}

.menu-toggle {
  background: var(--secondary);
  color: var(--dark);
}

.section-dark,
.hero {
  color: var(--dark);
  background:
    radial-gradient(circle at 16% 14%, rgba(72,72,72,.12), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(74,189,186,.24), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 58%, #ffffff 100%);
}

.hero::after {
  background: linear-gradient(transparent, rgba(255,255,255,.9));
}

.orb-one { background: rgba(74,189,186,.22); }
.orb-two { background: rgba(72,72,72,.10); }

.eyebrow,
.section-label,
.section-kicker,
.section-head span,
.final-box span {
  color: var(--accent-dark);
}

.eyebrow span {
  background: var(--secondary);
  box-shadow: 0 0 0 8px rgba(72,72,72,.14);
}

.hero-text,
.process .section-head p,
.step p {
  color: var(--muted);
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: 0 18px 42px rgba(72,72,72,.18);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--dark);
}

.btn-secondary {
  background: #ffffff;
  color: var(--dark);
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 14px 32px rgba(20,42,52,.08);
}

.btn-secondary:hover {
  background: rgba(74,189,186,.12);
  border-color: rgba(74,189,186,.38);
}

.trust-row div,
.step,
.dashboard-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 18px 50px rgba(20,42,52,.10);
}

.trust-row strong,
.trust-row span,
.card-header,
.mini-grid strong,
.process .section-head h2,
.step h3 {
  color: var(--dark);
}

.trust-row span,
.mini-grid span {
  color: var(--muted);
}

.card-header small,
.ok,
.status-dot {
  color: var(--accent-dark) !important;
}

.status-dot {
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(74,189,186,.15);
}

.invoice-line.wide {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.mini-grid div {
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.08);
}

.floating-card span { color: var(--accent-dark); }

.benefits,
.security,
.module-item,
.benefit-card {
  background: var(--primary);
}

.icon,
.security-points div {
  background: rgba(72,72,72,.08);
}

.benefit-card:hover {
  border-color: rgba(72,72,72,.32);
  box-shadow: 0 24px 70px rgba(20,42,52,.13);
}

.step strong,
.text-link {
  color: var(--accent-dark);
}

.module-item span {
  background: var(--secondary);
  color: var(--dark);
}

.security-card {
  background: linear-gradient(135deg, #ffffff, #f8fbfb);
  border: 1px solid rgba(17,24,39,.08);
}

.final-box {
  color: var(--dark);
  background:
    radial-gradient(circle at 16% 18%, rgba(72,72,72,.12), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(74,189,186,.30), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8fbfb);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 30px 90px rgba(20,42,52,.13);
}

.final-box p { color: var(--muted); }

.btn-secondary.light {
  background: var(--dark);
  color: #ffffff;
}

.btn-secondary.light:hover {
  background: var(--accent);
  color: var(--dark);
}

.footer {
  background: #ffffff;
  color: var(--dark);
  border-top: 1px solid rgba(17,24,39,.08);
}

.footer p { color: var(--muted); }
.footer a { color: var(--accent-dark); }

.hero-logo-card {
  position: absolute;
  left: 0;
  top: 28px;
  width: min(360px, 72%);
  padding: 10px 14px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 60px rgba(20,42,52,.14);
  z-index: 3;
}

.hero-logo-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  display: block;
}

.main-card { top: 190px; }
.card-a { top: 228px; }
.card-b { bottom: 22px; }

@media (max-width: 980px) {
  .nav.active {
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(17,24,39,.08);
    box-shadow: 0 22px 60px rgba(20,42,52,.12);
  }
}

@media (max-width: 760px) {
  .brand-logo-frame {
    min-width: 150px;
    height: 48px;
  }
  .brand-logo { height: 38px; }
  .hero-logo-card {
    position: relative;
    top: 0;
    left: auto;
    width: min(330px, 100%);
    margin: 0 auto 20px;
  }
  .main-card {
    top: 0;
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto;
  }
  .hero-visual { min-height: auto; }
}

/* === Ajuste solicitado: dashboard original, énfasis #4abdba y hover #005f57 === */
:root {
  --secondary: #005f57;
  --accent: #4abdba;
  --accent-dark: #2f9d9a;
  --turquoise: #4abdba;
  --turquoise-2: #2f9d9a;
  --soft-2: rgba(74, 189, 186, .10);
}

.nav a:hover,
.text-link:hover,
.footer a:hover {
  color: var(--secondary) !important;
}

.header-cta:hover,
.btn-primary:hover,
.btn-secondary.light:hover,
.module-item:hover span,
.menu-toggle:hover {
  background: var(--secondary) !important;
  color: var(--dark) !important;
}

.btn-secondary:hover {
  background: rgba(72, 72, 72, .08) !important;
  border-color: rgba(72, 72, 72, .30) !important;
  color: var(--dark) !important;
}

.benefit-card:hover {
  border-color: rgba(72, 72, 72, .38) !important;
}

.eyebrow,
.section-label,
.section-kicker,
.section-head span,
.final-box span,
.step strong,
.text-link,
.footer a,
.ok,
.card-header small,
.floating-card span {
  color: var(--accent-dark) !important;
}

.eyebrow span,
.status-dot {
  background: var(--accent) !important;
  box-shadow: 0 0 0 8px rgba(74, 189, 186, .16) !important;
}

.btn-primary,
.header-cta,
.module-item span {
  background: var(--accent) !important;
  color: var(--dark) !important;
  box-shadow: 0 18px 42px rgba(74, 189, 186, .24) !important;
}

.invoice-line.wide {
  background: linear-gradient(90deg, var(--secondary), var(--accent)) !important;
}

.icon,
.security-points div {
  background: rgba(74, 189, 186, .10) !important;
}

.hero-visual {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-card {
  position: absolute;
  left: 0;
  top: 0;
  width: min(330px, 70%);
  padding: 10px 14px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 22px 60px rgba(20,42,52,.14);
  z-index: 4;
}

.hero-logo-card img {
  width: 100%;
  max-height: 145px;
  object-fit: contain;
  display: block;
}

.dashboard-image-card {
  width: min(620px, 100%);
  margin-left: auto;
  padding: 18px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 30px 90px rgba(20,42,52,.16);
  overflow: hidden;
}

.dashboard-image-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-visual {
    min-height: auto;
    display: block;
  }

  .hero-logo-card {
    position: relative;
    left: auto;
    top: auto;
    width: min(340px, 100%);
    margin: 0 auto 22px;
  }

  .dashboard-image-card {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .dashboard-image-card {
    padding: 10px;
    border-radius: 24px;
  }

  .dashboard-image-card img {
    border-radius: 16px;
  }
}


/* === Corrección: detalles antes amarillos ahora en gris #484848 === */
:root {
  --detail: #484848;
}

.section-dark,
.hero {
  background:
    radial-gradient(circle at 16% 14%, rgba(72,72,72,.10), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(74,189,186,.24), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 58%, #ffffff 100%) !important;
}

.orb-two { background: rgba(72,72,72,.10) !important; }

.btn-secondary:hover {
  background: rgba(72,72,72,.08) !important;
  border-color: rgba(72,72,72,.30) !important;
}

.benefit-card:hover {
  border-color: rgba(72,72,72,.38) !important;
}

.icon,
.security-points div {
  background: rgba(72,72,72,.08) !important;
}

.final-box {
  background:
    radial-gradient(circle at 16% 18%, rgba(72,72,72,.10), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(74,189,186,.30), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8fbfb) !important;
}

/* === Ajuste solicitado: logo más grande y cuadro más compacto === */
.hero-logo-card {
  width: min(300px, 58%) !important;
  padding: 6px 8px !important;
  border-radius: 22px !important;
  overflow: visible !important;
}

.hero-logo-card img {
  width: 118% !important;
  max-height: 168px !important;
  transform: scale(1.06) !important;
}

@media (max-width: 980px) {
  .hero-logo-card {
    width: min(300px, 92%) !important;
    padding: 6px 8px !important;
  }

  .hero-logo-card img {
    width: 116% !important;
    max-height: 160px !important;
  }
}
