:root {
  --ink: #0b2545;
  --text: #2b2f33;
  --muted: #697386;
  --line: #d5dce3;
  --soft: #f4f7f9;
  --blue: #006ea6;
  --cyan: #2aafd6;
  --red: #b51f2d;
  --white: #ffffff;
  --max: 1160px;
  --page-pad: clamp(24px, 5vw, 56px);
  --section-pad: clamp(58px, 7vw, 84px);
  --radius: 8px;
  --shadow-line: 0 0 0 1px var(--line);
  --card-pad: clamp(24px, 3vw, 34px);
  --grid-gap: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  z-index: 10;
}

.nav {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 88px;
  padding: 16px var(--page-pad);
}

.logo {
  display: block;
  height: 42px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--muted);
  justify-content: flex-end;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.active {
  color: var(--ink);
  font-weight: 700;
}

.nav-links .button.active {
  color: var(--white);
}

.button {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 42px;
  min-width: 160px;
  padding: 10px 18px;
  text-align: center;
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
}

.hero {
  border-bottom: 1px solid var(--line);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(62px, 7vw, 92px) var(--page-pad);
  text-align: center;
}

.hero-layout {
  display: block;
  margin: 0 auto;
  max-width: 920px;
}

.hero-card {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 10px;
  padding: 24px;
}

.hero-card span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #dbe8f0;
  padding-bottom: 8px;
}

.hero-card strong {
  color: var(--white);
  display: block;
  font-size: 20px;
  line-height: 1.18;
  margin-top: 8px;
}

.hero.compact {
  padding-bottom: var(--section-pad);
  padding-top: var(--section-pad);
}

.home-identity {
  border-bottom: 0;
  padding-bottom: 28px;
  text-align: center;
}

.home-identity h1 {
  font-size: clamp(58px, 7.4vw, 102px);
  line-height: 0.95;
  margin: 0 auto;
}

.home-identity .hero-kicker-line {
  font-size: 0.72em;
}

.home-identity .eyebrow {
  color: var(--blue);
  font-size: clamp(24px, 3vw, 42px);
  margin: 24px 0 18px;
}

.home-identity .laseda-mark {
  height: clamp(64px, 7vw, 98px);
  margin: 0 auto;
}

.identity-importadores {
  padding-top: var(--section-pad);
}

.identity-importadores .section-title {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
}

.home-quiz {
  display: grid;
  gap: 12px;
  margin: 34px auto 0;
  max-width: 760px;
}

.home-quiz p {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  margin: 0;
  padding: 14px 24px;
  text-align: center;
}

.home-quiz .quiz-note {
  border: 0;
  border-radius: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  padding: 8px 12px 0;
}

.operational-entry {
  color: var(--body);
  display: grid;
  gap: 10px;
  margin: 30px 0 26px;
  max-width: 940px;
}

.operational-entry p {
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

.operational-entry strong {
  color: var(--blue);
  font-weight: 900;
}

.home-operation-layout {
  align-items: center;
  display: grid;
  gap: clamp(24px, 4vw, 46px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  margin-top: 34px;
}

.home-operation-layout .operational-entry {
  margin: 0 0 26px;
}

.home-operation-layout .hero-proof {
  margin-left: 0;
  margin-right: 0;
}

.home-operation-photo {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
}

.home-operation-photo img {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.eyebrow {
  color: var(--blue);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1 {
  color: var(--ink);
  font-size: clamp(50px, 6.8vw, 92px);
  line-height: 0.98;
  margin: 0 auto;
  max-width: 1100px;
  text-wrap: balance;
}

.headline-line {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  color: var(--text);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.28;
  margin: 30px auto 0;
  max-width: 820px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 30px auto 0;
  max-width: 680px;
}

.proof-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  padding: 7px 12px;
  text-align: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.experience-cta {
  justify-content: center;
}

.experience-cta .button {
  font-size: 16px;
  min-height: 48px;
  padding: 12px 22px;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: var(--section-pad) var(--page-pad);
  scroll-margin-top: 90px;
}

.section.alt {
  background: var(--soft);
  max-width: none;
}

.section.alt > .inner {
  margin: 0 auto;
  max-width: var(--max);
}

.section-title {
  color: var(--ink);
  font-size: clamp(34px, 4.3vw, 60px);
  line-height: 1.04;
  margin: 0 0 14px;
  text-wrap: balance;
}

.section-lead {
  color: var(--text);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.34;
  margin: 0;
  max-width: 860px;
}

.antistress-lead {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  max-width: 1040px;
}

.wisdom-quote {
  border-left: 6px solid var(--blue);
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  margin-top: 34px;
  max-width: 980px;
  padding: 8px 0 8px 28px;
}

.experience-gallery {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 920px;
}

.experience-gallery figure {
  margin: 0;
}

.experience-gallery img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow-line);
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.experience-gallery figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
}

.fair-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}

.experience-note {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  margin: 30px auto 0;
  max-width: 680px;
  text-align: center;
}

.alert-band {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  margin: 46px auto 0;
  max-width: 100%;
  padding: clamp(26px, 3vw, 38px);
}

.alert-band h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  margin: 0 0 10px;
}

