:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --accent: #1d4ed8;
  --accent-600: #1e40af;
  --accent-ink: #0b1b4a;
  --radius: 18px;
  --container: 1240px;
  --header-h: 82px;
  --detail: #f97316;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

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

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

section {
  scroll-margin-top: 90px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--text);
  color: #ffffff;
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 14px;
}

@media (max-width: 980px) {
  :root {
    --header-h: 142px;
  }

  .header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 10px 0;
    gap: 10px;
  }
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 980px) {
  .brand {
    justify-self: center;
  }
}

.brand__logo {
  height: 44px;
  width: auto;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav__link {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: color 160ms ease, background-color 160ms ease,
    transform 160ms ease;
}

.nav__link:hover {
  color: var(--text);
  background: var(--surface-2);
  transform: translateY(-1px);
}

.header__cta {
  justify-self: end;
}

@media (max-width: 980px) {
  .header__cta {
    justify-self: center;
    width: min(320px, 100%);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease,
    border-color 140ms ease;
  user-select: none;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  border-color: color-mix(in srgb, var(--accent) 60%, var(--border));
  color: #ffffff;
}

.button--primary:hover {
  border-color: color-mix(in srgb, var(--accent-600) 70%, var(--border));
}

.button--secondary {
  background: transparent;
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  color: var(--text);
}

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

.button:active {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--detail) 55%, #ffffff);
  outline-offset: 3px;
  border-radius: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  padding: 28px 0 46px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -200px -200px auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--accent) 18%, transparent),
    transparent
  );
  filter: blur(2px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -240px -240px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--detail) 14%, transparent),
    transparent
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}

