:root {
  --rosa: #f7eff1;
  --rosa-2: #efe3e6;
  --dorado: #ba9964;
  --dorado-soft: #d4bb93;

  --gris-900: #737373;
  --gris-800: #3a3a3a;
  --gris-700: #4d4d4d;
  --gris-600: #666666;
  --gris-300: #dddddd;
  --gris-200: #eeeeee;
  --gris-100: #f8f8f8;

  --blanco: #ffffff;
  --texto: #737373;
  --texto-soft: #666666;
  --borde: rgba(43, 43, 43, 0.12);
  --shadow: 0 18px 60px rgba(43, 43, 43, 0.12);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 60px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dorado);
  font-weight: 700;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--dorado);
  display: inline-block;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--gris-900);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--gris-900);
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--gris-900);
  margin-bottom: 12px;
}

p.lead {
  font-size: 1.08rem;
  color: var(--gris-700);
  max-width: 660px;
}

p.section-text {
  font-size: 1.02rem;
  color: var(--texto-soft);
  max-width: 760px;
}

.btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--dorado);
  color: var(--blanco);
  box-shadow: 0 12px 28px rgba(186, 153, 100, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.btn-secondary {
  color: var(--gris-900);
  border-color: rgba(43, 43, 43, 0.16);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.82);
}

.btn-outline {
  border-color: var(--gris-900);
  color: var(--gris-900);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gris-900);
  color: var(--blanco);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--rosa), var(--rosa-2));
  display: grid;
  place-items: center;
  color: var(--dorado);
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(186, 153, 100, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  color: var(--gris-900);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  display: block;
  color: var(--texto-soft);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--gris-900);
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--dorado);
  transition: 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--gris-900);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(186, 153, 100, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(135deg, #f7eff1 0%, #f4e8eb 55%, #ffffff 100%);
  color: var(--gris-900);
  padding: 70px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 26px;
}

.hero h1 span {
  color: var(--dorado);
}

.hero-btns-desktop {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-btns-mobile {
  display: none;
}

.hero-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(186, 153, 100, 0.22);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-logo {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: var(--blanco);
  padding: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(186, 153, 100, 0.18);
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-card h3 {
  color: var(--gris-900);
  margin-bottom: 4px;
}

.hero-card p {
  color: var(--gris-700);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.metric {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(186, 153, 100, 0.18);
  border-radius: 18px;
  padding: 18px;
}

.metric strong {
  display: block;
  font-size: 1.5rem;
  color: var(--dorado);
  margin-bottom: 4px;
}

.metric span {
  font-size: 0.92rem;
  color: var(--gris-700);
}

.clients-strip {
  margin-top: 8px;
  padding-top: 8px;
}

.clients-title {
  text-align: center;
  font-size: 0.95rem;
  color: var(--gris-700);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.clients-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 760px;
  margin: 20px auto 0;
}

.clients-track-scroll {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollClients 18s linear infinite;
}

.client-logo-card {
  min-width: 220px;
  height: 100px;
  background: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  color: var(--gris-900);
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(186, 153, 100, 0.16);
}

@keyframes scrollClients {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.grid-3,
.grid-2,
.services-grid,
.audiences-grid,
.benefits-grid {
  display: grid;
  gap: 22px;
}

.grid-3,
.services-grid,
.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2,
.audiences-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(43, 43, 43, 0.06);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(43, 43, 43, 0.1);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(186, 153, 100, 0.14);
  color: var(--gris-900);
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.card p {
  color: var(--texto-soft);
}

.highlight-band {
  background: var(--rosa);
  border-top: 1px solid rgba(43, 43, 43, 0.05);
  border-bottom: 1px solid rgba(43, 43, 43, 0.05);
}

.audience-card {
  background: linear-gradient(180deg, #fff, #fffafb);
  border: 1px solid var(--borde);
  border-radius: var(--radius-xl);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--dorado), transparent);
}

.audience-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--texto-soft);
}

.audience-card li + li {
  margin-top: 10px;
}

.services-grid .card {
  position: relative;
  padding-top: 30px;
}

.service-number {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(43, 43, 43, 0.18);
}

.about-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: stretch;
}

.about-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.45), transparent 26%),
    linear-gradient(160deg, var(--rosa), var(--rosa-2));
  color: var(--gris-900);
  padding: 36px;
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(186, 153, 100, 0.18);
}

.about-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(186, 153, 100, 0.14);
  bottom: -40px;
  right: -40px;
}

.about-panel p {
  color: var(--gris-700);
}

.about-logo {
  width: 92px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 22px;
  border: 1px solid rgba(186, 153, 100, 0.18);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.about-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(186, 153, 100, 0.18);
}