.alert-band p {
  margin: 0;
  max-width: 850px;
}

.stagger-text {
  display: grid;
  gap: 10px;
}

.stagger-text span {
  display: block;
}

.stagger-text span:nth-child(2) {
  text-align: center;
}

.stagger-text span:nth-child(3) {
  text-align: right;
}

.control-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
}

.control-item {
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
  padding: 14px;
}

.method-strip {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
  padding: 18px;
}

.method-step {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  min-height: 36px;
  overflow-wrap: anywhere;
  padding: 8px 10px;
}

.method-arrow {
  color: var(--blue);
  font-weight: 700;
}

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

.benefit-list li {
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 1.6vw, 22px);
  padding: 16px 0;
}

.split {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}

.plain-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--card-pad);
  width: 100%;
}

.plain-panel h3 {
  color: var(--ink);
  font-size: 22px;
  margin: 0 0 10px;
}

.plain-panel p {
  margin: 0 0 16px;
}

.plain-list {
  margin: 0;
  padding-left: 20px;
}

.plain-list li {
  margin-bottom: 10px;
}

.family-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.family-card {
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 190px;
  padding: var(--card-pad);
}

.family-icon {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 13px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
}

.family-card h3 {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  margin: 0;
}

.family-card p {
  font-size: 18px;
  line-height: 1.42;
  margin: 0;
}

.family-lead {
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.18;
  margin-top: 30px;
}

.case-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.case-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: var(--card-pad);
}

.case-card h3 {
  color: var(--ink);
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.12;
  margin: 0 0 10px;
  text-wrap: balance;
}

.case-card p {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.42;
  margin: 0;
}

.case-card p + p {
  margin-top: 12px;
}

.case-card strong {
  color: var(--ink);
}

.translation-card {
  background: var(--ink);
  color: var(--white);
  grid-column: 1 / -1;
  min-height: auto;
}

.translation-card h3,
.translation-card p {
  color: var(--white);
}

