:root {
  --blue-950: #061a44;
  --blue-900: #092f7a;
  --blue-800: #0b3d91;
  --blue-700: #1456bd;
  --blue-100: #eaf2ff;
  --blue-50: #f4f8ff;
  --yellow-500: #f7c948;
  --yellow-300: #ffe08a;
  --green-600: #16a34a;
  --green-700: #15803d;
  --slate-950: #071124;
  --slate-800: #172033;
  --slate-700: #334155;
  --slate-600: #52627a;
  --slate-100: #eef3f9;
  --slate-50: #f7faff;
  --white: #ffffff;
  --border: rgba(9, 47, 122, 0.14);
  --shadow-sm: 0 14px 35px rgba(6, 26, 68, 0.08);
  --shadow-md: 0 24px 65px rgba(6, 26, 68, 0.14);
  --shadow-lg: 0 35px 90px rgba(6, 26, 68, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-full: 999px;
  --header-height: 86px;
}

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

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

body {
  min-height: 100vh;
  color: var(--slate-950);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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


.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: var(--radius-full);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(6, 26, 68, 0.05);
  backdrop-filter: blur(16px);
}

.header__content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  width: 166px;
  min-width: 166px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  color: var(--slate-700);
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--blue-900);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(6, 26, 68, 0.08);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, 0.2s ease, border 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  box-shadow: 0 16px 36px rgba(20, 86, 189, 0.25);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 20px 42px rgba(20, 86, 189, 0.34);
}

.btn--secondary,
.btn--ghost {
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--border);
}

.btn--secondary:hover,
.btn--ghost:hover,
.btn--secondary:focus-visible,
.btn--ghost:focus-visible {
  border-color: rgba(9, 47, 122, 0.3);
  box-shadow: var(--shadow-sm);
}

.btn--large {
  min-height: 56px;
  padding: 0 26px;
}

.btn--full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--blue-900);
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition: 0.2s ease;
}

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

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(247, 201, 72, 0.24), transparent 30%),
    radial-gradient(circle at 8% 0%, rgba(20, 86, 189, 0.45), transparent 34%),
    linear-gradient(135deg, #061a44 0%, #082a68 54%, #071124 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 52px;
  padding: 84px 0 92px;
}

.hero__content h1,
.section-copy h2,
.section-heading h2,
.brand-strip h2,
.cta-box h2 {
  font-size: clamp(2.4rem, 5.6vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: -0.058em;
  font-weight: 950;
}

.hero__content h1 {
  max-width: 740px;
  font-size: clamp(2.75rem, 4.65vw, 4.85rem);
  line-height: 1.03;
  letter-spacing: -0.043em;
}

.hero__content p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  background: currentColor;
  border-radius: 10px;
}

.eyebrow--light {
  color: var(--yellow-500);
}

.hero__actions,
.cta-box .btn {
  margin-top: 30px;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

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

.hero__highlights div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.hero__highlights strong,
.hero__highlights span {
  display: block;
}

.hero__highlights strong {
  margin-bottom: 5px;
  font-size: 0.94rem;
}

.hero__highlights span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.hero__visual {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__image-card {
  width: min(100%, 470px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.hero__image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.image-card__caption {
  padding: 20px 22px 24px;
}

.image-card__caption strong,
.image-card__caption span {
  display: block;
}

.image-card__caption strong {
  font-size: 1.16rem;
  font-weight: 950;
}

.image-card__caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
}

.hero__mini-card {
  position: static;
  width: min(100%, 470px);
  max-width: none;
  margin-top: 14px;
  padding: 16px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.hero__mini-card strong,
.hero__mini-card span {
  display: block;
}

.hero__mini-card span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.quick-contact {
  position: relative;
  z-index: 4;
  margin-top: -40px;
}

.quick-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.quick-contact__item {
  display: block;
  padding: 18px 20px;
  background: var(--blue-50);
  border-radius: 20px;
  transition: 0.2s ease;
}

.quick-contact__item:hover,
.quick-contact__item:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.quick-contact__item span,
.quick-contact__item strong {
  display: block;
}

.quick-contact__item span {
  color: var(--slate-600);
  font-weight: 800;
  font-size: 0.84rem;
}

.quick-contact__item strong {
  margin-top: 4px;
  color: var(--blue-950);
  line-height: 1.25;
}

.quick-contact__item--active {
  color: var(--white);
  background: var(--blue-800);
}

.quick-contact__item--active span,
.quick-contact__item--active strong {
  color: var(--white);
}

.section {
  padding: 110px 0;
}

.section--soft {
  background: linear-gradient(180deg, var(--slate-50), var(--white));
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 22%, rgba(247, 201, 72, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-950), #071124);
}

.split-grid,
.contact-grid,
.process-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.section-copy h2,
.section-heading h2,
.brand-strip h2,
.cta-box h2 {
  color: var(--blue-950);
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 0.98;
}

.section-copy p,
.section-heading p,
.cta-box p,
.benefits-card p {
  margin-top: 18px;
  color: var(--slate-600);
  font-size: 1.05rem;
}

.section--dark .section-copy h2,
.section--dark .section-copy p,
.brand-strip h2,
.brand-strip .eyebrow,
.cta-box h2,
.cta-box p {
  color: var(--white);
}

.section--dark .section-copy p,
.cta-box p {
  color: rgba(255, 255, 255, 0.76);
}

.location-card,
.contact-form,
.benefits-card,
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.location-card {
  overflow: hidden;
}

.location-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-card__body {
  padding: 28px;
}

.location-card h3 {
  color: var(--blue-950);
  font-size: 1.4rem;
  font-weight: 950;
}

.location-card p {
  margin-top: 8px;
  color: var(--slate-600);
}

.location-card a,
.service-card a,
.contact-list a strong {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-800);
  font-weight: 950;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 42px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(9, 47, 122, 0.24);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid rgba(9, 47, 122, 0.18);
  border-radius: 16px;
  font-weight: 950;
}

.service-card h3 {
  color: var(--blue-950);
  font-size: 1.36rem;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.service-card p {
  margin-top: 14px;
  color: var(--slate-600);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 18px;
  padding-left: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--slate-700);
  font-weight: 760;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--yellow-500);
  border-radius: 50%;
}

.service-card a {
  margin-top: auto;
}

.brand-strip {
  padding: 58px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.brand-strip__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 40px;
}

.brand-strip h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.brand-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-list span {
  padding: 13px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--slate-100);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.gallery-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(6, 26, 68, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.process-grid {
  align-items: center;
}

.steps-list {
  display: grid;
  gap: 18px;
}

.step-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
}

.step-card span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-950);
  background: var(--yellow-500);
  border-radius: 15px;
  font-weight: 950;
}

