:root {
  --ink: #0b1120;
  --paper: #f8fafc;
  --white: #ffffff;
  --plum: #041a2e;
  --acid: #00ccff;
  --header-height: 50px;

  /* Default theme values (Cyan) */
  --theme-color: #0cc2f3;
  --theme-color-rgb: 12, 194, 243;
}

/* Page specific theme color mappings */
body.theme-marketing {
  --theme-color: #f43f5e;
  --theme-color-rgb: 244, 63, 94;
}
body.theme-desenvolvimento {
  --theme-color: #3b82f6;
  --theme-color-rgb: 59, 130, 246;
}
body.theme-consultoria {
  --theme-color: #0cc2f3;
  --theme-color-rgb: 12, 194, 243;
}
body.theme-infraestrutura {
  --theme-color: #00ccff;
  --theme-color-rgb: 0, 204, 255;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

/* Modifier Classes */
.reveal-on-scroll.reveal-left { transform: translateX(-40px); }
.reveal-on-scroll.reveal-right { transform: translateX(40px); }
.reveal-on-scroll.reveal-up { transform: translateY(40px); }
.reveal-on-scroll.reveal-down { transform: translateY(-40px); }
.reveal-on-scroll.reveal-scale { transform: scale(0.92); }
.reveal-on-scroll.reveal-blur { filter: blur(10px); transform: translateY(20px); }

/* Visible State */
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
  filter: blur(0);
}

