/* =====================
   Base
===================== */
:root {
  --color-white: #ffffff;
  --color-dark: #1f1f1f;
  --color-text: #34404f;
  --color-red: #d81f26;
  --color-red-dark: #bc1a20;
  --color-bg-soft: #f5f7fa;
  --color-overlay: rgba(6, 26, 56, 0.56);
  --color-overlay-bottom: rgba(4, 24, 54, 0.78);
  --topbar-height: 36px;
  --mainbar-height: 82px;
  --header-height: calc(var(--topbar-height) + var(--mainbar-height));
  --section-gap: 92px;
  --radius-lg: 8px;
  --projects-side-card-height: 408px;
  --fs-nav: clamp(15px, 1vw, 18px);
  --fs-button: clamp(15px, 0.95vw, 17px);
  --fs-kicker: 12px;
  --fs-section-title: clamp(26px, 2.6vw, 40px);
  --fs-section-text: 17px;
  --fs-card-title: clamp(20px, 1.6vw, 24px);
  --fs-project-kicker: clamp(12px, 0.85vw, 15px);
  --fs-project-title: clamp(34px, 3.6vw, 56px);
  --fs-project-slide-title: clamp(16px, 1vw, 20px);
  --fs-project-main-title: clamp(28px, 2.7vw, 42px);
  --fs-project-main-text: clamp(16px, 1vw, 18px);
  --fs-project-main-item: clamp(14px, 0.9vw, 17px);
  --fs-hero-eyebrow: clamp(12px, 0.8vw, 14px);
  --fs-hero-title: clamp(34px, 4.8vw, 64px);
  --fs-hero-text: clamp(17px, 1.2vw, 22px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-dark);
  background: var(--color-white);
}

/* Acessibilidade: permite pular direto para o conteúdo principal */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  background: #111111;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  z-index: 2200;
}

.skip-link:focus {
  top: 12px;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  overflow: hidden;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

/* =====================
   Layout: Header
===================== */
.site-header {
  position: sticky;
  top: 0;
  background: var(--color-white);
  border-bottom: 1px solid #ececec;
  z-index: 1100;
}

.site-topbar {
  border-bottom: 1px solid #e8eef5;
  background: #f8fbfd;
}

.site-topbar-inner {
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.site-topbar-client-dropdown {
  position: relative;
}

.site-topbar-client-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  color: #2a3f54;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}

.site-topbar-client-toggle i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.site-topbar-client-dropdown.show .site-topbar-client-toggle i {
  transform: rotate(180deg);
}

.site-topbar-client-toggle:hover,
.site-topbar-client-toggle.active {
  color: var(--color-red);
}

.site-topbar-client-dropdown .dropdown-menu {
  margin-top: 8px;
  min-width: 170px;
  border: 1px solid #dde6ef;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(14, 34, 58, 0.12);
}

.site-topbar-client-dropdown .dropdown-item {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1f2e40;
}

.site-topbar-client-dropdown .dropdown-item:hover,
.site-topbar-client-dropdown .dropdown-item:focus {
  color: #b31924;
  background: #f4f7fa;
}

.topbar-social-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar-social-links a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #d6e1ec;
  background: #ffffff;
  color: #2a3f54;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.topbar-social-links a:hover {
  color: #b31924;
  border-color: #b31924;
  background: #fff6f7;
}

.header-main {
  background: var(--color-white);
}

.header-wrapper {
  position: relative;
  min-height: var(--mainbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 215px;
  max-width: 100%;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  text-decoration: none;
  color: #292929;
  font-size: var(--fs-nav);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-red);
}

.site-nav-dropdown {
  position: relative;
}

.site-nav-dropdown-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  color: #292929;
  font-size: var(--fs-nav);
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.site-nav-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.site-nav-dropdown.show .site-nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.site-nav-dropdown-toggle:hover,
.site-nav-dropdown-toggle.active {
  color: var(--color-red);
}

.site-nav .dropdown-menu {
  margin-top: 12px;
  min-width: 180px;
  border: 1px solid #dde6ef;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(14, 34, 58, 0.12);
}

.site-nav-dropdown-panel {
  min-width: 260px;
  max-height: min(70vh, 540px);
  overflow-y: auto;
}

.site-nav-dropdown-projects .site-nav-dropdown-panel {
  min-width: 300px;
}

.site-nav-dropdown-group+.site-nav-dropdown-group {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e6edf5;
}

.site-nav-dropdown-panel .dropdown-header {
  margin: 0;
  padding: 4px 10px;
  color: #6b7b8f;
  font-size: 11px;
  letter-spacing: 0.7px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav-dropdown-panel .dropdown-item-all {
  font-weight: 700;
  color: #113560;
}

.site-nav .dropdown-item {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2e40;
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
  color: #b31924;
  background: #f4f7fa;
}

a:focus-visible,
button:focus-visible,
.project-slide:focus-visible {
  outline: 3px solid #113560;
  outline-offset: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* =====================
   Components
===================== */
.btn-contact {
  background: var(--color-red);
  color: var(--color-white);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  font-weight: 700;
  font-size: var(--fs-button);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-contact:hover {
  background: var(--color-red-dark);
  color: var(--color-white);
}

.btn-primary-red,
.btn-outline-light-custom {
  padding: 18px 40px;
  border-radius: var(--radius-lg);
  font-size: var(--fs-button);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-red {
  background: var(--color-red);
  color: var(--color-white);
  border: 1px solid var(--color-red);
}

.btn-primary-red:hover {
  background: var(--color-red-dark);
  color: var(--color-white);
}

.btn-outline-light-custom {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}

.btn-outline-light-custom:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
}

.section-default,
.section-alt {
  padding: var(--section-gap) 0;
}

.section-alt {
  background: var(--color-bg-soft);
}

.section-heading {
  margin-bottom: 18px;
}

.section-kicker {
  display: inline-block;
  color: var(--color-red);
  letter-spacing: 2px;
  font-size: var(--fs-kicker);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: var(--fs-section-title);
  line-height: 1.12;
  margin: 0;
}

.section-paragraph {
  color: var(--color-text);
  line-height: 1.75;
  font-size: var(--fs-section-text);
}

.project-card,
.post-card {
  background: var(--color-white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(16, 40, 68, 0.08);
  height: 100%;
}

.project-card h3,
.post-card h3 {
  font-size: var(--fs-card-title);
  line-height: 1.25;
  margin: 16px 0 10px;
}

.project-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
}

.project-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-red);
  text-decoration: none;
}

.post-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}

.blog-intro {
  max-width: 760px;
  margin-top: 14px;
}

.blog-section .post-card {
  padding: 0;
  overflow: hidden;
  min-height: 100%;
}

.blog-card-media {
  display: block;
  text-decoration: none;
  background: #e8edf3;
  aspect-ratio: 16 / 10;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 1px;
  height: 100%;
}

.blog-section .post-card h3 {
  margin: 0;
  color: #1f2e40;
}

.blog-card-excerpt {
  margin: 12px 0 0;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.65;
}

.blog-section .project-link {
  margin-top: 18px;
}

/* =====================
   Section: About
===================== */
.about-section {
  background: #ffffff;
}

.about-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  min-width: 0;
}

