/* =========================================================
   ML in Cloud — Styles Globales
   Archivo: css/styles.css
   Versión limpia: Home + Global + Responsive
   ========================================================= */

/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --bg: #f5f9fd;
  --bg-soft: #edf4fa;
  --white: #ffffff;

  --text: #223443;
  --text-soft: #617487;
  --text-dark: #13212d;

  --brand: #38afe4;
  --brand-light: #59c5f4;
  --brand-dark: #203546;

  --success: #35de8c;

  --accent-warm: #ff6f2c;
  --accent-warm-dark: #c84b18;
  --accent-warm-soft: rgba(255, 111, 44, 0.12);
  --accent-warm-border: rgba(255, 111, 44, 0.28);
  --accent-warm-shadow: rgba(255, 111, 44, 0.24);

  --line: #d9e5ef;
  --line-soft: rgba(217, 229, 239, 0.72);
  --line-strong: rgba(56, 175, 228, 0.32);

  --panel: rgba(255, 255, 255, 0.84);

  --shadow-soft: 0 16px 40px rgba(16, 36, 58, 0.06);
  --shadow-premium: 0 24px 60px rgba(16, 36, 58, 0.12);

  --radius: 24px;
  --container: 1160px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 175, 228, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(39, 107, 166, 0.06), transparent 30%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 44%, #f5f9fc 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--brand-dark);
  color: var(--white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 229, 239, 0.86);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: auto;
  height: 52px;
}

.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand);
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--brand-dark);
}

/* =========================================================
   BOTONES
   ========================================================= */

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

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  box-shadow: 0 14px 30px rgba(56, 175, 228, 0.24);
}

.btn-secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}

.full-width {
  width: 100%;
}

/* =========================================================
   TIPOGRAFÍA
   ========================================================= */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 14px;
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  color: var(--text-dark);
}

p {
  color: var(--text-soft);
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 14px rgba(53, 222, 140, 0.7);
}

.section {
  padding: 84px 0;
}

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

.section-heading.compact {
  max-width: 690px;
}

/* =========================================================
   HERO HOME
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding-top: 12px;
  padding-bottom: 48px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(238, 247, 252, 0.84) 0%,
      rgba(238, 247, 252, 0.62) 30%,
      rgba(238, 247, 252, 0.32) 48%,
      rgba(238, 247, 252, 0.08) 64%,
      rgba(238, 247, 252, 0.01) 80%,
      rgba(238, 247, 252, 0) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  bottom: 0;
  width: min(60vw, 880px);
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/hero-tech.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.38) 6%,
    rgba(0, 0, 0, 0.72) 18%,
    rgba(0, 0, 0, 0.94) 30%,
    #000 42%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.38) 6%,
    rgba(0, 0, 0, 0.72) 18%,
    rgba(0, 0, 0, 0.94) 30%,
    #000 42%,
    #000 100%
  );
  animation: heroImageReveal 1.15s cubic-bezier(.22, .61, .36, 1) .15s forwards;
}

@keyframes heroImageReveal {
  0% {
    opacity: 0;
    transform: translateX(60px);
    clip-path: inset(0 100% 0 0 round 38px);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0 round 38px);
    filter: blur(0);
  }
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 130px;
  align-items: center;
  overflow: visible;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 520px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 590px;
  transform: translateY(-18px);
}

.hero h1 {
  max-width: 620px;
}

.hero .hero-lead {
  max-width: 570px;
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: 1rem;
}

.hero-lead strong {
  color: var(--text-dark);
}

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

.hero-visual,
.hero-image-card,
.hero-floating-badge {
  display: none;
}

/* Redes sociales laterales */

