/* ============================================================
   Sultemper — Landing page desktop (1440px)
   Fiel ao layout Figma "Sultemper / PC" (node 1:154)
   ============================================================ */

/* ---------- Fontes (auto-hospedadas, variáveis) ---------- */

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("../assets/fonts/dm-sans-latin-opsz-normal.woff2") format("woff2-variations");
}

@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
  src: url("../assets/fonts/dm-sans-latin-opsz-italic.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/montserrat-latin-wght-normal.woff2") format("woff2-variations");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/outfit-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  --ciano-1: #00b3ff;
  --azul-marinho: #0d4377;
  --ciano: #21a3dd;
  --bege: #cda876;
  --dark-bg: #000927;
  --card-dark: #001352;
  --arrow-blue: #30a9ff;
  --process-bg: #5ecfff;
  --text-dark: #202020;
  --grad-btn: linear-gradient(100deg, #116ab2 0%, #37a6ff 103.47%);
  --grad-stat: linear-gradient(115deg, #00b2ff 1.3%, #78d6ff 94.56%);
  --font-title: "DM Sans", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-footer: "Outfit", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  width: 100%;
  overflow-x: clip;
  background: #fff;
}

/* Faixa de conteúdo: 1210px centralizados; fundos ocupam 100% da tela */
:root { --gutter: max(clamp(24px, 8vw, 115px), calc((100% - 1210px) / 2)); }

img { display: block; }

/* ---------- Tipografia dos títulos ---------- */

.title-xl {
  font-family: var(--font-title);
  font-optical-sizing: auto;
  font-size: 58.86px;
  font-weight: 400;
  letter-spacing: -2.943px;
  line-height: 1.05;
  color: var(--text-dark);
}

.title-xl strong { font-weight: 700; }

.title-xl--white { color: #fff; }

.title-xl__accent {
  color: var(--ciano-1);
  font-style: italic;
  font-weight: 800;
}

.title-xl__accent--bold { font-weight: 700; }

.title-xl__accent--black { font-weight: 900; }

/* ---------- Botão gradiente (pill) ---------- */

.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  height: 50px;
  padding: 5.5px 12px 5.5px 5px;
  border: none;
  border-radius: 1084px;
  background: var(--grad-btn);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.72px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-gradient:hover { filter: brightness(1.08); }
.btn-gradient:active { transform: scale(0.98); }

.btn-gradient--simple { padding: 6px 16px; }

.btn-gradient--full {
  width: 100%;
  justify-content: center;
  padding: 5.5px;
}

.btn-gradient__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

/* ---------- Setas de carrossel ---------- */

.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: none;
  border-radius: 100px;
  background: var(--arrow-blue);
  cursor: pointer;
  transition: filter 0.2s ease;
}

.arrow-btn:hover { filter: brightness(1.1); }

.arrow-btn img {
  width: 17.4px;
  height: 10.5px;
  transform: rotate(90deg);
  filter: brightness(0) invert(1);
}

.arrow-btn--prev img,
.solutions__arrow--prev img { transform: rotate(-90deg); }

/* ---------- Brilhos decorativos (elipses) ---------- */

.glow {
  position: absolute;
  width: 558px;
  height: 558px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 207, 255, 0.45) 0%, rgba(94, 207, 255, 0) 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.glow--right { right: -360px; top: -80px; }
.glow--left { left: -480px; top: 40px; }
.glow--low { top: auto; bottom: -120px; }

/* ============ HEADER ============ */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 91px;
  padding: 0 var(--gutter);
  border: 1px solid #f2f2f2;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease;
}

.header--scrolled {
  box-shadow: 0 6px 24px rgba(13, 67, 119, 0.1);
}

.header__logo img { width: 183.9px; height: 47.2px; object-fit: contain; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.72px;
  color: var(--azul-marinho);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--ciano-1); }

.nav-link--active {
  font-weight: 700;
  color: var(--ciano-1);
}