.about-heading {
  margin-bottom: 12px;
}

.about-description {
  margin: 0 0 24px;
}

.about-highlights {
  background: #f4f7fa;
  border: 1px solid #e3ebf2;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 24px;
}

.about-highlights-title {
  margin: 0 0 14px;
  color: #1f2e40;
  font-size: clamp(18px, 1.3vw, 21px);
  line-height: 1.2;
  font-weight: 800;
}

.about-highlights-list {
  margin: 0;
  padding: 0;
  list-style: none;
  --bs-gutter-x: 16px;
  --bs-gutter-y: 10px;
}

.about-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: #2f3f51;
  font-weight: 600;
}

.about-highlights-list i {
  margin-top: 2px;
  color: #be1d26;
  font-size: 16px;
  flex: 0 0 auto;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.about-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1f2e40;
}

.about-phone i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffe7ea;
  color: #be1d26;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 44px;
}

.about-phone strong {
  display: block;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 800;
}

.about-phone small {
  display: block;
  margin-top: 2px;
  color: #5f6d7d;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.about-phone:hover {
  color: #be1d26;
}

/* =====================
   Section: Home Services
===================== */
.home-services-section {
  background: #f7fafc;
}

.home-services-intro {
  max-width: 760px;
  margin-top: 14px;
}

.home-service-card {
  background: #ffffff;
  border: 1px solid #dfe8f2;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(16, 40, 68, 0.08);
}

.home-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffe7ea;
  color: #b31924;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
}

.home-service-card h3 {
  margin: 12px 0 0;
  color: #1f2e40;
  font-size: clamp(22px, 1.5vw, 26px);
  line-height: 1.16;
}

.home-service-card p {
  margin: 10px 0 0;
  color: #4f6378;
  font-size: 15px;
  line-height: 1.65;
}

.home-service-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-service-list li {
  position: relative;
  padding-left: 14px;
  color: #2f4154;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.home-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b31924;
}

.home-services-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

/* =====================
   Section: Home Contact
===================== */
.home-contact-section {
  background: #ffffff;
}

.home-contact-card {
  position: relative;
  overflow: hidden;
  background: #10365f;
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
}

.home-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 64px 34px;
  pointer-events: none;
}

.home-contact-card>.row {
  position: relative;
  z-index: 1;
}

.home-contact-card .section-kicker {
  color: #ffffff;
  margin-bottom: 10px;
}

.home-contact-card h2 {
  margin: 0;
  color: #ffffff;
}

.home-contact-text {
  margin: 12px 0 0;
  color: #dbe6f1;
  font-size: 16px;
  line-height: 1.64;
}

.home-contact-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.home-contact-list i {
  margin-top: 2px;
  font-size: 16px;
  color: #ffffff;
}

.home-contact-list a {
  color: #ffffff;
  text-decoration: none;
}

.home-contact-list a:hover {
  text-decoration: underline;
}

.home-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-contact-actions .btn {
  width: 100%;
  justify-content: center;
}

/* =====================
   Section: Projects
===================== */
.projects-showcase {
  padding: var(--section-gap) 0;
  background: #b31924;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.projects-showcase::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  opacity: 0.16;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.28) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 70px 36px;
  pointer-events: none;
}

.projects-showcase .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-areas:
    "heading heading"
    "panel slider"
    "dots dots";
  column-gap: 34px;
  row-gap: 20px;
}

.projects-heading {
  grid-area: heading;
  margin-bottom: 26px;
}

.projects-heading p {
  display: block;
  font-size: var(--fs-project-kicker);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.projects-heading h2 {
  margin: 0;
  font-size: var(--fs-project-title);
  line-height: 1.03;
  font-weight: 800;
}

.projects-info-panel {
  grid-area: panel;
  background: #d9e2e8;
  color: #1e2a3f;
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(200px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  margin-bottom: 0;
}

.project-info-thumb {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.project-info-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-info-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 8%, rgba(0, 0, 0, 0.08) 58%, transparent 100%);
}

.project-info-thumb h3 {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: var(--fs-project-slide-title);
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.project-info-main {
  position: relative;
}

.project-watermark {
  position: absolute;
  right: 2px;
  top: -4px;
  color: #b4bec6;
  font-size: clamp(52px, 3.6vw, 72px);
}

.project-info-main h3 {
  margin: 18px 0 10px;
  font-size: var(--fs-project-main-title);
  line-height: 1.08;
}

.project-info-main p {
  margin: 0;
  color: #556271;
  font-size: var(--fs-project-main-text);
  line-height: 1.6;
}

.project-info-main ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.project-info-main li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: var(--fs-project-main-item);
  color: #233347;
}

.project-info-main li i {
  color: #be1d26;
}

.project-link-main {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1f2e40;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.project-link-main i {
  color: #be1d26;
}

.projects-swiper-wrap {
  grid-area: slider;
  position: static;
  padding: 0;
  overflow: visible;
}

.projects-swiper {
  overflow: hidden;
  height: var(--projects-side-card-height);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.projects-swiper .swiper-wrapper,
.projects-swiper .swiper-slide {
  height: 100%;
  min-width: 0;
  max-width: 100%;
}

.project-slide {
  cursor: pointer;
  height: 100%;
  min-width: 0;
}

.project-image-main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  max-width: 100%;
  transform: none;
  opacity: 1;
  transition: none;
}

.project-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66) 8%, rgba(0, 0, 0, 0.1) 62%, transparent 100%);
}

.project-image-main img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}

.project-slide-title {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: var(--fs-project-slide-title);
  font-weight: 700;
  margin: 0;
}

.projects-nav {
  position: absolute;
  top: calc(55%);
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: #113560;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 20px;
  z-index: 3;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.projects-nav-prev {
  left: -30px;
}

.projects-nav-next {
  right: -30px;
  left: auto;
}

.projects-pagination {
  grid-area: dots;
  margin-top: 22px;
  text-align: center;
}

.projects-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
}

.projects-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