/* Parallax */
.parallax-bg {
  will-change: transform;
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--acid), #0077ff);
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 0 8px var(--acid), 0 0 12px rgba(0, 204, 255, 0.4);
  transition: width 0.08s ease-out;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 22px;
  left: 4.25vw;
  right: 4.25vw;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition:
    top 0.35s ease,
    transform 0.35s ease,
    background-color 0.35s ease,
    border-radius 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    height 0.35s ease,
    grid-template-columns 0.35s ease,
    gap 0.35s ease;
}
/* Removed .site-header.is-hidden so navbar always stays visible when scrolling */
.nav-pill,
.contact-link,
.menu-toggle,
.language-link {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  height: 46px;
}
.brand {
  position: relative;
  z-index: 102;
  width: auto;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  padding: 0;
  overflow: visible;
  border-radius: 12px;
  height: 46px;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: all 0.35s ease;
}
.site-header.is-scrolled .brand {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (min-width: 1025px) {
  .site-header.is-scrolled .brand {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.brand-mark {
  height: auto;
  max-height: 36px; /* Tamanho um pouco menor para o logo */
  width: auto;
  max-width: 120px; /* Mantém a largura proporcional menor */
  display: block;
  object-fit: contain;
}
.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px; /* Added some gap for search icon if we add it */
  padding: 0 16px;
}
.nav-item {
  /* removed relative so dropdown can anchor to nav-pill */
}
.nav-link {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 0;
  border-radius: inherit;
  color: var(--white);
  background: transparent;
  font:
    700 11px/1 Helvetica, Arial,
    sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
}
.nav-link:hover,
.nav-item:focus-within > .nav-link,
.nav-item:hover > .nav-link {
  background: transparent;
  color: var(--acid);
}
.search-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.search-button:hover {
  background: rgba(255, 255, 255, 0.12);
}
.search-button svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.nav-link svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.25s;
}
.nav-item:hover .nav-link svg,
.nav-item:focus-within .nav-link svg {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  width: max-content;
  display: flex;
  gap: 24px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.25s,
    visibility 0.25s,
    transform 0.25s;
}
.mega-menu::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
}
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega-menu-column {
  display: flex;
  flex-direction: column;
}
.mega-menu-title {
  color: #00ccff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 12px !important;
  text-decoration: none !important;
  display: block;
}
.mega-menu-title:hover {
  color: var(--acid) !important;
  opacity: 1 !important;
}
.mega-menu-column a {
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.85;
  transition:
    opacity 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.mega-menu-column a:last-child {
  margin-bottom: 0;
}
.mega-menu-column a:hover {
  opacity: 1;
  color: var(--acid);
}
.header-actions {
  justify-self: end;
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 102;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px 0 16px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.contact-link:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.contact-label-mobile {
  display: none;
}
.contact-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: inherit;
  color: var(--ink);
  background: var(--white);
  transition:
    transform 0.3s,
    background-color 0.3s,
    color 0.3s;
}
.contact-link:hover .contact-arrow {
  transform: translate(2px, -2px);
  background-color: var(--acid) !important;
  color: #000000 !important;
}
.language-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.language-link svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.contact-arrow svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 0.3s ease;
}
.hero-cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.contact-link:hover .contact-arrow svg {
  transform: rotate(45deg);
}
.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 0.35s,
    top 0.35s;
}
.menu-toggle span:first-child {
  transform: translateY(-4px);
}
.menu-toggle span:last-child {
  transform: translateY(4px);
}
.menu-open .menu-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}
.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}
.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}
.menu-open .brand {
  color: var(--white);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 240px 7vw 12vh;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 5%, #000 45%, transparent);
}
.hero-fluid-bg {
  position: absolute;
  inset: -10vw;
  z-index: -4;
  pointer-events: none;
}
.hero-fluid-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-copy {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  background: #00ccff;
  border-radius: 50%;
}
.hero h1 {
  margin: 0;
  font-size: clamp(68px, 8.7vw, 148px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.075em;
}
.hero h1 strong {
  color: #00ccff;
  font-weight: 500;
}
.hero-text {
  width: min(700px, 90%);
  margin: 38px 0 40px;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.hero-cta svg {
  transition: transform 0.25s;
}
.hero-cta:hover svg {
  transform: translate(4px, -4px);
}
.hero-meta {
  position: absolute;
  right: 7vw;
  bottom: 10vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  right: 30px;
  top: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue i {
  width: 1px;
  height: 42px;
  background: var(--white);
}

.content-section {
  min-height: 76vh;
  padding: 120px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  position: relative;
  
  /* Modern progressive native lazy loading for below-the-fold sections */
  content-visibility: auto;
  contain-intrinsic-size: auto 650px;
  
  /* Smooth scroll entrance / fade-in effect */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.content-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.content-section.alt {
  color: var(--white);
  background: var(--ink);
}
.section-number {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--acid);
}
.content-section.alt .section-number {
  color: var(--acid);
}
.content-section:not(.alt) .section-number {
  color: var(--ink);
  opacity: 0.6;
}
.content-section h2 {
  margin: 24px 0 0;
  font-size: clamp(48px, 6vw, 90px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.section-header {
  margin-bottom: 90px;
  max-width: 800px;
}

/* -- Services Grid -- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  width: 100%;
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s ease,
    opacity 0.5s ease;
}
.services-grid .service-card.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s ease;
}
.services-grid .service-card.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.services-grid .service-card.reveal-on-scroll.is-visible:nth-child(1) {
  transition-delay: 0.05s;
}
.services-grid .service-card.reveal-on-scroll.is-visible:nth-child(2) {
  transition-delay: 0.15s;
}
.services-grid .service-card.reveal-on-scroll.is-visible:nth-child(3) {
  transition-delay: 0.25s;
}
.services-grid .service-card.reveal-on-scroll.is-visible:nth-child(4) {
  transition-delay: 0.35s;
}
.services-grid .service-card.reveal-on-scroll.is-visible:nth-child(5) {
  transition-delay: 0.45s;
}
.services-grid:hover .service-card:not(:hover) {
  opacity: 0.55;
  transform: translateY(2px) scale(0.97);
}
.service-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 12px 36px rgba(var(--theme-color-rgb), 0.1);
  border-color: rgba(var(--theme-color-rgb), 0.3);
  opacity: 1 !important;
  transition-delay: 0s !important;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    opacity 0.4s ease !important;
}
.content-section.alt .service-card:hover {
  transform: translateY(-12px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 12px 36px rgba(var(--theme-color-rgb), 0.15);
}
.content-section.alt .service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.service-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 20px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.service-card li {
  font-size: 12.5px;
  margin-bottom: 8px;
  display: flex;
  position: relative;
  padding-left: 24px;
  opacity: 0.85;
  font-weight: 500;
}
.service-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--acid);
  font-weight: bold;
}
.content-section:not(.alt) .service-card li::before {
  color: var(--plum);
}
.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 24px;
  color: #1a202c;
  text-decoration: none;
  transition: gap 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}
.content-section.alt .service-learn-more {
  color: var(--acid);
}
.content-section:not(.alt) .service-learn-more {
  color: var(--plum);
}
.service-learn-more:hover {
  gap: 10px;
  opacity: 0.85;
}
.service-learn-more .arrow {
  transition: transform 0.25s ease;
}

/* -- Split Content (Abordagem) -- */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.split-column h3 {
  font-size: 34px;
  margin: 0 0 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.split-column p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 36px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
  opacity: 0.95;
}
.feature-list li strong {
  color: var(--acid);
}
.feature-list li::before {
  content: "•";
  color: var(--acid);
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* -- About Grid -- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.about-card {
  background: #1c1c1c;
  color: #fff;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 204, 255, 0.3);
}
.about-card.full-width {
  grid-column: 1 / -1;
}
.about-group-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
}
.about-group-label svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
  flex-shrink: 0;
}
.about-group-label h3 {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  margin: 0;
}
@media (max-width: 700px) {
  .about-group-label {
    margin-top: 0;
  }
}
.about-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: none;
  color: #000;
  border-radius: 10px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.about-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}
.about-card:hover .about-icon {
  transform: scale(1.05);
}
.about-card h3,
.about-card h4 {
  font-size: 26px;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #fff;
}
.about-card p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

/* -- Footer Section -- */
.footer-section {
  background: #000;
  color: #fff;
  padding: 100px 7vw 60px;
  display: flex;
  justify-content: space-between;
  gap: 8vh;
  position: relative;
  overflow: hidden;
  
  /* Modern progressive native lazy loading for footer section */
  content-visibility: auto;
  contain-intrinsic-size: auto 550px;
}

@media (max-width: 1024px) {
  .footer-section {
    flex-direction: column;
  }
}

.footer-left {
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
}

.footer-eyebrow {
  color: #a0a0a0;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 12px;
}

.footer-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.25;
  margin: 0 0 48px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}

.footer-contact-card {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  min-width: 300px;
}

@media (max-width: 480px) {
  .footer-contact-card {
    min-width: 100%;
    width: 100%;
  }
}

.footer-contact-card .icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.footer-contact-card .label {
  font-size: 13px;
  color: #999;
  margin-bottom: 2px;
  font-weight: 500;
}

.footer-contact-card a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s;
}

.footer-contact-card a:hover {
  color: var(--acid, #00d68f);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.social-btn:hover {
  background: #333;
}

.footer-brand-info {
  margin-top: auto;
}

.footer-logo-text {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.footer-legal p {
  color: #888;
  font-size: 13px;
  margin: 0 0 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #666;
  font-size: 13px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* -- Footer Right Form -- */
.footer-right {
  flex: 0 0 clamp(400px, 40%, 550px);
  width: 100%;
}

.footer-form-wrapper {
  background: #b0b1b1;
  border-radius: 20px;
  padding: 40px;
  color: #000;
}

@media (max-width: 480px) {
  .footer-form-wrapper {
    padding: 24px;
  }
}

.footer-form-wrapper h3 {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 500;
  margin: 0 0 28px;
  color: #fff;
  line-height: 1.3;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  color: #000;
  font-size: 15px;
  outline: none;
  transition: background 0.3s;
}

.footer-input:focus {
  background: rgba(255, 255, 255, 0.7);
}

.footer-input::placeholder {
  color: #555;
}

textarea.footer-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.attach-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  margin: 4px 0 12px;
  transition:
    transform 0.2s,
    background 0.2s;
}

.attach-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.consent-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 11px;
  color: #222;
  line-height: 1.45;
  margin: 4px 0 20px;
  cursor: pointer;
}

.consent-label input {
  margin-top: 3px;
  cursor: pointer;
}

.submit-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 6px 6px 6px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  color: #000;
  transition: transform 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.submit-btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00d68f;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 46px;
  }
  .site-header {
    top: 20px;
    left: 6.5vw;
    right: 6.5vw;
    grid-template-columns: 38px minmax(120px, 1fr) auto auto;
    gap: 8px;
  }
  .desktop-nav {
    display: none;
  }
  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: auto;
    height: 46px;
    padding: 0;
    color: var(--plum);
  }
  .header-actions {
    display: contents;
  }
  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    width: 38px;
    height: 38px;
    display: grid;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
  }
  .menu-toggle span {
    width: 14px;
  }
  .contact-link {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    display: flex;
    gap: 11px;
    padding: 0 4px 0 14px;
    color: var(--white);
    font-size: 13px;
    white-space: nowrap;
  }
  .contact-label-desktop {
    display: none;
  }
  .contact-label-mobile {
    display: inline;
  }
  .contact-arrow {
    width: 37px;
    height: 37px;
    color: var(--ink);
    background: var(--white);
    border-radius: 10px;
  }
  .contact-arrow svg {
    width: 15px;
    stroke-width: 2;
  }
  .header-action-search {
    grid-column: 4;
    grid-row: 1;
    display: flex !important;
    align-self: center;
  }
  .language-wrapper {
    grid-column: 4;
    grid-row: 1;
    align-self: center;
    display: inline-flex;
  }
  .language-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  .language-link svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
  }
  .menu-open .brand {
    color: var(--white);
  }
  .menu-open .brand-mark {
    filter: brightness(0) invert(1);
  }
  .menu-open .contact-link,
  .menu-open .language-link,
  .menu-open .language-wrapper,
  .menu-open .header-action-search {
    opacity: 0;
    pointer-events: none;
    display: none !important;
  }
  .menu-open .menu-toggle {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
  }
  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 110px 7vw 34px;
    color: var(--white);
    background: var(--plum);
    visibility: hidden;
    opacity: 0;
    clip-path: circle(0 at calc(6.5vw + 19px) 39px);
    transition:
      clip-path 0.65s cubic-bezier(0.76, 0, 0.24, 1),
      opacity 0.2s,
      visibility 0.65s;
  }
  .menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    clip-path: circle(150% at calc(6.5vw + 19px) 39px);
  }
  .mobile-menu-head {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .mobile-nav {
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .mobile-nav > a,
  .mobile-nav > details > summary {
    min-height: 67px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 500;
    letter-spacing: -0.04em;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
  }
  .mobile-nav > details > summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav > details > summary i {
    width: 16px;
    height: 16px;
    position: relative;
  }
  .mobile-nav > details > summary i::before,
  .mobile-nav > details > summary i::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 16px;
    height: 1px;
    background: currentColor;
  }
  .mobile-nav > details > summary i::after {
    transform: rotate(90deg);
    transition: transform 0.25s;
  }
  .mobile-nav details[open] > summary i::after {
    transform: rotate(0);
  }
  .mobile-subnav {
    padding: 10px 0 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  /* --- SUBMENU ACCORDION (CASCADING) --- */
  details.submenu-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
  }
  details.submenu-container:last-child {
    border-bottom: none;
  }
  summary.submenu-summary,
  a.submenu-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    color: #00ccff;
    font-size: clamp(14px, 4.2vw, 16px) !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    text-transform: none !important;
    list-style: none;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  a.submenu-link-item:last-child {
    border-bottom: none;
  }
  summary.submenu-summary {
    border-bottom: none;
  }
  summary.submenu-summary::-webkit-details-marker {
    display: none;
  }
  summary.submenu-summary .submenu-indicator,
  a.submenu-link-item .submenu-indicator {
    position: relative;
    width: 10px;
    height: 10px;
    display: inline-block;
  }
  summary.submenu-summary .submenu-indicator::before,
  summary.submenu-summary .submenu-indicator::after,
  a.submenu-link-item .submenu-indicator::before,
  a.submenu-link-item .submenu-indicator::after {
    content: "";
    position: absolute;
    background-color: #00ccff;
    transition: transform 0.3s ease;
  }
  /* Linha horizontal do "plus" */
  summary.submenu-summary .submenu-indicator::before,
  a.submenu-link-item .submenu-indicator::before {
    top: 4px;
    left: 0;
    width: 10px;
    height: 2px;
  }
  /* Linha vertical do "plus" */
  summary.submenu-summary .submenu-indicator::after,
  a.submenu-link-item .submenu-indicator::after {
    top: 0;
    left: 4px;
    width: 2px;
    height: 10px;
  }
  /* Transforma "plus" em "minus"/"barra" ao abrir */
  details.submenu-container[open] summary.submenu-summary .submenu-indicator::after {
    transform: rotate(90deg);
    opacity: 0;
  }
  details.submenu-container[open] summary.submenu-summary .submenu-indicator::before {
    transform: rotate(180deg);
  }
  
  .submenu-content {
    padding: 4px 0 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .submenu-content a {
    display: block;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px !important;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .submenu-content a:hover {
    color: #ffffff;
    padding-left: 4px;
  }
  .mobile-menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .mobile-menu-footer a {
    color: var(--acid);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-menu-footer a span {
    margin-left: 8px;
  }
  .mobile-menu-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    text-transform: uppercase;
  }
  .mobile-menu-footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  .mobile-lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .mobile-lang-switch span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
  }
  .mobile-lang-option {
    background: transparent;
    border: 0;
    padding: 2px 4px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
  }
  .mobile-lang-option.active {
    color: var(--acid);
  }

  /* --- NEW MOBILE SCROLLED CUSTOM DESIGNS --- */
  .brand,
  .menu-toggle,
  .contact-link,
  .contact-arrow {
    transition: all 0.35s ease;
  }

  .site-header.is-scrolled {
    background: rgba(11, 17, 32, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    height: 52px !important;
    padding: 0 8px !important;
    top: 14px !important;
    grid-template-columns: 38px 1fr auto auto !important;
    gap: 12px !important;
  }

  .site-header.is-scrolled .language-wrapper {
    grid-column: 4;
    align-self: center;
  }

  .site-header.is-scrolled .brand {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    height: auto !important;
  }

  .site-header.is-scrolled .menu-toggle {
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 12px !important;
    width: 38px !important;
    height: 38px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-header.is-scrolled .contact-link {
    background: rgba(11, 17, 32, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    height: 38px !important;
    padding: 0 4px 0 14px !important;
    gap: 10px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: background-color 0.3s ease, border-color 0.3s ease !important;
  }

  .site-header.is-scrolled .contact-link:hover {
    background: rgba(11, 17, 32, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
  }

  .site-header.is-scrolled .contact-arrow {
    width: 30px !important;
    height: 30px !important;
    background: #ffffff !important;
    color: #000000 !important;
    border-radius: 8px !important;
    display: grid !important;
    place-items: center !important;
    box-shadow: none !important;
    transform: none !important;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease !important;
  }

  .site-header.is-scrolled .contact-link:hover .contact-arrow {
    background: var(--acid) !important;
    color: #000000 !important;
    transform: translate(1px, -1px) scale(1.03) !important;
  }

  .site-header.is-scrolled .contact-arrow svg {
    width: 13px !important;
    height: 13px !important;
    stroke-width: 2.2 !important;
  }

  /* Reset capsule if body menu-open is active */
  .menu-open .site-header {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .menu-open .contact-link,
  .menu-open .language-link,
  .menu-open .language-wrapper,
  .menu-open .header-action-search {
    display: none !important;
  }
}

/* Abaixo de 480px não há espaço para o botão de idioma na cápsula
   reduzida do cabeçalho ao fazer scroll; nesses ecrãs o idioma
   fica acessível através do menu (hamburger), evitando overflow. */
@media (max-width: 480px) {
  .site-header.is-scrolled .language-wrapper {
    display: none !important;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 46px;
  }
  .site-header {
    top: 16px;
    left: 14px;
    right: 14px;
    grid-template-columns: 38px minmax(96px, 1fr) auto auto auto;
    gap: 8px;
  }
  .brand {
    width: auto;
    padding: 0;
  }
  .mobile-menu {
    padding: 110px 22px 28px;
    clip-path: circle(0 at 47px 51px);
  }
  .menu-open .mobile-menu {
    clip-path: circle(150% at 47px 51px);
  }
  .contact-link {
    font-size: clamp(10px, 3.1vw, 13px);
  }
  .language-link {
    font-size: clamp(11px, 3.3vw, 14px);
  }
  .mobile-nav > a,
  .mobile-nav > details > summary {
    font-size: clamp(25px, 8vw, 36px);
  }
  .hero {
    padding: 130px 22px 54px;
    align-items: center;
  }
  .hero-grid {
    background-size: 44px 44px;
  }
  .hero-fluid-bg {
    inset: -20vw;
  }
  .eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(57px, 20vw, 88px);
  }
  .hero-text {
    width: 94%;
    margin: 28px 0;
    font-size: 16px;
  }
  .hero-meta,
  .scroll-cue {
    display: none;
  }
  .content-section {
    min-height: 65vh;
    padding: 80px 22px;
  }
  .content-section h2 {
    font-size: 48px;
  }
  .split-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-card {
    padding: 32px 24px;
    text-align: left;
  }
  .service-card h3 {
    font-size: 17.5px;
    margin-bottom: 8px;
  }
  .service-card p {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .service-card li {
    font-size: 11.5px;
    margin-bottom: 6px;
    padding-left: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .site-header {
    left: 14px;
    gap: 5px;
    grid-template-columns: 36px minmax(70px, 1fr) auto auto;
  }
  .language-wrapper {
    grid-column: 4;
  }
  .contact-link {
    grid-column: 3;
  }
  .brand {
    width: auto;
    padding: 0;
  }
  .contact-link {
    gap: 7px;
    padding-left: 10px;
  }
  .language-link {
    padding: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Consultoria Page Styles --- */
@keyframes statusPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(30, 240, 160, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(30, 240, 160, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(30, 240, 160, 0);
  }
}

.consultoria-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 900px) {
  .consultoria-hero {
    padding: calc(var(--header-height) + 60px) 24px 120px;
  }
}
.consultoria-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 900px) {
  .consultoria-content-wrapper {
    gap: 80px;
  }
}
.consultoria-hero-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  min-height: auto;
}
@media (min-width: 900px) {
  .consultoria-hero-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(60px, 10vw, 200px);
    padding-bottom: 20px;
  }
}
.consultoria-breadcrumbs {
  font-family: Helvetica, Arial, sans-serif;
  flex: 0 0 auto;
}
@media (min-width: 900px) {
  .consultoria-breadcrumbs {
    flex: 0 0 auto;
    align-self: flex-end;
    margin-bottom: 24px;
  }
}
.consultoria-breadcrumbs .bc-parent {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.55;
  font-weight: 500;
  margin-bottom: 6px;
}
.consultoria-breadcrumbs .bc-current {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.consultoria-breadcrumbs .bc-current a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.consultoria-breadcrumbs .bc-current a:hover {
  opacity: 0.8;
}
.consultoria-breadcrumbs .bc-current .bc-arrow {
  color: #fff;
  font-weight: 700;
  opacity: 0.8;
  display: inline-block;
}
.consultoria-title-container {
  flex: 1;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .consultoria-title-container {
    max-width: 650px;
    align-self: flex-end;
  }
}
.consultoria-main-title {
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.consultoria-main-title .kicker {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: #fff;
  opacity: 0.75;
  letter-spacing: -0.01em;
}
.consultoria-main-title strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800 !important;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.consultoria-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1.5px solid #1ef0a0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.consultoria-action-btn:hover {
  background: rgba(30, 240, 160, 0.18);
  border-color: #1ef0a0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 240, 160, 0.3);
}
.consultoria-action-btn .status-dot {
  width: 9px;
  height: 9px;
  background: #1ef0a0;
  border-radius: 50%;
  display: block;
  animation: statusPulse 2s infinite ease-in-out;
}
.consultoria-card-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #1e293b;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.05);
}
@media (min-width: 900px) {
  .consultoria-card-container {
    flex-direction: row;
    border-radius: 36px;
    padding: 60px 64px;
    gap: 80px;
  }
}
.consultoria-card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .consultoria-card-left {
    flex: 0 0 clamp(320px, 35%, 440px);
  }
}
.consultoria-icon-box {
  width: 64px;
  height: 64px;
  background: #8D969F !important;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  .consultoria-icon-box {
    width: 76px;
    height: 76px;
  }
}
.consultoria-icon-box svg {
  width: 32px;
  height: 32px;
  stroke: #ffffff;
}
.consultoria-card-title {
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}
.consultoria-card-right {
  flex: 1;
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;

  /* Glassmorphism */
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Language Dropdown Container */
.language-wrapper {
  position: relative;
  display: inline-flex;
  flex-direction: column;
}

/* Main Language Button Styles */
button.language-link#langToggleBtn {
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px !important;
  padding: 4px 10px !important;
  color: #0cc2f3 !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  min-width: 60px !important;
  justify-content: center !important;
  transition: border-radius 0.2s ease !important;
  height: 46px !important;
  cursor: pointer;
  outline: none;
}

/* Icon in the main button */
button.language-link#langToggleBtn svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #0cc2f3 !important;
  stroke-width: 1.5 !important;
  fill: none;
}

/* Flatten bottom corners when expanded */
button.language-link#langToggleBtn[aria-expanded="true"] {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Dropdown Menu (Glass Effect) */
.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: none;
  box-shadow: 0 10px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 9999;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

/* Dropdown Options */
.lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 46px;
  background: transparent;
  border: none;
  color: #c0c5cc;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #0cc2f3;
}

/* Hide the active language from the dropdown list */
.lang-option.active {
  display: none !important;
}

.current-lang {
  font-size: 14px;
  font-weight: 700;
}

/* --- LIVE SEARCH MENU (GLASS EFFECT DROPDOWN) --- */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 15px; /* Aligns precisely like services mega menu */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  position: relative;
  transform: translateY(-10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-wrapper {
  transform: translateY(0);
}

.search-container {
  width: 100%;
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px; /* Unify with other components */
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 16px;
  transition: border-radius 0.2s ease;
}

/* Flatten bottom corners when dropdown has active search results */
.search-container.has-results {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

/* Vertical cursor separator line between icon and text */
.search-icon-left {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0cc2f3;
}

.search-icon-left svg {
  width: 18px;
  height: 18px;
  stroke: #0cc2f3 !important;
  stroke-width: 2.5 !important;
  fill: none;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Matching: "TYPE YOUR SEARCH HERE" placeholder */
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.search-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.search-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.search-close-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* Results panel styles (Matches Mega Menu style) */
.search-results-panel {
  width: 100%;
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-top: none !important;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-height: 50vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1999;
  margin-top: -1px;
}

.search-results-panel.has-results {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.search-result-item {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.search-result-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
}

.search-result-item:hover, 
.search-result-item.focused {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 28px; /* subtle layout nudge on hover/focus */
}

.search-result-title {
  font-size: 14px;
  font-weight: 700;
  color: #0cc2f3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-result-title::after {
  content: "↗";
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.search-result-item:hover .search-result-title::after,
.search-result-item.focused .search-result-title::after {
  opacity: 1;
}

.search-result-desc {
  font-size: 12px;
  color: rgba(230, 235, 245, 0.7);
  line-height: 1.4;
}

.search-no-results {
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.search-no-results svg {
  color: #0cc2f3;
  opacity: 0.6;
}

/* Custom scrollbar for Search results */
.search-results-panel::-webkit-scrollbar {
  width: 6px;
}
.search-results-panel::-webkit-scrollbar-track {
  background: transparent;
}
.search-results-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
.search-results-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .search-overlay {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 10px 0 0 0 !important;
    box-sizing: border-box;
    display: flex !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .search-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .search-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    transform: translateY(-10px) !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .search-overlay.active .search-wrapper {
    transform: translateY(0) !important;
  }

  .search-container {
    border-radius: 12px !important;
    padding: 10px 20px !important;
  }

  .search-container.has-results {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
  }

  .search-results-panel {
    border-radius: 0 0 12px 12px !important;
  }

  .search-result-item:last-child {
    border-bottom-left-radius: 11px !important;
    border-bottom-right-radius: 11px !important;
  }
}

/* Mobile Header Action Search Button (Hidden on Desktop by default) */
.header-action-search {
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px !important;
  display: none !important; /* Hidden on desktop */
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  cursor: pointer !important;
  outline: none !important;
  color: #0cc2f3 !important;
  padding: 0 !important;
  transition: all 0.2s ease !important;
  z-index: 102;
}

.header-action-search svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #0cc2f3 !important;
  stroke-width: 2.5 !important;
  fill: none !important;
}

.header-action-search:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Mobile Nav Search Button inside Menu Drawer (below Contactos) */
.mobile-nav-search-btn {
  margin: 32px 0 0 0 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px !important; /* Unified 12px border radius */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 120px !important;
  height: 46px !important;
  cursor: pointer !important;
  outline: none !important;
  color: #0cc2f3 !important;
  padding: 0 !important;
  transition: all 0.25s ease !important;
}

.mobile-nav-search-btn svg {
  width: 20px !important;
  height: 20px !important;
  stroke: #0cc2f3 !important;
  stroke-width: 2.5 !important;
  fill: none !important;
}

.mobile-nav-search-btn:hover,
.mobile-nav-search-btn:active {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}


/* ==========================================================================
   Corporate Extended Services Modules (Bento, CTA, Segments, Case Studies)
   ========================================================================== */

.corporate-extended-container {
  background: #090e16;
  color: #f1f5f9;
  padding: 80px 6.5vw;
  font-family: Helvetica, Arial, sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .corporate-extended-container {
    padding: 60px 20px;
  }
}

/* SECTION HEADER */
.section-meta-header {
  margin-bottom: 50px;
  max-width: 800px;
}

.section-meta-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--theme-color);
  margin-bottom: 12px;
  font-weight: 700;
  display: block;
}

.section-meta-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* BENTO CAPABILITIES GRID */
.capabilities-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

@media (max-width: 1024px) {
  .capabilities-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .capabilities-bento-grid {
    grid-template-columns: 1fr;
  }
}

.capability-bento-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 34px;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.capability-bento-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(var(--theme-color-rgb), 0.4);
  box-shadow: 0 12px 40px rgba(var(--theme-color-rgb), 0.1);
}

.card-top-indicator {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.capability-bento-card:hover .card-top-indicator {
  color: var(--theme-color);
  border-color: rgba(var(--theme-color-rgb), 0.5);
  background: rgba(var(--theme-color-rgb), 0.05);
}

.card-icon-container {
  color: var(--theme-color);
  margin-bottom: 24px;
  display: inline-flex;
}

.card-icon-container svg {
  stroke-width: 1.6;
}

.card-info-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card-info-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}


/* CALL TO ACTION BANNER */
.corporate-cta-banner {
  background: linear-gradient(135deg, #090e16 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 80px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

@media (max-width: 850px) {
  .corporate-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
    gap: 24px;
  }
}

.cta-banner-text p {
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #090e16;
  border: 1px solid transparent;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner-btn:hover {
  background: var(--theme-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--theme-color-rgb), 0.4);
}

.cta-banner-btn svg {
  transition: transform 0.3s ease;
}

.cta-banner-btn:hover svg {
  transform: translateX(4px);
}


/* SEGMENTS INDUSTRIES SECTIONS */
.segments-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .segments-header-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.segments-intro-text {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  display: flex;
  align-items: center;
}

.segments-main-flex {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-bottom: 80px;
}

.segments-mobile-carousel {
  display: none; /* Hidden on desktop */
}

@media (max-width: 950px) {
  .segments-main-flex {
    display: none !important;
  }
  
  .segments-mobile-carousel {
    display: block !important;
    width: 100%;
    overflow: visible;
    margin-bottom: 60px;
  }
  
  .segments-mobile-track-outer {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 10px 20px 24px 20px;
    scrollbar-width: none; /* Hide scrollbar for clean aesthetic */
  }
  
  .segments-mobile-track-outer::-webkit-scrollbar {
    display: none; /* Webkit hide scrollbar */
  }
  
  .segments-mobile-track {
    display: flex;
    gap: 16px;
    width: max-content;
  }
  
  .segment-mobile-card {
    width: 320px;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
  }
  
  .segment-mobile-card:active {
    transform: scale(0.98);
  }

  .segment-mobile-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(9, 11, 19, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
  }
  
  .segment-mobile-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  }
  
  .segment-mobile-card-text strong {
    color: #ffffff;
    font-weight: 800;
  }
  
  .segment-mobile-pill {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .segment-mobile-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #ffffff;
    color: #0b0d19;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }
}

/* Photo and Overlay Area */
.segment-interactive-visual {
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #0f172a;
  border: 1px solid #e2e8f0;
}

.segment-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.segment-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 14, 22, 0.95) 15%, rgba(9, 14, 22, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.segment-overlay-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--theme-color);
  margin-bottom: 8px;
}

.segment-overlay-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #cbd5e1;
  max-width: 90%;
  margin: 0;
}

/* Accordion side list */
.segments-accordion-list {
  display: flex;
  flex-direction: column;
}

.segment-accordion-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.segment-accordion-first-active {
  /* Preset state styles */
}

.segment-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.segment-acc-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  transition: color 0.3s ease;
}

