﻿:root {
  --bg: #f4f7f8;
  --paper: #ffffff;
  --paper-soft: #eef7f7;
  --paper-strong: #fbfcfc;
  --ink: #14232c;
  --muted: #60707b;
  --line: #d7e2e6;
  --brand: #0f766e;
  --brand-deep: #0a4f4a;
  --brand-soft: #dff3f1;
  --accent: #f6bd5a;
  --accent-soft: #fff3d8;
  --shadow: 0 18px 50px rgba(20, 35, 44, 0.11);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(15, 118, 110, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(246, 189, 90, 0.12),
      transparent 26%
    ),
    var(--bg);
}

body.menu-open {
  overflow: hidden;
}

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

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

.page-shell {
  overflow: clip;
}

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

.hero {
  position: relative;
  padding-bottom: 4rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.7;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -90px;
  background: rgba(15, 118, 110, 0.15);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -100px;
  top: 120px;
  background: rgba(246, 189, 90, 0.12);
}

.nav {
  position: sticky;
  top: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease;
}

.nav.scrolled {
  border-color: rgba(15, 118, 110, 0.12);
  box-shadow: 0 14px 34px rgba(20, 35, 44, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f3f7f8 100%);
  box-shadow: 0 10px 22px rgba(20, 35, 44, 0.08);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 31%;
  transform: scale(1.55);
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.brand-copy strong {
  font-size: 1.05rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.6rem 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(20, 35, 44, 0.88);
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--brand-deep);
  background: rgba(15, 118, 110, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
  padding-top: 2.4rem;
}

.hero-copy {
  max-width: 620px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.48rem 0.85rem;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-copy h1 {
  margin: 1rem 0 1.15rem;
  max-width: 11ch;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-lead,
.section-copy p,
.location-copy p,
.contact-panel p,
.service-card p,
.mini-card p {
  color: var(--muted);
}

.hero-lead {
  margin: 0;
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 20px rgba(20, 35, 44, 0.05);
  font-size: 0.93rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(15, 118, 110, 0.18);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 118, 110, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-proof article,
.trust-item,
.mini-card,
.service-card,
.info-card,
.contact-form,
.policy-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 226, 230, 0.9);
  box-shadow: var(--shadow);
}

.hero-proof article {
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.hero-proof strong,
.trust-item strong,
.info-card strong,
.contact-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.96rem;
}

.hero-proof span,
.trust-item span,
.mini-card p,
.service-card li,
.info-card span,
.footer,
.form-note {
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.preview-card {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(215, 226, 230, 0.88);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 60px rgba(20, 35, 44, 0.16);
  backdrop-filter: blur(18px);
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(246, 189, 90, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.1rem 0.2rem 0.95rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.window-dots {
  display: flex;
  gap: 0.35rem;
}

.window-dots span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #d1dbe0;
}

.window-dots span:first-child {
  background: #ff8973;
}

.window-dots span:nth-child(2) {
  background: #ffd36f;
}

.window-dots span:last-child {
  background: #79d3ae;
}

.preview-body {
  display: grid;
  grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
  gap: 1rem;
}

.preview-side {
  padding: 1rem;
  min-width: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(180deg, #0f1d24 0%, #132c35 100%);
  color: #ffffff;
}

.preview-logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.preview-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.35rem;
  object-fit: contain;
}

.preview-logo-lockup strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.preview-logo-lockup p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.chat-list {
  display: grid;
  gap: 0.55rem;
}

.chat-item {
  width: 100%;
  border: 0;
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.chat-item strong {
  display: block;
  margin-bottom: 0.12rem;
  font-size: 0.96rem;
}

.chat-item small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.chat-item.active,
.chat-item:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

.preview-main {
  padding: 0.3rem 0.15rem 0.2rem;
  min-width: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
}

.metric-card span,
.order-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.32rem;
  line-height: 1.05;
  text-align: right;
}

.metric-card span {
  max-width: none;
  line-height: 1.1;
  white-space: nowrap;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 1rem;
}

.micro-label {
  margin: 0 0 0.15rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-header h3 {
  margin: 0;
  font-size: 1.32rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.message-thread {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.bubble {
  max-width: 82%;
  padding: 0.88rem 1rem;
  border-radius: 20px;
  font-size: 0.95rem;
  box-shadow: 0 10px 22px rgba(20, 35, 44, 0.06);
}

.bubble-in {
  background: var(--paper);
  border: 1px solid var(--line);
}

.bubble-out {
  margin-left: auto;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #ffffff;
}

.order-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.order-summary article {
  padding: 0.95rem;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.order-summary strong {
  display: block;
  margin-top: 0.25rem;
}

.floating-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 170px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(215, 226, 230, 0.94);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(20, 35, 44, 0.1);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.float-one {
  top: -2%;
  right: -4%;
}

.float-two {
  left: -7%;
  bottom: 6%;
  animation-delay: -2s;
}

.trust-band {
  position: relative;
  z-index: 2;
  padding: 0 0 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  transform: translateY(-1.75rem);
}

.trust-item,
.mini-card,
.service-card,
.info-card {
  padding: 1.2rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(238, 247, 247, 0.95) 100%
  );
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header h2,
.section-copy h2,
.location-copy h2,
.contact-panel h2 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-grid,
.location-grid,
.contact-shell {
  display: grid;
  gap: 1.4rem;
}

.about-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.section-copy p,
.location-copy p,
.contact-panel p {
  max-width: 60ch;
}

.section-copy,
.about-cards,
.location-copy,
.contact-panel,
.contact-form {
  min-width: 0;
}

.about-cards {
  display: grid;
  gap: 1rem;
}

.mini-kicker {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-card h3,
.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: grid;
  gap: 0.35rem;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.26);
  box-shadow: 0 22px 40px rgba(20, 35, 44, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.75rem;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-soft), #f0faf9);
  color: var(--brand-deep);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
}

.service-card ul {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
}

.service-card li {
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.location-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.info-stack {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0 1.3rem;
}
.map-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(215, 226, 230, 0.94);
  box-shadow: var(--shadow);
  /* AÃ±adido: asegura que el contenedor use flex para eliminar espacios de lÃ­nea */
  display: flex;
  height: 100%;
}

.map-wrap iframe {
  width: 100%;
  /* Cambio: de min-height a height 100% para que llene el contenedor */
  height: 100%;
  min-height: 430px; /* Mantenlo solo como base mÃ­nima */
  border: 0;
  display: block;
}

.section-dark {
  position: relative;
  background:
    radial-gradient(
      circle at top right,
      rgba(246, 189, 90, 0.18),
      transparent 28%
    ),
    linear-gradient(145deg, #0d1c24 0%, #143641 100%);
  color: #ffffff;
}

.section-dark .eyebrow {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #d8f7f1;
}

.contact-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.contact-panel {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0 1.1rem;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.socials-todo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #eaf4f2;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
  padding: 1.4rem;
  color: var(--ink);
  background: var(--paper);
}

.contact-form label {
  font-size: 0.94rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f9fbfb;
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
  transform: translateY(-1px);
}

.form-note {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.footer {
  background: #0c151a;
  color: #dbe5e8;
  padding: 1.4rem 0 2rem;
}

.footer-content,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a,
.footer a {
  color: #dbe5e8;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #18b85a);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 20px 28px rgba(37, 211, 102, 0.24);
  animation: pulse 2.5s infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal[data-reveal="scale"] {
  transform: translateY(28px) scale(0.96);
}

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

.policy-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(15, 118, 110, 0.12),
      transparent 30%
    ),
    var(--bg);
}

.policy-card {
  max-width: 860px;
  margin-inline: auto;
  padding: 2rem;
}

.policy-card h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.policy-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.34);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .location-grid,
  .contact-shell,
  .preview-body {
    grid-template-columns: 1fr;
  }

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

  .hero-proof,
  .service-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .preview-side {
    order: 2;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(20, 35, 44, 0.12);
  }

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

  .menu a {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .nav {
    top: 0.75rem;
    gap: 0.6rem;
    padding: 0.8rem 0.9rem;
  }

  .brand {
    gap: 0.65rem;
    min-width: 0;
  }

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

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    flex-shrink: 0;
    padding: 0.55rem 0.82rem;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero-grid {
    gap: 2rem;
    padding-top: 1.8rem;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.18rem, 12vw, 3.6rem);
  }

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

  .metric-row,
  .order-summary {
    grid-template-columns: 1fr;
  }

  .floating-pill {
    position: static;
    margin-top: 0.85rem;
  }

  .hero-visual {
    display: grid;
  }

  .preview-card {
    padding: 0.9rem;
  }

  .contact-panel,
  .contact-form,
  .policy-card {
    padding: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Contenedor de redes sociales */
.social-links {
  margin-top: 1.9rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.social-links strong {
  display: block;
  margin-bottom: 0.95rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(233, 243, 248, 0.94);
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  min-height: 44px;
  padding: 0.62rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f6fbff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 18px rgba(7, 15, 20, 0.22);
}

.social-icons a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.social-icons .linkedin:hover {
  color: #8fd4ff;
}

.social-icons .instagram:hover {
  color: #ffb5da;
}

.social-icons .facebook:hover {
  color: #9cc8ff;
}

.social-icons .github:hover {
  color: #d9d6ff;
}

.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  opacity: 1;
  border-radius: 4px;
}

.social-icons a:hover .social-icon {
  opacity: 1;
}

@media (max-width: 560px) {
  .social-icons {
    grid-template-columns: 1fr;
  }
}