.step-card h3 {
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 950;
}

.step-card p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.benefits-grid {
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}

.benefits-card {
  padding: 28px;
}

.benefits-card--main {
  grid-row: span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 44px;
}

.benefits-card h3 {
  color: var(--blue-950);
  font-size: 1.24rem;
  font-weight: 950;
}

.cta-section {
  padding: 70px 0;
  background: var(--white);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(247, 201, 72, 0.28), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-box h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a {
  display: block;
  padding: 18px 20px;
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--slate-600);
  font-weight: 850;
  font-size: 0.86rem;
}

.contact-list a strong {
  margin-top: 3px;
  line-height: 1.35;
}

.contact-form {
  padding: 30px;
}

.contact-form h3 {
  color: var(--blue-950);
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--slate-700);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--blue-50);
  color: var(--blue-950);
  outline: none;
}

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

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(20, 86, 189, 0.45);
  box-shadow: 0 0 0 4px rgba(20, 86, 189, 0.1);
}

.contact-form .btn {
  margin-top: 22px;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--blue-950);
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand {
  width: 150px;
  padding: 7px 9px;
  background: var(--white);
  border-radius: 14px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--yellow-500);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 22px 0 16px;
  color: var(--white);
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-full);
  box-shadow: 0 18px 46px rgba(22, 163, 74, 0.36), 0 8px 18px rgba(7, 17, 36, 0.16);
  font-weight: 950;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  background: #128c4a;
  box-shadow: 0 22px 52px rgba(22, 163, 74, 0.44), 0 10px 22px rgba(7, 17, 36, 0.18);
}

.whatsapp-float__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  background: var(--white);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.12);
}

.whatsapp-float__icon svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.whatsapp-float strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