.hero-social {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 18px;
  justify-content: center;
  align-self: center;
  transform: translateX(-95px);
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  box-shadow: 0 12px 28px rgba(56, 175, 228, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-label {
  position: absolute;
  left: calc(100% + 16px);
  top: 50%;
  min-width: 118px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-50%) translateX(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.social-link:hover .social-icon,
.social-link:focus-visible .social-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 36px rgba(56, 175, 228, 0.36);
}

.social-link:hover .social-label,
.social-link:focus-visible .social-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* =========================================================
   SOLUCIONES HOME
   ========================================================= */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.solution-card {
  position: relative;
  padding: 34px 28px;
  border: 1px solid rgba(217, 229, 239, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.solution-card .icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 24px;
  color: var(--brand);
  background: rgba(56, 175, 228, 0.1);
  border: 1px solid rgba(56, 175, 228, 0.24);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.solution-card .icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.solution-card h3,
.solution-card p {
  transition: color 0.25s ease;
}

.solution-card:hover,
.solution-card:focus-visible,
.solution-card.is-selected {
  transform: translateY(-6px);
  border-color: rgba(56, 175, 228, 0.45);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 24px 60px rgba(16, 36, 58, 0.18);
}

.solution-card:hover .icon,
.solution-card:focus-visible .icon,
.solution-card.is-selected .icon {
  color: var(--brand);
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.08);
}

.solution-card:hover h3,
.solution-card:hover p,
.solution-card:focus-visible h3,
.solution-card:focus-visible p,
.solution-card.is-selected h3,
.solution-card.is-selected p {
  color: #ffffff;
}

.solution-card:focus-visible {
  outline: 3px solid rgba(56, 175, 228, 0.28);
  outline-offset: 4px;
}

/* =========================================================
   PULSO INDEX
   ========================================================= */

.pulso-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 0 !important;
  background: #f7fafc !important;
}

.pulso-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/pulso.webp") center / cover no-repeat;
  opacity: 0.88;
  transform: scale(1.02);
}

.pulso-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.44) 0%,
      rgba(255, 255, 255, 0.24) 48%,
      rgba(255, 255, 255, 0.48) 100%
    );
}

.pulso-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.pulso-content {
  max-width: 620px;
}

