/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f7f9fa;
  color: #071a2b;
}

a {
  text-decoration: none;
  color: inherit;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 82px;

  z-index: 1000;

  background: rgba(7, 26, 43, 0.94);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-container {
  width: min(1200px, calc(100% - 60px));

  height: 100%;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  flex-shrink: 0;
}

.brand-symbol {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #ffffff;

  font-size: 18px;
  font-weight: 700;

  letter-spacing: -1px;
}

.brand-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.brand-name {
  color: #ffffff;

  font-size: 19px;
  font-weight: 700;

  letter-spacing: 2px;
}

.brand-subtitle {
  margin-top: 5px;

  color: #7db9d9;

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 3px;
}

.main-nav {
  display: flex;
  align-items: center;

  gap: 34px;

  margin-left: auto;
  margin-right: 40px;
}

.main-nav a {
  position: relative;

  color: rgba(255, 255, 255, 0.72);

  font-size: 13px;
  font-weight: 500;

  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: #45a9d8;

  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  height: 42px;

  padding: 0 20px;

  background: #1682b8;

  color: #ffffff;

  font-size: 12px;
  font-weight: 600;

  white-space: nowrap;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.header-button:hover {
  background: #1b96d0;

  transform: translateY(-1px);
}

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;
}

.menu-toggle span {
  display: block;

  width: 23px;
  height: 2px;

  background: #ffffff;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .header-container {
    width: min(100% - 40px, 1200px);
  }

  .main-nav {
    gap: 20px;
    margin-right: 20px;
  }

  .header-button {
    padding: 0 15px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
  }

  .header-container {
    width: calc(100% - 32px);
  }

  .main-nav,
  .header-button {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .brand-symbol {
    width: 37px;
    height: 37px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 7px;
    letter-spacing: 2.5px;
  }

  .mobile-nav {
    position: absolute;

    top: 72px;
    left: 0;

    width: 100%;

    display: flex;

    flex-direction: column;

    padding: 10px 20px 22px;

    background: rgba(7, 26, 43, 0.98);

    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-15px);

    pointer-events: none;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .mobile-nav.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
  }

  .mobile-nav a {
    display: flex;

    align-items: center;

    min-height: 52px;

    padding: 0 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;
    font-weight: 500;

    transition:
      color 0.25s ease,
      padding-left 0.25s ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: #ffffff;

    padding-left: 10px;
  }

  .mobile-nav-button {
    justify-content: center;

    margin-top: 15px;

    min-height: 48px !important;

    padding: 0 20px !important;

    border: none !important;

    background: #1682b8;

    color: #ffffff !important;

    font-weight: 600 !important;
  }

  .mobile-nav-button:hover {
    padding-left: 20px !important;

    background: #1b96d0;
  }

  .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);
  }
}
/* =========================
   CONTEÚDO TEMPORÁRIO
========================= */

.placeholder {
  min-height: 100vh;

  padding-top: 82px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: #071a2b;
}

.placeholder h1 {
  color: #ffffff;

  font-size: clamp(42px, 6vw, 80px);

  margin-bottom: 20px;
}

.placeholder p {
  max-width: 600px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 17px;
  line-height: 1.7;
}

.test-section {
  height: 500px;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {
  .header-container {
    width: min(100% - 40px, 1200px);
  }

  .main-nav {
    gap: 20px;
    margin-right: 20px;
  }

  .header-button {
    padding: 0 15px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
  }

  .header-container {
    width: calc(100% - 32px);
  }

  .main-nav,
  .header-button {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .brand-symbol {
    width: 37px;
    height: 37px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 7px;
    letter-spacing: 2.5px;
  }

  .placeholder {
    padding-top: 72px;
  }
}
/* ================================
   HERO
================================ */

.hero {
  position: relative;

  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #071522;
}

/* IMAGEM */

.hero-image {
  position: absolute;

  inset: 0;

  background-image: url("../img/Editedimage_1787165161206.png");

  background-size: cover;
  background-position: center;

  z-index: 0;
}

/* ESCURECIMENTO */

.hero-dark {
  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(5, 18, 30, 0.98) 0%,
    rgba(5, 18, 30, 0.9) 30%,
    rgba(5, 18, 30, 0.58) 55%,
    rgba(5, 18, 30, 0.15) 100%
  );
}

/* CONTAINER */

.hero-container {
  position: relative;

  z-index: 2;

  width: min(1200px, calc(100% - 60px));

  margin: 0 auto;

  padding-top: 82px;
}

/* CONTEÚDO */

.hero-content {
  width: 620px;
  max-width: 100%;

  padding: 80px 0 100px;
}

/* TÍTULO */

.hero h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(48px, 5.2vw, 74px);

  font-weight: 500;

  line-height: 1.04;

  letter-spacing: -2.5px;
}

