/*
 * VIRUCA — Argos Landing (UI02)
 * Layout según mockup de producto · Poppins + Font Awesome
 */

:root {
  --argos-blue: #0063e5;
  --argos-blue-dark: #004bbd;
  --argos-orange: #ff9e1a;
  --argos-cyan: #5fd4f5;
  --argos-gray: #f0f2f5;
  --argos-gray-text: #5a6168;
  --argos-text: #111213;
  --argos-white: #ffffff;
  --argos-green: #1de592;
  --argos-amber: #ffb020;
  --argos-red: #ff5252;
  --argos-radius: 20px;
  --argos-max: 1180px;
  --argos-font: 'Poppins', system-ui, sans-serif;
}

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

body.argos-landing {
  margin: 0;
  font-family: var(--argos-font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--argos-text);
  background: var(--argos-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

/* ---------- Marca Argos (sustituye Waze) ---------- */
.argos-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--argos-text);
}

.argos-brand i {
  font-size: 1.35rem;
  color: var(--argos-blue);
}

.argos-brand--hero {
  color: var(--argos-white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.argos-brand--hero i {
  color: var(--argos-white);
  opacity: 0.95;
}

.argos-brand--footer i {
  color: var(--argos-blue);
}

/* ---------- Top nav ---------- */
.argos-topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--argos-max);
  margin: 0 auto;
  padding: 16px clamp(16px, 3vw, 28px);
  background: var(--argos-white);
}

.argos-topnav__left,
.argos-topnav__right {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
}

.argos-topnav__left a {
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--argos-text);
}

.argos-topnav__left a:hover {
  color: var(--argos-blue);
}

.argos-topnav__download {
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--argos-text);
}

.argos-topnav__login {
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
  padding: 8px 18px;
  border: 2px solid var(--argos-text);
  border-radius: 999px;
}

.argos-topnav__login:hover {
  background: var(--argos-text);
  color: var(--argos-white);
}

.argos-topnav__logo img {
  height: 28px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .argos-topnav__left {
    width: 100%;
    justify-content: center;
  }

  .argos-topnav__right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ---------- Page shell ---------- */
.argos-page {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 16px);
  max-width: var(--argos-max);
  margin: 0 auto;
  padding: 0 clamp(12px, 2.5vw, 20px) clamp(24px, 4vw, 40px);
}

/* ---------- Buttons ---------- */
.argos-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.argos-btn--hero {
  background: var(--argos-white);
  color: var(--argos-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-top: clamp(20px, 3vw, 32px);
  padding: 14px 28px;
  font-size: 0.9375rem;
}

.argos-btn--card {
  background: var(--argos-white);
  color: var(--argos-text);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: auto;
  align-self: flex-start;
}

/* ---------- 1 · Hero ---------- */
.argos-hero {
  background: var(--argos-blue);
  border-radius: var(--argos-radius);
  overflow: hidden;
  color: var(--argos-white);
}

.argos-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px) 0;
}

.argos-hero__copy {
  padding-bottom: clamp(40px, 5vw, 64px);
  align-self: center;
}

.argos-hero__logo {
  width: clamp(170px, 26vw, 250px);
  height: auto;
  margin-bottom: clamp(12px, 1.8vw, 18px);
}

.argos-hero__copy h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.argos-hero__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.argos-hero__mockup {
  width: min(100%, 520px);
  height: auto;
  margin: 0;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

/* ---------- 2 · Risk cards ---------- */
.argos-risk {
  background: transparent;
  padding: 0;
  width: 100%;
}

.argos-risk__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
  width: 100%;
}

.argos-risk-card {
  background: var(--argos-gray);
  border-radius: var(--argos-radius);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: none;
  border: none;
}

.argos-risk-card h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.argos-risk-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--argos-gray-text);
  line-height: 1.6;
  flex: 1;
}

.argos-risk-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.argos-risk-card__icon--green {
  background: rgba(29, 229, 146, 0.2);
  color: #0a9e62;
}

.argos-risk-card__icon--amber {
  background: rgba(255, 176, 32, 0.22);
  color: #c97800;
}

.argos-risk-card__icon--red {
  background: rgba(255, 82, 82, 0.18);
  color: #d93030;
}

/* ---------- Split rows (3, 4, 5) ---------- */
.argos-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--argos-radius);
  overflow: hidden;
}

.argos-split--blue {
  background: var(--argos-blue);
  color: var(--argos-white);
}

/* Sección 3 · pasos + mockup alineado con dots */
.argos-split--steps {
  --argos-steps-top: 100px;
  align-items: start;
  overflow: hidden;
}

.argos-split--steps .argos-carousel {
  padding: var(--argos-steps-top) clamp(20px, 3.5vw, 36px) 10px;
}

.argos-split--steps .argos-carousel__dots {
  margin-bottom: 8px;
}

.argos-split--steps .argos-split__media--phone {
  padding: var(--argos-steps-top) clamp(20px, 3.5vw, 36px) 0;
  margin: 0;
  align-items: flex-start;
  justify-content: center;
  background: transparent;
  overflow: hidden;
  align-self: start;
}

.argos-split--steps .argos-split__media--phone img {
  width: clamp(190px, 30vw, 250px);
  height: auto;
  margin: 0 0 -48%;
  object-fit: contain;
  object-position: top center;
  transform: none;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.argos-split--steps .argos-step {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.argos-split--steps .argos-carousel--steps h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  max-width: 16ch;
  margin-bottom: 6px;
}

.argos-split--steps .argos-carousel--steps p {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  max-width: 34ch;
  line-height: 1.45;
  margin: 0;
}

/* Sección 4 · mapa — texto e imagen en bloques separados */
.argos-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.5vw, 16px);
  width: 100%;
}