.segment-acc-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 11px;
  transition: all 0.3s ease;
}

.segment-acc-arrow svg {
  transition: transform 0.3s ease;
}

.segment-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s;
  color: #475569;
  font-size: 13.5px;
  line-height: 1.6;
}

/* ACTIVE ACCORDION STATE CLASSES */
.segment-accordion-item.active {
  border-color: rgba(var(--theme-color-rgb), 0.3);
}

.segment-accordion-item.active .segment-acc-title {
  color: var(--theme-color);
}

.segment-accordion-item.active .segment-acc-arrow {
  background: var(--theme-color);
  color: #ffffff;
}

.segment-accordion-item.active .segment-acc-arrow svg {
  transform: rotate(180deg);
}

.segment-accordion-item.active .segment-acc-content {
  max-height: 150px;
  margin-top: 14px;
}



/* SPOTLIGHT CLIENT CASE STUDIES (CAROUSEL LOOK) */
.case-studies-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.carousel-nav-controls {
  display: flex;
  gap: 12px;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.carousel-nav-btn:hover {
  background: var(--theme-color);
  color: #ffffff;
  border-color: var(--theme-color);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(var(--theme-color-rgb), 0.2);
}

.carousel-nav-btn:active {
  transform: scale(0.95);
}

/* TRACK WRAPPER FOR SLIDING */
.case-studies-carousel-wrapper {
  overflow: visible;
  width: 100%;
  position: relative;
}

.case-studies-track-outer {
  overflow: hidden;
  margin: 0 -20px;
  padding: 10px 20px 40px 20px;
}

.case-studies-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* WIDE SLIDE CARD - DESIGN PATTERN FROM UPLOADED IMAGE WITH GLASSMORPHISM */
.case-study-showcase-card {
  flex: 0 0 calc(100% - 40px);
  max-width: 960px;
  background: transparent;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 8px 1px rgba(255, 255, 255, 0.1);
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 460px 1fr;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.case-study-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  z-index: 5;
  pointer-events: none;
}

.case-study-showcase-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3),
    transparent,
    rgba(255, 255, 255, 0.1)
  );
  z-index: 5;
  pointer-events: none;
}