/* =====================
   Section: Hero
===================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding-top: 0;
  color: var(--color-white);
  background-color: #1a344d;
  overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-slide {
  min-height: calc(100vh - var(--header-height));
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(118deg, rgba(5, 18, 35, 0.84) 12%, rgba(8, 22, 41, 0.5) 52%, rgba(4, 18, 36, 0.78) 100%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  margin-top: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: var(--fs-hero-eyebrow);
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-heading {
  margin: 0 auto 18px;
  max-width: 940px;
  font-size: var(--fs-hero-title);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.hero-text {
  margin: 0 auto;
  max-width: 980px;
  font-size: var(--fs-hero-text);
  line-height: 1.5;
  color: #eff4f8;
}

.hero-cta {
  margin-top: 42px;
  justify-content: center;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 37, 64, 0.8);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
  z-index: 4;
  transition: background-color 0.2s ease;
}

.hero-nav:hover {
  background: rgba(17, 37, 64, 0.96);
}

.hero-nav-prev {
  left: 24px;
}

.hero-nav-next {
  right: 24px;
}

.hero-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 4;
  text-align: center;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.48);
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

.floating-whatsapp-group {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

.floating-whatsapp {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(300px, calc(100vw - 32px));
  border-radius: 999px;
  padding: 10px 12px 10px 10px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #22c55e, #159f4a);
  box-shadow: 0 16px 32px rgba(22, 120, 58, 0.28);
  animation: whatsapp-float 2.8s ease-in-out infinite;
  isolation: isolate;
}

.floating-whatsapp:hover {
  color: #fff;
}

.floating-whatsapp-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: #ffffff;
  color: #1ea84f;
  font-size: 30px;
  box-shadow: 0 8px 18px rgba(5, 45, 22, 0.28);
}

.floating-whatsapp-icon::before,
.floating-whatsapp-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: scale(0.8);
  animation: whatsapp-wave 2.4s ease-out infinite;
  pointer-events: none;
}

.floating-whatsapp-icon::after {
  animation-delay: 1.2s;
}

.floating-whatsapp-message {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-whatsapp-message strong {
  font-size: 13px;
  line-height: 1.2;
}

.floating-whatsapp-message span {
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.96;
}

@keyframes whatsapp-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.015);
  }
}

@keyframes whatsapp-wave {
  0% {
    opacity: 0.55;
    transform: scale(0.85);
  }

  70% {
    opacity: 0;
    transform: scale(1.45);
  }

  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@media (prefers-reduced-motion: reduce) {

  .floating-whatsapp,
  .floating-whatsapp-icon::before,
  .floating-whatsapp-icon::after {
    animation: none;
  }
}

.site-footer {
  background: #f8fbfd;
  color: #2a3f54;
  border-top: 1px solid #e8eef5;
}

.site-footer-main {
  padding: 56px 0 36px;
}

.site-footer-brand {
  max-width: 400px;
}

.site-footer-logo {
  display: inline-flex;
  margin-bottom: 16px;
  text-decoration: none;
}

.site-footer-logo img {
  width: 195px;
  max-width: 100%;
  height: auto;
  display: block;
}

.site-footer-text {
  margin: 0;
  color: #2a3f54;
  font-size: 15px;
  line-height: 1.72;
}

.site-footer-heading {
  margin: 2px 0 14px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: #2a3f54;
}

.site-footer-links,
.site-footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-links a,
.site-footer-contact-list a,
.site-footer-contact-list span {
  color: #2a3f54;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
}

.site-footer-links a:hover,
.site-footer-contact-list a:hover {
  color: var(--color-red);
}

.site-footer-contact {
  margin: 0;
  font-style: normal;
}

.site-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.site-footer-contact-list i {
  margin-top: 3px;
  color: var(--color-whiter-);
  font-size: 14px;
  flex: 0 0 auto;
}

.site-footer-map {
  width: 100%;
}

.site-footer-map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.12);
}

.site-footer-map-frame iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.site-footer-bottom {
  border-top: 1px solid #e8eef5;
  padding: 16px 0 18px;
}

.site-footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
}

.site-footer-copy {
  margin: 0;
  color: #2a3f54;
  font-size: 14px;
  line-height: 1.4;
}

.site-footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
}

.site-footer-credit img {
  width: auto;
  height: 20px;
  display: block;
}

.site-footer-credit:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

/* =====================
   Layout: Mobile nav
===================== */
.menu-toggle {
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 8px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 3px;
  border-radius: 20px;
  background: #252525;
}

.mobile-actions {
  display: none;
}