.pulso-logo {
  width: 220px;
  margin-bottom: 30px;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(217, 229, 239, 0.95);
  box-shadow:
    0 20px 48px rgba(16, 36, 58, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.pulso-logo img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.pulso-content .section-kicker {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    0 12px 28px rgba(56, 175, 228, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pulso-content h2 {
  max-width: 560px;
  margin: 0 0 28px;
  color: #13212d;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.pulso-content .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: 1px solid rgba(56, 175, 228, 0.55);
  box-shadow:
    0 18px 42px rgba(56, 175, 228, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.pulso-content .btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--accent-warm), var(--brand));
  box-shadow:
    0 22px 50px rgba(255, 111, 44, 0.22),
    0 0 28px rgba(56, 175, 228, 0.18);
}

.pulso-steps {
  display: grid;
  gap: 22px;
}

.pulso-steps article {
  position: relative;
  overflow: hidden;
  min-height: 165px;
  padding: 30px 32px 30px 104px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(56, 175, 228, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(217, 229, 239, 0.95);
  box-shadow:
    0 22px 56px rgba(16, 36, 58, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.pulso-steps article span {
  position: absolute;
  left: 30px;
  top: 32px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow:
    0 16px 34px rgba(56, 175, 228, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 0.9rem;
  font-weight: 950;
}

.pulso-steps article h3 {
  margin: 0 0 10px;
  color: #13212d;
  font-size: 1.24rem;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.pulso-steps article p {
  max-width: 520px;
  margin: 0;
  color: #13212d;
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 400;
}

.pulso-steps article::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 30px;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent-warm));
}

.pulso-steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 175, 228, 0.36);
  box-shadow:
    0 28px 68px rgba(16, 36, 58, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* =========================================================
   STACK TECNOLÓGICO
   ========================================================= */

.stack-section {
  overflow: visible;
  background: var(--white);
}

.brand-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 44px;
  align-items: start;
}

.brand-item {
  position: relative;
  z-index: 1;
}

.brand-item:hover,
.brand-item:focus-within {
  z-index: 5;
}

.brand-logo-btn {
  width: 100%;
  min-height: 118px;
  padding: 28px 24px;
  border: 1px solid rgba(217, 229, 239, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.brand-logo-btn img {
  max-width: 132px;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.brand-logo-btn img[alt="Dropbox"] {
  max-width: 165px;
  max-height: 62px;
  transform: scale(1.12);
}

.brand-logo-btn img[alt="Autodesk"] {
  max-width: 170px;
  max-height: 64px;
  transform: scale(1.25);
}

.brand-item:hover .brand-logo-btn,
.brand-item:focus-within .brand-logo-btn {
  transform: translateY(-5px);
  border-color: rgba(56, 175, 228, 0.45);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(16, 36, 58, 0.16);
}

.brand-item:hover .brand-logo-btn img,
.brand-item:focus-within .brand-logo-btn img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}

.brand-item:hover .brand-logo-btn img[alt="Dropbox"],
.brand-item:focus-within .brand-logo-btn img[alt="Dropbox"] {
  transform: scale(1.22);
}

.brand-item:hover .brand-logo-btn img[alt="Autodesk"],
.brand-item:focus-within .brand-logo-btn img[alt="Autodesk"] {
  transform: scale(1.35);
}

.brand-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    max-height 0.38s ease,
    opacity 0.25s ease,
    transform 0.25s ease,
    margin-top 0.25s ease;
}

.brand-item:hover .brand-detail,
.brand-item:focus-within .brand-detail {
  max-height: 420px;
  opacity: 1;
  margin-top: 18px;
  pointer-events: auto;
  transform: translateY(0);
}

.brand-detail-inner {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(56, 175, 228, 0.28);
  background:
    radial-gradient(circle at top right, rgba(56, 175, 228, 0.2), transparent 34%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 24px 60px rgba(56, 175, 228, 0.24);
  color: #ffffff;
}

.brand-detail-inner::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -55px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.brand-detail-inner h3,
.brand-detail-inner p,
.brand-link {
  position: relative;
  z-index: 2;
}

.brand-detail-inner h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.25rem;
}

.brand-detail-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
}

.brand-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.brand-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.brand-link span {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.brand-link:hover span {
  transform: translateX(4px);
}

/* Cómputo Empresarial */

.computo-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--brand-dark);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.computo-logo svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: currentColor;
  opacity: 0.9;
  transition: transform 0.25s ease;
}

.computo-logo strong {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
  letter-spacing: -0.02em;
}

.brand-item:hover .computo-logo,
.brand-item:focus-within .computo-logo {
  color: var(--brand);
  transform: scale(1.05);
}

.brand-item:hover .computo-logo svg,
.brand-item:focus-within .computo-logo svg {
  transform: translateX(-2px);
}

/* =========================================================
   PROCESO
   ========================================================= */

.process-section {
  position: relative;
  overflow: hidden;
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 46px;
}

.process-card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px;
  border: 1px solid rgba(217, 229, 239, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-premium);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -58px;
  top: -58px;
  border-radius: 50%;
  background: rgba(255, 111, 44, 0.14);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.process-number {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--accent-warm);
  background: var(--accent-warm-soft);
  border: 1px solid var(--accent-warm-border);
  font-weight: 900;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.process-card h3,
.process-card p {
  position: relative;
  z-index: 2;
  transition: color 0.25s ease;
}

.process-card p {
  margin: 0;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 111, 44, 0.45);
  background: linear-gradient(135deg, #172430, var(--accent-warm-dark));
  box-shadow: 0 26px 70px rgba(255, 111, 44, 0.24);
}

.process-card:hover::after {
  opacity: 1;
  transform: scale(1.15);
}

.process-card:hover .process-number {
  color: var(--accent-warm);
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  transform: scale(1.08);
}

.process-card:hover h3,
.process-card:hover p {
  color: #ffffff;
}

.process-arrow {
  align-self: center;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-warm);
  background: var(--accent-warm-soft);
  border: 1px solid var(--accent-warm-border);
  box-shadow: 0 10px 26px var(--accent-warm-shadow);
  font-size: 1.25rem;
  font-weight: 900;
  animation: processArrowMove 1.5s ease-in-out infinite;
}

@keyframes processArrowMove {
  0% {
    transform: translateX(-4px);
    opacity: 0.45;
  }

  50% {
    transform: translateX(4px);
    opacity: 1;
  }

  100% {
    transform: translateX(-4px);
    opacity: 0.45;
  }
}

/* =========================================================
   CONTACTO
   ========================================================= */

.contact-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 500px;
  margin-bottom: 28px;
  font-size: clamp(2.3rem, 3.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-info-card {
  min-height: 104px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(217, 229, 239, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-premium);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 175, 228, 0.35);
  box-shadow: 0 20px 50px rgba(16, 36, 58, 0.14);
}

.contact-info-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 243, 238, 0.88);
}

.contact-info-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--accent-warm);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-content h3 {
  margin: 0 0 6px;
  color: var(--text-dark);
  font-size: 1.18rem;
}

