/* =========================
   BASE
========================= */
:root {
  --bg: #050608;
  --bg-soft: rgba(255, 255, 255, 0.03);
  --bg-soft-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(223, 255, 0, 0.3);
  --text: #ffffff;
  --text-muted: #9ca3af;
  --accent: #e4ff00;
  --accent-hover: #d2eb00;
  --shadow-accent: 0 0 30px rgba(223, 255, 0, 0.18);
  --radius-full: 999px;
  --transition: all 0.3s ease;
  --container: 1280px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

button {
  font: inherit;
}

.container{
width: min(100% - 80px, 1200px);
margin-inline: auto;
}
/* =========================
   BOTONES BASE
========================= */
.btn {
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: var(--radius-full);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-accent);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
  position: relative;
  z-index: 1000;
}

.floating-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.5s ease;
}

.floating-nav.scrolled {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
HEADER LOGO
========================= */

.logo-btn{
display:flex;
align-items:center;
gap:10px;
background:none;
border:none;
cursor:pointer;
font-size:1.5rem;
font-weight:900;
font-style:italic;
letter-spacing:-0.02em;
color:#fff;
}

.logo-img{
height:80px;
width:auto;
object-fit:contain;
}

.logo-text span{
color:var(--accent);
}


.logo-btn span {
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav > button:not(.nav-cta) {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
}

.desktop-nav > button:not(.nav-cta):hover {
  color: var(--text);
}

.nav-cta {
  padding-inline: 20px;
  padding-block: 10px;
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.menu-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-close {
  opacity: 0;
  transform: scale(0.8);
}

.mobile-menu-toggle.active .menu-open {
  opacity: 0;
  transform: scale(0.8);
}

.mobile-menu-toggle.active .menu-close {
  opacity: 1;
  transform: scale(1);
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

.scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: rgba(223, 255, 0, 0.3);
  transition: width 0.15s linear;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu-content > button:not(.mobile-cta) {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-content > button:not(.mobile-cta):hover {
  color: var(--accent);
}

.mobile-cta {
  margin-top: 12px;
  font-size: 1.05rem;
  padding: 16px 28px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================
   HERO
========================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.4;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay-left {
  background: linear-gradient(
    90deg,
    rgba(5, 6, 8, 0.96) 0%,
    rgba(5, 6, 8, 0.88) 26%,
    rgba(5, 6, 8, 0.72) 46%,
    rgba(5, 6, 8, 0.38) 68%,
    rgba(5, 6, 8, 0.08) 100%
  );
}

.hero-overlay-top {
  background: linear-gradient(
    180deg,
    rgba(5, 6, 8, 0.55) 0%,
    rgba(5, 6, 8, 0.08) 36%,
    rgba(5, 6, 8, 0.65) 100%
  );
}

.hero-slanted-line {
  position: absolute;
  top: 0;
  right: 40.5%;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(223, 255, 0, 0.18) 18%,
    rgba(223, 255, 0, 0.28) 50%,
    rgba(223, 255, 0, 0.18) 82%,
    transparent 100%
  );
  transform: skewX(-10deg);
  display: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 130px);
}

.hero-left {
  max-width: 820px;
}

.hero-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 30px;
}

.hero-counter-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.hero-counter-dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
  animation: ping 1.5s infinite;
}

.hero-counter-dot-core {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-counter-text {
  color: var(--accent);
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-title {
  margin: 0 0 22px;
  max-width: 660px;
  font-size: clamp(3.1rem, 6.2vw, 5.8rem);
  line-height: 0.88;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.045em;
  color: #fff;
}

.hero-title span {
  color: var(--accent);
}

.hero-description {
  margin: 0 0 34px;
  max-width: 430px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

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

.hero-btn-main {
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 800;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-btn-arrow {
  margin-left: 8px;
  font-size: 1.1rem;
}

.hero-right {
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  width: 100%;
  max-width: 310px;
  margin-left: auto;
}

.hero-stat-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 18px 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero-stat-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-stat-label {
  margin: 0 0 6px;
  color: #7e8592;
  font-size: 0.9rem;
}

.hero-stat-value {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: monospace;
  line-height: 1.1;
}

.hero-stat-icon {
  font-size: 1.7rem;
}

.hero-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
}

.hero-divider svg {
  width: 100%;
  height: 80px;
  display: block;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 660px) minmax(280px, 310px);
    justify-content: center;
    column-gap: 100px;
  }

  .hero-right {
    margin-left: 200px;
    display: flex;
  }

  .hero-slanted-line {
    display: block;
  }
  .hero-left{
    margin-left: -70px;
  }
}

@media (max-width: 1023px) {
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  .hero-grid {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 40px, 1200px);
  }

  .hero-content {
    padding-top: 6.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-title {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
    line-height: 0.9;
  }

  .hero-description {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-btn-main,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   SERVICIOS
========================= */
.services-section {
  position: relative;
  padding: 90px 0 120px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    #050608;
  background-size: 120px 120px;
  overflow: hidden;
}

.services-top-line {
  width: 100%;
  height: 1px;
  background: rgba(223, 255, 0, 0.35);
  opacity: 0.7;
}

.services-wrapper {
  position: relative;
}

.services-header {
  max-width: 520px;
  margin-bottom: 54px;
}

.services-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.35em;
}

.services-main-title {
  margin: 0;
  color: #f5f5f5;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.92;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
}

.services-main-title span {
  color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.service-box {
  min-height: 580px;
  display: flex;
  flex-direction: column;
  padding: 34px 28px 26px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 255, 0, 0.2);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
    border-color:rgba(223,255,0,.5);
transform:translateY(-6px);
box-shadow:0 10px 40px rgba(0,0,0,.45);
}

.service-box-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 16px;
  font-size: 1.45rem;
  background: rgba(223, 255, 0, 0.1);
  color: var(--accent);
  border: 1px solid rgba(223, 255, 0, 0.12);
}

.service-box-title {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
}

.service-box-subtitle {
  margin: 0 0 18px;
  color: #717784;
  font-size: 0.98rem;
  font-weight: 500;
}

.service-box-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0 16px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(223, 255, 0, 0.12);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
}

.service-box-text {
  margin: 0 0 28px;
  color: #c7c9ce;
  font-size: 1.04rem;
  line-height: 1.8;
  max-width: 95%;
}

.service-box-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.service-box-list li {
  position: relative;
  padding-left: 18px;
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.5;
}

.service-box-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 8px rgba(223, 255, 0, 0.4);
}

.service-box-footer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-box-link {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.25s ease, color 0.25s ease;
  text-decoration:none;
display:inline-flex;
align-items:center;
gap:6px;
}

.service-box-link:hover {
  gap: 14px;
  color: #f2ffd0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 70px 0 90px;
    background-size: 80px 80px;
  }

  .services-header {
    margin-bottom: 38px;
  }

  .service-box {
    min-height: auto;
    padding: 28px 22px 22px;
  }

  .service-box-title {
    font-size: 1.7rem;
  }

  .service-box-text {
    max-width: 100%;
    font-size: 0.98rem;
  }
}