.hero h1 strong {
  display: block;

  color: #2998d1;

  font-weight: 600;
}

/* TEXTO */

.hero-content > p {
  width: 520px;
  max-width: 100%;

  margin-top: 28px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 16px;

  font-weight: 400;

  line-height: 1.75;
}

/* BOTÕES */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 38px;
}

/* WHATSAPP */

.whatsapp-button {
  min-height: 54px;

  padding: 0 23px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 11px;

  background: #168bc1;

  color: #ffffff;

  font-size: 13px;

  font-weight: 600;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.whatsapp-button svg {
  width: 20px;
  height: 20px;

  fill: currentColor;
}

.whatsapp-button:hover {
  background: #1b9edb;

  transform: translateY(-2px);
}

/* SERVIÇOS */

.services-button {
  min-height: 54px;

  padding: 0 23px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.3);

  color: #ffffff;

  font-size: 13px;

  font-weight: 500;

  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.services-button:hover {
  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.6);
}

/* TELEFONE */

.hero-phone {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 42px;
}

.hero-phone span {
  color: rgba(255, 255, 255, 0.42);

  font-size: 11px;
}

.hero-phone a {
  color: #ffffff;

  font-size: 15px;

  font-weight: 600;

  transition: color 0.2s ease;
}

.hero-phone a:hover {
  color: #2998d1;
}

/* ================================
   RESPONSIVO
================================ */

@media (max-width: 900px) {
  .hero-container {
    width: calc(100% - 40px);
  }

  .hero-content {
    width: 580px;
  }

  .hero h1 {
    font-size: clamp(44px, 7vw, 62px);
  }

  .hero-dark {
    background: linear-gradient(
      90deg,
      rgba(5, 18, 30, 0.97) 0%,
      rgba(5, 18, 30, 0.82) 50%,
      rgba(5, 18, 30, 0.45) 100%
    );
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;

    align-items: flex-end;
  }

  .hero-container {
    width: calc(100% - 32px);

    padding-top: 72px;
  }

  .hero-content {
    padding: 80px 0 65px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 53px);

    line-height: 1.07;

    letter-spacing: -1.8px;
  }

  .hero-content > p {
    margin-top: 22px;

    font-size: 14px;

    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;

    flex-direction: column;

    align-items: stretch;

    margin-top: 30px;
  }

  .whatsapp-button,
  .services-button {
    width: 100%;
  }

  .hero-phone {
    margin-top: 30px;
  }

  .hero-dark {
    background: linear-gradient(
      180deg,
      rgba(5, 18, 30, 0.4) 0%,
      rgba(5, 18, 30, 0.72) 42%,
      rgba(5, 18, 30, 0.98) 82%
    );
  }

  .hero-image {
    background-position: 65% center;
  }
}

/* =========================================================
   SOBRE A HYDRO
========================================================= */

.about-section {
  padding: 120px 0;
  background: #f5f6f7;
}

.about-container {
  width: min(1320px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;

  align-items: start;
}

/* =========================================================
   IMAGEM
========================================================= */

.about-image {
  position: relative;
  width: 100%;
  height: 620px;

  overflow: hidden;
  border-radius: 3px;
}

.about-image img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
}

/* Detalhe sobre a imagem */

.about-image-detail {
  position: absolute;
  left: 24px;
  bottom: 24px;

  padding: 14px 24px 14px 20px;

  background: rgba(8, 20, 28, 0.92);
  border-left: 2px solid #008bd2;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-image-detail span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #008bd2;
}

.about-image-detail strong {
  font-size: 18px;
  color: #ffffff;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.about-content {
  padding-top: 0;
}

/* Label */

.about-label {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 24px;

  color: #007dbb;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-label::before {
  content: "";

  width: 26px;
  height: 1px;

  background: #008bd2;
}

/* Título */

.about-content h2 {
  margin: 0 0 30px;

  max-width: 620px;

  color: #111820;

  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -2px;
}

.about-content h2 strong {
  color: #0879b2;
  font-weight: 700;
}

