/* H&H Transportes — landing + paleta institucional (azul #01316B / amarelo #FEAC00) */

:root {
  /* Cores institucionais H&H */
  --brand-blue: #01316b;
  --brand-yellow: #feac00;
  --accent: #feac00;
  --accent-hover: #ffc83d;
  --accent-muted: #c98a00;
  --accent-soft: rgba(254, 172, 0, 0.2);
  --accent-glow: rgba(254, 172, 0, 0.45);
  --blue-soft: rgba(1, 49, 107, 0.35);
  --bg: #050a14;
  --bg-elevated: #0a1626;
  --surface: #0f1f38;
  --surface-2: #152845;
  --text: #f4f5f7;
  --text-muted: #a8b4c8;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(254, 172, 0, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 8px 32px rgba(254, 172, 0, 0.22);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --header-h: 84px;
  --max: 1220px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Tema claro (conteúdo abaixo do hero) */
  --page-bg: #ffffff;
  --page-text: #0f172a;
  --page-text-muted: #475569;
  --page-surface: #f1f5f9;
  --page-border: rgba(1, 49, 107, 0.12);
  --shadow-on-light: 0 2px 12px rgba(15, 23, 42, 0.06);
  --shadow-md-light: 0 14px 40px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--page-text);
  background-color: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main#conteudo {
  background: var(--page-bg);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--brand-yellow);
  color: var(--brand-blue);
  font-weight: 700;
  z-index: 10000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ——— Top bar ——— */
.topbar {
  display: none;
  background: #012859;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 900px) {
  .topbar {
    display: block;
  }
}

.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.topbar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.topbar__list a {
  color: rgba(255, 255, 255, 0.9);
}

.topbar__list a:hover {
  color: var(--brand-yellow);
}

.topbar__social {
  display: flex;
  gap: 0.75rem;
}

.topbar__social a {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  opacity: 0.9;
}

.topbar__social a:hover {
  color: var(--brand-yellow);
  opacity: 1;
}

.topbar__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ——— Header ——— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #01316b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo {
  height: 62px;
  width: auto;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s var(--ease-out), background 0.2s;
}

.nav-toggle:hover {
  border-color: var(--brand-yellow);
  background: rgba(254, 172, 0, 0.2);
  color: #fff;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
}

.nav {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: #061f40;
  padding: 1.5rem;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav.is-open {
  display: block;
}

@media (min-width: 960px) {
  .nav {
    display: flex;
    position: static;
    inset: auto;
    padding: 0;
    overflow: visible;
    border: none;
    background: transparent;
    align-items: center;
    gap: 0.35rem;
  }
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 960px) {
  .nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.1rem 0.2rem;
  }
}

.nav__list a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s var(--ease-out);
}

.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 960px) {
  .nav__list a {
    color: rgba(255, 255, 255, 0.88);
  }

  .nav__list a:hover,
  .nav__list a[aria-current="page"] {
    color: #fff;
    background: rgba(254, 172, 0, 0.2);
  }
}

.header__cta {
  display: none;
}