@media (min-width: 1025px) {
  .case-study-showcase-card {
    flex: 0 0 920px; /* Peeking effect on desktop */
  }
}

@media (max-width: 900px) {
  .case-study-showcase-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.case-study-showcase-card:hover {
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.01);
}

/* Left overlay info column - transparent to let the glass filter shine */
.case-card-info-pane {
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  z-index: 2;
  position: relative;
}

@media (max-width: 900px) {
  .case-card-info-pane {
    padding: 34px;
    background: transparent;
  }
}

.case-card-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.case-card-body-content h4 {
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.case-card-body-content p {
  font-size: 14.2px;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.case-show-more-btn {
  background: none;
  border: none;
  color: var(--theme-color);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.case-show-more-btn:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Interactive Accordion expanded detail */
.case-card-expanded-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-bottom 0.4s ease;
  color: #cbd5e1;
  font-size: 13.5px;
  line-height: 1.6;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 0;
  margin-bottom: 0;
}

.case-card-expanded-detail.is-open {
  max-height: 200px;
  margin-bottom: 24px;
  padding-top: 16px;
}

/* Action Button inside Left Column - High contrast light button */
.case-discover-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #090e16;
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.case-discover-btn:hover {
  background: var(--theme-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--theme-color-rgb), 0.4);
}

.case-discover-btn svg {
  transition: transform 0.3s ease;
}

.case-discover-btn:hover svg {
  transform: translateX(4px);
}

/* Right visuals style */
.case-card-visual-pane {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .case-card-visual-pane {
    height: 260px;
  }
}

.case-visual-mesh {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-showcase-card:hover .case-visual-mesh {
  transform: scale(1.05) rotate(1deg);
}

/* Color gradients on visual pane - dark to blend into the glass */
.case-visual-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.3) 30%, transparent 100%);
  z-index: 1;
}