/* =====================
   Responsive
===================== */
@media (max-width: 1199px) {
  :root {
    --projects-side-card-height: 320px;
  }

  :root {
    --topbar-height: 34px;
    --mainbar-height: 74px;
    --header-height: calc(var(--topbar-height) + var(--mainbar-height));
    --section-gap: 92px;
  }

  .brand img {
    width: 170px;
  }

  .site-nav {
    gap: 24px;
  }

  .site-nav a {
    font-size: 16px;
  }

  .btn-contact {
    font-size: 15px;
    padding: 12px 18px;
  }

  .hero-text {
    max-width: 880px;
  }

  .about-media {
    min-height: 470px;
  }

  .about-phone strong {
    font-size: 17px;
  }

  .site-footer-main {
    padding: 48px 0 30px;
  }

  .floating-whatsapp-group {
    right: 18px;
    bottom: 20px;
  }

  .floating-whatsapp {
    width: min(330px, calc(100vw - 32px));
  }

  .floating-whatsapp-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 28px;
  }

  .projects-showcase .container {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .projects-heading {
    margin-bottom: 18px;
  }

  .projects-info-panel {
    grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
    margin-bottom: 18px;
  }

  .project-info-thumb {
    min-height: 320px;
  }

  .projects-swiper-wrap {
    position: relative;
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .projects-swiper {
    position: absolute;
    inset: auto;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .projects-swiper .swiper-wrapper,
  .projects-swiper .swiper-slide,
  .project-slide,
  .project-image-main,
  .project-image-main img {
    width: 1px !important;
    height: 1px !important;
  }

  .projects-nav {
    position: static;
    transform: none;
  }

  .projects-nav-prev,
  .projects-nav-next {
    left: auto;
    right: auto;
  }

  .projects-pagination {
    display: none;
  }
}

@media (max-width: 991px) {
  :root {
    --projects-side-card-height: 280px;
  }

  .site-topbar-inner {
    gap: 10px;
  }

  .site-topbar-client-toggle {
    font-size: 12px;
  }

  .topbar-social-links a {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid #ededed;
    padding: 16px 22px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    font-size: 16px;
  }

  .site-nav-dropdown {
    width: 100%;
  }

  .site-nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
  }

  .site-nav .dropdown-menu {
    position: static !important;
    float: none;
    transform: none !important;
    margin-top: 8px;
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
  }

  .site-nav-dropdown-panel {
    max-height: none;
    overflow: visible;
  }

  .site-nav .dropdown-item {
    padding: 9px 10px;
  }

  .mobile-actions.open {
    display: block;
    padding-bottom: 14px;
  }

  .hero-content {
    margin-top: 10px;
  }

  .hero-heading {
    max-width: 760px;
  }

  .hero-text {
    font-size: clamp(16px, 2.1vw, 19px);
  }

  .hero-nav {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .hero-nav-prev {
    left: 14px;
  }

  .hero-nav-next {
    right: 14px;
  }

  .floating-whatsapp {
    width: min(320px, calc(100vw - 28px));
  }

  .floating-whatsapp-message strong {
    font-size: 12px;
  }

  .floating-whatsapp-message span {
    font-size: 10px;
  }

  .about-media {
    min-height: 0;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .about-description {
    margin-bottom: 20px;
  }

  .about-highlights {
    padding: 20px;
    margin-bottom: 20px;
  }

  .about-actions {
    gap: 14px;
  }

  .home-service-card {
    border-radius: 16px;
    padding: 20px;
  }

  .home-contact-card {
    border-radius: 18px;
    padding: 22px;
  }

  .site-footer-main {
    padding: 44px 0 28px;
  }

  .site-footer-brand {
    max-width: none;
  }

  .site-footer-map-frame iframe {
    height: 210px;
  }

  .site-footer-bottom {
    padding: 14px 0 16px;
  }

  .projects-info-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .project-info-main h3 {
    margin-top: 6px;
    font-size: clamp(24px, 4.8vw, 30px);
  }

  .project-info-main p {
    font-size: 15px;
    line-height: 1.55;
  }

  .project-info-thumb {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }

  .project-link-main {
    margin-top: 22px;
  }

  .projects-nav {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .projects-nav-prev,
  .projects-nav-next {
    left: auto;
    right: auto;
  }
}

@media (max-width: 767px) {
  :root {
    --projects-side-card-height: 250px;
  }

  :root {
    --topbar-height: 32px;
    --mainbar-height: 66px;
    --header-height: calc(var(--topbar-height) + var(--mainbar-height));
    --section-gap: 74px;
  }

  .site-topbar-inner {
    gap: 8px;
  }

  .site-topbar-client-toggle {
    font-size: 11px;
  }

  .site-topbar-client-dropdown .dropdown-menu {
    min-width: 148px;
  }

  .topbar-social-links {
    gap: 6px;
  }

  .topbar-social-links a {
    width: 22px;
    height: 22px;
    font-size: 11px;
  }

  .hero,
  .hero-swiper,
  .hero-swiper .swiper-wrapper,
  .hero-slide,
  .hero-content-wrap {
    min-height: 640px;
  }

  .hero-content-wrap {
    height: auto;
    align-items: center;
  }

  .hero-heading {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-text,
  .section-paragraph,
  .project-card p {
    font-size: 16px;
  }

  .hero-status {
    font-size: 10px;
    padding: 5px 9px;
  }

  .hero-cta {
    margin-top: 30px;
  }

  .hero-nav {
    display: none;
  }

  .hero-pagination {
    bottom: 16px;
  }

  .blog-intro {
    margin-top: 10px;
  }

  .blog-card-body {
    padding: 18px;
  }

  .blog-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
  }

  .blog-section .project-link {
    margin-top: 14px;
  }

  .site-footer-main {
    padding: 36px 0 22px;
  }

  .site-footer-logo img {
    width: 170px;
  }

  .site-footer-map-frame iframe {
    height: 190px;
  }

  .site-footer-heading {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .site-footer-links,
  .site-footer-contact-list {
    gap: 8px;
  }

  .site-footer-links a,
  .site-footer-contact-list a,
  .site-footer-contact-list span,
  .site-footer-text {
    font-size: 14px;
  }

  .site-footer-bottom-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-copy {
    font-size: 13px;
  }

  .btn-primary-red,
  .btn-outline-light-custom {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 22px;
  }

  .floating-whatsapp-group {
    left: 12px;
    right: 12px;
    bottom: 16px;
    justify-content: flex-end;
  }

  .floating-whatsapp {
    width: min(100%, 340px);
    padding: 8px 10px;
    gap: 9px;
  }

  .floating-whatsapp-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    font-size: 25px;
  }

  .floating-whatsapp-message strong {
    font-size: 12px;
  }

  .floating-whatsapp-message span {
    font-size: 10px;
  }

  .about-media {
    border-radius: 18px;
    aspect-ratio: 4 / 5;
    max-height: 430px;
  }

  .about-description {
    margin-bottom: 18px;
  }

  .about-highlights {
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
  }

  .about-highlights-title {
    font-size: 17px;
  }

  .about-highlights-list li {
    font-size: 14px;
  }

  .about-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .about-cta {
    width: 100%;
    justify-content: center;
  }

  .about-phone {
    width: 100%;
    border: 1px solid #e3ebf2;
    border-radius: 12px;
    padding: 10px 12px;
  }

  .about-phone i {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 16px;
  }

  .about-phone strong {
    font-size: 16px;
  }

  .home-service-card {
    border-radius: 14px;
    padding: 16px;
  }

  .home-service-card h3 {
    font-size: clamp(21px, 7vw, 25px);
  }

  .home-service-card p {
    font-size: 14px;
    line-height: 1.58;
  }

  .home-contact-card {
    border-radius: 14px;
    padding: 16px;
  }

  .home-contact-text {
    font-size: 15px;
    line-height: 1.56;
  }

  .home-contact-list li {
    font-size: 14px;
  }

  .home-contact-actions {
    margin-top: 2px;
  }

  .projects-info-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .project-info-thumb {
    min-height: 170px;
    aspect-ratio: 16 / 10;
  }

  .projects-swiper-wrap {
    margin-top: 12px;
    gap: 12px;
  }

  .projects-swiper,
  .projects-swiper .swiper-wrapper,
  .projects-swiper .swiper-slide,
  .project-slide,
  .project-image-main,
  .project-image-main img {
    width: 1px !important;
    height: 1px !important;
  }

  .projects-nav {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .project-info-main h3 {
    margin-top: 4px;
    font-size: clamp(22px, 7.2vw, 26px);
  }

  .project-info-main p {
    font-size: 15px;
    line-height: 1.55;
  }

  .project-slide-title {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: clamp(14px, 4.5vw, 18px);
  }

  .projects-pagination {
    margin-top: 14px;
  }

  .projects-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .project-info-main ul {
    grid-template-columns: 1fr;
  }

  .projects-nav {
    display: grid;
  }
}

/* =====================
   Page: Sobre
===================== */
.about-page-hero {
  position: relative;
  padding: 108px 0 84px;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(8, 22, 41, 0.88) 12%, rgba(8, 22, 41, 0.72) 56%, rgba(8, 22, 41, 0.9) 100%),
    url("../img/hero-bg.webp") center / cover no-repeat;
}

.about-page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  font-weight: 800;
}

.about-page-hero .section-kicker {
  color: #ffffff;
  margin-bottom: 14px;
}

.about-page-hero-text {
  margin: 18px 0 0;
  max-width: 760px;
  color: #e7edf3;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.68;
}

.contact-page-hero,
.internal-page-hero {
  position: relative;
  padding: 92px 0 76px;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(8, 22, 41, 0.88) 12%, rgba(8, 22, 41, 0.72) 56%, rgba(8, 22, 41, 0.9) 100%),
    url("../img/hero-bg.webp") center / cover no-repeat;
}

.contact-page-hero h1,
.internal-page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  font-weight: 800;
}

.contact-page-hero .section-kicker,
.internal-page-hero .section-kicker {
  color: #ffffff;
  margin-bottom: 14px;
}

.contact-page-hero-text,
.internal-page-hero-text {
  margin: 18px 0 0;
  max-width: 760px;
  color: #e7edf3;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.68;
}

.contact-page-section {
  background: #ffffff;
}

.contact-page-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}