.about-stat strong {
  display: block;
  font-size: 1.45rem;
  color: var(--dorado);
}

.about-stat span {
  font-size: 0.88rem;
  color: var(--gris-700);
}

.contact-box {
  background: linear-gradient(180deg, #ffffff, #fffafb);
  border: 1px solid var(--borde);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: 0 18px 50px rgba(43, 43, 43, 0.07);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-item {
  border: 1px solid var(--borde);
  border-radius: 18px;
  padding: 16px 18px;
  background: #fff;
}

.contact-item small {
  display: block;
  color: var(--texto-soft);
  margin-bottom: 6px;
}

.contact-item strong {
  color: var(--gris-900);
}

form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gris-900);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(43, 43, 43, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
  background: white;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--dorado);
  box-shadow: 0 0 0 4px rgba(186, 153, 100, 0.14);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  background: var(--gris-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 28px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.footer strong {
  color: var(--blanco);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.diagnostico-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: stretch;
}

.diagnostico-list {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.diagnostico-list li {
  position: relative;
  padding-left: 28px;
  color: var(--texto);
  font-size: 1rem;
  line-height: 1.6;
}

.diagnostico-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--dorado);
  font-size: 1.15rem;
  font-weight: 800;
}

.diagnostico-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.52), transparent 28%),
    linear-gradient(160deg, var(--rosa), var(--rosa-2));
  border: 1px solid rgba(186, 153, 100, 0.18);
  box-shadow: 0 18px 50px rgba(43, 43, 43, 0.12);
}

.diagnostico-card .hero-card-top {
  margin-bottom: 22px;
}

.diagnostico-card .hero-logo {
  box-shadow: 0 10px 24px rgba(43, 43, 43, 0.08);
}

.diagnostico-card .metric {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.diagnostico-card .metric strong {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dorado);
}

.diagnostico-card .metric span {
  line-height: 1.55;
}

#diagnostico .contact-box {
  min-height: 100%;
}

#diagnostico .btns {
  margin-top: 24px;
}

#diagnostico .btn-secondary {
  width: 100%;
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-wrap,
  .contact-grid,
  .grid-3,
  .grid-2,
  .services-grid,
  .audiences-grid,
  .benefits-grid,
  .diagnostico-wrap {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    inset: 78px 16px auto 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--borde);
    border-radius: 20px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav > .btn-outline {
    display: none;
  }

  .about-stats,
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .diagnostico-card .metric {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 58px 0 38px;
  }

  .about-stats,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .contact-box,
  .hero-card,
  .about-panel,
  .card,
  .audience-card {
    padding: 22px;
  }

  .brand-text span {
    display: none;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-btns-desktop {
    display: none;
  }

  .hero-btns-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    width: 100%;
  }

  .hero-btns-mobile .btn {
    flex: 1;
    min-width: 0;
    padding: 12px 8px;
    font-size: 0.8rem;
    text-align: center;
    white-space: nowrap;
    border-radius: 999px;
  }

  .clients-title {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .client-logo-card {
    min-width: 190px;
    height: 90px;
  }

  .diagnostico-list li {
    font-size: 0.98rem;
    padding-left: 24px;
  }

  .diagnostico-list li::before {
    left: 6px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    bottom: 20px;
    right: 20px;
  }
}
.about-panel h2,
.about-panel h2[style] {
  color: #737373 !important;
}

.about-panel .eyebrow,
.about-panel .eyebrow[style] {
  color: #ba9964 !important;
}

.about-panel p {
  color: #4d4d4d !important;
}
.brand-mark {
  width: 64px;
  height: 64px;
  padding: 0;
}

.brand-mark img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  transform: scale(1.25);
}

.brand {
  gap: 12px;
}

.nav {
  height: 86px;
}
.btn-finanzas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #18223a;
  color: #d4bb93;
  border: 1px solid #18223a;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-finanzas:hover {
  background: #22304f;
  color: #ffffff;
  transform: translateY(-2px);
}
.step-title{
    display:flex;
    align-items:center;
    gap:12px;
}

.step-title small{
    margin:0;
    min-width:28px;
}

.step-title strong{
    margin:0;
}
.contact-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
    margin-bottom:24px;
}

.form-column{
    display:flex;
    flex-direction:column;
    gap:24px;
}
.contact-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:28px;
  margin-bottom:24px;
}

.form-column{
  display:flex;
  flex-direction:column;
  gap:24px;
}

#contactForm .btn{
  width:100%;
}

@media (max-width:768px){
  .contact-form-grid{
    grid-template-columns:1fr;
  }
}