@media (max-width: 900px) {
  .case-visual-gradient-overlay {
    background: linear-gradient(to top, rgba(11, 17, 32, 0.95) 0%, rgba(11, 17, 32, 0.4) 50%, transparent 100%);
  }
}

/* Metric highlights inside left column */
.case-metrics-group {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.case-metric-unit {
  display: flex;
  flex-direction: column;
}

.case-metric-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--theme-color);
  line-height: 1.1;
  margin-bottom: 2px;
}

.case-client-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--theme-color);
  background: rgba(var(--theme-color-rgb), 0.08);
  border: 1px solid rgba(var(--theme-color-rgb), 0.15);
  padding: 6px 14px;
  border-radius: 20px;
}

.case-metric-label {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
}

/* ==========================================================================
   Floating Cookie Consent Banner
   ========================================================================== */
.cookie-consent-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  z-index: 10000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 1px rgba(255, 255, 255, 0.1) inset;
  color: #f1f5f9;
  max-width: 500px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cookie-consent-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-consent-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-consent-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(var(--theme-color-rgb), 0.15);
  border-radius: 50%;
  color: var(--theme-color);
  flex-shrink: 0;
}

.cookie-consent-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cookie-consent-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #94a3b8;
}

.cookie-consent-desc a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.cookie-consent-desc a:hover {
  color: var(--theme-color);
  text-decoration-color: var(--theme-color);
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cookie-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.cookie-btn-configure {
  background: transparent;
  color: #cbd5e1;
  border-color: transparent;
}

.cookie-btn-configure:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.cookie-btn-accept {
  background: var(--theme-color);
  color: var(--plum);
  font-weight: 700;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--theme-color-rgb), 0.3);
}