.contact-page-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-form-card {
  height: 100%;
  background: #f7fafc;
  border: 1px solid #dfe9f2;
  border-radius: 20px;
  padding: 24px;
}

.contact-form {
  margin-top: 4px;
}

.contact-form .form-label {
  margin-bottom: 6px;
  color: #1f2e40;
  font-size: 14px;
  font-weight: 700;
}

.contact-form .form-control {
  border: 1px solid #d2deea;
  border-radius: 10px;
  padding: 11px 12px;
  color: #24374b;
}

.contact-form .form-control::placeholder {
  color: #72839a;
}

.contact-form .form-control:focus {
  border-color: #b31924;
  box-shadow: 0 0 0 0.2rem rgba(179, 25, 36, 0.14);
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.contact-consent .form-check-input {
  margin-top: 2px;
  border-color: #c8d6e5;
}

.contact-consent .form-check-label {
  margin: 0;
  color: #47586b;
  font-size: 14px;
  line-height: 1.5;
}

.contact-consent .form-check-label a {
  color: #b31924;
  text-decoration: none;
}

.contact-consent .form-check-label a:hover {
  text-decoration: underline;
}

.contact-submit {
  margin-top: 2px;
}

.internal-page-card {
  background: #f7fafc;
  border: 1px solid #dfe9f2;
  border-radius: 18px;
  padding: 24px;
}

/* =====================
   Page: Serviços
===================== */
.services-page-hero .internal-page-hero-text {
  max-width: 860px;
}

.services-strategy-card {
  background: #f7fafc;
  border: 1px solid #dfe9f2;
  border-radius: 20px;
  padding: 24px;
}

.services-strategy-card h3 {
  margin: 0;
  color: #1f2e40;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
}

.services-strategy-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-strategy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2f4256;
  font-size: 15px;
  line-height: 1.55;
}

.services-strategy-list i {
  color: #b31924;
  margin-top: 2px;
  font-size: 17px;
  flex: 0 0 auto;
}

.service-activity-card,
.services-infra-card,
.service-system-card {
  background: #ffffff;
  border: 1px solid #dfe8f2;
  border-radius: 18px;
  padding: 22px;
}

.service-activity-card h3,
.services-infra-card h3,
.service-system-card h3 {
  margin: 0;
  color: #1f2e40;
  font-size: clamp(23px, 1.8vw, 28px);
  line-height: 1.15;
}

.service-activity-card p,
.services-infra-card p,
.service-system-card p {
  margin: 12px 0 0;
  color: #4f6378;
  font-size: 15px;
  line-height: 1.65;
}

.service-bullet-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2f4154;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.service-bullet-list i {
  margin-top: 2px;
  color: #b31924;
  font-size: 15px;
  flex: 0 0 auto;
}

.service-bullet-list-tight {
  gap: 8px;
}

.services-infra-card h4 {
  margin: 16px 0 10px;
  color: #1f2e40;
  font-size: 17px;
  line-height: 1.25;
}

.services-step-list {
  margin: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-step-list li {
  color: #2f4256;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.services-support-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e2eaf2;
}

.services-infra-highlight {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #dfe8f2;
  border-radius: 12px;
  background: #f7fafc;
}

.services-infra-highlight h4 {
  margin-top: 0;
}

.services-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  flex-wrap: wrap;
  background: #10365f;
  color: #ffffff;
  border-radius: 18px;
  padding: 24px;
}

.services-cta-content .section-kicker {
  color: #ffffff;
  margin-bottom: 10px;
}

.services-cta-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(27px, 2.2vw, 34px);
  line-height: 1.08;
}

.services-cta-content p {
  margin: 12px 0 0;
  color: #dbe6f1;
  font-size: 16px;
  line-height: 1.6;
  max-width: 760px;
}

.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.services-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
}

.services-phone i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 44px;
}

.services-phone strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 800;
}

.services-phone small {
  display: block;
  margin-top: 2px;
  color: #dbe6f1;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.services-phone:hover {
  color: #ffffff;
}

.services-phone:hover i {
  background: rgba(255, 255, 255, 0.24);
}

/* =====================
   Page: Blog
===================== */
.blog-directory-section {
  background: #ffffff;
}

.blog-list-grid {
  display: grid;
  gap: 18px;
}

.blog-list-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
  gap: 18px;
  background: #ffffff;
  border: 1px solid #dfe8f2;
  border-radius: 18px;
  overflow: hidden;
}

.blog-list-media {
  display: block;
  background: #dde6ef;
  min-height: 100%;
}

.blog-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-list-content {
  padding: 18px 18px 20px 0;
  display: flex;
  flex-direction: column;
}

.blog-list-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #5a6f84;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.blog-list-meta a {
  text-decoration: none;
  color: #b31924;
}

.blog-list-meta a:hover {
  text-decoration: underline;
}

.blog-list-content h3 {
  margin: 10px 0 0;
  color: #1f2e40;
  font-size: clamp(23px, 1.85vw, 30px);
  line-height: 1.14;
}

.blog-list-content h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-list-content h3 a:hover {
  color: #b31924;
}

.blog-list-content p {
  margin: 10px 0 0;
  color: #4f6378;
  font-size: 15px;
  line-height: 1.65;
}