@media (min-width: 960px) {
  .header__cta {
    display: inline-flex;
    margin-left: auto;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s, border-color 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: var(--brand-blue);
  box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--brand-blue);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(254, 172, 0, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f4f5f7;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  border-color: rgba(254, 172, 0, 0.65);
  color: #ffffff;
  background: rgba(254, 172, 0, 0.15);
}

.section .btn--ghost {
  background: rgba(1, 49, 107, 0.06);
  color: var(--brand-blue);
  border-color: rgba(1, 49, 107, 0.22);
}

.section .btn--ghost:hover {
  border-color: var(--accent);
  color: var(--brand-blue);
  background: rgba(254, 172, 0, 0.14);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-row--lg {
  margin-top: 1.5rem;
}

/* traço de destaque (hero home + page-hero serviços) */
.hero__accent-line {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  margin-bottom: 1.5rem;
  box-shadow: 0 0 24px var(--accent-glow);
}

/* ——— Section common ——— */
.section {
  padding: 5.5rem 1.5rem;
  position: relative;
}

.section--tight {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section--surface {
  background: var(--page-bg);
  border-block: 1px solid var(--page-border);
}

.section--alt {
  background: var(--page-bg);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__text {
  margin: 0 0 1.75rem;
  color: var(--page-text-muted);
  max-width: 52ch;
  font-size: 1.05rem;
}

.divider {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 4px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(254, 172, 0, 0.35);
}

/* ——— Certificações (todas as páginas que usam .certs-grid) ——— */
.certs-grid {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.1rem);
  width: 100%;
  max-width: 100%;
  background: var(--page-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--page-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.certs-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 102px;
  min-width: 0;
  padding: 1rem 0.85rem;
  background: var(--page-bg);
  border: 1px solid var(--page-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-on-light);
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s,
    border-color 0.2s;
}

.certs-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md-light);
  border-color: rgba(1, 49, 107, 0.16);
}

.certs-grid__item img {
  display: block;
  margin: 0 auto;
  max-height: 52px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Primeira peça costuma ser selo maior / mais largo (ex.: ISO) */
.certs-grid__item:first-child img {
  max-height: 72px;
}

@media (min-width: 560px) {
  .certs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .certs-grid__item {
    min-height: 110px;
    padding: 1.1rem 1rem;
  }

  .certs-grid__item img {
    max-height: 58px;
  }

  .certs-grid__item:first-child img {
    max-height: 84px;
  }
}

@media (min-width: 900px) {
  .certs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem 1.2rem;
  }

  .certs-grid__item {
    min-height: 118px;
    padding: 1.2rem 1rem;
  }

  .certs-grid__item img {
    max-height: 64px;
  }

  .certs-grid__item:first-child img {
    max-height: 96px;
  }
}

/* ——— Grid cards ——— */
.grid-2 {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.feature-cards {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 600px) {
  .feature-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  padding: 1.65rem 1.5rem;
  background: var(--page-bg);
  border: 1px solid var(--page-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-on-light);
  transition: transform 0.3s var(--ease-out), border-color 0.25s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 49, 107, 0.22);
  box-shadow: var(--shadow-md-light), var(--shadow-accent);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 10px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--page-text-muted);
  line-height: 1.55;
}

.round-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--page-border);
  box-shadow: var(--shadow-md-light);
  position: relative;
}

.round-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(1, 49, 107, 0.06);
}

/* ——— Stats bar ——— */
.stats {
  display: grid;
  gap: 1.5rem;
  padding: 3.5rem 1.5rem;
  background: var(--page-surface);
  border-block: 1px solid var(--page-border);
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(254, 172, 0, 0.12), transparent 55%);
  pointer-events: none;
}

.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.25rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.stat {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--page-bg);
  border-radius: var(--radius);
  border: 1px solid var(--page-border);
  box-shadow: var(--shadow-on-light);
}

.stat__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent);
  padding: 8px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
}

.stat__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.stat h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* ——— Footer ——— */
.footer {
  background: var(--page-bg);
  border-top: 1px solid var(--page-border);
  padding: 4rem 1.5rem 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent) 35%, var(--accent-hover) 65%, transparent);
  opacity: 0.5;
}

.footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 900px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer__brand img {
  max-width: 260px;
  margin-bottom: 1rem;
}

.footer__brand p {
  margin: 0;
  color: var(--page-text-muted);
  font-size: 0.9rem;
  max-width: 36ch;
}

.newsletter {
  margin-top: 1.25rem;
}

.newsletter label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--page-text-muted);
}

.newsletter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter input {
  flex: 1;
  min-width: 180px;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--page-border);
  background: var(--page-surface);
  color: var(--page-text);
  font: inherit;
}

.newsletter button {
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: none;
  background: var(--page-surface);
  color: var(--brand-blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--page-border);
  transition: border-color 0.2s, background 0.2s;
}

.newsletter button:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.footer__title {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--page-text);
}

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--page-text-muted);
}

.footer__nav a:hover {
  color: var(--page-text);
}

.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--page-text-muted);
}

.footer__contact-list li {
  margin-bottom: 0.65rem;
  padding-left: 1.5rem;
  position: relative;
}

.footer__contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--page-border);
  color: var(--page-text-muted);
}

.footer__social a:hover {
  color: var(--brand-blue);
  border-color: rgba(1, 49, 107, 0.35);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding: 1.25rem;
  border-top: 1px solid var(--page-border);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--page-text-muted);
}

.footer__bottom a {
  color: var(--accent);
  font-weight: 600;
}