@media (max-width: 1100px) {
  .header__actions .btn--ghost {
    display: none;
  }

  .hero__grid,
  .split-grid,
  .contact-grid,
  .process-grid,
  .benefits-grid,
  .brand-strip__content,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
    padding: 72px 0 84px;
  }

  .hero__visual {
    min-height: auto;
    justify-content: flex-start;
  }

  .hero__mini-card {
    width: 100%;
  }

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

  .brand-list {
    justify-content: flex-start;
  }

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

  .footer__content,
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

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

  .brand {
    width: 138px;
    min-width: 138px;
  }

  .menu-button {
    display: inline-flex;
    order: 3;
  }

  .header__actions {
    margin-left: auto;
  }

  .header__actions .btn--primary {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    display: grid;
    gap: 8px;
    justify-content: stretch;
    padding: 14px;
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.2s ease;
  }

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

  .main-nav a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 18px;
  }

  .hero__content h1,
  .section-copy h2,
  .section-heading h2,
  .brand-strip h2,
  .cta-box h2 {
    letter-spacing: -0.04em;
  }

  .hero__content h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10vw, 4.25rem);
    line-height: 1.04;
  }

  .hero__highlights,
  .quick-contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__image-card {
    width: 100%;
    border-radius: 26px;
  }

  .hero__image-card img {
    height: 420px;
  }

  .hero__mini-card {
    width: 100%;
    max-width: none;
    margin-top: 14px;
  }

  .quick-contact {
    margin-top: -28px;
  }

  .section {
    padding: 78px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card,
  .gallery-card--large {
    grid-column: auto;
    grid-row: auto;
    height: auto;
  }

  .gallery-card img {
    aspect-ratio: 4 / 3;
  }

  .benefits-card--main {
    grid-row: auto;
    min-height: 0;
    padding: 32px;
  }

  .cta-box {
    padding: 32px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 56px;
    padding: 0 18px 0 14px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 72px;
  }

  .header__content {
    gap: 10px;
  }

  .brand {
    width: 126px;
    min-width: 126px;
  }

  .hero__grid {
    padding: 50px 0 68px;
  }

  .hero__content h1 {
    font-size: clamp(2.3rem, 12vw, 3.35rem);
    line-height: 1.06;
    letter-spacing: -0.032em;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__image-card img {
    height: 360px;
  }

  .section {
    padding: 66px 0;
  }

  .service-card,
  .contact-form,
  .benefits-card,
  .location-card__body {
    padding: 24px;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .footer__links {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    left: auto;
    right: 14px;
    width: auto;
    min-width: 176px;
    justify-content: center;
  }
}

/* Ajustes profissionais - Equipamentos atendidos e galeria */
.equipment-attended {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(247, 201, 72, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.equipment-attended::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
}

.equipment-attended__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 54px;
}

.equipment-attended__copy h2 {
  max-width: 650px;
  color: var(--white);
  font-size: clamp(2.15rem, 3.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.equipment-attended__copy p {
  max-width: 630px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.equipment-attended .brand-list {
  justify-content: flex-start;
  margin-top: 28px;
}

.equipment-attended .brand-list span {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.equipment-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.equipment-type-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  min-height: 178px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(6, 26, 68, 0.16);
  backdrop-filter: blur(10px);
}

.equipment-type-card > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-950);
  background: var(--yellow-500);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 950;
}

.equipment-type-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.equipment-type-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.55;
}

.equipment-gallery-section {
  overflow: hidden;
  background: var(--white);
}

.equipment-gallery-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.equipment-gallery-heading h2 {
  max-width: 850px;
  font-size: clamp(2.15rem, 4.1vw, 4.25rem);
  line-height: 0.98;
}

.equipment-gallery-heading p {
  max-width: 760px;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.work-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(9, 47, 122, 0.26);
  box-shadow: var(--shadow-md);
}

.work-card--featured {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.work-card--featured img {
  aspect-ratio: 16 / 8;
}

.work-card figcaption {
  flex: 1;
  display: block;
  padding: 20px 22px 22px;
  background: var(--white);
}

.work-card figcaption strong,
.work-card figcaption span {
  display: block;
}

.work-card figcaption strong {
  color: var(--blue-950);
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.work-card figcaption span {
  margin-top: 8px;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .equipment-attended__grid {
    grid-template-columns: 1fr;
  }

  .equipment-types,
  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .equipment-attended {
    padding: 66px 0;
  }

  .equipment-types,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .equipment-type-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .work-card--featured {
    grid-column: auto;
  }

  .work-card--featured img,
  .work-card img {
    aspect-ratio: 4 / 3;
  }
}

/* =========================================================
   Ajustes v4 - Equipamentos atendidos + galeria clicável
   ========================================================= */
.equipment-attended {
  padding: 88px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(247, 201, 72, 0.16), transparent 29%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.equipment-attended__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.equipment-attended__intro h2 {
  max-width: 660px;
  color: var(--white);
  font-size: clamp(2rem, 3.35vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.equipment-attended__intro p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.72;
}

.equipment-brand-box {
  margin-top: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
}

.equipment-brand-box > strong {
  display: block;
  margin-bottom: 15px;
  color: var(--yellow-500);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 950;
}

.equipment-brand-box .brand-list {
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}

.equipment-brand-box .brand-list span {
  padding: 10px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: none;
}

.equipment-support-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.equipment-support-card {
  min-height: 188px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  box-shadow: 0 20px 46px rgba(6, 26, 68, 0.16);
  backdrop-filter: blur(10px);
}

.equipment-support-card--main {
  grid-column: 1 / -1;
  min-height: 0;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
}

.equipment-support-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue-950);
  background: var(--yellow-500);
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 950;
}

.equipment-support-card h3 {
  color: var(--white);
  font-size: 1.14rem;
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.equipment-support-card--main h3 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.equipment-support-card p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.58;
}

.equipment-support-card--main p {
  margin-top: 0;
}

.equipment-gallery-section {
  padding-top: 84px;
  padding-bottom: 96px;
  background: linear-gradient(180deg, var(--white), var(--blue-50));
}

.equipment-gallery-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 920px;
  margin-bottom: 34px;
}

.equipment-gallery-top h2 {
  max-width: 880px;
  color: var(--blue-950);
  font-size: clamp(2.05rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.equipment-gallery-top p {
  max-width: 720px;
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.72;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.work-card,
.work-card--featured {
  grid-column: auto;
  min-height: 0;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(6, 26, 68, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 47, 122, 0.26);
  box-shadow: 0 24px 62px rgba(6, 26, 68, 0.14);
}

.work-card__preview {
  position: relative;
  width: 100%;
  height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-50);
  border: 0;
  border-bottom: 1px solid var(--border);
  cursor: zoom-in;
}

.work-card__preview img,
.work-card--featured img,
.work-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: var(--blue-50);
  transition: transform 0.25s ease;
}

.work-card__preview:hover img,
.work-card__preview:focus-visible img {
  transform: scale(1.025);
}

.work-card__preview span {
  display: none;
}

.work-card__body {
  flex: 1;
  padding: 20px 22px 22px;
}

.work-card__body h3 {
  color: var(--blue-950);
  font-size: 1.13rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.work-card__body p {
  margin-top: 8px;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.55;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 32, 0.78);
  border: 0;
  cursor: zoom-out;
  backdrop-filter: blur(8px);
}

.gallery-lightbox__content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(88vh, 820px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__content img {
  width: 100%;
  max-height: 66vh;
  object-fit: contain;
  background: var(--blue-50);
}

.gallery-lightbox__caption {
  padding: 20px 24px 24px;
}

.gallery-lightbox__caption h3 {
  color: var(--blue-950);
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.gallery-lightbox__caption p {
  margin-top: 6px;
  color: var(--slate-600);
}

.gallery-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(6, 26, 68, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background: var(--blue-800);
}

@media (max-width: 1100px) {
  .equipment-attended__layout {
    grid-template-columns: 1fr;
  }

  .equipment-support-panel,
  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .equipment-attended,
  .equipment-gallery-section {
    padding: 64px 0;
  }

  .equipment-support-panel,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .equipment-support-card--main {
    grid-template-columns: 1fr;
  }

  .work-card__preview {
    height: 220px;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox__content {
    border-radius: 22px;
  }

  .gallery-lightbox__content img {
    max-height: 62vh;
  }
}

body.lightbox-open {
  overflow: hidden;
}

/* =========================================================
   Ajustes v6 - Atendimento e Por que escolher
   ========================================================= */
.process-grid {
  align-items: center;
}

.process-grid .section-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 610px;
}

.process-grid .section-copy h2 {
  max-width: 600px;
}

.process-grid .section-copy p {
  max-width: 620px;
  margin-top: 22px;
  margin-bottom: 0;
  line-height: 1.72;
}

.process-grid .section-copy .btn {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.why-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(20, 86, 189, 0.08), transparent 32%),
    linear-gradient(180deg, var(--slate-50), var(--white));
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: stretch;
  gap: 28px;
}

.why-main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background:
    radial-gradient(circle at 92% 10%, rgba(247, 201, 72, 0.18), transparent 30%),
    var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.why-main h2 {
  max-width: 620px;
  margin-top: 16px;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.3vw, 3.65rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.why-main p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--slate-600);
  font-size: 1.04rem;
  line-height: 1.72;
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.why-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  color: var(--blue-900);
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 900;
}

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

.why-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.why-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-950);
  background: var(--yellow-500);
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 950;
}

.why-card h3 {
  color: var(--blue-950);
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.why-card p {
  margin-top: 9px;
  color: var(--slate-600);
  font-size: 0.98rem;
  line-height: 1.58;
}

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

  .why-main {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .why-section {
    padding: 66px 0;
  }

  .why-main {
    padding: 30px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .process-grid .section-copy .btn {
    width: 100%;
  }
}

/* Ajustes v7: diferenciais mais completos e ícones na área de contato */
.why-tags {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 30px;
}

.why-highlight {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.why-highlight::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: var(--yellow-500);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(247, 201, 72, 0.16);
}

.why-highlight strong,
.why-highlight span {
  display: block;
}

.why-highlight strong {
  color: var(--blue-950);
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 950;
}

.why-highlight span {
  margin-top: 6px;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 650;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(10, 34, 75, 0.08);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}

.contact-text {
  min-width: 0;
  display: block;
}

.contact-text span,
.contact-text strong {
  display: block;
}

@media (max-width: 640px) {
  .contact-list a {
    align-items: flex-start;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .why-highlight {
    padding: 15px 16px 15px 42px;
  }
}

.why-tags .why-highlight span {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

/* =========================================================
   Ajustes v8 - logotipos, formulário e rodapé profissional
   ========================================================= */
.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand {
  height: 64px;
  padding: 4px 0;
}

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

.contact-form input[name="cityState"] {
  text-transform: none;
}

.site-footer {
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 8% 0%, rgba(20, 86, 189, 0.22), transparent 28%),
    linear-gradient(135deg, var(--slate-950), var(--blue-950));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(180px, 0.55fr) minmax(240px, 0.75fr);
  align-items: start;
  gap: 56px;
  padding: 58px 0 42px;
}

.footer__about {
  max-width: 470px;
}

.footer__brand {
  width: 186px;
  min-height: 78px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.footer__brand img {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.footer__about p {
  max-width: 430px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.75;
}

.footer__nav,
.footer__contact {
  display: grid;
  gap: 12px;
}

.footer__nav h3,
.footer__contact h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__nav a,
.footer__contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__contact a:hover,
.footer__contact a:focus-visible {
  color: var(--yellow-500);
  transform: translateX(3px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p,
.footer__bottom a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 650;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.footer__bottom a:hover,
.footer__bottom a:focus-visible {
  color: var(--yellow-500);
}

/* remove estilos antigos do rodapé que não são mais usados */
.footer__content,
.footer__links {
  display: none;
}

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

  .footer__about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .brand {
    height: 58px;
  }

  .brand img {
    max-height: 50px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    padding: 46px 0 34px;
  }

  .footer__brand {
    width: 176px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================================================
   Ajustes v9 - alinhamento dos ícones de contato
   ========================================================= */
.contact-list a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  min-height: 82px;
  padding: 16px 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0;
  padding: 0;
  line-height: 0;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(10, 34, 75, 0.08);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 20px;
  margin: 0;
  fill: currentColor;
  transform: none;
}

.contact-text {
  display: grid;
  gap: 3px;
  min-width: 0;
  align-content: center;
}

.contact-text span,
.contact-text strong {
  margin: 0;
  padding: 0;
  line-height: 1.35;
}

.footer__contact {
  gap: 14px;
}

.footer-contact__link {
  display: grid;
  grid-template-columns: 34px minmax(0, auto);
  align-items: center;
  column-gap: 12px;
  width: fit-content;
}

.footer-contact__icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--yellow-500);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
}

.footer-contact__icon svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.footer-contact__link span:last-child {
  min-width: 0;
}

@media (max-width: 640px) {
  .contact-list a {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 78px;
    padding: 15px 16px;
    column-gap: 14px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
}

/* =========================================================
   Ajustes v10 - centralização rígida dos ícones da seção contato
   ========================================================= */
.contact-list a {
  align-items: center !important;
}

.contact-list .contact-icon {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.contact-list .contact-icon svg {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) !important;
  transform-origin: center center !important;
  display: block !important;
}

@media (max-width: 640px) {
  .contact-list .contact-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
  }
}


/* =========================================================
   Seção Dúvidas Frequentes
   ========================================================= */
.faq-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(23, 84, 181, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  border-top: 1px solid rgba(207, 217, 233, 0.72);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 132px;
}

.faq-copy h2 {
  max-width: 640px;
}

.faq-copy p {
  max-width: 610px;
}

.faq-support-card {
  margin-top: 28px;
  max-width: 520px;
  padding: 22px 24px;
  border-radius: 24px;
  background: var(--blue-900);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(11, 47, 112, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-support-card strong,
.faq-support-card span {
  display: block;
}

.faq-support-card strong {
  font-size: 1.04rem;
  margin-bottom: 8px;
}

.faq-support-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(10, 34, 75, 0.08);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 82px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 18px;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.03rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--slate-600);
  line-height: 1.68;
  max-width: 720px;
}

.faq-toggle {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  border: 1px solid var(--border);
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-700);
  transition: transform 0.2s ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  transform: rotate(0deg);
}

.faq-item[open] {
  border-color: rgba(23, 84, 181, 0.28);
}

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

  .faq-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .faq-item summary {
    min-height: auto;
    padding: 20px 18px;
    grid-template-columns: minmax(0, 1fr) 34px;
    font-size: 0.98rem;
  }

  .faq-item p {
    padding: 0 18px 22px;
  }

  .faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .faq-support-card {
    padding: 20px;
    border-radius: 20px;
  }
}


/* =========================================================
   Banner rotativo inicial - União Compressores
   ========================================================= */
.promo-slider-section {
  padding: clamp(24px, 4vw, 44px) 0 clamp(18px, 3vw, 32px);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 198, 50, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  border-bottom: 1px solid rgba(207, 217, 233, 0.82);
}

.promo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: clamp(18px, 2.5vw, 34px);
  background: #ffffff;
  border: 1px solid rgba(207, 217, 233, 0.9);
  box-shadow: 0 24px 70px rgba(10, 34, 75, 0.13);
}

.promo-slider__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 320px;
  max-height: 620px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 253, 0.98));
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  user-select: none;
}

.promo-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(207, 217, 233, 0.88);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(10, 34, 75, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.promo-slider__arrow span {
  font-size: 2.35rem;
  line-height: 1;
  transform: translateY(-2px);
}

.promo-slider__arrow:hover,
.promo-slider__arrow:focus-visible {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.promo-slider__arrow--prev {
  left: 18px;
}

.promo-slider__arrow--next {
  right: 18px;
}

.promo-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(5, 22, 52, 0.2);
  backdrop-filter: blur(10px);
}

.promo-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.promo-slider__dots button.is-active {
  width: 30px;
  background: var(--yellow-500);
}

@media (max-width: 980px) {
  .promo-slider__viewport {
    aspect-ratio: 16 / 8.5;
    min-height: 250px;
  }

  .promo-slider__arrow {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 640px) {
  .promo-slider-section {
    padding: 16px 0 18px;
  }

  .promo-slider {
    border-radius: 18px;
  }

  .promo-slider__viewport {
    aspect-ratio: 1 / 0.92;
    min-height: 255px;
  }

  .promo-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .promo-slider__arrow span {
    font-size: 1.9rem;
  }

  .promo-slider__arrow--prev {
    left: 10px;
  }

  .promo-slider__arrow--next {
    right: 10px;
  }

  .promo-slider__dots {
    bottom: 12px;
  }
}


/* =========================================================
   Ajuste do banner rotativo: ordem correta, sem texto extra e imagem preenchendo todo o banner
   ========================================================= */
.promo-slider-section {
  padding: 0 !important;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(207, 217, 233, 0.82);
}

.promo-slider-section > .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.promo-slider.promo-slider--full {
  width: 100% !important;
  max-width: none !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

.promo-slider--full .promo-slider__viewport {
  width: 100% !important;
  aspect-ratio: 16 / 6.2 !important;
  min-height: 380px !important;
  max-height: 620px !important;
  background: #ffffff !important;
}

.promo-slider--full .promo-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.promo-slider--full .promo-slider__arrow--prev {
  left: clamp(18px, 4vw, 72px) !important;
}

.promo-slider--full .promo-slider__arrow--next {
  right: clamp(18px, 4vw, 72px) !important;
}

@media (max-width: 980px) {
  .promo-slider--full .promo-slider__viewport {
    aspect-ratio: 16 / 7.4 !important;
    min-height: 300px !important;
  }
}

@media (max-width: 640px) {
  .promo-slider--full .promo-slider__viewport {
    aspect-ratio: 4 / 3 !important;
    min-height: 300px !important;
  }

  .promo-slider--full .promo-slider__arrow--prev {
    left: 12px !important;
  }

  .promo-slider--full .promo-slider__arrow--next {
    right: 12px !important;
  }
}


/* =========================================================
   Ajuste final do banner rotativo - tamanho profissional, responsivo e sem corte pesado
   ========================================================= */
.promo-slider-section {
  padding: clamp(20px, 3vw, 34px) 0 !important;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 198, 50, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%) !important;
  border-bottom: 1px solid rgba(207, 217, 233, 0.82);
}

.promo-slider-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.promo-slider.promo-slider--balanced {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 28px) !important;
  background: #ffffff !important;
  border: 1px solid rgba(207, 217, 233, 0.92) !important;
  box-shadow: 0 22px 58px rgba(10, 34, 75, 0.13) !important;
}

.promo-slider--balanced .promo-slider__viewport {
  position: relative;
  width: 100% !important;
  height: clamp(310px, 36vw, 455px) !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  background: #f4f7fb !important;
}

.promo-slider--balanced .promo-slide {
  overflow: hidden;
  background: #f4f7fb;
}

.promo-slide__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: blur(18px);
  transform: scale(1.08);
  opacity: 0.18;
}

.promo-slider--balanced .promo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.promo-slider--balanced .promo-slide img {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  margin: 0 auto;
}

.promo-slider--balanced .promo-slider__arrow {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.94);
}