.blog-list-content .project-link {
  margin-top: auto;
  padding-top: 14px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-widget {
  background: #f7fafc;
  border: 1px solid #dfe8f2;
  border-radius: 16px;
  padding: 16px;
}

.blog-widget h2 {
  margin: 0;
  color: #1f2e40;
  font-size: clamp(22px, 1.5vw, 26px);
  line-height: 1.15;
}

.blog-search-form {
  margin-top: 12px;
}

.blog-search-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-search-input {
  border: 1px solid #d2deea;
  border-radius: 10px;
  padding: 11px 12px;
  color: #24374b;
}

.blog-search-input:focus {
  border-color: #b31924;
  box-shadow: 0 0 0 0.2rem rgba(179, 25, 36, 0.14);
}

.blog-search-btn {
  width: 46px;
  height: 46px;
  padding: 0;
  justify-content: center;
}

.blog-latest-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-latest-list li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
}

.blog-latest-thumb {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #dde6ef;
  aspect-ratio: 1 / 1;
}

.blog-latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-latest-content {
  min-width: 0;
}

.blog-latest-content time {
  display: block;
  color: #5a6f84;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.blog-latest-content a {
  display: inline-block;
  margin-top: 5px;
  color: #1f2e40;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.blog-latest-content a:hover {
  color: #b31924;
}

.blog-category-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid #dce7f2;
  border-radius: 10px;
  padding: 9px 10px;
  color: #2f4256;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.blog-category-link strong {
  color: #5f7286;
  font-size: 12px;
}

.blog-category-link:hover,
.blog-category-link.is-active {
  border-color: #b31924;
  color: #b31924;
}

.blog-empty-state {
  background: #f7fafc;
  border: 1px dashed #c8d8e8;
  border-radius: 14px;
  padding: 18px;
}

.blog-empty-state h3 {
  margin: 0;
  color: #1f2e40;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.2;
}

.blog-empty-state p {
  margin: 10px 0 0;
  color: #4f6378;
  font-size: 15px;
  line-height: 1.6;
}

.blog-empty-state .project-link {
  margin-top: 14px;
}

.blog-single-section {
  background: #ffffff;
}

.blog-single-article {
  background: #ffffff;
  border: 1px solid #dfe8f2;
  border-radius: 18px;
  padding: 22px;
}

.blog-single-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #5a6f84;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.blog-single-meta a {
  text-decoration: none;
  color: #b31924;
}

.blog-single-summary {
  margin: 12px 0 0;
  color: #4f6378;
  font-size: 16px;
  line-height: 1.66;
}

.blog-single-featured {
  margin: 16px 0 0;
  border-radius: 14px;
  overflow: hidden;
  background: #dde6ef;
  aspect-ratio: 16 / 9;
}

.blog-single-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-single-body {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-single-body section {
  min-width: 0;
}

.blog-single-body h2 {
  margin: 0;
  color: #1f2e40;
  font-size: clamp(25px, 2vw, 33px);
  line-height: 1.1;
}

.blog-single-body p {
  margin: 10px 0 0;
  color: #4f6378;
  font-size: 16px;
  line-height: 1.68;
}

.blog-single-footer {
  margin-top: 8px;
}

@media (min-width: 992px) {
  .blog-sidebar {
    position: sticky;
    top: 92px;
  }
}

.projects-page-hero,
.project-detail-hero {
  position: relative;
  color: #ffffff;
}

.projects-page-hero {
  padding: 92px 0 76px;
  background:
    linear-gradient(115deg, rgba(8, 22, 41, 0.88) 12%, rgba(8, 22, 41, 0.72) 56%, rgba(8, 22, 41, 0.9) 100%),
    url("../img/hero-bg.webp") center / cover no-repeat;
}

.projects-page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  font-weight: 800;
}

.projects-page-hero .section-kicker {
  color: #ffffff;
  margin-bottom: 14px;
}

.projects-page-hero-text {
  margin: 18px 0 0;
  max-width: 760px;
  color: #e7edf3;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.68;
}

.projects-filter-bar {
  margin: 28px 0 26px;
}

.projects-filter-track {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.projects-filter-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border: 1px solid #dce6ef;
  border-radius: 12px;
  padding: 8px;
  background: #f7fafc;
}

.projects-filter-label {
  padding: 0 8px;
  color: #5f7286;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.projects-filter-btn {
  border: 1px solid transparent;
  background: #ffffff;
  color: #213347;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  line-height: 1.2;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.projects-filter-btn:hover {
  border-color: #c8d7e8;
}

.projects-filter-btn.is-active {
  border-color: #b31924;
  background: #b31924;
  color: #ffffff;
}

.projects-filter-feedback {
  margin: 14px 0 0;
  color: #506377;
  font-size: 14px;
  line-height: 1.4;
}

.projects-status-group+.projects-status-group {
  margin-top: 28px;
}

.projects-status-heading {
  margin: 0 0 16px;
  color: #1f2e40;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.1;
}

.project-directory-col {
  display: block;
}

.project-directory-card {
  background: #ffffff;
  border: 1px solid #dfe8f2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 40, 68, 0.08);
}

.project-directory-media {
  display: block;
  text-decoration: none;
  background: #dde6ef;
  aspect-ratio: 16 / 10;
}

.project-directory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-directory-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  min-height: 1px;
}

.project-directory-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.project-directory-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 6px 10px;
  line-height: 1;
}

.project-directory-status.status-em-andamento {
  background: #ffe7ea;
  color: #b31924;
}

.project-directory-status.status-finalizado {
  background: #e4f2ea;
  color: #196a3f;
}

.project-directory-location {
  color: #5a6f84;
  font-size: 13px;
  font-weight: 700;
}

.project-directory-body h3 {
  margin: 0;
  color: #1f2e40;
  font-size: clamp(22px, 1.55vw, 26px);
  line-height: 1.2;
}

.project-directory-body p {
  margin: 10px 0 0;
  color: #4f6378;
  font-size: 15px;
  line-height: 1.65;
}

.project-directory-body .project-link {
  margin-top: auto;
  padding-top: 16px;
}

.projects-empty-state {
  margin-top: 16px;
  border: 1px dashed #c8d8e8;
  border-radius: 14px;
  padding: 18px;
  background: #f7fafc;
}

.projects-empty-state p {
  margin: 0;
  color: #506377;
  font-size: 15px;
  line-height: 1.5;
}

.project-detail-hero {
  min-height: 66vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.project-detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.project-detail-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(112deg, rgba(6, 20, 39, 0.84) 14%, rgba(7, 21, 39, 0.66) 55%, rgba(5, 19, 37, 0.84) 100%);
}

.project-detail-hero-content {
  position: relative;
  z-index: 2;
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 42px;
}

.project-detail-hero-content .section-kicker {
  color: #ffffff;
  margin-bottom: 12px;
}

