:root {
  --navy-950: #0d1f2f;
  --navy-900: #112a41;
  --navy-800: #1a3f61;
  --navy-700: #234d70;
  --blue: #1688a6;
  --gold-dark: #c99659;
  --gold: #d5a465;
  --gold-light: #efc58b;
  --gold-gradient: linear-gradient(90deg, #c99659 0%, #efc58b 50%, #c99659 100%);
  --cream: #efe7dc;
  --white: #ffffff;
  --text: #f5f5f5;
  --muted: #adb2b8;
  --header-height: 72px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  --radius: 24px;
  --font-display: "Oxanium", Arial, sans-serif;
  --font-body: "Rajdhani", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;

  color: var(--text);
  background: var(--navy-950);

  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  color: var(--navy-900);
  background: linear-gradient(90deg, #d1d5d7 0%, #c7cbcd 30%, #b8bcbf 60%, #9ba1a6 100%);
  border-top: 1px solid rgba(7, 27, 43, 0.55);
  border-bottom: 2px solid rgba(7, 27, 43, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.brand {
  width: 78px;
  height: calc(var(--header-height) - 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
}

.main-nav a {
  position: relative;

  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 25px;
  border: 0;
  border-radius: 999px;
  color: var(--gold-light);
  background: linear-gradient(135deg, #20415a, #112d43);
  box-shadow: 0 10px 24px rgba(5, 22, 35, 0.28);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(5, 22, 35, 0.34);
  filter: brightness(1.08);
}

.button-small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.72rem;
}

.header-cta {
  min-width: 250px;
  min-height: 58px;
  padding: 16px 34px;

  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;

  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  background: var(--navy-950);
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(5, 18, 28, 0.06) 40%, rgba(5, 18, 28, 0.38) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-card {
  position: relative;
  z-index: 3;
  width: min(700px, 88%);
  margin: 0 auto -70px;
  padding: 28px 40px 32px;
  color: var(--navy-900);
  background: linear-gradient(115deg, rgba(237, 239, 239, 0.92), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card p {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.5;
}

.stats {
  position: relative;
  z-index: 1;
  padding: 120px 0 42px;
  background: var(--navy-800);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  padding: 12px;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 0 rgba(115, 75, 38, 0.55);
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--cream);
  font-size: 0.88rem;
}

.section {
  padding: 78px 0;
}

.section-dark {
  background: var(--navy-950);
}

.section-blue {
  background: var(--navy-900);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 8vw, 90px);
}

.section-copy h2,
.section-heading h2,
.cta-content h2,
.partners-section h2,
.social-section h2,
.careers-form h2 {
  margin: 0 0 18px;

  color: var(--gold-light);

  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.service-content h3,
.process-step h3,
.benefit h3 {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
}

input,
select,
textarea,
.faq-question {
  font-family: var(--font-body);
  font-weight: 500;
}

input::placeholder,
textarea::placeholder {
  font-family: var(--font-body);
  font-weight: 400;
}

.stat strong {
  font-family: var(--font-display);
  font-weight: 800;
}

.section-copy p {
  margin: 0 0 18px;
}

.eyebrow {
  margin: 0 0 8px !important;
  color: var(--blue) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.media-card {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(109, 178, 204, 0.32);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
}

.centered {
  text-align: center;
}

.section-heading p,
.social-section .section-heading p {
  margin: 0;
  color: var(--text);
}

.services-section {
  overflow: hidden;
}

.services-list {
  display: grid;
  gap: 30px;
}

.service-row {
  position: relative;
  width: min(690px, calc(100% - 70px));
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 34px 20px 108px;
  color: var(--text);
  background: var(--navy-800);
  border: 3px solid rgba(10, 42, 68, 0.75);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.service-row--right {
  justify-self: end;
  padding: 20px 108px 20px 34px;
  text-align: right;
}

.service-badge {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);

  width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Não recorta mais a imagem em formato circular */
  overflow: visible;
  border-radius: 0;

  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 2;

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.service-row--right .service-badge {
  left: auto;
  right: 10px;
}

.service-badge img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
  object-position: center;

  transform: none;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 999;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38));

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-6px) scale(1.08);
  filter:
    brightness(1.08) drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45));
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .service-row:hover .service-badge {
    transform: translateY(-50%) scale(1.07);
    filter: brightness(1.08);
  }
}

.service-copy h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 500;
}

.service-copy p {
  margin: 0;
  color: #d1d4d7;
  font-size: 0.92rem;
  line-height: 1.45;
}

.process-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-step,
.benefit {
  text-align: center;
}

.design-icon {
  width: 92px;
  height: 92px;

  display: block;
  margin: 0 auto 10px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  border-radius: 0;

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.process-step:hover .design-icon,
.benefit:hover .design-icon {
  transform: translateY(-5px) scale(1.06);
  filter: brightness(1.08);
}

.design-icon--phone {
  background-image: url("../assets/icons/processo-solicite.png");
}

.design-icon--clipboard {
  background-image: url("../assets/icons/processo-planejamos.png");
}

.design-icon--truck {
  background-image: url("../assets/icons/processo-transportamos.png");
}

.design-icon--delivery {
  background-image: url("../assets/icons/processo-entregamos.png");
}

.design-icon--security {
  background-image: url("../assets/icons/beneficio-seguranca.png");
}

.design-icon--agility {
  background-image: url("../assets/icons/beneficio-agilidade.png");
}

.design-icon--coverage {
  background-image: url("../assets/icons/beneficio-cobertura.png");
}

.design-icon--technology {
  background-image: url("../assets/icons/beneficio-tecnologia.png");
}

.step-number {
  display: block;
  color: #08a4ce;
  font-size: 0.78rem;
  font-weight: 900;
}

.accent-text {
  color: var(--gold-light);
}

.process-step h3,
.benefit h3 {
  margin: 8px 0;
  color: var(--cream);
  font-size: 1rem;
  font-weight: 500;
}

.process-step p,
.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.regional-layout {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.regions-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.regions-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.regions-list li::before {
  content: "✓";
  color: #08a4ce;
  font-size: 1.2rem;
  font-weight: 700;
}

.careers-section {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(13, 31, 47, 0.32),
      rgba(13, 31, 47, 0.58)),
    url("../assets/images/foto_trabalhe.jpeg");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 58%;
}

.careers-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      rgba(13, 31, 47, 0.18),
      rgba(17, 42, 65, 0.32));
}

.careers-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 54px 0;
}