.promo-slider--balanced .promo-slider__arrow--prev {
  left: 18px !important;
}

.promo-slider--balanced .promo-slider__arrow--next {
  right: 18px !important;
}

.promo-slider--balanced .promo-slider__dots {
  bottom: 14px;
}

@media (max-width: 980px) {
  .promo-slider--balanced .promo-slider__viewport {
    height: clamp(260px, 40vw, 380px) !important;
  }
}

@media (max-width: 640px) {
  .promo-slider-section {
    padding: 14px 0 18px !important;
  }

  .promo-slider-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .promo-slider.promo-slider--balanced {
    border-radius: 18px !important;
  }

  .promo-slider--balanced .promo-slider__viewport {
    height: 280px !important;
  }

  .promo-slider--balanced .promo-slider__arrow {
    width: 38px;
    height: 38px;
  }

  .promo-slider--balanced .promo-slider__arrow--prev {
    left: 10px !important;
  }

  .promo-slider--balanced .promo-slider__arrow--next {
    right: 10px !important;
  }

  .promo-slider--balanced .promo-slider__dots {
    bottom: 10px;
  }
}

/* Galeria real atualizada - somente fotos, menor e com lightbox navegável */
.equipment-gallery-section .real-photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.equipment-gallery-section .real-photo-card {
  position: relative;
  width: 100%;
  height: 190px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
  border: 1px solid rgba(160, 177, 204, 0.48);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(6, 26, 68, 0.08);
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.equipment-gallery-section .real-photo-card:hover,
.equipment-gallery-section .real-photo-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(9, 47, 122, 0.3);
  box-shadow: 0 22px 56px rgba(6, 26, 68, 0.13);
  outline: none;
}