.project-detail-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.04;
  font-weight: 800;
}

.project-detail-hero-text {
  margin: 18px 0 0;
  max-width: 820px;
  color: #e4edf5;
  font-size: clamp(16px, 1.2vw, 21px);
  line-height: 1.62;
}

.project-detail-hero-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-detail-hero-meta span:not(.project-directory-status) {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 12px;
}

.project-detail-overview {
  background: #ffffff;
}

.project-detail-quick-card {
  height: 100%;
  background: #f7fafc;
  border: 1px solid #dfe9f2;
  border-radius: 18px;
  padding: 22px;
}

.project-detail-quick-card h2 {
  margin: 0;
  color: #1f2e40;
  font-size: clamp(24px, 1.95vw, 30px);
  line-height: 1.1;
}

.project-detail-quick-card ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-detail-quick-card li {
  color: #4f6378;
  font-size: 15px;
  line-height: 1.5;
}

.project-detail-quick-card li strong {
  color: #1f2e40;
}

.project-detail-quick-card .btn {
  margin-top: 18px;
}

.project-feature-card {
  background: #ffffff;
  border: 1px solid #dfe8f2;
  border-radius: 14px;
  padding: 18px 16px;
}

.project-feature-card i {
  color: #b31924;
  font-size: 18px;
}

.project-feature-card h3 {
  margin: 10px 0 0;
  color: #1f2e40;
  font-size: 17px;
  line-height: 1.35;
}

.project-gallery-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #dbe5ef;
}

.project-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-video-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dbe7f2;
  background: #d8e4ef;
}

.project-video-frame iframe {
  border: 0;
}

.project-location-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #dbe7f2;
  height: 100%;
  min-height: 320px;
}

.project-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.project-ebook-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  flex-wrap: wrap;
  background: #10365f;
  color: #ffffff;
  border-radius: 18px;
  padding: 24px;
}

.project-ebook-content .section-kicker {
  color: #ffffff;
  margin-bottom: 10px;
}

.project-ebook-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.08;
}

.project-ebook-content p {
  margin: 12px 0 0;
  color: #dbe6f1;
  font-size: 16px;
  line-height: 1.6;
  max-width: 760px;
}

.about-history-section {
  background: #ffffff;
}

.about-history-video {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d9e4ef;
  box-shadow: 0 14px 34px rgba(16, 40, 68, 0.1);
}

.about-history-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-mvv-section {
  background: #ffffff;
}

.about-mvv-intro {
  max-width: 760px;
  margin-top: 14px;
}

.about-mvv-card {
  background: #f7fafc;
  border: 1px solid #dfe9f2;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(16, 40, 68, 0.06);
}

.about-mvv-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffe7ea;
  color: #b31924;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
}

.about-mvv-card h3 {
  margin: 12px 0 0;
  color: #1b2a3c;
  font-size: clamp(22px, 1.45vw, 26px);
  line-height: 1.15;
}

.about-mvv-card p {
  margin: 10px 0 0;
  color: #47586b;
  font-size: 15px;
  line-height: 1.65;
}

.about-directors-intro {
  max-width: 760px;
  margin-top: 14px;
}

.director-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(16, 40, 68, 0.08);
}

.director-photo {
  margin: 0;
  background: #dde6ef;
  aspect-ratio: 4 / 3;
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.director-content {
  padding: 20px 20px 22px;
}

.director-content h3 {
  margin: 0;
  color: #1b2a3c;
  font-size: clamp(21px, 1.45vw, 25px);
  line-height: 1.18;
}

.director-role {
  margin: 8px 0 10px;
  color: #b31924;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.director-content p {
  margin: 0;
  color: #47586b;
  font-size: 15px;
  line-height: 1.65;
}

.about-timeline-head {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.about-timeline-head .section-heading {
  margin-bottom: 0;
}

.about-timeline-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.about-timeline-nav {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #113560;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.about-timeline-nav:hover {
  background: #0f2f50;
}

.about-timeline-nav.swiper-button-disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.about-timeline-swiper {
  position: relative;
  overflow: hidden;
  padding: 26px 2px 2px;
}

.about-timeline-swiper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 53, 96, 0.18) 0%, rgba(17, 53, 96, 0.42) 50%, rgba(17, 53, 96, 0.18) 100%);
  z-index: 0;
}

.about-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.about-timeline-item {
  position: relative;
  height: auto;
  padding-top: 20px;
}

.about-timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #113560;
  background: #ffffff;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.about-timeline-item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 2px;
  height: 20px;
  transform: translateX(-50%);
  background: rgba(17, 53, 96, 0.34);
  z-index: 1;
}

.about-timeline-item.swiper-slide-active::before {
  background: #b31924;
  border-color: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 4px rgba(179, 25, 36, 0.22);
}

.about-timeline-item.swiper-slide-active .about-timeline-card {
  border-color: #c8d8e7;
}

.about-timeline-item.swiper-slide-active .about-timeline-year time {
  background: #b31924;
  color: #ffffff;
}

.about-timeline-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f7fafc;
  border: 1px solid #dfe9f2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 40, 68, 0.08);
}

.about-timeline-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #dbe5ef;
}

.about-timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-timeline-content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  min-height: 1px;
  flex: 1;
}

.about-timeline-year {
  margin: 0 0 8px;
}

.about-timeline-year time {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f1f5f9;
  color: #b31924;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 12px;
  line-height: 1;
}

.about-timeline-card h3 {
  margin: 0;
  color: #1c2d40;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.2;
}

.about-timeline-card p {
  margin: 10px 0 0;
  color: #4a5d71;
  font-size: 15px;
  line-height: 1.65;
}

.about-timeline-meta {
  margin-top: auto !important;
  padding-top: 14px;
  color: #1f2e40 !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.about-timeline-pagination {
  margin-top: 18px;
  text-align: center;
}

.about-timeline-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: rgba(17, 53, 96, 0.25);
}

.about-timeline-pagination .swiper-pagination-bullet-active {
  background: #113560;
}