/* =========================
   STATS / RESULTADOS
========================= */
.stats-section {
  position: relative;
  overflow: hidden;
  background: #121212;
}

.stats-top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  background: linear-gradient(180deg, #121212 0%, rgba(18, 18, 18, 0) 100%);
  z-index: 2;
}

.stats-background {
  position: absolute;
  inset: 0;
}

.stats-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  display: block;
}

.stats-background-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.82);
}

.stats-content {
  position: relative;
  z-index: 3;
  padding-top: 110px;
  padding-bottom: 110px;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.stats-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
}

.stats-title span {
  color: var(--accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 20px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: monospace;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 900;
}

.stat-suffix {
  color: var(--accent);
  font-size: 0.5em;
  margin-left: 2px;
}

.stat-fixed {
  color: #ffffff;
}

.stat-label {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 18px;
  margin-top: 54px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(223, 255, 0, 0.35);
}

.trust-badge span:last-child {
  color: #d1d5db;
  font-size: 0.92rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .stats-content {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .stats-grid {
    gap: 26px 16px;
  }

  .trust-badges {
    margin-top: 42px;
    padding-top: 28px;
  }
}

/* =========================
   PROCESO / ASI DE SIMPLE
========================= */
.simple-process-section {
  position: relative;
  padding: 110px 0 120px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    #050608;
  background-size: 120px 120px;
  overflow: hidden;
}

.simple-process-container {
  position: relative;
}

.simple-process-header {
  max-width: 420px;
  margin-bottom: 54px;
}

.simple-process-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.simple-process-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
}

.simple-process-title span {
  color: var(--accent);
}

.simple-process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
  padding-top: 18px;
}