.equipment-gallery-section .real-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.25s ease;
}

.equipment-gallery-section .real-photo-card:hover img,
.equipment-gallery-section .real-photo-card:focus-visible img {
  transform: scale(1.025);
}

.gallery-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.gallery-more-button {
  min-width: 170px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  color: var(--white);
  background: var(--blue-700);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(9, 47, 122, 0.22);
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.gallery-more-button:hover,
.gallery-more-button:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-800);
  box-shadow: 0 20px 44px rgba(9, 47, 122, 0.28);
  outline: none;
}

.real-photo-gallery--more {
  margin-top: 20px;
}

.real-photo-gallery--more[hidden] {
  display: none !important;
}

.gallery-lightbox__content {
  width: min(1120px, calc(100vw - 36px));
  max-height: calc(100vh - 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 26px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__content img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 110px);
  object-fit: contain;
  background: var(--blue-50);
}

.gallery-lightbox__caption {
  display: none;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 2.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--prev {
  left: 18px;
}

.gallery-lightbox__nav--next {
  right: 18px;
}

.gallery-lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  min-width: 74px;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(6, 26, 68, 0.82);
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  font-size: 0.92rem;
  transform: translateX(-50%);
}

@media (max-width: 1080px) {
  .equipment-gallery-section .real-photo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .equipment-gallery-section .real-photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .equipment-gallery-section .real-photo-card {
    height: 165px;
    border-radius: 18px;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox__content {
    width: calc(100vw - 24px);
    border-radius: 20px;
  }

  .gallery-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 2.2rem;
  }

  .gallery-lightbox__nav--prev {
    left: 10px;
  }

  .gallery-lightbox__nav--next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .equipment-gallery-section .real-photo-gallery {
    grid-template-columns: 1fr;
  }

  .equipment-gallery-section .real-photo-card {
    height: 210px;
  }
}


