/* Te Ayudo — Página en construcción / mejora de experiencia */

:root {
  --primary: #1a948e;
  --primary-dark: #147570;
  --primary-light: #e8f6f5;
  --primary-glow: rgba(26, 148, 142, 0.28);
  --dark: #0f1a24;
  --dark-soft: #1e2d3d;
  --gray-500: #6b7c8c;
  --gray-600: #5a6a7a;
  --gray-line: #e7eef0;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(15, 26, 36, 0.1);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--dark-soft);
  background: #f5faf9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* --- Fondo --- */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 45% at 15% 8%, rgba(26, 148, 142, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 85%, rgba(26, 148, 142, 0.12), transparent 50%),
    linear-gradient(165deg, #f2f9f8 0%, #ffffff 48%, #f6fbfa 100%);
}

.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.5;
  animation: float 9s ease-in-out infinite;
}

.bg__orb--1 {
  width: min(320px, 55vw);
  height: min(320px, 55vw);
  top: 6%;
  right: 4%;
  background: var(--primary-glow);
}

.bg__orb--2 {
  width: min(240px, 45vw);
  height: min(240px, 45vw);
  bottom: 8%;
  left: 3%;
  background: rgba(26, 148, 142, 0.16);
  animation-delay: -3.5s;
}

.bg__orb--3 {
  width: 160px;
  height: 160px;
  top: 45%;
  left: 55%;
  background: rgba(34, 181, 173, 0.12);
  animation-delay: -6s;
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 148, 142, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 148, 142, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black, transparent);
}

/* --- Layout --- */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 1.5rem;
  gap: 1.75rem;
}

.brand {
  animation: fadeUp 0.65s ease both;
}

.brand__logo {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 24px var(--primary-glow));
}

/* --- Panel principal --- */
.panel {
  width: min(100%, 640px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(26, 148, 142, 0.12);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.35rem);
  box-shadow: var(--shadow);
  animation: fadeUp 0.75s ease 0.08s both;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 1.15rem;
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(26, 148, 142, 0.45);
  animation: pulse 1.8s ease-out infinite;
}

.panel__title {
  font-size: clamp(1.45rem, 4.2vw, 2.05rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--dark);
  letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
  max-width: 18ch;
}

.panel__lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* --- Highlights --- */
.highlights {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: #f7fbfb;
  border: 1px solid var(--gray-line);
  border-radius: 14px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.highlights li:hover {
  border-color: rgba(26, 148, 142, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 26, 36, 0.05);
}

.highlights__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
}

.highlights__icon svg {
  width: 18px;
  height: 18px;
}

.highlights strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.highlights span:last-child {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* --- Progress --- */
.progress-block {
  margin-bottom: 1.6rem;
}

.progress-block__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.55rem;
}

.progress {
  height: 10px;
  background: #e5f2f1;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.progress__bar {
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #22b5ad 60%, #4dcdc6);
  background-size: 200% 100%;
  box-shadow: 0 0 14px var(--primary-glow);
  animation: shimmer 2.6s ease-in-out infinite;
}

.progress-block__note {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* --- Acciones de contacto --- */
.actions {
  padding-top: 1.4rem;
  border-top: 1px solid var(--gray-line);
}

.actions__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.9rem;
}

.actions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.action {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: 14px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.action:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px var(--primary-glow);
}

.action:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.action__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 0.45rem;
  transition: background var(--transition), color var(--transition);
}

.action:hover .action__icon {
  background: var(--primary);
  color: var(--white);
}

.action__icon svg {
  width: 16px;
  height: 16px;
}

.action__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.action__value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  word-break: break-word;
}

.actions__location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.95rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.actions__location svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
}

.page__footer {
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-align: center;
  animation: fadeUp 0.75s ease 0.16s both;
}

/* --- Animaciones --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes shimmer {
  0% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(26, 148, 142, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(26, 148, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 148, 142, 0); }
}

@media (max-width: 560px) {
  .brand__logo {
    height: 46px;
  }

  .panel {
    border-radius: 18px;
  }

  .panel__title {
    max-width: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  .bg__orb,
  .progress__bar,
  .status__dot,
  .brand,
  .panel,
  .page__footer {
    animation: none;
  }

  .brand,
  .panel,
  .page__footer {
    opacity: 1;
    transform: none;
  }

  .highlights li:hover,
  .action:hover {
    transform: none;
  }
}