/* =========================================================
   TEXTOS
========================================================= */

.about-text {
  max-width: 650px;
}

.about-content p {
  margin: 0 0 22px;

  color: #53616d;

  font-size: 15px;
  line-height: 1.75;
}

.about-content p strong {
  color: #3f4c57;
  font-weight: 700;
}

/* =========================================================
   MISSÃO
========================================================= */

.about-mission {
  margin-top: 28px;
  padding-top: 24px;

  border-top: 1px solid #d9dee2;

  max-width: 650px;
}

.about-subtitle {
  display: block;

  margin-bottom: 8px;

  color: #111820;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-mission p {
  margin: 0;

  color: #65727d;

  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   VALORES
========================================================= */

.about-values {
  margin-top: 28px;
  padding-top: 24px;

  border-top: 1px solid #d9dee2;

  max-width: 650px;
}

.about-values ul {
  margin: 12px 0 0;
  padding-left: 18px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 7px;
}

.about-values li {
  color: #53616d;

  font-size: 14px;
  line-height: 1.5;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    height: 500px;
  }

  .about-content h2 {
    max-width: 700px;
  }

  .about-text,
  .about-mission,
  .about-values {
    max-width: 750px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .about-section {
    padding: 80px 0;
  }

  .about-container {
    width: min(92%, 500px);
    gap: 40px;
  }

  .about-image {
    height: 380px;
  }

  .about-image-detail {
    left: 16px;
    bottom: 16px;
  }

  .about-content h2 {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1.5px;

    margin-bottom: 24px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .about-values ul {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   SERVIÇOS
========================================================= */

.services-section {
  width: 100%;
  padding: 120px 5%;
  background: #ffffff;
}

.services-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.services-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;

  align-items: end;

  margin-bottom: 70px;
}

.services-label {
  display: inline-block;

  margin-bottom: 20px;

  padding-left: 45px;

  position: relative;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 3px;

  color: #0b6fa4;
}

.services-label::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 32px;
  height: 2px;

  background: #0b6fa4;

  transform: translateY(-50%);
}

.services-header h2 {
  max-width: 700px;

  margin: 0;

  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.08;

  font-weight: 400;

  letter-spacing: -2px;

  color: #101820;
}

.services-header h2 strong {
  color: #0b6fa4;
  font-weight: 700;
}

.services-header > p {
  max-width: 520px;

  margin: 0 0 5px;

  font-size: 17px;
  line-height: 1.8;

  color: #69737a;
}

/* =========================================================
   GRID DOS SERVIÇOS
========================================================= */

.services-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

/* =========================================================
   CARD
========================================================= */

.service-card {
  background: #f5f6f7;

  border: 1px solid #e5e8ea;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-7px);

  border-color: #d5dce0;

  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.1);
}

/* =========================================================
   IMAGEM
========================================================= */

.service-image {
  position: relative;

  width: 100%;
  height: 330px;

  overflow: hidden;

  background: #111;
}

.service-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(8, 13, 17, 0.45), transparent 45%);
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* =========================================================
   NÚMERO
========================================================= */

.service-number {
  position: absolute;

  z-index: 2;

  top: 25px;
  right: 25px;

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(8, 13, 17, 0.88);

  color: #ffffff;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;

  border-left: 2px solid #0b6fa4;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.service-content {
  padding: 35px 38px 40px;
}

.service-type {
  display: block;

  margin-bottom: 14px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2.5px;

  color: #0b6fa4;
}

.service-content h3 {
  margin: 0 0 16px;

  max-width: 600px;

  font-size: 25px;
  line-height: 1.25;

  font-weight: 700;

  color: #101820;
}

.service-content p {
  max-width: 600px;

  margin: 0;

  font-size: 15px;
  line-height: 1.75;

  color: #687178;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .services-section {
    padding: 90px 5%;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 25px;

    margin-bottom: 50px;
  }

  .services-header > p {
    max-width: 700px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {
  .services-section {
    padding: 70px 20px;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-header h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .services-header > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .services-grid {
    gap: 22px;
  }

  .service-image {
    height: 260px;
  }

  .service-number {
    top: 18px;
    right: 18px;

    width: 48px;
    height: 48px;
  }

  .service-content {
    padding: 28px 25px 32px;
  }

  .service-content h3 {
    font-size: 21px;
  }

  .service-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}
/* =========================================================
   DIFERENCIAIS
========================================================= */

.differentials-section {
  width: 100%;
  padding: 120px 5%;
  background: #101820;
}

.differentials-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;

  align-items: center;
}

/* =========================================================
   IMAGEM
========================================================= */

.differentials-image {
  position: relative;

  width: 100%;
  height: 700px;

  overflow: hidden;

  background: #080c0f;
}

.differentials-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  opacity: 0.82;

  transition: transform 0.8s ease;
}