.contact-paths {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.contact-paths .case-card {
  min-height: 100%;
}

.contact-route {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: auto;
  padding: 18px;
}

.contact-route strong {
  display: block;
  margin-bottom: 4px;
}

.contact-route span {
  color: var(--ink);
  display: block;
  font-weight: 700;
}

.compact-cta {
  justify-content: center;
  margin-top: auto;
  padding-top: 24px;
}

.contact-flow-grid {
  align-items: stretch;
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.contact-flow {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: var(--card-pad);
}

.contact-flow h3 {
  align-self: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  margin: 0 0 34px;
  min-width: min(100%, 430px);
  padding: 18px 34px;
  text-align: center;
}

.flow-stack {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-capsule {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.18;
  padding: 16px 24px;
  text-align: center;
  width: 100%;
}

.flow-final {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.flow-arrow {
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 0;
}

.flow-decision {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.flow-decision .flow-capsule {
  align-items: center;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
}

.flow-decision strong {
  color: inherit;
  display: block;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.flow-decision span {
  display: block;
  font-size: clamp(16px, 1.4vw, 20px);
  margin-top: 6px;
}

.team-grid {
  display: grid;
  gap: 28px;
  margin-top: 32px;
}

.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 34px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: var(--card-pad);
}

.team-card h3 {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 16px;
}

.team-card p {
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  max-width: 620px;
}

.team-quote {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 18px !important;
}

.team-specialty {
  color: var(--blue);
  font-size: 15px !important;
  font-weight: 700;
  line-height: 1.35 !important;
  margin-bottom: 18px !important;
  max-width: 560px !important;
  text-transform: uppercase;
}

.team-timeline {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
}

.team-timeline p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
}

.team-timeline strong {
  color: var(--ink);
}

.team-card-photo {
  align-items: center;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
}

.team-card-photo:nth-child(even) img {
  order: 2;
}

.team-card-photo img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  box-shadow: var(--shadow-line);
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-photo-cristina {
  object-position: 70% 18%;
}

.contact-band {
  align-items: center;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 30px;
}

.trust-band {
  border: 1px solid var(--line);
  border-left: 6px solid var(--blue);
  border-radius: var(--radius);
  display: grid;
  gap: 28px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: var(--card-pad);
  width: 100%;
}

.trust-band h2 {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.12;
  margin: 0;
}

.trust-band p:last-child {
  font-size: 18px;
  margin: 0;
}

.contact-band h2 {
  font-size: 30px;
  margin: 0 0 10px;
}

.contact-band p {
  margin: 0;
}

.contact-lines {
  color: #dbe8f0;
  font-size: 15px;
}

.steps-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--card-pad);
}

.step-card strong {
  color: var(--blue);
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.step-card h3 {
  color: var(--ink);
  font-size: 20px;
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
}

.process {
  margin-top: 34px;
  max-width: none;
}

.process-family {
  border-bottom: 1px solid var(--line);
  margin: 34px 0 18px;
  padding-bottom: 14px;
}

.process-family:first-child {
  margin-top: 0;
}

.process-family h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  margin: 0;
}

.process-row {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: 280px 1fr;
  min-height: 58px;
  position: relative;
}

.process-row::before {
  background: var(--blue);
  content: "";
  height: 100%;
  left: 23px;
  position: absolute;
  top: 33px;
  width: 2px;
}

.process-row:last-child::before {
  display: none;
}

.process-row.family-end::before {
  display: none;
}

.process-title {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  align-self: start;
  min-height: 58px;
  padding: 12px 14px;
  position: relative;
  z-index: 1;
}

.process-number {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 13px;
  font-weight: 700;
  height: 28px;
  justify-content: center;
}

.process-title h3 {
  color: var(--ink);
  font-size: 21px;
  margin: 0;
}

.process-copy {
  min-width: 0;
  padding: 10px 0 30px;
}

.process-copy,
.process-copy li,
.process-copy p {
  font-size: 17px;
  line-height: 1.45;
}

.process-copy p {
  margin: 0 0 14px;
}

.process-copy ul {
  color: var(--text);
  columns: 2;
  margin: 0;
  overflow-wrap: anywhere;
  padding-left: 18px;
}

.process-warning {
  background: var(--soft);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  margin-top: 16px !important;
  padding: 12px 14px;
}

.final-note {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  margin-top: 40px;
  padding: 26px;
}

.final-note h2 {
  margin: 0 0 10px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  margin-top: 0;
  padding: 42px var(--page-pad);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 22px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
    text-align: left;
  }

  .hero {
    text-align: left;
  }

  .home-identity,
  .home-identity h1 {
    text-align: center;
  }

  .headline-line {
    white-space: normal;
  }

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

  .hero,
  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .control-grid,
  .benefit-list,
  .family-grid,
  .case-grid,
  .case-grid.three,
  .contact-flow-grid,
  .steps-grid,
  .split,
  .experience-gallery,
  .fair-gallery,
  .team-grid,
  .team-card-photo,
  .contact-band,
  .hero-layout,
  .home-operation-layout,
  .trust-band,
  .process-row {
    grid-template-columns: 1fr;
  }

  .team-card {
    gap: 20px;
    padding: 22px;
  }

  .team-card-photo:nth-child(even) img {
    order: 0;
  }

  .contact-flow {
    min-height: auto;
  }

  .stagger-text span,
  .stagger-text span:nth-child(2),
  .stagger-text span:nth-child(3) {
    text-align: left;
  }

  .process-row::before {
    left: 23px;
  }

  .process-copy {
    padding-left: 40px;
  }

  .process-copy ul {
    columns: 1;
  }
}

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

  .button {
    width: 100%;
  }

  .compact-cta {
    justify-content: stretch;
  }
}