/* Expansion panel for customization */
.cookie-custom-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, margin 0.5s ease;
  border-top: 1px solid transparent;
}

.cookie-custom-panel.is-open {
  max-height: 350px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 12px;
  padding-top: 16px;
}

.cookie-opt-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-opt-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.cookie-opt-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-opt-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cookie-opt-badge {
  font-size: 9px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #94a3b8;
}

.cookie-opt-badge.essential {
  background: rgba(var(--theme-color-rgb), 0.15);
  color: var(--theme-color);
}

.cookie-opt-desc {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: .4s;
  border-radius: 20px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--theme-color);
}

input:checked + .cookie-slider:before {
  transform: translateX(16px);
}

input:disabled + .cookie-slider {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .cookie-consent-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
    max-width: none;
  }
  
  .cookie-consent-buttons {
    flex-direction: column-reverse;
    width: 100%;
    gap: 8px;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   Toast Notification Dialogs
   ========================================================================== */
.toast-message {
  position: fixed;
  top: 24px;
  right: 24px;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 12px;
  color: #fff;
  z-index: 10001;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 400px;
  pointer-events: none;
}

.toast-message.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-body {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-text {
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
  color: #e2e8f0;
}

.toast-success {
  border-left: 4px solid #10b981;
}

.toast-error {
  border-left: 4px solid #f43f5e;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .toast-message {
    top: 12px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
}



/* ============================================
   FAQ (Perguntas Frequentes) — SEO / AI-ready
   ============================================ */
.faq-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 6.5vw 96px;
}
.faq-section .section-meta-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-color, #0cc2f3);
  margin-bottom: 12px;
}
.faq-section h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.faq-intro {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(11, 17, 32, 0.65);
  max-width: 640px;
  margin: 0 0 36px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(11, 17, 32, 0.1);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
  border-color: var(--theme-color, #0cc2f3);
  box-shadow: 0 10px 30px rgba(11, 17, 32, 0.07);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 400;
  color: var(--theme-color, #0cc2f3);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding: 0 22px 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(11, 17, 32, 0.72);
}
.faq-item .faq-answer a {
  color: var(--theme-color, #0cc2f3);
  font-weight: 600;
}
@media (max-width: 640px) {
  .faq-section {
    padding: 48px 6.5vw 64px;
  }
}

/* ============================================
   Glassmorphism refinada — navbar e mega menu
   (mesmo vidro escuro desfocado, coerente)
   ============================================ */
.nav-pill {
  background: linear-gradient(
    160deg,
    rgba(20, 28, 44, 0.58),
    rgba(8, 14, 26, 0.46)
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 32px rgba(3, 16, 33, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
}
.mega-menu {
  background: linear-gradient(
    160deg,
    rgba(20, 28, 44, 0.58),
    rgba(8, 14, 26, 0.46)
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 64px rgba(3, 16, 33, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
}
/* ============================================
   Hero: fundo fluido animado (todas as páginas)
   ============================================ */
@keyframes hero-fluid-drift {
  0% {
    transform: scale(1.04) rotate(0deg) translate3d(0, 0, 0);
  }
  25% {
    transform: scale(1.22) rotate(3.5deg) translate3d(-3%, 2.4%, 0);
  }
  50% {
    transform: scale(1.1) rotate(-3deg) translate3d(3%, -2.2%, 0);
  }
  75% {
    transform: scale(1.26) rotate(2.2deg) translate3d(-2%, 3%, 0);
  }
  100% {
    transform: scale(1.14) rotate(-2.6deg) translate3d(2.4%, 2.6%, 0);
  }
}
.hero-fluid-bg svg {
  transform-origin: 50% 50%;
  animation: hero-fluid-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hero-fluid-bg svg {
    animation: none;
  }
}

/* ============================================
   Hero kicker (tagline acima do H1)
   ============================================ */
/* Hero da homepage — título grande numa linha + subtítulo,
   posicionados em baixo à esquerda (não afeta as outras páginas) */
.hero-copy h1 {
  font-size: clamp(42px, 6.2vw, 104px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 1100px;
}
.hero-subtitle {
  width: min(760px, 92%);
  margin: 20px 0 44px;
  font-size: clamp(20px, 2.3vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
}

/* ============================================
   Pormenores do hero visíveis em mobile
   (EXPLORAR vertical + Inovação/Impacto/Tecnologia)
   ============================================ */
@media (max-width: 700px) {
  .scroll-cue {
    display: flex;
    right: 16px;
    top: 42%;
    font-size: 9px;
    gap: 10px;
  }
  .scroll-cue i {
    height: 36px;
  }
  .hero-meta {
    display: flex;
    right: 22px;
    bottom: 3.5vh;
    gap: 7px;
    font-size: 10px;
  }
  /* Espaço extra em baixo para a pilha de meta não tocar no CTA */
  .hero {
    padding-bottom: 15vh;
  }
}

/* ============================================
   Página 404 — Não encontrada
   ============================================ */
.notfound {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 7vw 100px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
  text-align: center;
}
.notfound-inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notfound-code {
  margin: 0;
  font-size: clamp(96px, 20vw, 240px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #ffffff 0%, rgba(0, 204, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.notfound-title {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.notfound-text {
  margin: 20px 0 40px;
  max-width: 520px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.notfound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.notfound-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
  max-width: 620px;
}
.notfound-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.25s ease;
}
.notfound-links a:hover {
  color: #00ccff;
}
@media (max-width: 700px) {
  .notfound {
    padding: 130px 22px 80px;
  }
}

/* ============================================
   Ícones Bootstrap Icons — WhatsApp e setas
   ============================================ */
.social-btn .bi {
  font-size: 18px;
  line-height: 1;
}
.arrow .bi,
.segment-mobile-arrow .bi,
.mobile-menu-footer .bi,
.notfound .bi {
  font-size: 1em;
  vertical-align: -0.08em;
}

/* ============================================
   Sobre nos — Missao / Visao / Valores (editorial)
   ============================================ */
.about-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
}
.about-flow {
  margin-top: 48px;
}
.about-block {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 8px 48px;
  padding: 34px 0;
  border-top: 1px solid rgba(11, 17, 32, 0.1);
}
.about-block:last-child {
  border-bottom: 1px solid rgba(11, 17, 32, 0.1);
}
.about-heading {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.about-heading::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 14px;
  background: var(--theme-color, #0cc2f3);
  border-radius: 2px;
}
.about-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
}
.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-points li {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #4a5568;
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theme-color, #0cc2f3);
}
@media (max-width: 640px) {
  .about-block {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }
  .about-heading::after {
    margin-top: 10px;
  }
}