.differentials-image:hover img {
  transform: scale(1.04);
}

/* =========================================================
   INFORMAÇÃO SOBRE A IMAGEM
========================================================= */

.differentials-image-info {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 30px;

  padding: 25px 28px;

  background: rgba(8, 13, 17, 0.9);

  backdrop-filter: blur(10px);

  border-left: 3px solid #0b6fa4;
}

.differentials-image-info span {
  display: block;

  margin-bottom: 8px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2.5px;

  color: #6ea8c7;
}

.differentials-image-info strong {
  display: block;

  font-size: 22px;
  line-height: 1.3;

  font-weight: 600;

  color: #ffffff;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.differentials-content {
  max-width: 720px;
}

.differentials-label {
  display: inline-block;

  position: relative;

  padding-left: 45px;
  margin-bottom: 22px;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 3px;

  color: #6ea8c7;
}

.differentials-label::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 32px;
  height: 2px;

  background: #0b6fa4;

  transform: translateY(-50%);
}

/* =========================================================
   TÍTULO
========================================================= */

.differentials-content h2 {
  margin: 0 0 28px;

  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.08;

  font-weight: 400;

  letter-spacing: -2px;

  color: #ffffff;
}

.differentials-content h2 strong {
  display: block;

  color: #5fa1c4;

  font-weight: 700;
}

/* =========================================================
   TEXTO PRINCIPAL
========================================================= */

.differentials-intro {
  max-width: 650px;

  margin: 0 0 40px;

  font-size: 17px;
  line-height: 1.8;

  color: #aab3b9;
}

/* =========================================================
   LISTA DE DIFERENCIAIS
========================================================= */

.differentials-list {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 10px 35px;
}

/* =========================================================
   ITEM
========================================================= */

.differential-item {
  padding: 20px 0;

  transition: transform 0.3s ease;
}

.differential-item:hover {
  transform: translateX(6px);
}

/* =========================================================
   TÍTULO DO ITEM
========================================================= */

.differential-item h3 {
  position: relative;

  margin: 0 0 12px;

  padding-left: 22px;

  font-size: 19px;
  line-height: 1.3;

  font-weight: 600;

  color: #ffffff;
}

.differential-item h3::before {
  content: "";

  position: absolute;

  left: 0;
  top: 7px;

  width: 7px;
  height: 7px;

  background: #0b6fa4;
}

/* =========================================================
   DESCRIÇÃO
========================================================= */

.differential-item p {
  margin: 0;

  padding-left: 22px;

  font-size: 14px;
  line-height: 1.7;

  color: #8f9aa1;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .differentials-section {
    padding: 90px 5%;
  }

  .differentials-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .differentials-image {
    height: 550px;
  }

  .differentials-content {
    max-width: 850px;
  }
}

/* =========================================================
   TABLET MENOR
========================================================= */