.careers-form {
  width: min(610px, 100%);
  padding: 34px 40px 28px;
  background: rgba(17, 42, 65, 0.9);
  border: 1px solid rgba(40, 105, 151, 0.55);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.careers-heading {
  margin-bottom: 22px;
}

.careers-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.careers-heading p {
  margin: 2px 0;
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.35;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--white);
  background: var(--navy-800);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
  min-height: 50px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cream) 50%),
    linear-gradient(135deg, var(--cream) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 15px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #2f83b4;
  box-shadow: 0 0 0 3px rgba(47, 131, 180, 0.2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.careers-submit {
  width: 100%;
  min-height: 44px;
  margin-top: 24px;
  color: var(--white);
  background: transparent;
  border: 2px solid #276d9c;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.careers-submit:hover,
.careers-submit:focus-visible {
  transform: translateY(-1px);
  background: rgba(39, 109, 156, 0.2);
  border-color: #4b93c0;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--gold-light);
  font-size: 0.82rem;
  text-align: center;
}

.faq-container {
  max-width: 760px;
}

.accordion {
  display: grid;
  gap: 18px;
}

.faq-item {
  overflow: hidden;
  border: 2px solid rgba(174, 184, 192, 0.52);
  border-radius: 999px;
  transition: border-radius 0.25s ease, background 0.25s ease;
}

.faq-item.open {
  border-radius: 22px;
  background: rgba(17, 42, 65, 0.5);
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 22px;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
}

.faq-symbol {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-symbol {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer>p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer>p {
  padding-bottom: 20px;
}

.social-section {
  padding: 54px 0 68px;
  background: var(--navy-950);
}

.social-content {
  text-align: center;
}

.social-section .section-heading {
  margin-bottom: 34px;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.social-link {
  width: 96px;
  height: 96px;

  display: block;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  border-radius: 16px;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-7px) scale(1.04);
  filter: brightness(1.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.social-link--instagram {
  background-image: url("../assets/icons/instagram.png");
}

.social-link--facebook {
  background-image: url("../assets/icons/facebook.png");
}

.social-link--linkedin {
  background-image: url("../assets/icons/linkedin.png");
}

.social-link--video {
  background-image: url("../assets/icons/video.png");
}

.social-link--email {
  background-image: url("../assets/icons/email.png");
}

.site-footer {
  padding: 34px 0;
  background: #081824;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-grid img {
  width: 200px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .media-card.reveal.visible:hover {
    z-index: 10;
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.45), 0 0 35px rgba(109, 178, 204, 0.5);
  }

  .media-card:hover img {
    transform: scale(1.07);
    filter: brightness(1.08);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .header-cta {
    min-width: 200px;
    padding-inline: 22px;
  }

  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 1.2rem;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 62px 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--navy-900);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gold-light);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 20px;
    background: linear-gradient(90deg, #d1d5d7 0%, #c7cbcd 35%, #aeb3b7 100%);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(7, 27, 43, 0.08);
    font-size: 1rem;
    line-height: 1.3;
  }

  .hero {
    min-height: 520px;
  }

  .hero-video {
    object-position: 50% center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .regional-layout {
    grid-template-columns: 1fr;
  }

  .media-card {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .services-list {
    gap: 26px;
  }

  .service-row,
  .service-row--right {
    width: calc(100% - 52px);
  }

  .process-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    width: 48px;
  }

  .hero {
    min-height: 330px;
  }

  .hero-video {
    object-fit: cover;
    object-position: 57.5% center;
  }

  .hero-card {
    width: 100%;
    margin-bottom: -120px;
    padding: 24px 20px 27px;
  }

  .hero-card p {
    font-size: 0.96rem;
  }

  .stats {
    padding-top: 118px;
  }

  .stat strong {
    font-size: 2.2rem;
  }

  .stat span {
    font-size: 0.78rem;
  }

  .section {
    padding: 62px 0;
  }

  .service-row,
  .service-row--right {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 24px;
    text-align: left;
  }

  .careers-section {
    min-height: 720px;
    background-position: 48% center;
  }

  .service-badge,
  .service-row--right .service-badge {
    position: static;

    width: 74px;
    height: 74px;

    grid-row: 1 / span 2;

    padding: 0;
    border: 0;
    border-radius: 0;
    overflow: visible;

    transform: none;
  }

  .service-copy h3 {
    font-size: 1rem;
  }

  .service-copy p {
    font-size: 0.82rem;
  }

  .process-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 16px;
  }

  .design-icon {
    width: 78px;
  }

  .process-step p,
  .benefit p {
    font-size: 0.76rem;
  }

  .careers-section {
    min-height: 0;
  }

  .careers-content {
    padding: 42px 0;
  }

  .careers-form {
    padding: 28px 22px 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-field--full {
    grid-column: auto;
  }

  .faq-item {
    border-radius: 22px;
  }

  .social-link {
    width: 78px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;

    width: 50px;
    height: 50px;
  }
}

@media (max-width: 430px) {

  .process-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    gap: 14px;
  }

  .social-link {
    width: 72px;
  }
}