:root {
  --bg: #02071f;
  --bg-soft: rgba(13, 22, 63, 0.82);
  --bg-card: rgba(17, 30, 76, 0.72);
  --blue: #164bff;
  --blue-soft: #60a5fa;
  --text: #ffffff;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(24, 92, 255, 0.25), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(0, 200, 255, 0.12), transparent 25%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

header {
  width: 100%;
  padding: 22px 9%;
  background: rgba(2, 7, 31, 0.92);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.25s ease, background 0.25s ease;
}

header.is-scrolled {
  padding-top: 15px;
  padding-bottom: 15px;
  background: rgba(2, 7, 31, 0.97);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

.logo span,
.footer-brand strong span {
  color: var(--blue);
}

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

nav a {
  color: #dbeafe;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--blue-soft);
}

.contact-btn,
.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn {
  background: var(--blue);
  color: white;
  padding: 15px 28px;
  box-shadow: 0 15px 40px rgba(22, 75, 255, 0.35);
}

.contact-btn:hover,
.main-btn:hover,
button:hover {
  transform: translateY(-2px);
}

section {
  padding: 90px 9%;
}

.hero {
  min-height: 100vh;
  padding: 155px 9% 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.tag {
  color: #2563eb;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 800;
}

.mini-brands {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #22c55e);
  border: 2px solid white;
  margin-left: -8px;
}

.badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #e5e7eb;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: -3px;
  max-width: 820px;
  margin-bottom: 28px;
}

.hero h1 em {
  display: block;
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -2px;
}

.hero p {
  font-size: 22px;
  line-height: 1.58;
  color: #dbeafe;
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}

.main-btn {
  background: white;
  color: #0b1d74;
  padding: 19px 35px;
  font-size: 17px;
}

.link-btn {
  color: white;
  text-decoration: none;
  font-weight: 900;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 12px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  transform: scale(1.08);
  transform-origin: center;
}

.photo-card {
  position: absolute;
  width: 285px;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55);
  background: #0f172a;
  animation: floatSoft 5s ease-in-out infinite;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-1 {
  left: 45px;
  top: 130px;
  z-index: 1;
  opacity: 0.75;
  rotate: -4deg;
}

.photo-2 {
  left: 230px;
  top: 70px;
  z-index: 4;
  opacity: 1;
  scale: 1.08;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.7);
}

.photo-3 {
  left: 425px;
  top: 130px;
  z-index: 1;
  opacity: 0.75;
  rotate: 4deg;
}

.stat-card {
  position: absolute;
  background: rgba(17, 30, 76, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 22px;
  color: white;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  z-index: 8;
  animation: floatSoft 4s ease-in-out infinite;
}

.stat-card strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
}

.stat-card span {
  font-size: 14px;
  color: #dbeafe;
}

.stat-card p {
  color: #22c55e;
  font-size: 18px;
  font-weight: 900;
  margin-top: 12px;
}

.stat-top {
  right: 25px;
  top: 45px;
  width: 145px;
  min-height: 150px;
}

.stat-bottom {
  left: 15px;
  bottom: 60px;
  width: 170px;
}

@keyframes floatSoft {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.section-kicker {
  color: var(--blue-soft);
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 16px;
}

.align-left {
  text-align: left;
}

.section-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  text-align: center;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--muted);
  text-align: center;
  max-width: 840px;
  margin: 0 auto 55px;
  font-size: 20px;
  line-height: 1.6;
}

.partners-section,
.strategy,
.process-section,
.contact {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.official-logos {
  max-width: 1120px;
  margin: 65px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tool-logo {
  min-height: 125px;
  border-radius: 26px;
  background: rgba(13, 22, 63, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tool-logo img {
  max-width: 82px;
  max-height: 54px;
  object-fit: contain;
  opacity: 0.58;
  filter: grayscale(100%) brightness(1.7);
  transition: 0.25s ease;
}

.tool-logo img.logo-wide {
  max-width: 135px;
  max-height: 42px;
}

.tool-logo span {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  margin-top: 10px;
}

.tool-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tool-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.45);
  background: rgba(17, 30, 76, 0.9);
}

.tool-logo:hover img {
  opacity: 0.78;
  filter: grayscale(100%) brightness(0) invert(1);
  transform: scale(1.08);
}

.strategy-grid,
.services-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.strategy-card,
.service-card,
.process-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  min-height: 230px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.process-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 130px;
  height: 130px;
  background: rgba(37, 99, 235, 0.18);
  border-radius: 50%;
}

.strategy-card:hover,
.service-card:hover,
.process-card:hover,
.client-logo:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(17, 30, 76, 0.94);
}

.icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 24px;
}

.process-number {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-soft);
  margin-bottom: 35px;
}

.strategy-card h3,
.service-card h3,
.process-card h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.strategy-card p,
.service-card p,
.process-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.clients {
  background: #111827;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  align-items: center;
}

.client-logo {
  min-height: 82px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-size: 22px;
  font-weight: 900;
  color: white;
  opacity: 0.9;
  transition: 0.25s ease;
}

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

.contact-info h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 35px;
}

.number {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.number strong {
  display: block;
  font-size: 32px;
}

.number span {
  color: var(--muted);
  font-size: 14px;
}

form {
  background: rgba(13, 22, 63, 0.92);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 28px;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 17px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  outline: none;
  font-size: 16px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(96, 165, 250, 0.65);
  background: rgba(255, 255, 255, 0.09);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

select {
  color: var(--muted);
}

select option {
  background: #111b49;
  color: white;
}

textarea {
  height: 140px;
  resize: none;
}

button {
  width: 100%;
  border: none;
  padding: 18px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-note {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 15px;
  text-align: center;
}

.footer-pro {
  background: #020617;
  padding: 70px 9% 30px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 45px;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand strong {
  font-size: 32px;
  font-weight: 900;
}

.footer-brand p {
  margin-top: 18px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 420px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-column a,
.footer-column p {
  display: block;
  color: var(--muted-2);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-column a:hover {
  color: var(--blue-soft);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 30px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  font-size: 14px;
}

/* ANIMACIONES AL HACER SCROLL - SIN ROMPER HOVER */

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

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

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

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

@media (max-width: 1000px) {
  nav {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-visual {
    transform: scale(0.92);
    transform-origin: top center;
    min-height: 430px;
  }

  .strategy-grid,
  .services-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .client-grid,
  .official-logos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-pro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  header {
    padding: 18px 6%;
  }

  .logo {
    font-size: 25px;
  }

  .contact-btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  section,
  .hero {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    display: none;
  }

  .official-logos,
  .process-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .tool-logo {
    min-height: 105px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ANIMACIÓN PREMIUM HERO */

.hero-visual {
  perspective: 1200px;
}

.photo-card,
.stat-card {
  will-change: transform;
}

/* Flotación base */
.photo-card {
  animation: floatCard 5.5s ease-in-out infinite;
}

.photo-1 {
  animation-delay: 0s;
}

.photo-2 {
  animation-delay: 0.8s;
}

.photo-3 {
  animation-delay: 1.4s;
}

.stat-card {
  animation: floatStat 4.8s ease-in-out infinite;
}

.stat-top {
  animation-delay: 0.4s;
}

.stat-bottom {
  animation-delay: 1.1s;
}

@keyframes floatCard {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@keyframes floatStat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

/* Movimiento cuando pasas el mouse */
.hero-visual:hover .photo-1 {
  transform: rotate(-7deg) translateX(-14px) translateY(-6px);
}

.hero-visual:hover .photo-2 {
  transform: scale(1.1) translateY(-10px);
}

.hero-visual:hover .photo-3 {
  transform: rotate(7deg) translateX(14px) translateY(-6px);
}

.hero-visual:hover .stat-top {
  transform: translateY(-12px) translateX(8px);
}

.hero-visual:hover .stat-bottom {
  transform: translateY(-10px) translateX(-8px);
}

/* ANIMACIÓN DE SECCIONES - PRO Y SIN ROMPER HOVER */

.section-reveal {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal:not(.show) {
  transform: translateY(34px);
}

.reveal.show {
  opacity: 1;
}

.reveal.show:not(:hover) {
  transform: none;
}

/* HERO TIPO WODES - CAMBIO SUAVE DE IMÁGENES */

.photo-card img {
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.photo-card.is-changing img {
  opacity: 0.25;
  transform: scale(1.08);
  filter: blur(5px);
}

/* Movimiento automático suave */
.photo-card {
  animation: heroFloatCard 5.5s ease-in-out infinite;
}

.photo-1 {
  animation-delay: 0s;
}

.photo-2 {
  animation-delay: 0.7s;
}

.photo-3 {
  animation-delay: 1.3s;
}

.stat-card {
  animation: heroFloatStat 4.5s ease-in-out infinite;
}

.stat-top {
  animation-delay: 0.4s;
}

.stat-bottom {
  animation-delay: 1s;
}

@keyframes heroFloatCard {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

@keyframes heroFloatStat {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

/* BOTONES HERO ESTILO WODES */

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

.wodes-btn {
  position: relative;
  height: 62px;
  padding: 0 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.wodes-btn span,
.wodes-btn b {
  position: relative;
  z-index: 2;
}

.wodes-btn b {
  font-size: 25px;
  line-height: 1;
  transition: transform 0.28s ease;
}

/* BOTÓN BLANCO */

.wodes-btn-primary {
  min-width: 220px;
  background: #ffffff;
  color: #0052ff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.wodes-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1557ff;
  transform: translateX(-105%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.wodes-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-4px);
}

.wodes-btn-primary:hover::before {
  transform: translateX(0);
}

.wodes-btn-primary:hover b {
  transform: translateX(6px);
}

/* BOTÓN OSCURO CON BLOQUE AZUL */

/* BOTÓN OSCURO TIPO WODES MÁS EXACTO */

.wodes-btn-secondary {
  min-width: 245px;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
}

.wodes-btn-secondary::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 122px;
  height: 62px;
  background: linear-gradient(
    90deg,
    rgba(0, 82, 255, 0.55),
    rgba(0, 82, 255, 0.18),
    rgba(0, 82, 255, 0)
  );
  border-radius: 999px;
  transform: translateX(-26px);
  opacity: 0.45;
  transition:
    width 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
  z-index: 1;
}

.wodes-btn-secondary::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 105px;
  height: 2px;
  background: #0057ff;
  box-shadow: 0 0 16px rgba(0, 87, 255, 0.95);
  transition:
    width 0.35s ease,
    left 0.35s ease,
    box-shadow 0.35s ease;
  z-index: 2;
}

.wodes-btn-secondary:hover {
  transform: translateY(-3px);
}

.wodes-btn-secondary:hover::before {
  width: 190px;
  transform: translateX(0);
  opacity: 0.8;
}

.wodes-btn-secondary:hover::after {
  left: 34px;
  width: 150px;
  box-shadow: 0 0 24px rgba(0, 87, 255, 1);
}

.wodes-btn-secondary:hover b {
  transform: translateY(5px);
}

/* Responsive */

@media (max-width: 700px) {
  .hero-actions {
    gap: 16px;
  }

  .wodes-btn {
    width: 100%;
    max-width: 280px;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(59,130,246,0.4));
}

.footer-column h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-column a {
  color: rgba(255,255,255,0.6);
  transition: 0.2s;
}

.footer-column a:hover {
  color: #3b82f6;
}

.footer-pro {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding-top: 50px;
}

/* FOOTER PRO FINAL */

.footer-pro {
  position: relative;
  padding: 78px 9% 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 255, 0.08), transparent 35%),
    #02071f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.footer-pro::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 255, 0.65),
    transparent
  );
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  transition: 0.3s ease;
}

.footer-logo img {
  height: 95px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(37, 99, 255, 0.28));
  transition: 0.3s ease;
}

.footer-logo:hover img {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 0 22px rgba(37, 99, 255, 0.48));
}

.footer-brand p {
  color: rgba(203, 213, 225, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-column a,
.footer-column p {
  display: block;
  color: rgba(203, 213, 225, 0.78);
  font-size: 16px;
  line-height: 1.9;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: #60a5fa;
  transform: translateX(5px);
}

.footer-bottom,
.footer-pro > p:last-child {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(148, 163, 184, 0.8);
  font-size: 14px;
}

/* CENTRAR LOGO DEL FOOTER */

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
}

.footer-logo img {
  display: block;
  height: 95px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

/* BOTÓN "NUESTROS SERVICIOS" ESTILO WODES */

.wodes-service-btn {
  position: relative;
  min-width: 245px;
  height: 62px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  border-radius: 999px;
  transition: 0.3s ease;
}

/* bloque azul que aparece atrás */
.wodes-service-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 115px;
  height: 62px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 255, 0.55),
    rgba(37, 99, 255, 0.18),
    rgba(37, 99, 255, 0)
  );
  border-radius: 999px;
  transform: translateX(-28px);
  opacity: 0.45;
  transition: 0.35s ease;
  z-index: 1;
}

/* línea azul de abajo */
.wodes-service-btn::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: 0;
  width: 128px;
  height: 2px;
  background: #2563ff;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(37, 99, 255, 0.95);
  transition: 0.35s ease;
  z-index: 2;
}

.wodes-service-btn span,
.wodes-service-btn b {
  position: relative;
  z-index: 3;
}

.wodes-service-btn b {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s ease;
}

/* hover */
.wodes-service-btn:hover {
  transform: translateY(-3px);
}

.wodes-service-btn:hover::before {
  width: 210px;
  transform: translateX(0);
  opacity: 0.85;
}

.wodes-service-btn:hover::after {
  left: 48px;
  width: 155px;
  box-shadow: 0 0 26px rgba(37, 99, 255, 1);
}

.wodes-service-btn:hover b {
  transform: translateY(7px);
}

  /* RESPONSIVE FINAL */

@media (max-width: 900px) {
  header {
    padding: 18px 6%;
  }

  .logo img {
    height: 58px;
  }

  nav {
    gap: 18px;
  }

  nav a {
    font-size: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 6% 80px;
    text-align: left;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.05;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-actions {
    gap: 18px;
  }

  .btn-primary,
  .wodes-service-btn {
    width: 100%;
    max-width: 280px;
  }

  .tools-logo-grid,
  .official-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .footer-pro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }
}

@media (max-width: 520px) {
  header {
    flex-direction: column;
    gap: 18px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .wodes-service-btn {
    max-width: 100%;
  }

  .tools-logo-grid,
  .official-logos {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    height: 82px;
  }
}

/* AJUSTE FINAL MOBILE */

@media (max-width: 600px) {
  header {
    padding: 12px 22px !important;
    min-height: 92px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  header nav {
    display: none !important;
  }

  header .logo img,
  .navbar .logo img {
    height: 64px !important;
    width: auto !important;
  }

  header a[href="#contacto"]:not(.logo) {
    width: 128px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    font-size: 16px !important;
  }

  .hero {
    padding: 42px 24px 70px !important;
    text-align: left !important;
  }

  .hero h1 {
    font-size: 43px !important;
    line-height: 1.07 !important;
    letter-spacing: -1.8px !important;
    max-width: 100% !important;
  }

  .hero h1 em {
    font-size: 46px !important;
    line-height: 1 !important;
  }

  .hero p {
    font-size: 18px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    margin-top: 36px !important;
  }

  .hero-actions .btn-primary {
    width: 250px !important;
    height: 64px !important;
    font-size: 18px !important;
  }

  .wodes-service-btn {
    width: 250px !important;
    min-width: 250px !important;
    height: 58px !important;
    padding: 0 22px !important;
    justify-content: center !important;
    font-size: 16px !important;
  }

  .wodes-service-btn::after {
    left: 42px !important;
    bottom: 0 !important;
    width: 165px !important;
  }

  .wodes-service-btn::before {
    opacity: 0.45 !important;
  }

  .hero-visual {
    margin-top: 45px !important;
  }
}