@media (max-width: 800px) {
  .differentials-list {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .differential-item {
    padding: 18px 0;
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {
  .differentials-section {
    padding: 70px 20px;
  }

  .differentials-container {
    gap: 45px;
  }

  .differentials-image {
    height: 420px;
  }

  /* Informações da imagem */

  .differentials-image-info {
    left: 18px;
    right: 18px;
    bottom: 18px;

    padding: 20px;
  }

  .differentials-image-info span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .differentials-image-info strong {
    font-size: 19px;
  }

  /* Título */

  .differentials-content h2 {
    font-size: 38px;

    line-height: 1.1;

    letter-spacing: -1.5px;
  }

  /* Texto */

  .differentials-intro {
    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 30px;
  }

  /* Lista */

  .differentials-list {
    grid-template-columns: 1fr;

    gap: 5px;
  }

  /* Itens */

  .differential-item {
    padding: 18px 0;
  }

  .differential-item h3 {
    font-size: 17px;

    margin-bottom: 9px;
  }

  .differential-item p {
    font-size: 14px;

    line-height: 1.65;
  }
}

/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 400px) {
  .differentials-section {
    padding: 60px 18px;
  }

  .differentials-image {
    height: 370px;
  }

  .differentials-content h2 {
    font-size: 34px;
  }

  .differentials-label {
    font-size: 11px;
    letter-spacing: 2px;
  }
}
/* =========================================================
   DEPOIMENTOS
========================================================= */

.testimonials-section {
  width: 100%;
  padding: 120px 5%;

  background: #f5f6f7;

  overflow: hidden;
}

.testimonials-container {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.testimonials-header {
  max-width: 750px;

  margin-bottom: 65px;
}

.testimonials-label {
  display: inline-block;

  position: relative;

  padding-left: 45px;
  margin-bottom: 20px;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 3px;

  color: #0b6fa4;
}

.testimonials-label::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 32px;
  height: 2px;

  background: #0b6fa4;

  transform: translateY(-50%);
}

.testimonials-header h2 {
  margin: 0 0 22px;

  font-size: clamp(42px, 4vw, 62px);

  line-height: 1.08;

  font-weight: 400;

  letter-spacing: -2px;

  color: #101820;
}

.testimonials-header h2 strong {
  display: block;

  color: #0b6fa4;

  font-weight: 700;
}

.testimonials-header p {
  max-width: 650px;

  margin: 0;

  font-size: 17px;
  line-height: 1.8;

  color: #69737a;
}

/* =========================================================
   CARROSSEL
========================================================= */

.testimonials-carousel {
  position: relative;

  display: flex;
  align-items: center;

  gap: 25px;
}

/* =========================================================
   ÁREA VISÍVEL
========================================================= */

.testimonials-track-wrapper {
  width: 100%;

  overflow: hidden;
}

.testimonials-track {
  display: flex;

  gap: 25px;

  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  will-change: transform;
}

/* =========================================================
   CARD
========================================================= */

.testimonial-card {
  flex: 0 0 calc((100% - 50px) / 3);

  min-height: 330px;

  padding: 35px;

  background: #ffffff;

  border: 1px solid #e1e5e7;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 18px 45px rgba(16, 24, 32, 0.08);
}

/* =========================================================
   TOPO DO CARD
========================================================= */

.testimonial-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 25px;
}

.testimonial-stars {
  font-size: 14px;

  letter-spacing: 3px;

  color: #0b6fa4;
}

.testimonial-quote {
  font-family: Georgia, serif;

  font-size: 55px;
  line-height: 0.5;

  color: #d9e4e9;
}

/* =========================================================
   TEXTO
========================================================= */

.testimonial-text {
  flex: 1;

  margin: 0 0 30px;

  font-size: 16px;

  line-height: 1.75;

  color: #59636a;
}

/* =========================================================
   AUTOR
========================================================= */

.testimonial-author {
  display: flex;

  align-items: center;

  gap: 14px;

  padding-top: 22px;

  border-top: 1px solid #e8ebed;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #101820;

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;
}

.testimonial-author strong {
  display: block;

  margin-bottom: 3px;

  font-size: 15px;

  color: #101820;
}

.testimonial-author span {
  display: block;

  font-size: 12px;

  color: #8a9398;
}

/* =========================================================
   SETAS
========================================================= */

.testimonial-arrow {
  width: 52px;
  height: 52px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d5dadd;

  background: #ffffff;

  color: #101820;

  font-size: 22px;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.testimonial-arrow:hover {
  background: #0b6fa4;

  border-color: #0b6fa4;

  color: #ffffff;
}

/* =========================================================
   INDICADORES
========================================================= */

.testimonial-dots {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-top: 40px;
}

.testimonial-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: none;

  background: #cbd2d6;

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.testimonial-dot.active {
  width: 25px;

  background: #0b6fa4;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
  .testimonials-section {
    padding: 90px 5%;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 700px) {
  .testimonials-section {
    padding: 70px 20px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-header h2 {
    font-size: 38px;

    letter-spacing: -1.5px;
  }

  .testimonials-header p {
    font-size: 15px;

    line-height: 1.7;
  }

  .testimonials-carousel {
    gap: 12px;
  }

  .testimonial-card {
    flex: 0 0 100%;

    min-height: 320px;

    padding: 28px 25px;
  }

  .testimonial-arrow {
    position: absolute;

    z-index: 5;

    top: 50%;

    transform: translateY(-50%);

    width: 44px;
    height: 44px;
  }

  .testimonial-prev {
    left: 10px;
  }

  .testimonial-next {
    right: 10px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}

/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 400px) {
  .testimonials-section {
    padding: 60px 18px;
  }

  .testimonials-header h2 {
    font-size: 34px;
  }

  .testimonial-card {
    min-height: 340px;

    padding: 25px 22px;
  }
}
/* =========================================================
   CONTATO
========================================================= */

.contact-section {
  width: 100%;
  padding: 120px 5%;

  background: #ffffff;
}

.contact-container {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 90px;

  align-items: start;
}

/* =========================================================
   CONTEÚDO
========================================================= */

.contact-content {
  padding-top: 20px;
}

.contact-label {
  display: inline-block;

  position: relative;

  padding-left: 45px;
  margin-bottom: 22px;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 3px;

  color: #0b6fa4;
}

.contact-label::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 32px;
  height: 2px;

  background: #0b6fa4;

  transform: translateY(-50%);
}

/* =========================================================
   TÍTULO
========================================================= */

.contact-content h2 {
  max-width: 650px;

  margin: 0 0 28px;

  font-size: clamp(42px, 4vw, 62px);

  line-height: 1.08;

  font-weight: 400;

  letter-spacing: -2px;

  color: #101820;
}

.contact-content h2 strong {
  display: block;

  color: #0b6fa4;

  font-weight: 700;
}

/* =========================================================
   INTRODUÇÃO
========================================================= */

.contact-intro {
  max-width: 620px;

  margin: 0 0 45px;

  font-size: 17px;

  line-height: 1.8;

  color: #69737a;
}

/* =========================================================
   INFORMAÇÕES
========================================================= */

.contact-info {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.contact-item {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 17px 0;

  text-decoration: none;

  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

/* =========================================================
   ÍCONES
========================================================= */

.contact-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #101820;
}

.contact-icon svg {
  width: 20px;
  height: 20px;

  fill: #ffffff;
}

/* =========================================================
   TEXTOS DOS CONTATOS
========================================================= */

.contact-item span {
  display: block;

  margin-bottom: 4px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #899298;
}

.contact-item strong {
  display: block;

  font-size: 16px;

  font-weight: 600;

  color: #101820;
}

/* =========================================================
   FORMULÁRIO
========================================================= */

.contact-form-wrapper {
  padding: 45px;

  background: #f5f6f7;

  border: 1px solid #e1e5e7;
}

/* =========================================================
   CABEÇALHO DO FORMULÁRIO
========================================================= */

.contact-form-header {
  margin-bottom: 35px;
}

.contact-form-header > span {
  display: block;

  margin-bottom: 10px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2.5px;

  color: #0b6fa4;
}

.contact-form-header h3 {
  margin: 0 0 10px;

  font-size: 30px;

  line-height: 1.2;

  font-weight: 700;

  color: #101820;
}

.contact-form-header p {
  max-width: 550px;

  margin: 0;

  font-size: 14px;

  line-height: 1.7;

  color: #737d83;
}

/* =========================================================
   FORM
========================================================= */

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.form-group {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.form-group label {
  font-size: 12px;

  font-weight: 600;

  color: #3e474d;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 15px 16px;

  border: 1px solid #d7dcdf;

  outline: none;

  background: #ffffff;

  font-family: inherit;

  font-size: 14px;

  color: #101820;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group input,
.form-group select {
  height: 50px;
}

.form-group textarea {
  min-height: 125px;

  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a2aaaf;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0b6fa4;

  box-shadow: 0 0 0 3px rgba(11, 111, 164, 0.08);
}

/* =========================================================
   BOTÃO
========================================================= */

.contact-submit {
  width: 100%;

  min-height: 56px;

  margin-top: 5px;

  padding: 15px 22px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  border: none;

  background: #0b6fa4;

  color: #ffffff;

  font-family: inherit;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.contact-submit span {
  font-size: 22px;

  transition: transform 0.3s ease;
}

.contact-submit:hover {
  background: #095d89;
}

.contact-submit:hover span {
  transform: translateX(5px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .contact-section {
    padding: 90px 5%;
  }

  .contact-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .contact-content {
    padding-top: 0;
  }

  .contact-content h2 {
    max-width: 800px;
  }

  .contact-intro {
    max-width: 750px;
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {
  .contact-section {
    padding: 70px 20px;
  }

  .contact-container {
    gap: 45px;
  }

  /* Conteúdo */

  .contact-content h2 {
    font-size: 38px;

    letter-spacing: -1.5px;
  }

  .contact-intro {
    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 30px;
  }

  /* Contatos */

  .contact-item {
    padding: 14px 0;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  /* Formulário */

  .contact-form-wrapper {
    padding: 28px 22px;
  }

  .contact-form-header h3 {
    font-size: 25px;
  }

  .contact-form-header p {
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .contact-submit {
    min-height: 54px;
  }
}

/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 400px) {
  .contact-section {
    padding: 60px 18px;
  }

  .contact-content h2 {
    font-size: 34px;
  }

  .contact-form-wrapper {
    padding: 25px 18px;
  }
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  width: 100%;

  background: #0b1116;

  color: #ffffff;
}

/* =========================================================
   CONTAINER
========================================================= */

.footer-container {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;

  padding: 80px 5%;

  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 70px;
}

/* =========================================================
   MARCA
========================================================= */

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 25px;

  text-decoration: none;
}

/* LOGO */

.footer-logo-symbol {
  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #0b6fa4;

  color: #ffffff;

  font-size: 22px;

  font-weight: 700;
}

/* TEXTO */

.footer-logo-text {
  display: flex;

  flex-direction: column;
}

.footer-logo-text span {
  font-size: 21px;

  line-height: 1;

  font-weight: 700;

  letter-spacing: 2px;

  color: #ffffff;
}

.footer-logo-text small {
  margin-top: 5px;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 3px;

  color: #7d8990;
}

/* DESCRIÇÃO */

.footer-brand > p {
  margin: 0;

  font-size: 14px;

  line-height: 1.8;

  color: #7f8b92;
}

/* =========================================================
   COLUNAS
========================================================= */

.footer-column h3 {
  margin: 0 0 25px;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #ffffff;
}

/* =========================================================
   LINKS
========================================================= */

.footer-nav {
  display: flex;

  flex-direction: column;

  gap: 13px;
}

.footer-nav a {
  width: fit-content;

  font-size: 14px;

  color: #7f8b92;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;

  transform: translateX(4px);
}

/* =========================================================
   CONTATO
========================================================= */

.footer-contact p {
  margin: 0 0 20px;

  font-size: 14px;

  line-height: 1.7;

  color: #7f8b92;
}

/* =========================================================
   WHATSAPP
========================================================= */

.footer-whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding-bottom: 5px;

  border-bottom: 1px solid #0b6fa4;

  color: #ffffff;

  font-size: 14px;

  font-weight: 600;

  text-decoration: none;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.footer-whatsapp span {
  font-size: 18px;
}

.footer-whatsapp:hover {
  color: #5fa1c4;

  gap: 17px;
}

/* =========================================================
   PARTE INFERIOR
========================================================= */

.footer-bottom {
  width: 100%;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-container {
  width: 100%;
  max-width: 1500px;

  margin: 0 auto;

  padding: 22px 5%;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  margin: 0;

  font-size: 12px;

  color: #68737a;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 50px;
  }

  .footer-contact {
    grid-column: 2 / 4;
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 700px) {
  .footer-container {
    padding: 65px 20px;

    grid-template-columns: 1fr;

    gap: 45px;
  }

  .footer-brand {
    max-width: 500px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-column h3 {
    margin-bottom: 20px;
  }

  .footer-bottom-container {
    padding: 20px;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
  }
}

/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 400px) {
  .footer-container {
    padding: 55px 18px;
  }

  .footer-brand > p {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}
/* =========================================================
   TELEFONES DO HERO
========================================================= */

.hero-phone {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-phone > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.65;
}

.hero-phone-numbers {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-phone-numbers a {
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.hero-phone-numbers a:hover {
  opacity: 0.7;
}

/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.floating-whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
}

.floating-whatsapp-button {
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-whatsapp-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp-button svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

/* =========================================================
   OPÇÕES DE WHATSAPP
========================================================= */

.whatsapp-options {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 340px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.97);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.whatsapp-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* CABEÇALHO */

.whatsapp-options-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.whatsapp-options-header div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.whatsapp-options-header strong {
  color: #151515;
  font-size: 16px;
}

.whatsapp-options-header span {
  color: #777;
  font-size: 12px;
}

.whatsapp-options-header button {
  width: 30px;
  height: 30px;
  border: none;
  background: #f2f2f2;
  color: #555;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

/* OPÇÕES */

.whatsapp-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 12px;
  text-decoration: none;
  background: #f7f7f7;
  margin-top: 9px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.whatsapp-option:hover {
  background: #eeeeee;
  transform: translateX(-2px);
}

.whatsapp-option-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-option-icon svg {
  width: 21px;
  height: 21px;
  fill: #fff;
}

.whatsapp-option > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.whatsapp-option > div:nth-child(2) span {
  font-size: 11px;
  color: #777;
}

.whatsapp-option > div:nth-child(2) strong {
  font-size: 14px;
  color: #151515;
}

.whatsapp-option-arrow {
  color: #25d366;
  font-size: 20px;
}

/* =========================================================
   BOTÃO HERO
========================================================= */

.whatsapp-button {
  border: none;
  cursor: pointer;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .hero-phone-numbers {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
  }

  .floating-whatsapp-button {
    width: 58px;
    height: 58px;
  }

  .whatsapp-options {
    width: calc(100vw - 36px);
    max-width: 340px;
    right: 0;
    bottom: 70px;
  }
}
/* ===== NOSSOS PRINCIPAIS CLIENTES ===== */
.clientes-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
}

.clientes-container {
  max-width: 1200px;
  margin: 0 auto;
}

.clientes-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clientes-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 50px;
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cliente-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cliente-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.15);
}

.cliente-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.cliente-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 102, 204, 0.3) 100%
  );
  pointer-events: none;
}

.cliente-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cliente-card:hover .cliente-card-image img {
  transform: scale(1.05);
}

.cliente-card-body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cliente-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a2540;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0066cc;
}

.cliente-card-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #44505c;
}

.cliente-card-text strong {
  color: #0066cc;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .clientes-grid {
    grid-template-columns: 1fr;
  }

  .clientes-title {
    font-size: 1.6rem;
  }

  .cliente-card-image {
    height: 180px;
  }

  .cliente-card-body {
    padding: 20px 16px;
  }
}
/* ================================
   CONTRATO DE MANUTENÇÃO
================================ */
.contract-section {
  padding: 100px 0;
  background: #f5f7fa;
}

.contract-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOPO: imagem + texto lado a lado */
.contract-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.contract-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 3;
}

.contract-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.contract-image:hover img {
  transform: scale(1.04);
}

.contract-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(37, 99, 235, 0.95);
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.contract-image-badge strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.contract-image-badge span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.9;
}

/* HEADER */
.contract-header {
  max-width: 560px;
}

.contract-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contract-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0 0 24px;
}

.contract-header h2 strong {
  color: #2563eb;
}

.contract-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 16px;
}

.contract-note {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #777;
  margin: 0;
  font-style: italic;
}

/* PLANOS */
.contract-plans {
  margin-bottom: 60px;
}

.contract-plans-title {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #1a1a2e;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.contract-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.contract-plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  border: 2px solid #e2e8f0;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contract-plan-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.08);
}

.contract-plan-card--featured {
  border-color: #2563eb;
  position: relative;
}

.contract-plan-card--featured::after {
  content: "Recomendado";
  position: absolute;
  top: -12px;
  right: 24px;
  background: #2563eb;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.contract-plan-header {
  margin-bottom: 20px;
}

.contract-plan-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #2563eb;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contract-plan-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.contract-plan-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.contract-plan-body strong {
  color: #1a1a2e;
}

/* VANTAGENS */
.contract-advantages-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 36px;
}

.contract-advantages-title strong {
  color: #2563eb;
}

.contract-advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contract-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 24px 28px;
  border: 1px solid #e2e8f0;
}

.contract-advantage-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contract-advantage-icon svg {
  width: 22px;
  height: 22px;
  fill: #2563eb;
}

.contract-advantage-item p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  padding-top: 4px;
}

.contract-advantage-item strong {
  color: #1a1a2e;
}

/* CTA */
.contract-cta {
  text-align: center;
  margin-top: 48px;
}

.contract-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2563eb;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.contract-cta-button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .contract-section {
    padding: 60px 0;
  }

  .contract-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contract-image {
    aspect-ratio: 16 / 10;
  }

  .contract-header h2 {
    font-size: 1.6rem;
  }

  .contract-plans-grid {
    grid-template-columns: 1fr;
  }

  .contract-advantages-grid {
    grid-template-columns: 1fr;
  }

  .contract-advantages-title {
    font-size: 1.3rem;
  }

  .contract-plan-card {
    padding: 28px 24px;
  }
}
.brand-symbol {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