@media (max-width: 991px) {
  .about-page-hero {
    padding: 84px 0 66px;
  }

  .contact-page-hero,
  .internal-page-hero {
    padding: 78px 0 62px;
  }

  .about-page-hero h1 {
    max-width: 690px;
  }

  .contact-page-hero h1,
  .internal-page-hero h1 {
    max-width: 700px;
  }

  .about-history-video {
    border-radius: 16px;
  }

  .about-mvv-card {
    border-radius: 16px;
    padding: 20px;
  }

  .contact-page-media {
    min-height: 340px;
  }

  .contact-form-card {
    border-radius: 16px;
    padding: 20px;
  }

  .services-strategy-card,
  .service-activity-card,
  .services-infra-card,
  .service-system-card {
    border-radius: 16px;
    padding: 20px;
  }

  .services-cta-card {
    border-radius: 16px;
    padding: 20px;
  }

  .services-cta-actions {
    width: 100%;
  }

  .blog-list-card {
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
    border-radius: 16px;
  }

  .blog-widget {
    border-radius: 14px;
  }

  .projects-page-hero {
    padding: 78px 0 62px;
  }

  .projects-page-hero h1 {
    max-width: 700px;
  }

  .projects-filter-track {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .projects-filter-group {
    flex-wrap: nowrap;
  }

  .projects-status-group+.projects-status-group {
    margin-top: 24px;
  }

  .projects-status-heading {
    margin-bottom: 12px;
  }

  .project-detail-hero,
  .project-detail-hero-content {
    min-height: 58vh;
  }

  .project-detail-quick-card {
    border-radius: 16px;
    padding: 20px;
  }

  .project-location-map {
    min-height: 280px;
  }

  .project-ebook-card {
    border-radius: 16px;
    padding: 20px;
  }

  .about-timeline-head {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 16px;
  }

  .about-timeline-controls {
    justify-content: center;
  }

  .about-timeline-swiper {
    padding-top: 22px;
  }

  .about-timeline-swiper::before {
    top: 10px;
  }

  .about-timeline-item {
    padding-top: 17px;
  }

  .about-timeline-item::before {
    top: 10px;
  }

  .about-timeline-item::after {
    top: 10px;
    height: 16px;
  }
}

@media (max-width: 767px) {
  .about-page-hero {
    padding: 68px 0 56px;
  }

  .contact-page-hero,
  .internal-page-hero {
    padding: 64px 0 52px;
  }

  .about-page-hero h1 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .contact-page-hero h1,
  .internal-page-hero h1 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .about-page-hero-text {
    margin-top: 14px;
    font-size: 16px;
  }

  .about-mvv-card {
    border-radius: 14px;
    padding: 16px;
  }

  .about-mvv-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .about-mvv-card h3 {
    font-size: clamp(21px, 7vw, 25px);
  }

  .about-mvv-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-page-hero-text,
  .internal-page-hero-text {
    margin-top: 14px;
    font-size: 16px;
  }

  .contact-page-media {
    border-radius: 14px;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .contact-form-card {
    border-radius: 14px;
    padding: 16px;
  }

  .contact-form .form-label {
    font-size: 13px;
  }

  .contact-consent .form-check-label {
    font-size: 13px;
  }

  .services-strategy-card,
  .service-activity-card,
  .services-infra-card,
  .service-system-card {
    border-radius: 14px;
    padding: 16px;
  }

  .services-strategy-list li,
  .service-bullet-list li,
  .services-step-list li {
    font-size: 13px;
    line-height: 1.5;
  }

  .services-step-list {
    padding-left: 18px;
  }

  .services-cta-card {
    border-radius: 14px;
    padding: 16px;
  }

  .services-cta-content h2 {
    font-size: clamp(23px, 7vw, 30px);
  }

  .services-cta-content p {
    font-size: 15px;
    line-height: 1.55;
  }

  .services-cta-actions {
    width: 100%;
  }

  .services-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-phone i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    flex-basis: 40px;
  }

  .services-phone strong {
    font-size: 17px;
  }

  .blog-list-card {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .blog-list-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .blog-list-content {
    padding: 14px 14px 16px;
  }

  .blog-list-content h3 {
    font-size: clamp(21px, 7vw, 27px);
  }

  .blog-widget {
    border-radius: 12px;
    padding: 14px;
  }

  .blog-widget h2 {
    font-size: clamp(20px, 7vw, 24px);
  }

  .blog-search-btn {
    width: 42px;
    height: 42px;
  }

  .blog-latest-list li {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px;
  }

  .blog-latest-content a {
    font-size: 13px;
  }

  .blog-single-article {
    border-radius: 14px;
    padding: 16px;
  }

  .blog-single-summary,
  .blog-single-body p {
    font-size: 15px;
    line-height: 1.58;
  }

  .blog-single-body h2 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .projects-page-hero {
    padding: 64px 0 52px;
  }

  .projects-page-hero h1 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .projects-page-hero-text {
    margin-top: 14px;
    font-size: 16px;
  }

  .projects-filter-bar {
    margin: 20px 0 20px;
  }

  .projects-filter-track {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
  }

  .projects-filter-group {
    display: inline-flex;
    margin-right: 10px;
    margin-bottom: 0;
    vertical-align: top;
  }

  .projects-filter-feedback {
    margin-top: 10px;
    font-size: 13px;
  }

  .project-directory-body {
    padding: 16px 14px 18px;
  }

  .project-directory-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .projects-status-heading {
    font-size: clamp(21px, 7vw, 26px);
  }

  .project-detail-hero,
  .project-detail-hero-content {
    min-height: 520px;
  }

  .project-detail-hero-content {
    padding-bottom: 28px;
  }

  .project-detail-hero h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .project-detail-hero-text {
    margin-top: 14px;
    font-size: 16px;
  }

  .project-detail-hero-meta {
    margin-top: 16px;
  }

  .project-detail-quick-card {
    border-radius: 14px;
    padding: 16px;
  }

  .project-feature-card {
    border-radius: 12px;
    padding: 14px;
  }

  .project-video-frame,
  .project-location-map {
    border-radius: 14px;
  }

  .project-location-map {
    min-height: 220px;
  }

  .project-ebook-card {
    border-radius: 14px;
    padding: 16px;
  }

  .project-ebook-content h2 {
    font-size: clamp(23px, 7vw, 30px);
  }

  .project-ebook-content p {
    font-size: 15px;
    line-height: 1.55;
  }

  .internal-page-card {
    border-radius: 14px;
    padding: 18px;
  }

  .director-content {
    padding: 18px;
  }

  .director-content h3 {
    font-size: 20px;
  }

  .director-role {
    margin: 7px 0 9px;
  }

  .about-timeline-controls {
    gap: 8px;
  }

  .about-timeline-nav {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .about-timeline-swiper {
    padding: 18px 0 0;
  }

  .about-timeline-swiper::before {
    top: 8px;
  }

  .about-timeline-item {
    padding-top: 14px;
  }

  .about-timeline-item::before {
    top: 8px;
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .about-timeline-item::after {
    top: 8px;
    height: 14px;
  }

  .about-timeline-content {
    padding: 14px 14px 16px;
  }

  .about-timeline-card {
    border-radius: 14px;
  }

  .about-timeline-card h3 {
    font-size: 19px;
  }

  .about-timeline-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-timeline-pagination {
    margin-top: 14px;
  }
}