.footer__bottom a:hover {
  color: var(--accent-hover);
}

/* ——— Contacto + slider (home e serviços) ——— */
.section--contact {
  background: linear-gradient(180deg, var(--page-bg) 0%, var(--page-surface) 35%, var(--page-bg) 100%);
  border-block: 1px solid var(--page-border);
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5.5rem;
}

.section--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, var(--accent) 60%, transparent);
  opacity: 0.45;
}

.contact-section__header {
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.contact-section__header .section__title {
  margin-bottom: 0.75rem;
}

.contact-section__lead {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.contact-section__header .divider {
  margin-inline: auto;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.slider {
  position: relative;
  margin-top: 1.75rem;
}

.slider__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--page-border);
  background: var(--page-bg);
  box-shadow: var(--shadow-on-light);
}

.slider__track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

.slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 1.75rem;
  background: var(--page-bg);
}

.slider__nav {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.15rem;
  justify-content: flex-end;
}

.slider__btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--page-border);
  background: var(--page-surface);
  color: var(--brand-blue);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.slider__btn:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
  background: var(--accent-soft);
}

.slider__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.slider__dots {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 1.15rem;
}

.slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(1, 49, 107, 0.2);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.slider__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 12px var(--accent-glow);
}

.quote-slide {
  text-align: center;
  padding: 0 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md-light);
}

.quote-slide h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
  max-width: 34ch;
  margin-inline: auto;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
}

@media (min-width: 900px) {
  .quote-slide {
    padding: 0 1.35rem 1.35rem;
  }
}

.contact-block {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-block {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }
}

.contact-block__showcase {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 1.5rem 1.5rem 1.35rem;
  background: var(--page-bg);
  border: 1px solid var(--page-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md-light);
  overflow: hidden;
}

.contact-block__label {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-blue);
  opacity: 0.85;
}

.contact-block__showcase .slider--contact {
  margin-top: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-block__showcase .slider__viewport {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--page-surface);
  box-shadow: inset 0 0 0 1px var(--page-border);
  overflow: hidden;
}

.contact-block__showcase .slider__track {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 300px;
}

@media (min-width: 900px) {
  .contact-block__showcase .slider__track {
    min-height: 360px;
  }
}

.contact-block__showcase .slider__slide {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  align-self: stretch;
  box-sizing: border-box;
}

.contact-block__showcase .quote-slide {
  flex: 1;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  padding: 0 0.35rem 0.65rem;
}

.contact-block__showcase .quote-slide img {
  flex: 1 1 0;
  min-height: 220px;
  width: 100%;
  max-width: none;
  object-fit: cover;
  aspect-ratio: unset;
  margin: 0 0 0.9rem;
}

.contact-block__showcase .quote-slide h3 {
  flex-shrink: 0;
  margin-top: 0;
}

@media (min-width: 900px) {
  .contact-block__showcase .quote-slide img {
    min-height: 300px;
  }
}

.contact-block__showcase .slider__dots {
  margin-top: 1rem;
  margin-bottom: 0;
}

.form-panel {
  background: var(--page-bg);
  border: 1px solid var(--page-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 2rem;
  box-shadow: var(--shadow-md-light);
  border-top: 4px solid var(--accent);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.form-panel__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-blue);
  line-height: 1.2;
}

.form-panel > p {
  margin: 0 0 1.5rem;
  color: var(--page-text-muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

@media (min-width: 900px) {
  .form-panel {
    padding: 2rem 2rem 2.25rem;
  }

  .contact-block__showcase {
    padding: 1.75rem 1.75rem 1.5rem;
  }
}

.contact-form .field {
  margin-bottom: 1.1rem;
}

.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
  color: var(--page-text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--page-border);
  background: var(--page-surface);
  color: var(--page-text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button[type="submit"] {
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--brand-blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.25rem;
  box-shadow: var(--shadow-accent);
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.contact-form button[type="submit"]:hover:not(:disabled) {
  background: var(--accent-hover);
  color: var(--brand-blue);
  transform: translateY(-1px);
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.contact-form .status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  min-height: 1.25em;
  color: var(--page-text-muted);
}

/* ——— WhatsApp float ——— */.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s;
}

.wa-float:hover {
  transform: scale(1.06);
  color: #fff;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