.simple-process-line {
  position: absolute;
  top: 100px;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  background: rgba(223, 255, 0, 0.55);
  z-index: 1;
}

.simple-step {
  position: relative;
  text-align: center;
  z-index: 2;
}

.simple-step-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 28px;
  min-height: 112px;
}

.simple-step-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(223, 255, 0, 0.06);
  border: 2px solid rgba(223, 255, 0, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(223, 255, 0, 0.04),
    0 0 0 10px rgba(223, 255, 0, 0.02);
}

.simple-step-icon span {
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
}

.simple-step-number {
  position: absolute;
  top: -8px;
  left: calc(50% + 34px);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.simple-step-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
}

.simple-step-text {
  margin: 0 auto;
  max-width: 320px;
  color: #c3c8d0;
  font-size: 0.98rem;
  line-height: 1.75;
}

/* responsive */
@media (max-width: 991px) {
  .simple-process-timeline {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .simple-process-line {
    display: none;
  }

  .simple-process-header {
    margin-bottom: 34px;
  }

  .simple-step-top {
    min-height: auto;
    margin-bottom: 18px;
  }

  .simple-step-number {
    top: -4px;
    left: calc(50% + 30px);
  }
}

@media (max-width: 767px) {
  .simple-process-section {
    padding: 80px 0 90px;
    background-size: 80px 80px;
  }

  .simple-step-icon {
    width: 66px;
    height: 66px;
  }

  .simple-step-icon span {
    font-size: 1.5rem;
  }

  .simple-step-title {
    font-size: 1.2rem;
  }

  .simple-step-text {
    font-size: 0.95rem;
    max-width: 290px;
  }
}
.simple-step-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(223, 255, 0, 0.06);
  border: 2px solid rgba(223, 255, 0, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(223, 255, 0, 0.04),
    0 0 0 10px rgba(223, 255, 0, 0.02);
}

.simple-step-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.simple-step-1 .simple-step-icon svg {
  width: 28px;
  height: 28px;
}

.simple-step-2 .simple-step-icon svg {
  width: 28px;
  height: 28px;
}

.simple-step-3 .simple-step-icon svg {
  width: 28px;
  height: 28px;
}

/* =========================
   CONTACTO
========================= */
.contact-section {
  position: relative;
  padding: 120px 0 140px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    #050608;
  background-size: 120px 120px;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 540px);
  gap: 90px;
  align-items: start;
}

.contact-left {
  max-width: 560px;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.contact-title {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.94;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
}

.contact-title span {
  color: var(--accent);
}

.contact-description {
  margin: 0 0 46px;
  max-width: 470px;
  color: #c3c8d0;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-methods {
  display: grid;
  gap: 16px;
}

.contact-method {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  text-decoration: none;
  border-radius: 22px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 255, 0, 0.18);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.contact-method-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-icon.whatsapp {
  background: rgba(38, 211, 109, 0.14);
}

.contact-method-icon.whatsapp svg {
  stroke: #28e078;
}

.contact-method-icon.phone {
  background: rgba(77, 141, 255, 0.14);
}

.contact-method-icon.phone svg {
  stroke: #5ba0ff;
}

.contact-method-icon.facebook {
  background: rgba(201, 221, 40, 0.18);
}

.contact-method-icon.facebook svg {
  fill: #d4f500;
  stroke: none;
}

.contact-method-content h4 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.contact-method-content p {
  margin: 0;
  color: #97a0ad;
  font-size: 0.98rem;
  line-height: 1.4;
}

.contact-right {
  margin-top: 58px;
}

.contact-form {
  position: relative;
  padding: 42px 38px 34px 38px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 520px;
}

.contact-route-markers {
  position: absolute;
  left: 24px;
  top: 58px;
  width: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.route-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 2px rgba(223, 255, 0, 0.04),
    0 0 10px rgba(223, 255, 0, 0.12);
}

.route-line {
  width: 1px;
  height: 28px;
  margin: 6px 0 8px;
  background: rgba(223, 255, 0, 0.7);
}

.route-arrow {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
}

.route-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-fields {
  margin-left: 28px;
}

.contact-field {
  width: 100%;
}

.contact-field.full {
  width: 100%;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.035) 0%,
    rgba(255, 255, 255, 0.025) 100%
  );
  color: #ffffff;
  outline: none;
  box-shadow: none;
}