/* Ajuste final da galeria: thumbnails sem fundo branco e página completa */
.equipment-gallery-section .real-photo-gallery {
  align-items: center;
  justify-items: center;
}

.equipment-gallery-section .real-photo-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible;
  border-radius: 0;
}

.equipment-gallery-section .real-photo-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(6, 26, 68, 0.13);
}

.equipment-gallery-section .real-photo-card:hover,
.equipment-gallery-section .real-photo-card:focus-visible {
  box-shadow: none !important;
}

.equipment-gallery-section .real-photo-card:hover img,
.equipment-gallery-section .real-photo-card:focus-visible img {
  transform: scale(1.035);
  box-shadow: 0 22px 56px rgba(6, 26, 68, 0.18);
}

.gallery-more-button {
  text-decoration: none;
}

.gallery-page-section {
  padding-top: 72px;
}

.gallery-page-section .equipment-gallery-top h1 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.real-photo-gallery--complete {
  margin-top: 34px;
}

.gallery-actions--back {
  margin-top: 42px;
}

.gallery-more-button--secondary {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(160, 177, 204, 0.62);
}

.gallery-more-button--secondary:hover,
.gallery-more-button--secondary:focus-visible {
  color: var(--white);
  background: var(--blue-700);
}

.gallery-lightbox__content {
  background: rgba(255, 255, 255, 0.96);
}