.contact-info-content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-support-copy {
  max-width: 500px;
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form-wrap {
  position: relative;
  padding: 42px 38px 36px;
  border-radius: 34px;
  border: 1px solid rgba(56, 175, 228, 0.28);
  background:
    radial-gradient(circle at top right, rgba(56, 175, 228, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.96);
  box-shadow:
    0 34px 90px rgba(16, 36, 58, 0.16),
    0 0 0 8px rgba(56, 175, 228, 0.04);
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0 28px auto;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-light), var(--brand));
}

.contact-form-head {
  margin-bottom: 22px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(56, 175, 228, 0.12);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form-head h3 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  line-height: 1.15;
}

.contact-form-head p {
  max-width: 560px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(201, 218, 230, 0.95);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text-dark);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 58px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(56, 175, 228, 0.58);
  box-shadow: 0 0 0 4px rgba(56, 175, 228, 0.12);
}

.contact-form .btn {
  min-height: 58px;
  font-size: 1rem;
}

.form-privacy-note {
  max-width: 420px;
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 54px 0 24px;
  color: #d9e7f0;
  background: #172430;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 420px;
  color: #d9e7f0;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #d9e7f0;
  font-size: 0.95rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer a:hover {
  color: var(--brand-light);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  max-width: none;
  font-size: 0.9rem;
}

.footer-bottom a {
  margin: 0;
  white-space: nowrap;
}

/* =========================================================
   BOTONES FLOTANTES
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.44);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 79;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  box-shadow: 0 14px 34px rgba(56, 175, 228, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.back-to-top svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(56, 175, 228, 0.38);
}

/* =========================================================
   PÁGINAS LEGALES
   ========================================================= */

.legal-section {
  min-height: 70vh;
  padding-top: 96px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 85% 10%, rgba(56, 175, 228, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.legal-content {
  max-width: 920px;
}

.legal-content h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.legal-content p {
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content .hero-actions {
  margin-top: 36px;
}

/* =========================================================
   PÁGINAS INTERNAS — AJUSTES COMPARTIDOS
   ========================================================= */

/* Iconos automáticos de carrusel */
[class*="-product-mark"].has-product-icon {
  font-size: 0 !important;
}

[class*="-product-mark"].has-product-icon svg {
  width: 31px;
  height: 31px;
  display: block;
  color: #ffffff;
  stroke: currentColor;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

[class*="-product-card"]:hover [class*="-product-mark"].has-product-icon svg,
[class*="-product-card"].is-active [class*="-product-mark"].has-product-icon svg {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

/* FAQ con imagen de fondo */
.ms-page .ms-faq,
.adobe-page .adobe-faq,
.anydesk-page .anydesk-faq,
.autodesk-page .autodesk-faq,
.computo-page .computo-faq,
.dropbox-page .dropbox-faq,
.eset-page .eset-faq,
.goto-page .goto-faq,
.kaspersky-page .kaspersky-faq {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 253, 0.58) 0%,
      rgba(248, 251, 253, 0.48) 48%,
      rgba(248, 251, 253, 0.62) 100%
    ),
    url("../images/faq-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ms-page .ms-faq-copy,
.adobe-page .adobe-faq-copy,
.anydesk-page .anydesk-faq-copy,
.autodesk-page .autodesk-faq-copy,
.computo-page .computo-faq-copy,
.dropbox-page .dropbox-faq-copy,
.eset-page .eset-faq-copy,
.goto-page .goto-faq-copy,
.kaspersky-page .kaspersky-faq-copy {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(217, 229, 239, 0.72);
  box-shadow: 0 24px 70px rgba(16, 36, 58, 0.08);
  backdrop-filter: blur(16px);
}

.ms-page .faq-item,
.adobe-page .faq-item,
.anydesk-page .faq-item,
.autodesk-page .faq-item,
.computo-page .faq-item,
.dropbox-page .faq-item,
.eset-page .faq-item,
.goto-page .faq-item,
.kaspersky-page .faq-item {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  box-shadow:
    0 22px 60px rgba(16, 36, 58, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(18px);
}

/* CTA final compacto en páginas internas */
.ms-page .ms-final-cta,
.adobe-page .adobe-final-cta,
.anydesk-page .anydesk-final-cta,
.autodesk-page .autodesk-final-cta,
.computo-page .computo-final-cta,
.dropbox-page .dropbox-final-cta,
.eset-page .eset-final-cta,
.goto-page .goto-final-cta,
.kaspersky-page .kaspersky-final-cta {
  padding: 58px 0 !important;
}

.ms-page .ms-cta-grid,
.adobe-page .adobe-cta-grid,
.anydesk-page .anydesk-cta-grid,
.autodesk-page .autodesk-cta-grid,
.computo-page .computo-cta-grid,
.dropbox-page .dropbox-cta-grid,
.eset-page .eset-cta-grid,
.goto-page .goto-cta-grid,
.kaspersky-page .kaspersky-cta-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  max-width: 860px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.ms-page .ms-final-cta [class*="-contact-card"],
.adobe-page .adobe-final-cta [class*="-contact-card"],
.anydesk-page .anydesk-final-cta [class*="-contact-card"],
.autodesk-page .autodesk-final-cta [class*="-contact-card"],
.computo-page .computo-final-cta [class*="-contact-card"],
.dropbox-page .dropbox-final-cta [class*="-contact-card"],
.eset-page .eset-final-cta [class*="-contact-card"],
.goto-page .goto-final-cta [class*="-contact-card"],
.kaspersky-page .kaspersky-final-cta [class*="-contact-card"] {
  display: none !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    max-width: 760px;
    font-size: clamp(2.4rem, 7vw, 4rem);
  }

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

  .contact-info-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
}

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

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-social {
    transform: translateX(0);
    grid-auto-flow: column;
    justify-content: center;
    align-items: center;
  }

  .social-link {
    gap: 8px;
  }

  .social-label {
    position: static;
    opacity: 1;
    visibility: visible;
    min-width: auto;
    padding: 8px 12px;
    font-size: 0.82rem;
    transform: none;
  }

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

  .brand-stack {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .pulso-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .pulso-content {
    max-width: 760px;
  }
}

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

  .main-nav {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-premium);
  }

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

  .main-nav a {
    padding: 12px;
    border-radius: 12px;
  }

  .section,
  .hero {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
  }

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

  .hero::after {
    width: min(84vw, 620px);
    height: 320px;
    top: auto;
    right: -40px;
    bottom: 20px;
    opacity: 0.32;
    border-radius: 32px;
  }

  .hero-content {
    max-width: 100%;
    transform: none;
  }
}

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

  .brand img {
    height: 44px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .hero {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .hero-wrapper {
    display: block;
  }

  .hero-social {
    display: none;
  }

  .hero .hero-lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

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

  .hero::after {
    width: 100%;
    height: 280px;
    right: -30px;
    bottom: 0;
    opacity: 0.18;
  }

  .solutions-grid,
  .brand-stack,
  .form-grid,
  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .solution-card {
    padding: 28px 24px;
  }

  .pulso-section {
    padding: 78px 0 !important;
  }

  .pulso-section::before {
    opacity: 0.68;
    background-position: center;
  }

  .pulso-section::after {
    background: rgba(255, 255, 255, 0.60);
  }

  .pulso-logo {
    width: 180px;
    margin-bottom: 24px;
  }

  .pulso-content h2 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
  }

  .pulso-content .btn {
    width: 100%;
  }

  .pulso-steps {
    gap: 18px;
  }

  .pulso-steps article {
    min-height: auto;
    padding: 92px 24px 26px;
    border-radius: 26px;
  }

  .pulso-steps article span {
    left: 24px;
    top: 24px;
  }

  .pulso-steps article::before {
    right: 24px;
    top: 34px;
    width: 38px;
  }

  .brand-logo-btn {
    min-height: 96px;
    padding: 24px 20px;
  }

  .brand-logo-btn img {
    max-width: 125px;
    max-height: 48px;
  }

  .brand-detail {
    max-height: none;
    opacity: 1;
    overflow: visible;
    margin-top: 14px;
    pointer-events: auto;
    transform: none;
  }

  .brand-detail-inner {
    padding: 22px;
  }

  .brand-detail-inner p {
    font-size: 0.92rem;
  }

  .computo-logo {
    gap: 12px;
  }

  .computo-logo svg {
    width: 38px;
    height: 38px;
  }

  .computo-logo strong {
    font-size: 1rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-arrow {
    display: none;
  }

  .process-card {
    padding: 26px 24px;
  }

  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

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

  .contact-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .contact-info-card {
    grid-template-columns: 58px 1fr;
    text-align: left;
    justify-items: start;
    padding: 20px;
  }

  .contact-info-icon {
    width: 54px;
    height: 54px;
  }

  .contact-info-icon svg {
    width: 26px;
    height: 26px;
  }

  .contact-form-wrap {
    padding: 30px 22px 26px;
  }

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

  .footer-brand img {
    height: 58px;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .back-to-top {
    right: 18px;
    bottom: 86px;
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   RENDIMIENTO / ACCESIBILIDAD
   ========================================================= */

@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .process-arrow {
    animation: none !important;
  }
}
/* =========================================================
   FIX HERO MOBILE — VERSIÓN LIMPIA SIN IMAGEN ENCIMADA
   ========================================================= */

@media (max-width: 760px) {
  .hero {
    min-height: auto !important;
    padding: 58px 0 66px !important;
    background:
      radial-gradient(circle at 18% 18%, rgba(56, 175, 228, 0.12), transparent 34%),
      linear-gradient(180deg, #f8fbfd 0%, #eef7fc 100%) !important;
  }

  /* Quitar imagen tecnológica del hero en celular */
  .hero::after {
    display: none !important;
  }

  /* Suavizar velo anterior */
  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.62) 0%,
        rgba(255, 255, 255, 0.38) 100%
      ) !important;
  }

  .hero-wrapper {
    display: block !important;
    width: min(100% - 28px, var(--container)) !important;
  }

  .hero-layout {
    min-height: auto !important;
    display: block !important;
  }

  .hero-content {
    max-width: 100% !important;
    transform: none !important;
  }

  .hero .kicker {
    max-width: 100% !important;
    margin-bottom: 18px !important;
    font-size: 0.72rem !important;
    line-height: 1.5 !important;
    letter-spacing: 0.13em !important;
  }

  .hero h1 {
    max-width: 100% !important;
    margin-bottom: 22px !important;
    font-size: clamp(2.25rem, 10.5vw, 3.1rem) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.055em !important;
  }

  .hero .hero-lead {
    max-width: 100% !important;
    margin-bottom: 28px !important;
    color: var(--text-soft) !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
    margin-top: 28px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-height: 56px !important;
    text-align: center !important;
  }

  .hero-social {
    display: none !important;
  }
}
.recaptcha-box {
  margin: 18px 0 24px;
  display: flex;
  justify-content: center;
}

.form-privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 22px;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.6;
}

.form-privacy-check input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-privacy-check a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 480px) {
  .recaptcha-box {
    transform: scale(0.92);
    transform-origin: center;
  }
}
/* =========================================================
   FIX DEFINITIVO CHECKBOX PRIVACIDAD - FORMULARIO ML
   ========================================================= */

.contact-form .privacy-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr !important;
  align-items: flex-start !important;
  column-gap: 12px !important;
  width: 100% !important;
  margin: 18px 0 24px !important;
}

.contact-form .privacy-consent input[type="checkbox"] {
  appearance: checkbox !important;
  -webkit-appearance: checkbox !important;

  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;

  padding: 0 !important;
  margin: 4px 0 0 0 !important;

  border-radius: 3px !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.contact-form .privacy-consent label {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;

  color: var(--text, #2f3b4a) !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
  text-align: left !important;
}

.contact-form .privacy-consent label a {
  color: var(--primary, #276ba6) !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}
/* =========================================================
   PRELOADER ML IN CLOUD - FONDO BLANCO + GLASS AZUL
   ========================================================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 15%, rgba(56, 175, 228, 0.10), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(39, 107, 166, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader-card {
  width: min(88%, 430px);
  padding: 46px 36px;
  border-radius: 32px;
  text-align: center;

  background:
    linear-gradient(
      135deg,
      rgba(23, 36, 48, 0.92),
      rgba(39, 107, 166, 0.82),
      rgba(56, 175, 228, 0.58)
    );

  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 30px 80px rgba(23, 36, 48, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.loader-logo {
  width: min(260px, 78%);
  height: auto;
  display: block;
  margin: 0 auto 30px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
  animation: loaderLogoPulse 1.8s ease-in-out infinite;
}

.loader-bar {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.loader-bar span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, #38afe4, #ffffff);
  box-shadow: 0 0 18px rgba(56, 175, 228, 0.55);
  animation: loaderBarMove 1.15s ease-in-out infinite;
}

.loader-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
}

body.page-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderLogoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.94;
  }

  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

@keyframes loaderBarMove {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(240%);
  }
}

@media (max-width: 480px) {
  .loader-card {
    padding: 38px 26px;
    border-radius: 26px;
  }

  .loader-logo {
    width: min(230px, 82%);
  }
}