.hero__copy {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.badge {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.hero__logo {
  width: min(210px, 72%);
  height: auto;
  margin: 6px auto 6px;
}

.hero__title {
  margin: 0 0 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero__subtitle {
  margin: 0 0 14px;
  max-width: 64ch;
  font-size: 16px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 14px;
}

.hero__panel--inline {
  margin-top: 12px;
}

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

@media (max-width: 720px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease, background-color 180ms ease;
}

.stat span {
  transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.stat:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: #ffffff;
}

.stat:hover .stat__value {
  transform: translateY(-1px);
}

.stat:hover .stat__label {
  color: var(--muted);
}

.stat__value {
  display: block;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stat__label {
  display: block;
  font-size: 13px;
  color: var(--muted-2);
}

.panel {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.panel__subtitle {
  max-width: 62ch;
}

@media (max-height: 760px) {
  .hero {
    padding: 18px 0 32px;
  }

  .hero__logo {
    width: min(190px, 66%);
    margin: 4px auto 6px;
  }

  .hero__title {
    font-size: clamp(28px, 3vw, 40px);
  }

  .hero__stats {
    margin-top: 10px;
  }

  .hero__panel--inline {
    margin-top: 10px;
  }

  .panel {
    padding: 12px;
  }

  .panel__subtitle {
    display: none;
  }

  .hero__panel--inline .panel__links {
    grid-template-columns: 1fr;
  }

  .scroll-hint {
    display: none;
  }
}

.panel__head {
  margin-bottom: 14px;
}

.panel__title {
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.panel__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.panel__links {
  display: grid;
  gap: 10px;
}

.hero__panel--inline .panel__links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 820px) {
  .hero__panel--inline .panel__links {
    grid-template-columns: 1fr;
  }
}

.panel-link {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  background: var(--surface);
  display: grid;
  gap: 4px;
  transition: border-color 140ms ease, background-color 140ms ease,
    transform 140ms ease;
}

.panel-link span {
  transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.panel-link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
  background: var(--surface-2);
}

.panel-link:hover .panel-link__k {
  color: color-mix(in srgb, var(--accent-ink) 74%, var(--muted));
}

.panel-link:hover .panel-link__v {
  transform: translateX(2px);
  color: var(--accent-600);
}

.panel-link__k {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-link__v {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__header {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.section__header--center {
  text-align: center;
  justify-items: center;
}

.section__kicker {
  margin: 0;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 9%, #ffffff);
  color: var(--accent-ink);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.section__title {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.about {
  gap: 22px;
  display: grid;
}

.about__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}

@media (max-width: 980px) {
  .about__top {
    grid-template-columns: 1fr;
  }
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: #e5e7eb;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: #6b7280;
  font-weight: 800;
}

.about__image {
  width: 100%;
  height: 100%;
}

.about__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #ffffff;
  height: clamp(220px, 26vw, 340px);
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__media--plain {
  border: 0;
  box-shadow: none;
  background: transparent;
  height: auto;
  overflow: visible;
  display: grid;
  place-items: center;
  padding: 0;
}

.about__media--plain img {
  width: min(660px, 100%);
  height: auto;
  max-height: 380px;
}

.about__media--stack {
  height: auto;
  background: transparent;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.about__media--stack img {
  height: auto;
  width: 100%;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #ffffff;
  object-fit: contain;
}

.about__intro {
  display: grid;
  gap: 8px;
}

.about__side {
  display: grid;
  gap: 14px;
  align-items: start;
}

.about__body {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 14px;
}

.about__motto {
  margin: 6px 0 0;
  font-weight: 900;
  color: var(--text);
}

.about__points {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow);
}

.about__title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.about__text {
  margin: 0 0 12px;
  color: var(--muted);
}

.about__box {
  border: 1px solid var(--border);
  background: #fbfdff;
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: var(--shadow);
}

.about__box-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.about__mini {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.about__box-text {
  margin: 10px 0 0;
  color: var(--muted);
}

.about__notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 980px) {
  .about__notes {
    grid-template-columns: 1fr;
  }
}

.note {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 14px;
  box-shadow: var(--shadow);
}

.note__text {
  margin: 0;
  color: var(--muted);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--detail) 18%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--detail) 42%, var(--border));
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.cards {
  display: grid;
  gap: 16px;
}

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

@media (max-width: 980px) {
  .cards--3 {
    grid-template-columns: 1fr;
  }
}

.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease,
    border-color 200ms ease, background-color 200ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 248px;
}

.card--soft {
  background: #fbfbfd;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 11%, #ffffff),
    #ffffff
  );
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--border));
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: var(--accent-600);
  transition: transform 200ms ease, background-color 200ms ease,
    border-color 200ms ease, box-shadow 200ms ease;
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 46%, var(--border));
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.card:hover .card__icon {
  transform: translateY(-2px) rotate(-2deg);
  border-color: color-mix(in srgb, var(--accent) 52%, var(--border));
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent) 18%, transparent);
}

.card:hover .card__title {
  color: #0b1220;
}

.card__title {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card__text {
  margin: 0;
  color: var(--muted);
  flex: 1;
  display: grid;
  align-content: start;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.contact-card__head {
  margin-bottom: 14px;
}

.contact-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.contact-card__subtitle {
  margin: 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 12px 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease, background-color 180ms ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 46%, var(--border));
  background: var(--surface-2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.contact-item--static:hover {
  transform: none;
  border-color: var(--border);
  background: var(--surface);
  box-shadow: none;
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 9%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  color: var(--accent-600);
  flex: 0 0 auto;
}

.contact-item__icon svg {
  width: 22px;
  height: 22px;
}

.contact-item__icon--whatsapp {
  background: #25d366;
  border-color: rgba(0, 0, 0, 0.06);
  color: #ffffff;
}

.contact-item__text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-item__k {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.contact-item__v {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
}

.map {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.map iframe {
  display: block;
  width: 100%;
  height: 420px;
}

.footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.86);
}

.footer__top {
  padding: 34px 0 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  display: grid;
  gap: 10px;
}

.footer__logo {
  height: 34px;
  width: auto;
  filter: none;
  opacity: 1;
}

.footer__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 44ch;
  font-size: 14px;
}

.footer__nav {
  display: grid;
  gap: 8px;
  justify-items: center;
}

@media (max-width: 980px) {
  .footer__nav {
    justify-items: start;
  }
}

.footer__title {
  margin: 0 0 6px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.footer__link {
  color: rgba(255, 255, 255, 0.72);
  padding: 6px 8px;
  border-radius: 12px;
  transition: background-color 160ms ease, color 160ms ease,
    transform 160ms ease;
}

.footer__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.footer__social {
  display: grid;
  gap: 10px;
  justify-items: end;
}

@media (max-width: 980px) {
  .footer__social {
    justify-items: start;
  }
}

.footer__social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  transition: transform 160ms ease, background-color 160ms ease,
    border-color 160ms ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: color-mix(in srgb, var(--detail) 45%, transparent);
}

.social-btn--whatsapp {
  background: #25d366;
  border-color: rgba(0, 0, 0, 0.08);
  color: #ffffff;
}

.social-btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: rgba(0, 0, 0, 0.12);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 60;
}

.fab {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease,
    background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fab svg {
  width: 22px;
  height: 22px;
}

.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.28);
}

.fab--top {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

body.is-scrolled .fab--top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab--whatsapp {
  background: #25d366;
  border-color: rgba(0, 0, 0, 0.06);
  color: #ffffff;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 34px;
  height: 54px;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: start center;
  padding-top: 10px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.scroll-hint:hover {
  transform: translateX(-50%) translateY(-2px);
  border-color: color-mix(in srgb, var(--detail) 40%, var(--border));
}

.scroll-hint__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--detail) 78%, #ffffff);
  animation: scrollDot 1100ms ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 0.85;
  }
  60% {
    transform: translateY(18px);
    opacity: 0.35;
  }
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition-duration: 0ms !important;
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
  }
}