.gallery-lightbox__content img {
  background: transparent !important;
}

/* Correção definitiva da galeria: thumbnails sempre pequenos, sem fundo branco lateral e sem quebrar a página */
.equipment-gallery-section .real-photo-gallery,
.gallery-page-section .real-photo-gallery,
.real-photo-gallery.real-photo-gallery--complete {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
  justify-items: center !important;
  width: 100% !important;
}

.equipment-gallery-section .real-photo-card,
.gallery-page-section .real-photo-card,
.real-photo-gallery--complete .real-photo-card {
  width: 100% !important;
  max-width: 292px !important;
  height: 210px !important;
  min-height: 210px !important;
  max-height: 210px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 36px rgba(6, 26, 68, 0.12) !important;
  cursor: zoom-in !important;
  transform: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}

.equipment-gallery-section .real-photo-card img,
.gallery-page-section .real-photo-card img,
.real-photo-gallery--complete .real-photo-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 20px !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  transition: transform 0.22s ease !important;
}

.equipment-gallery-section .real-photo-card:hover,
.equipment-gallery-section .real-photo-card:focus-visible,
.gallery-page-section .real-photo-card:hover,
.gallery-page-section .real-photo-card:focus-visible {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 48px rgba(6, 26, 68, 0.18) !important;
  outline: none !important;
}

.equipment-gallery-section .real-photo-card:hover img,
.equipment-gallery-section .real-photo-card:focus-visible img,
.gallery-page-section .real-photo-card:hover img,
.gallery-page-section .real-photo-card:focus-visible img {
  transform: none !important;
}

.gallery-page-section {
  padding-top: 72px !important;
}

.gallery-page-section .equipment-gallery-top {
  margin-bottom: 30px !important;
}

.gallery-page-section .equipment-gallery-top p {
  max-width: 760px !important;
}

.gallery-lightbox__content {
  width: min(1120px, calc(100vw - 36px)) !important;
  height: auto !important;
  max-height: calc(100vh - 44px) !important;
  overflow: hidden !important;
}

.gallery-lightbox__content img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: calc(100vh - 110px) !important;
  object-fit: contain !important;
  border-radius: 18px !important;
}