/* ============ HERO ============ */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  height: 774px;
  padding: 150px var(--gutter);
  overflow: clip;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, #fff 86%),
    linear-gradient(117deg, #fff 10.57%, rgba(255, 255, 255, 0) 68.32%);
}

.hero__title { position: relative; width: 576px; max-width: 100%; }

.hero__text {
  position: relative;
  width: 516px;
  max-width: 100%;
  font-size: 18px;
  letter-spacing: -0.72px;
}

.hero .btn-gradient { position: relative; }

/* ============ SOBRE ============ */

.about {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  height: 726px;
  padding: 0 var(--gutter);
  background: #fff;
}

.about .title-xl { width: 576px; max-width: 100%; }

.about__glass {
  position: absolute;
  right: calc(max(115px, (100% - 1210px) / 2) - 68px);
  top: -55px;
  width: 648px;
  height: 761px;
  pointer-events: none;
  z-index: 1;
}

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

.about__text {
  width: 509px;
  max-width: 100%;
  font-size: 18px;
  letter-spacing: -0.72px;
  position: relative;
  z-index: 2;
}

.about__brand { color: var(--arrow-blue); font-weight: 800; }

.stats {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 262px;
  padding: 31px 13px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 31px;
  background: var(--grad-stat);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 178, 255, 0.35);
}

.stat-card__number {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -3.5px;
  line-height: 1;
}

.stat-card__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.56px;
  text-transform: uppercase;
}

/* ============ SOLUÇÕES ============ */

.solutions {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 130px var(--gutter);
  background: var(--dark-bg);
  overflow: clip;
  z-index: 2;
}

.solutions__glow {
  position: absolute;
  left: 691px;
  top: -361px;
  width: 527px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(48, 169, 255, 0.5) 0%, rgba(48, 169, 255, 0) 65%);
  filter: blur(70px);
  pointer-events: none;
}

.solutions__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1210px;
  position: relative;
}

.solutions__head .title-xl { width: 576px; max-width: 100%; }

.solutions__em { font-style: italic; font-weight: 400; }

.solutions__desc {
  width: 552px;
  max-width: 100%;
  font-size: 18px;
  letter-spacing: -0.72px;
  text-align: right;
  color: #fff;
}

.solutions__track {
  display: flex;
  justify-content: flex-start;
  gap: 51px;
  align-items: center;
  width: 100%;
  height: 552px;
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.solutions__track::-webkit-scrollbar { display: none; }

.sol-card { flex-shrink: 0; }

.sol-card {
  display: flex;
  flex-direction: column;
  width: 369px;
  height: 100%;
  border-radius: 24px;
  background: var(--card-dark);
  overflow: clip;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.sol-card__img { height: 333px; width: 100%; flex-shrink: 0; }

.sol-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sol-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 30px 0;
  text-align: center;
  color: #fff;
}

.sol-card__title {
  font-family: var(--font-title);
  font-optical-sizing: auto;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1.3px;
  line-height: 1.05;
}

.sol-card__text {
  font-size: 18px;
  letter-spacing: -0.72px;
}

.solutions__arrow { position: absolute; top: 582px; z-index: 3; }
.solutions__arrow--prev { left: 37px; }
.solutions__arrow--next { right: 37px; left: auto; }

/* ============ ORÇAMENTO ============ */

.quote {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 130px var(--gutter);
  overflow: clip;
}

.quote--center {
  align-items: center;
  padding-top: 50px;
  padding-bottom: 130px;
}

.quote__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.quote__head--center { align-items: center; text-align: center; }

.quote__sub {
  font-size: 18px;
  letter-spacing: -0.72px;
}

.quote__sub-strong {
  font-weight: 700;
  color: var(--azul-marinho);
}

.quote__form {
  position: relative;
  z-index: 1;
}

.quote__form--row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
}

.quote__form--row .field { flex: 1; }

.quote__form--col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 770px;
  max-width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.field__label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.96px;
  color: #000;
}

.field__input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 394px;
  background: #f4f4f4;
  transition: border-color 0.2s ease;
}

.field__input:focus-within { border-color: var(--arrow-blue); }

.field__input img { flex-shrink: 0; opacity: 0.9; }