.argos-map__copy {
  background: var(--argos-gray);
  border-radius: var(--argos-radius);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.argos-map__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.argos-map__copy p {
  margin: 0;
  color: var(--argos-gray-text);
  font-size: 0.95rem;
  max-width: 42ch;
  line-height: 1.65;
}

.argos-map__media {
  margin: 0;
  background: var(--argos-gray);
  border-radius: var(--argos-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.argos-map__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Sección 5 · testimonios — texto e imagen en bloques separados */
.argos-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.5vw, 16px);
  align-items: stretch;
  width: 100%;
}

.argos-quotes__carousel {
  background: var(--argos-blue);
  color: var(--argos-white);
  border-radius: var(--argos-radius);
  overflow: hidden;
}

.argos-quotes__media {
  margin: 0;
  border-radius: var(--argos-radius);
  overflow: hidden;
  display: flex;
  background: var(--argos-gray);
}

.argos-quotes__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(240px, 32vw, 360px);
  object-fit: cover;
  display: block;
}

.argos-split__copy {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.argos-split__copy--gray h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.argos-split__copy--gray p {
  margin: 0;
  color: var(--argos-gray-text);
  font-size: 0.95rem;
  max-width: 42ch;
  line-height: 1.65;
}

.argos-split__media {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--argos-white);
}

.argos-split__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.argos-split__media--phone {
  background: transparent;
  padding: 0;
}

.argos-split__media--phone img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
}

/* ---------- Carousels (sections 3 & 5) ---------- */
.argos-carousel {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.argos-carousel__track {
  display: grid;
}

.argos-carousel__panel {
  grid-area: 1 / 1;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
  margin: 0;
}

.argos-carousel__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.argos-carousel__dots {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.argos-carousel__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.argos-carousel__dots button.is-active {
  background: var(--argos-white);
  transform: scale(1.15);
}

.argos-step {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 0.875rem;
  opacity: 0.9;
}

.argos-carousel--steps h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.argos-carousel--steps p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.92;
  max-width: 38ch;
  line-height: 1.6;
}

.argos-quote {
  margin: 0 0 18px;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 28ch;
}

.argos-carousel--quotes cite {
  font-style: normal;
  font-size: 0.875rem;
  opacity: 0.85;
}

/* ---------- 6 · Voice ---------- */
.argos-voice {
  background: var(--argos-orange);
  border-radius: var(--argos-radius);
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 24px;
}

.argos-voice__label {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.argos-voice h2 {
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.argos-voice__assistants {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.argos-assistant {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--argos-white);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9375rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.argos-assistant i {
  font-size: 1.25rem;
}

/* ---------- 7 · Sources ---------- */
.argos-sources {
  background: var(--argos-gray);
  border-radius: var(--argos-radius);
  text-align: center;
  padding: clamp(32px, 5vw, 48px) 24px;
}

.argos-sources h2 {
  margin: 0 0 28px;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
}

.argos-sources__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px);
  justify-content: center;
  align-items: center;
}

.argos-source-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.argos-source-logo__img {
  height: clamp(48px, 8vw, 72px);
  width: auto;
  max-width: min(180px, 28vw);
  object-fit: contain;
  display: block;
}

/* ---------- 8 · CTA ---------- */
.argos-cta {
  background: var(--argos-blue);
  color: var(--argos-white);
  border-radius: var(--argos-radius);
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 24px;
}

.argos-cta__logo {
  margin-bottom: 12px;
}

.argos-cta__logo img {
  height: clamp(44px, 9vw, 64px);
  width: auto;
  display: block;
  margin: 0 auto;
}

.argos-cta h2 {
  margin: 0 0 24px;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--argos-white);
}

.argos-cta__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.argos-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--argos-text);
  color: var(--argos-white);
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.75rem;
}

.argos-store i {
  font-size: 1.35rem;
}

/* ---------- Footer ---------- */
.argos-footer {
  max-width: var(--argos-max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) clamp(16px, 3vw, 28px);
  background: var(--argos-white);
}

.argos-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}

.argos-footer__logo-link img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

.argos-footer__brand p {
  margin: 12px 0 16px;
  font-size: 0.8125rem;
  color: var(--argos-gray-text);
  max-width: 320px;
}

.argos-footer__social {
  display: flex;
  gap: 14px;
  font-size: 1.15rem;
}

.argos-footer__social a {
  color: var(--argos-gray-text);
  text-decoration: none;
}

.argos-footer__social a:hover {
  color: var(--argos-blue);
}

.argos-footer__col h4 {
  margin: 0 0 12px;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--argos-gray-text);
}

.argos-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.argos-footer__col li {
  margin-bottom: 8px;
}

.argos-footer__col a {
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--argos-text);
}

.argos-footer__col a:hover {
  color: var(--argos-blue);
}

.argos-footer__meta {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 0.75rem;
  color: var(--argos-gray-text);
}

.argos-footer__meta a {
  color: var(--argos-blue);
  font-weight: 700;
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .argos-hero__inner,
  .argos-split {
    grid-template-columns: 1fr;
  }

  .argos-hero__inner {
    padding-bottom: 0;
  }

  .argos-hero__copy {
    padding-bottom: clamp(24px, 4vw, 32px);
    text-align: center;
  }

  .argos-hero__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .argos-hero__copy h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .argos-hero__mockup {
    max-width: 420px;
  }

  .argos-risk__grid {
    grid-template-columns: 1fr;
  }

  .argos-quotes {
    grid-template-columns: 1fr;
  }

  .argos-map {
    grid-template-columns: 1fr;
  }

  .argos-split--steps .argos-split__media--phone img {
    margin-bottom: -42%;
  }

  .argos-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .argos-footer__grid {
    grid-template-columns: 1fr;
  }
}