@media (max-width: 1080px) {
  .equipment-gallery-section .real-photo-gallery,
  .gallery-page-section .real-photo-gallery,
  .real-photo-gallery.real-photo-gallery--complete {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .equipment-gallery-section .real-photo-gallery,
  .gallery-page-section .real-photo-gallery,
  .real-photo-gallery.real-photo-gallery--complete {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .equipment-gallery-section .real-photo-card,
  .gallery-page-section .real-photo-card,
  .real-photo-gallery--complete .real-photo-card {
    max-width: 100% !important;
    height: 176px !important;
    min-height: 176px !important;
    max-height: 176px !important;
    border-radius: 16px !important;
  }

  .equipment-gallery-section .real-photo-card img,
  .gallery-page-section .real-photo-card img,
  .real-photo-gallery--complete .real-photo-card img {
    border-radius: 16px !important;
  }
}

@media (max-width: 480px) {
  .equipment-gallery-section .real-photo-gallery,
  .gallery-page-section .real-photo-gallery,
  .real-photo-gallery.real-photo-gallery--complete {
    grid-template-columns: 1fr !important;
  }

  .equipment-gallery-section .real-photo-card,
  .gallery-page-section .real-photo-card,
  .real-photo-gallery--complete .real-photo-card {
    max-width: 310px !important;
    height: 210px !important;
    min-height: 210px !important;
    max-height: 210px !important;
  }
}


/* Ajustes finais solicitados: texto menor no início, mapa no hero e seção Empresa centralizada */
.hero__grid {
  min-height: auto;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  gap: 44px;
  padding: 68px 0 72px;
}

.hero__content h1 {
  max-width: 650px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero__content p {
  max-width: 610px;
  margin-top: 20px;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.55;
}

.hero__actions {
  margin-top: 26px;
}

.hero__highlights {
  margin-top: 28px;
}

.hero__highlights div {
  padding: 16px;
}

.hero__visual--location {
  min-height: auto;
  align-items: center;
  justify-content: center;
}

.location-card--hero {
  width: min(100%, 470px);
  color: var(--slate-900);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-lg);
}

.location-card--hero img {
  width: 100%;
  height: 286px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.location-card--hero .location-card__body {
  padding: 22px 24px 24px;
}

.location-card--hero h3 {
  font-size: 1.22rem;
}

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

.location-card--hero a {
  margin-top: 12px;
}

.section-copy--center {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.section-copy--center .eyebrow {
  justify-content: center;
}

.section-copy--center h2 {
  max-width: 820px;
  margin: 0 auto;
}

.section-copy--center p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding: 58px 0 68px;
  }

  .hero__content h1,
  .hero__content p {
    max-width: 100%;
  }

  .location-card--hero {
    width: min(100%, 560px);
  }
}

@media (max-width: 700px) {
  .hero__content h1 {
    font-size: clamp(2.2rem, 10vw, 3.55rem);
  }

  .location-card--hero img {
    height: 230px;
  }

  .section-copy--center {
    text-align: left;
  }

  .section-copy--center .eyebrow {
    justify-content: flex-start;
  }
}

/* Ajuste: afasta o botão "Voltar ao topo" do botão flutuante do WhatsApp e mantém o clique funcionando */
.footer__bottom > a[data-back-to-top] {
  margin-left: auto;
  margin-right: 220px;
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

@media (max-width: 900px) {
  .footer__bottom > a[data-back-to-top] {
    margin-right: 190px;
  }
}

@media (max-width: 640px) {
  .footer__bottom > a[data-back-to-top] {
    margin-left: 0;
    margin-right: 0;
  }
}

/* =========================================================
   Ajustes v14 - nova logotipo completa no cabeçalho e rodapé
   ========================================================= */

.brand {
  width: 216px;
  min-width: 216px;
  height: 64px;
  padding: 3px 0;
}

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

.footer__brand {
  width: 318px;
  min-height: 92px;
  padding: 10px 14px;
}

.footer__brand img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .brand {
    width: 184px;
    min-width: 184px;
  }
}

@media (max-width: 860px) {
  .brand {
    width: 172px;
    min-width: 172px;
    height: 58px;
  }

  .brand img {
    max-height: 58px;
  }

  .footer__brand {
    width: 280px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 156px;
    min-width: 156px;
  }

  .footer__brand {
    width: min(100%, 260px);
  }
}


/* =========================================================
   Ajustes finais: banner odontológico e história com Veja Mais
   ========================================================= */
.history-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(23, 84, 181, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.history-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(207, 217, 233, 0.92);
  border-radius: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(10, 34, 75, 0.10);
}

.history-card__header {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: center;
}

.history-card__header .eyebrow {
  justify-content: center;
}

.history-card__header h2 {
  margin-top: 16px;
  color: var(--blue-950);
  font-size: clamp(2.1rem, 4.7vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.history-card__subtitle {
  margin: 16px auto 0;
  color: var(--blue-700);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.history-content {
  max-width: 840px;
  margin: 0 auto;
  color: var(--slate-700);
  font-size: clamp(1rem, 1.35vw, 1.09rem);
  line-height: 1.8;
}

.history-content p {
  margin: 0 0 18px;
}

.history-content strong {
  color: var(--blue-950);
  font-weight: 800;
}

.history-more[hidden] {
  display: none !important;
}

.history-more {
  animation: historyReveal 0.28s ease both;
}

.history-highlight {
  margin: 22px 0;
  padding: 22px;
  border-left: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #082860, #104899);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(8, 40, 96, 0.22);
}

.history-highlight strong {
  color: #ffffff;
}

.history-thanks {
  margin: 24px 0;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #082860, #104899);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(8, 40, 96, 0.22);
}

.history-thanks p,
.history-thanks strong {
  color: #ffffff;
}

.history-thanks p:last-child,
.history-signature {
  margin-bottom: 0;
}

.history-signature {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(160, 177, 204, 0.45);
  text-align: center;
  color: var(--blue-950);
}

.history-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.history-toggle {
  min-width: 164px;
}

@keyframes historyReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .history-card {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .history-card__header,
  .history-signature {
    text-align: left;
  }

  .history-card__header .eyebrow {
    justify-content: flex-start;
  }

  .history-card__header h2 {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  .history-content {
    line-height: 1.72;
  }

  .history-thanks {
    padding: 18px;
  }
}