.field__input input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: -0.64px;
  color: #000;
}

/* Honeypot anti-spam: invisível para humanos */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Mensagem de retorno do envio */
.form-status {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.64px;
  padding: 12px 20px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.form-status--ok {
  color: #0c6b3d;
  background: #e3f7ec;
  border: 1px solid #b5e6cd;
}

.form-status--erro {
  color: #9c2b2b;
  background: #fdeaea;
  border: 1px solid #f2c5c5;
}

/* ============ PROCESSO ============ */

.process {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 130px var(--gutter);
}

.process__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process__sub {
  width: 509px;
  max-width: 100%;
  font-size: 18px;
  letter-spacing: -0.72px;
}

.process__grid {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.process__grid::-webkit-scrollbar { display: none; }

.process-card { scroll-snap-align: center; }

.process-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 262px;
  padding: 37px 0;
  border-radius: 16px;
  background: var(--process-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(94, 207, 255, 0.5);
}

.process-card__icon {
  width: 70px;
  height: 70px;
}

/* pinta os ícones de azul-marinho */
.process-card__icon {
  filter: brightness(0) saturate(100%) invert(21%) sepia(46%) saturate(1560%) hue-rotate(182deg) brightness(94%) contrast(94%);
}

.process-card__label {
  font-family: var(--font-title);
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.05;
  text-align: center;
  color: var(--azul-marinho);
}

/* ============ GALERIA ============ */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
  background: #fff;
}

.gallery__item { height: 503.33px; overflow: hidden; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

/* ============ DEPOIMENTOS ============ */

.testimonials {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 130px var(--gutter) 50px;
  overflow: clip;
}

.testimonials__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonials__sub {
  width: 509px;
  max-width: 100%;
  font-size: 18px;
  letter-spacing: -0.72px;
}

.testimonial-card {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  width: 1020px;
  height: 427px;
  padding: 46px 150px;
  border: 1px solid #d8d8d8;
  border-radius: 46px;
  background: #fff;
  position: relative;
  z-index: 1;
  transition: opacity 0.25s ease;
}

.testimonial-card.is-fading { opacity: 0; }

.testimonial-card__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.testimonial-card__avatar {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 7px solid rgba(0, 0, 0, 0.04);
  object-fit: cover;
}

.testimonial-card__name {
  max-width: 100%;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.72px;
  text-align: center;
}

.testimonial-card__company {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  text-align: center;
}

.testimonial-card__quote {
  font-size: 16px;
  letter-spacing: -0.64px;
  text-align: center;
}

.testimonials__arrows {
  position: absolute;
  top: 522px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1158px, calc(100vw - 60px));
  z-index: 2;
}

/* ============ FOOTER ============ */

.footer {
  background: var(--dark-bg);
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 19px 20px;
  border-top: 0.3px solid var(--bege);
}

.footer__copy {
  font-family: var(--font-footer);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.social-btn:hover { background: rgba(255, 255, 255, 0.22); }

.social-btn img { filter: brightness(0) invert(1); }

/* ---------- Negritos vindos do painel (**texto**) ---------- */
.about__text strong { color: var(--arrow-blue); font-weight: 800; }
.solutions__desc strong { font-weight: 700; }


/* ============================================================
   LOADER SULTEMPER
   ============================================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 30%, #0d2a54 0%, #000927 65%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader--fechado {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* Painéis de vidro inclinados, como no logo */
.loader__panes {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.loader__panes span {
  width: 22px;
  height: 46px;
  transform: skewX(-18deg);
  border-radius: 4px;
  background: linear-gradient(115deg, #116ab2 0%, #37a6ff 100%);
  animation: pane-pulse 1.1s ease-in-out infinite;
}

.loader__panes span:nth-child(2) { animation-delay: 0.15s; }
.loader__panes span:nth-child(3) { animation-delay: 0.3s; }

@keyframes pane-pulse {
  0%, 100% { opacity: 0.35; transform: skewX(-18deg) translateY(0); }
  50% { opacity: 1; transform: skewX(-18deg) translateY(-8px); }
}

.loader__brand {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #7fc4f5;
}

.loader__brand b { font-weight: 800; color: #fff; }

.loader__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.loader__track {
  width: 220px;
  height: 4px;
  margin-top: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.loader__fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #116ab2, #37a6ff, #5ecfff);
  transition: width 0.35s ease;
}

.loader__pct {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .loader__panes span { animation: none; opacity: 1; }
}

/* ============================================================
   MENU MOBILE (hambúrguer)
   ============================================================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--azul-marinho);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* ---------- Tipografia fluida ---------- */
@media (max-width: 1280px) {
  .title-xl {
    font-size: clamp(32px, 4.6vw, 58.86px);
    letter-spacing: -0.05em;
  }
  .stat-card__number { font-size: clamp(38px, 4.5vw, 50px); letter-spacing: -0.07em; }
}

/* ---------- Tablet grande ---------- */
@media (max-width: 1150px) {
  /* menu mobile */
  .nav-toggle { display: flex; }
  .header__nav {
    position: absolute;
    top: 91px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 26px var(--gutter) 30px;
    background: #fff;
    border-bottom: 1px solid #f2f2f2;
    box-shadow: 0 18px 34px rgba(13, 67, 119, 0.14);
  }
  .header__nav.aberto { display: flex; }

  .hero { height: auto; padding: 110px var(--gutter) 120px; }
  .quote__form--row { flex-direction: column; align-items: stretch; }
  .quote__form--row .btn-gradient { align-self: flex-start; }
  .about { height: auto; padding: 90px var(--gutter); }
  .about__glass { display: none; }
  .solutions__head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .solutions__desc { text-align: left; }
  .solutions__arrow--prev { left: 12px; }
  .solutions__arrow--next { right: 12px; }
}

/* ---------- Tablet ---------- */
@media (max-width: 900px) {
  .solutions { padding: 90px var(--gutter); }
  .solutions__track { height: auto; gap: 24px; }
  .sol-card { width: min(340px, 86vw); height: auto; }
  .sol-card__img { height: 260px; }
  .sol-card__body { padding-bottom: 36px; }

  /* setas do carrossel abaixo do conteúdo */
  .solutions__nav { display: flex; gap: 16px; }
  .solutions__arrow { position: static; }

  .quote { padding: 90px var(--gutter); }
  .quote--center { padding-top: 40px; padding-bottom: 90px; }
  .quote__sub { white-space: normal; }

  .process { padding: 90px var(--gutter); }
  .process-card { flex: 0 0 min(240px, 62vw); height: 232px; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item { height: clamp(220px, 38vw, 420px); }

  .testimonials { padding: 90px var(--gutter) 40px; }
  .testimonial-card { height: auto; padding: 40px clamp(24px, 7vw, 90px); width: 100%; }
  .testimonials__arrows {
    position: static;
    transform: none;
    width: auto;
    gap: 16px;
    justify-content: center;
  }
}

/* ---------- Celular ---------- */
@media (max-width: 600px) {
  .title-xl { font-size: clamp(29px, 8.6vw, 40px); }
  .hero { padding: 80px var(--gutter) 100px; }
  .hero__text, .about__text, .solutions__desc, .process__sub,
  .testimonials__sub, .quote__sub, .sol-card__text { font-size: 16px; }

  .stats { flex-direction: column; width: 100%; }
  .stat-card { width: 100%; }

  .sol-card { width: min(300px, 84vw); }

  .gallery { grid-template-columns: 1fr; }
  .gallery__item { height: clamp(220px, 58vw, 320px); }

  .testimonial-card { border-radius: 28px; gap: 26px; }
  .testimonial-card__quote { font-size: 15px; }

  .btn-gradient { font-size: 16px; }
  .field__label { font-size: 15px; }

  .footer__inner { flex-direction: column; gap: 14px; padding: 18px 0; }
  .footer__copy { font-size: 15px; text-align: center; }

  .loader__track { width: 170px; }
  .loader__brand { font-size: 24px; }
}
