:root {
  --ink: #102033;
  --muted: #5f7285;
  --navy: #10243d;
  --blue: #1378bd;
  --cyan: #16bfd0;
  --green: #1f9f68;
  --amber: #f2aa25;
  --paper: #f6fafc;
  --white: #ffffff;
  --line: #d8e6ef;
  --shadow: 0 18px 48px rgba(16, 32, 51, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 252, 0.94);
  border-bottom: 1px solid rgba(216, 230, 239, 0.86);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.02;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3f5266;
  font-size: 0.94rem;
  font-weight: 700;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(31, 159, 104, 0.22);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(31, 159, 104, 0.26);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.button-secondary.dark {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 110px 0 72px;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(9, 23, 38, 0.98) 0%, rgba(9, 23, 38, 0.9) 46%, rgba(9, 23, 38, 0.5) 100%),
    url("assets/hero-vestuario.jpg");
  background-position: right center;
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 410px;
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.3vw, 3.75rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.23rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.hero-proof span {
  min-height: 96px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 1.36rem;
}

.lead-form,
.contact-panel {
  background: var(--white);
  border: 1px solid rgba(216, 230, 239, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--ink);
}

.lead-form h2 {
  margin-bottom: 4px;
  font-size: 1.7rem;
  line-height: 1.12;
}

.form-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #33485c;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  color: var(--ink);
  background: #f7fbfd;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  font: inherit;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

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

.pain-section,
.section,
.visual-section,
.faq-section,
.final-cta {
  padding: 88px 0;
}

.pain-section {
  background: var(--white);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.pain-grid {
  display: grid;
  gap: 14px;
}

.pain-grid article,
.feature-card,
.showcase-grid article,
.steps-list li,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pain-grid article {
  padding: 22px;
}

.pain-grid strong,
.benefit-grid strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.02rem;
}

.pain-grid p,
.feature-card p,
.showcase-grid p,
.steps-list p,
.faq-list p,
.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-band {
  padding: 34px 0;
  color: var(--white);
  background: var(--navy);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid div {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.benefit-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--amber);
  font-weight: 900;
}

.benefit-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 820px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.section-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card {
  padding: 24px;
  min-height: 210px;
}

.feature-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.visual-section {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.showcase-grid article {
  overflow: hidden;
}

.showcase-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #087de8;
  border-bottom: 1px solid var(--line);
}

.showcase-grid h3,
.showcase-grid p {
  padding-right: 18px;
  padding-left: 18px;
}

.showcase-grid h3 {
  margin-top: 18px;
}

.showcase-grid p {
  margin-bottom: 20px;
}

.contrast-section {
  color: var(--white);
  background: #16283f;
}

.contrast-section .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.implementation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: start;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  min-height: 208px;
  padding: 22px;
  color: var(--ink);
}

.steps-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.steps-list strong {
  display: block;
  margin-bottom: 8px;
}

.local-section {
  background: #eef6fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
}

.contact-panel {
  padding: 26px;
}

.contact-panel img {
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
  object-fit: contain;
}

.contact-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-panel div {
  display: grid;
  gap: 3px;
}

.contact-panel dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0;
  font-weight: 800;
}

.contact-panel a {
  color: var(--blue);
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 48px;
}

.faq-grid h2 {
  font-size: clamp(2.1rem, 3.5vw, 3rem);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.final-cta {
  color: var(--white);
  background: #0f2034;
  text-align: center;
}

.final-inner {
  max-width: 800px;
}

.final-inner h2 {
  margin-bottom: 26px;
}

.site-footer {
  padding: 34px 0;
  background: #081526;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 6px;
  padding: 0 20px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 34px rgba(31, 159, 104, 0.34);
  font-weight: 900;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 82px 0 56px;
  }

  .hero-grid,
  .split-section,
  .implementation-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .lead-form,
  .contact-panel {
    max-width: 560px;
  }

  .hero-proof,
  .benefit-grid,
  .feature-grid,
  .showcase-grid,
  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 58px;
    background-position: center right;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

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

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-proof,
  .benefit-grid,
  .feature-grid,
  .showcase-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 22px;
  }

  .pain-section,
  .section,
  .visual-section,
  .faq-section,
  .final-cta {
    padding: 64px 0;
  }

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

  .site-footer p {
    text-align: left;
  }

  .floating-cta {
    display: none;
  }
}