.contact-field input {
  height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 1rem;
}

.contact-field textarea {
  min-height: 108px;
  resize: none;
  padding: 16px;
  border-radius: 16px;
  font-size: 1rem;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #8b9099;
  opacity: 1;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(223, 255, 0, 0.28);
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-fields > .contact-field,
.contact-form-fields > .contact-row,
.contact-form-fields > .contact-submit-btn,
.contact-form-fields > .contact-form-note {
  margin-bottom: 14px;
}

.contact-submit-btn {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #050608;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(223, 255, 0, 0.14);
}

.contact-submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-submit-icon svg {
  width: 18px;
  height: 18px;
  stroke: #050608;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-note {
  margin: 6px 0 0;
  color: #707784;
  font-size: 0.9rem;
  text-align: center;
}

/* responsive */
@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .contact-right {
    margin-top: 0;
  }

  .contact-left {
    max-width: 100%;
  }

  .contact-description {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 90px 0 100px;
    background-size: 80px 80px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-title {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .contact-method {
    min-height: 96px;
    padding: 0 18px;
    border-radius: 18px;
  }

  .contact-form {
    padding: 28px 18px 24px 18px;
    min-height: auto;
  }

  .contact-route-markers {
    left: 10px;
    top: 52px;
    gap: 24px;
  }

  .contact-form-fields {
    margin-left: 22px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-submit-btn {
    font-size: 0.95rem;
    padding-inline: 18px;
  }
}
/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  padding: 78px 0 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #040506;
  background-size: 120px 120px;
  overflow: hidden;
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.015), transparent 30%),
    radial-gradient(circle at right center, rgba(223, 255, 0, 0.04), transparent 24%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.55rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
}

.footer-logo span {
  color: var(--accent);
}

.footer-brand-text {
  margin: 0 0 22px;
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 255, 0, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-btn:nth-child(2) svg {
  fill: #ffffff;
  stroke: none;
}

.footer-title {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 18px;
}

.footer-links button {
  width: fit-content;
  background: transparent;
  border: none;
  padding: 0;
  color: #9ca3af;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.25s ease;
}

.footer-links button:hover {
  color: #ffffff;
}

.footer-contact-list {
  display: grid;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 64px 0 34px;
  background: rgba(255, 255, 255, 0.07);
}

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

.footer-copy {
  margin: 0;
  color: #6f7682;
  font-size: 0.95rem;
}

.footer-to-top {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.footer-to-top:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 255, 0, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.footer-to-top svg {
  width: 16px;
  height: 16px;
  stroke: #d1d5db;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-divider {
    margin: 44px 0 28px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 60px 0 22px;
    background-size: 80px 80px;
  }

  .footer-top {
    gap: 34px;
  }

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

  .footer-copy {
    font-size: 0.9rem;
  }

  .footer-to-top {
    align-self: flex-end;
  }
}

/* =========================
   SEO CONTENT
========================= */
.seo-content {
  padding: 90px 0;
  background: linear-gradient(180deg, #111111 0%, #181818 100%);
}

.seo-content .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.seo-content-box {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 42px 38px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.seo-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding-left: 14px;
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d7d7d7;
}

.seo-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #e4ff00;
}

.seo-content h2 {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
}

.seo-content p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.seo-content p:last-of-type {
  margin-bottom: 28px;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .seo-content {
    padding: 70px 0;
  }

  .seo-content-box {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .seo-content p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .seo-tags {
    gap: 10px;
  }

  .seo-tags span {
    font-size: 0.86rem;
    padding: 9px 14px;
  }
}

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
z-index:999;
}

.whatsapp-float img{
width:100%;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
transition:transform .2s;
}

.whatsapp-float:hover img{
transform:scale(1.1);
}