:root {
  --bg: #061322;
  --bg2: #0b2036;
  --text: #f7fbff;
  --muted: #d5e5f1;
  --card: rgba(7, 25, 43, .78);
  --line: rgba(94, 220, 244, .42);
  --cyan: #41dff7;
  --blue: #38a9ff;
  --orange: #ff9a3c;
  --violet: #7c5cff;
  --green: #80e7c4;
  --light: #eef8fb;
  --ink: #0a253b;
  --light-muted: #597283;
  --shadow: 0 26px 70px rgba(0, 0, 0, .38);
  --radius: 24px;
  --header: rgba(4, 15, 27, .82)
}

body.light-theme {
  --bg: #f5fbfd;
  --bg2: #eaf7f8;
  --text: #0d2436;
  --muted: #687f8f;
  --card: rgba(255, 255, 255, .68);
  --line: rgba(22, 145, 171, .25);
  --header: rgba(255, 255, 255, .72);
  --shadow: 0 24px 60px rgba(19, 70, 90, .14)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at 20% 0%, #123352 0%, var(--bg) 36%, #030914 100%);
  color: var(--text);
  overflow-x: hidden
}

body.light-theme {
  background: linear-gradient(135deg, #f7fcff, #eef8f6)
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

#heroWebCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen
}

.section-pad {
  padding: 105px 7vw
}

.section-pad-sm {
  padding: 55px 7vw
}

.glass,
.glassmorphism {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px)
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 92vw);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 999px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  line-height: .95
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), #0a5fa0);
  box-shadow: 0 0 28px rgba(54, 214, 244, .55)
}

.nav-menu {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700
}

.nav-menu a {
  opacity: .82
}

.nav-menu a:hover {
  color: var(--cyan);
  opacity: 1
}

.header-actions {
  display: flex;
  gap: 10px
}

.select-control,
.theme-toggle {
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(4, 14, 26, .62);
  color: var(--text);
  padding: 0 13px;
  font-weight: 700;
}

.theme-toggle {
  width: 42px;
  cursor: pointer;
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 25px
}

.menu-toggle span {
  color: #083451;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #061322
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(2, 8, 18, .94), rgba(2, 8, 18, .58)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=1800&q=85') center/cover;
  opacity: .96
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto
}

.eyebrow {
  display: inline-block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 12px
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  margin: 0 0 20px;
  max-width: 780px
}

.hero p,
.section-title p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 15px 24px;
  font-weight: 900;
  border: 1px solid var(--line)
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111d;
  box-shadow: 0 0 35px rgba(54, 214, 244, .35)
}

.btn-ghost {
  background: rgba(255, 255, 255, .04)
}

.hero-visual {
  height: 520px;
  position: relative
}

.tech-globe {
  position: absolute;
  inset: 45px;
  margin: auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 219, 255, .35), rgba(8, 35, 68, .7) 45%, rgba(4, 12, 24, .05) 70%);
  border: 1px solid rgba(81, 216, 255, .35);
  box-shadow: 0 0 95px rgba(54, 214, 244, .45);
  animation: pulse 4s ease-in-out infinite
}

.tech-globe:before,
.tech-globe:after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 2px solid rgba(54, 214, 244, .35);
  border-radius: 50%;
  transform: rotateX(67deg)
}

.tech-globe:after {
  transform: rotateY(68deg)
}

.tech-globe span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan)
}

.tech-globe span:nth-child(1) {
  left: 24%;
  top: 28%
}

.tech-globe span:nth-child(2) {
  right: 22%;
  top: 38%
}

.tech-globe span:nth-child(3) {
  left: 42%;
  bottom: 18%
}

.tech-globe span:nth-child(4) {
  right: 34%;
  bottom: 31%
}

.globe-core {
  position: absolute;
  inset: 38%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  background: rgba(255, 255, 255, .09);
  border: 1px solid var(--line)
}

.floating-card {
  position: absolute;
  border-radius: 16px;
  padding: 18px 22px;
  font-weight: 900;
  color: var(--cyan);
  animation: float 5s ease-in-out infinite
}

.card-one {
  top: 52px;
  left: 10px
}

.card-two {
  right: 28px;
  top: 210px;
  animation-delay: 1.1s
}

.card-three {
  left: 70px;
  bottom: 65px;
  animation-delay: 2s
}

@keyframes pulse {
  50% {
    transform: scale(1.04)
  }
}

@keyframes float {
  50% {
    transform: translateY(-18px)
  }
}

.section-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px
}

.section-title h2,
.section-heading-row h2,
.contact-copy h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.05;
  margin: 0 0 14px
}

.light-section {
  background: linear-gradient(120deg, #f6fdff 0%, #edf9f7 52%, #fff6ec 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden
}

.about.light-section {
  background: radial-gradient(circle at 20% 10%, rgba(65, 223, 247, .20), transparent 30%), linear-gradient(135deg, #f3fbff 0%, #e9f7fb 58%, #f6fffd 100%)
}

.values.light-section {
  background: radial-gradient(circle at 82% 35%, rgba(255, 154, 60, .18), transparent 32%), radial-gradient(circle at 18% 70%, rgba(128, 231, 196, .22), transparent 35%), linear-gradient(135deg, #f8fdff 0%, #eefbf5 48%, #fff4e9 100%)
}

.partners.light-section {
  background: radial-gradient(circle at 50% 5%, rgba(94, 220, 244, .20), transparent 24%), linear-gradient(135deg, #f7fbff 0%, #eef4f8 50%, #fff6e8 100%)
}

.light-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(44, 190, 208, .55) 2px, transparent 3px);
  background-size: 165px 125px;
  opacity: .72;
  pointer-events: none
}

.light-section>* {
  position: relative
}

.light-section .section-title p,
.light-section p {
  color: var(--light-muted)
}





.values {
  min-height: 680px;
  display: grid;
  place-items: center
}

.values-layout {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 68px 88px;
  align-items: center
}

.value-copy h3 {
  font-size: 35px;
  margin: 0 0 14px;
  color: #092c4a
}

.value-copy p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0
}

.v2,
.v4 {
  text-align: left
}

.value-center {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  width: 300px;
  height: 300px;
  align-self: center;
  justify-self: center
}

.center-circle {
  position: absolute;
  inset: 25px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(43, 100, 120, .18)
}

.center-circle span {
  font-size: 48px;
  color: #42bfcd
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 13px solid transparent
}

.ring-a {
  border-right-color: #42bfcd;
  border-bottom-color: #42bfcd;
  animation: spin 9s linear infinite
}

.ring-b {
  inset: 18px;
  border-left-color: var(--orange);
  border-bottom-color: var(--orange);
  animation: spin 11s linear reverse infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.services,
.news,
.contact {
  position: relative;
  color: var(--text);
  overflow: hidden
}

.services {
  background: radial-gradient(circle at 12% 20%, rgba(65, 223, 247, .22), transparent 34%), linear-gradient(135deg, #06182b 0%, #09243c 52%, #06121f 100%)
}

.news {
  background: radial-gradient(circle at 88% 16%, rgba(124, 92, 255, .25), transparent 34%), linear-gradient(145deg, #0a1024 0%, #081b32 52%, #07101d 100%)
}

.contact {
  background: radial-gradient(circle at 8% 88%, rgba(255, 154, 60, .22), transparent 32%), linear-gradient(135deg, #07182a 0%, #0b2340 45%, #06101e 100%)
}

.services:before,
.news:before,
.contact:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent)
}

.services:after,
.news:after,
.contact:after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 330px;
  background: radial-gradient(ellipse, rgba(65, 223, 247, .16), transparent 65%);
  pointer-events: none
}

.services>*,
.news>*,
.contact>* {
  position: relative;
  z-index: 1
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  perspective: 1200px
}



.service-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 0%), rgba(65, 223, 247, .24), transparent 38%);
  opacity: 0;
  transition: .3s
}

.service-card:hover:before {
  opacity: 1
}

.service-card>* {
  position: relative
}

.service-card:hover,
.news-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(65, 223, 247, .9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45), 0 0 35px rgba(65, 223, 247, .18)
}

/* .icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 36px;
  background: rgba(54, 214, 244, .08);
  box-shadow: inset 0 0 22px rgba(54, 214, 244, .24)
} */

.news-card p {
  color: #d7e8f4;
  line-height: 1.65
}

.services .section-title p,
.news .section-title p,
.contact-copy p {
  color: #e0edf6
}

.service-card a {
  color: var(--cyan);
  font-weight: 900
}

.partners {
  text-align: center
}

.hex-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 840px;
  margin: 30px auto 0
}

.hex {
  width: 125px;
  height: 108px;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(214, 229, 238, .88));
  border: 1px solid #9bb2c1;
  display: grid;
  place-items: center;
  color: #405767;
  font-weight: 900;
  filter: drop-shadow(0 10px 12px rgba(40, 74, 92, .12));
  transition: .25s;
  position: relative
}

.hex:before {
  content: "";
  position: absolute;
  inset: 8px;
  clip-path: inherit;
  border: 1px solid rgba(20, 143, 176, .22);
  background: rgba(255, 255, 255, .20)
}

.hex span {
  position: relative;
  z-index: 1
}

.hex:nth-child(even) {
  transform: translateY(28px)
}

.hex:hover {
  background: linear-gradient(145deg, #ffffff, #dff8fb);
  color: #0b8fb0;
  transform: translateY(-8px) scale(1.05)
}

.hex:nth-child(even):hover {
  transform: translateY(20px) scale(1.05)
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px
}

.news-grid {
  grid-template-columns: repeat(3, 1fr)
}

.news-card {
  overflow: hidden;
  border-radius: 22px;
  transition: .35s;
  background: rgba(8, 25, 46, .82)
}

.news-card img {
  height: 220px;
  width: 100%;
  object-fit: cover
}

.news-card>*:not(img) {
  padding-left: 24px;
  padding-right: 24px
}

.news-card div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  padding-top: 18px
}

.news-card span {
  color: #031420;
  background: var(--cyan);
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 900;
  font-size: 12px
}

.news-card h3 {
  padding-bottom: 0
}

.news-card p {
  padding-bottom: 24px
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px
}

.contact-form {
  border-radius: 24px;
  padding: 30px;
  display: grid;
  gap: 14px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 15px 16px;
  color: var(--text);
  font: inherit
}

.footer {
  text-align: center;
  padding: 28px;
  color: var(--muted);
  background: #030914
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: .75s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(max-width:980px) {
  .menu-toggle {
    display: block
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 20px;
    border-radius: 24px;
    background: var(--header);
    border: 1px solid var(--line)
  }

  .nav-menu.open {
    display: flex
  }

  .hero-grid,
  .contact {
    grid-template-columns: 1fr
  }

  .hero-visual {
    height: 360px
  }

  .tech-globe {
    width: 280px;
    height: 280px
  }

  .cards-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr
  }



  .values-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
    text-align: center
  }

  .value-center {
    grid-column: 1;
    grid-row: auto
  }

  .v1,
  .v2,
  .v3,
  .v4 {
    text-align: center
  }

  .hex:nth-child(even) {
    transform: none
  }
}

@media(max-width:640px) {
  .section-pad {
    padding: 88px 22px
  }

  .site-header {
    top: 10px;
    width: 94vw
  }

  .brand span:last-child {
    display: none
  }

  .header-actions {
    gap: 6px
  }

  .select-control {
    width: 74px
  }

  .hero h1 {
    font-size: 40px
  }

  .cards-grid,
  .news-grid {
    grid-template-columns: 1fr
  }

  .section-heading-row {
    display: block
  }

  .hex {
    width: 104px;
    height: 90px
  }

  .values-layout {
    gap: 18px
  }

  .value-center {
    width: 240px;
    height: 240px
  }

  .center-circle {
    font-size: 18px
  }

  .value-copy h3 {
    font-size: 28px
  }
}


/* Camadas extras de dinamismo e legibilidade */
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 70%) var(--my, 40%), rgba(65, 223, 247, .22), transparent 25%);
  pointer-events: none;
  mix-blend-mode: screen
}

.web-zone {
  isolation: isolate
}

.web-zone:where(.services, .news, .contact)::before {
  animation: gridMove 18s linear infinite
}

@keyframes gridMove {
  to {
    background-position: 70px 70px
  }
}

.section-title h2,
.section-heading-row h2,
.contact-copy h2 {
  letter-spacing: -.04em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .28)
}

.light-section .section-title h2,
.light-section .value-copy h3,
.light-section {
  text-shadow: none;
  color: #083451;
}

.services .eyebrow,
.news .eyebrow {
  color: #58e8ff;
  text-shadow: 0 0 20px rgba(88, 232, 255, .35)
}

.glass,
.glassmorphism {
  background: linear-gradient(145deg, rgba(10, 34, 57, .82), rgba(8, 20, 36, .70));
  border-color: rgba(118, 229, 249, .42)
}

.site-header.glass {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(31, 151, 176, .24);
}

.light-theme .glass,
.light-theme .glassmorphism {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(31, 151, 176, .24)
}

.light-theme .services,
.light-theme .news,
.light-theme .contact {
  color: #f7fbff
}

.light-theme .service-card p,
.light-theme .news-card p,
.light-theme .contact-copy p {
  color: #dcecf6
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, .10);
  color: #fff
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c8d8e4
}

.reveal:nth-child(2n) {
  transition-delay: .08s
}

.reveal:nth-child(3n) {
  transition-delay: .16s
}

.value-copy,
.hex {
  will-change: transform
}



.value-copy:hover {
  transform: translateY(-6px);
  transition: .3s
}

.value-copy h3 {
  position: relative;
  display: inline-block
}

.value-copy h3:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #35cde3, #ff9a3c);
  transform: scaleX(.35);
  transform-origin: left;
  transition: .25s
}

.value-copy:hover h3:after {
  transform: scaleX(1)
}


/* Banner inicial com teia dinâmica leve */
.hero-web-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 72%) var(--my, 42%), rgba(65, 223, 247, .34), transparent 24%), linear-gradient(90deg, rgba(0, 0, 0, .14), transparent 52%);
  mix-blend-mode: screen;
  transition: opacity .25s ease
}

.hero:after {
  z-index: 3;
  background: radial-gradient(circle at var(--mx, 70%) var(--my, 40%), rgba(65, 223, 247, .16), transparent 30%);
  opacity: .9
}

.light-theme #heroWebCanvas {
  mix-blend-mode: multiply
}

.light-theme .hero-bg {
  filter: saturate(1.08) contrast(1.04)
}

.light-theme .hero-web-glow {
  mix-blend-mode: multiply;
  opacity: .82
}

.hero-content {
  position: relative;
  z-index: 5
}

.hero-content h1,
.hero-content p {
  text-shadow: 0 4px 28px rgba(0, 0, 0, .72)
}

@media(max-width:640px) {
  #heroWebCanvas {
    opacity: .88
  }

  .hero-web-glow {
    opacity: .72
  }
}

/* Teia orgânica: mantém o efeito só no banner e evita aparência de grade fixa */
#heroWebCanvas {
  filter: drop-shadow(0 0 8px rgba(90, 230, 255, .26))
}

.hero-web-glow {
  background: radial-gradient(circle at var(--mx, 72%) var(--my, 42%), rgba(65, 223, 247, .28), transparent 26%), radial-gradient(circle at 18% 70%, rgba(56, 169, 255, .14), transparent 38%), linear-gradient(90deg, rgba(0, 0, 0, .20), transparent 55%)
}


/* Página e seção de associados */
.associates-preview .section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: #dcecf6
}



.associate-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #061322
}

.associate-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 18, .94), rgba(2, 8, 18, .58)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1800&q=85') center/cover;
  opacity: .96
}

.associate-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 40%, rgba(65, 223, 247, .22), transparent 30%), radial-gradient(circle at 18% 72%, rgba(255, 154, 60, .14), transparent 35%);
  pointer-events: none
}

.associate-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: auto
}

.associate-brand-card {
  border-radius: 30px;
  padding: 38px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden
}

.associate-brand-card:before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 120deg, transparent, rgba(65, 223, 247, .22), transparent, rgba(255, 154, 60, .20), transparent);
  animation: spin 12s linear infinite
}

.associate-brand-card>* {
  position: relative;
  z-index: 1
}

.associate-badge {
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: .12em;
  font-size: 12px
}

.associate-logo {
  font-size: 84px;
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.08em;
  color: #fff;
  text-shadow: 0 0 35px rgba(65, 223, 247, .45)
}

.associate-logo small {
  font-size: 25px;
  letter-spacing: .24em;
  color: var(--cyan)
}

.associate-brand-card p {
  font-size: 18px;
  line-height: 1.65;
  color: #dcecf6
}

.associate-about-grid,
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: auto
}

.associate-about-grid article,
.ideas-grid article {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(31, 151, 176, .18);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(43, 100, 120, .10)
}

.associate-about-grid strong {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #00111d;
  margin-bottom: 18px
}

.associate-about-grid h3,
.ideas-grid h3 {
  font-size: 24px;
  color: #092c4a;
  margin: 0 0 10px
}

.ideas-grid {
  grid-template-columns: repeat(4, 1fr)
}

.ideas-grid p,
.associate-about-grid p {
  margin: 0;
  line-height: 1.65;
  color: var(--light-muted)
}

@media(max-width:980px) {
  .associate-hero-grid {
    grid-template-columns: 1fr
  }

  .associate-brand-card {
    min-height: 320px
  }

  .associate-about-grid,
  .ideas-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  .associate-hero {
    min-height: 100vh
  }

  .associate-logo {
    font-size: 64px
  }

  .associate-about-grid,
  .ideas-grid {
    grid-template-columns: 1fr
  }
}

/* =========================================================
   AJUSTE MOBILE HEADER
   - Desktop preservado
   - Mobile: menu à esquerda, logo no centro, ações à direita
========================================================= */
@media (max-width:640px) {

  .site-header {
    top: 10px;
    width: 92vw;
    height: 64px;
    padding: 0 14px;
    border-radius: 999px;

    display: flex;
    grid-template-columns: 44px 1fr 90px;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    justify-self: start;

    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 26px;
    line-height: 1;
    order: 0;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
    order: 1;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 6px;
    order: 2;
  }

  .select-control {
    width: 64px;
    height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;

    display: none;
    flex-direction: column;
    gap: 18px;

    padding: 22px;
    border-radius: 22px;
    background: var(--header);
    border: 1px solid var(--line);
  }

  .nav-menu.open {
    display: flex;
  }

}

.site-navigation {
  display: flex;
  align-items: center;
}

.site-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation .nav-menu>li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation .nav-menu a {
  display: block;
  color: inherit;
  text-decoration: none;
  opacity: 0.82;
}

.site-navigation .nav-menu a:hover,
.site-navigation .current-menu-item>a {
  color: #083451;
  opacity: 1;
}

.brand-logo,
.brand-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.brand-logo .custom-logo {
  width: auto;
  max-width: 150px;
  max-height: 44px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .site-header {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .site-navigation {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--header);
    box-shadow: var(--shadow);
  }

  .site-navigation.open {
    display: block;
  }

  .site-navigation .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: grid;
    top: 10px;
    width: 92vw;
    min-height: 64px;
    padding: 0 14px;
    grid-template-columns: 40px 1fr 106px;
  }

  .brand-name {
    display: none;
  }
}

main.site-main.home-page {
  max-width: unset !important;
}


.card-one {
  top: 30px;
  left: 120px;
}

.card-two {
  top: 110px;
  right: -20px;
}



.card-four {
  bottom: 35px;
  right: 23px;
}

.card-five {
  bottom: 131px;
  right: 32px;
}

.card-six {
  bottom: 175px;
  left: 40px;
}

.card-seven {
  top: 110px;
  left: -20px;
}

.card-eight {
  top: 30px;
  right: 120px;
}

.card-one {
  animation-delay: .2s;
}

.card-two {
  animation-delay: .4s;
}

.card-three {
  animation-delay: .6s;
}

.card-four {
  animation-delay: .8s;
}

.card-five {
  animation-delay: 1s;
}

.card-six {
  animation-delay: 1.2s;
}

.card-seven {
  animation-delay: 1.4s;
}

.card-eight {
  animation-delay: 1.6s;
}




@media screen and (max-width: 767px) {

  .card-four,
  .card-five,
  /* .card-six, */
  .card-seven,
  .card-eight {
    display: none;
  }

}



.timeline-section {
  position: relative;
  overflow: hidden;
}

.timeline-section .section-title {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.timeline-section .section-title p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--text-muted, #60798a);
  line-height: 1.7;
}

.timeline {
  position: relative;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg,
      #35bfd2 0%,
      #35bfd2 48%,
      #f39a3d 100%);
  box-shadow: 0 0 22px rgba(53, 191, 210, 0.3);
}

.timeline-item {
  position: relative;
  display: flex;
  width: 50%;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-left {
  justify-content: flex-end;
  padding-right: 70px;
}

.timeline-right {
  margin-left: 50%;
  justify-content: flex-start;
  padding-left: 70px;
}

.timeline-content {
  position: relative;
  width: min(100%, 440px);
  padding: 28px 30px;
  border: 1px solid rgba(53, 191, 210, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 20px 50px rgba(8, 45, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.timeline-left .timeline-content::after,
.timeline-right .timeline-content::after {
  content: "";
  position: absolute;
  top: 34px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(53, 191, 210, 0.22);
  border-right: 1px solid rgba(53, 191, 210, 0.22);
}

.timeline-left .timeline-content::after {
  right: -11px;
  transform: rotate(45deg);
}

.timeline-right .timeline-content::after {
  left: -11px;
  transform: rotate(225deg);
}

.timeline-marker {
  position: absolute;
  top: 22px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 7px solid rgba(236, 250, 252, 0.95);
  border-radius: 50%;
  background: #083451;
  box-shadow:
    0 0 0 3px #38bfd0,
    0 10px 30px rgba(8, 52, 81, 0.18);
}

.timeline-left .timeline-marker {
  right: -37px;
}

.timeline-right .timeline-marker {
  left: -37px;
}

.timeline-marker span {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.timeline-year {
  display: inline-block;
  margin-bottom: 10px;
  color: #ef9139;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.timeline-content h3 {
  margin: 0 0 14px;
  color: #072f4d;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.timeline-content p {
  margin: 0;
  color: #60798a;
  font-size: 1rem;
  line-height: 1.75;
}

.timeline-content p+p {
  margin-top: 12px;
}

@media (max-width: 820px) {
  .timeline {
    width: min(100% - 24px, 700px);
    padding-left: 24px;
  }

  .timeline::before {
    left: 24px;
    transform: none;
  }

  .timeline-item,
  .timeline-right {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    padding-left: 70px;
    justify-content: flex-start;
  }

  .timeline-left .timeline-marker,
  .timeline-right .timeline-marker {
    left: -13px;
    right: auto;
  }

  .timeline-marker {
    width: 74px;
    height: 74px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-left .timeline-content::after,
  .timeline-right .timeline-content::after {
    top: 34px;
    left: -11px;
    right: auto;
    transform: rotate(225deg);
  }
}

@media (max-width: 520px) {
  .timeline-section .section-title {
    margin-bottom: 45px;
  }

  .timeline {
    width: 100%;
    padding-left: 8px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-item,
  .timeline-right {
    padding-left: 58px;
    margin-bottom: 42px;
  }

  .timeline-marker {
    left: -4px !important;
    width: 58px;
    height: 58px;
    border-width: 5px;
  }

  .timeline-marker span {
    font-size: 0.72rem;
  }

  .timeline-content {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .timeline-content h3 {
    font-size: 1.25rem;
  }

  .timeline-content p {
    font-size: 0.94rem;
    line-height: 1.65;
  }
}


/* =========================================================
   SERVIÇOS
========================================================= */

.services {
  position: relative;
  overflow: hidden;
  color: #f7fbff;
  background:
    radial-gradient(circle at 8% 10%,
      rgba(65, 223, 247, 0.16),
      transparent 28%),
    radial-gradient(circle at 92% 88%,
      rgba(255, 154, 60, 0.12),
      transparent 28%),
    linear-gradient(135deg,
      #082840 0%,
      #061d32 48%,
      #041322 100%);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg,
      transparent 0%,
      #000 15%,
      #000 90%,
      transparent 100%);
}

.services::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 700px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(ellipse,
      rgba(255, 154, 60, 0.13),
      transparent 67%);
  transform: rotate(-8deg);
}

.services>* {
  position: relative;
  z-index: 1;
}

.services-title {
  max-width: 880px;
  margin-bottom: 55px;
}

.services-title .eyebrow {
  margin-bottom: 16px;
  color: #50e9ff;
  text-shadow: 0 0 24px rgba(80, 233, 255, 0.35);
}

.services-title h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.services-title p {
  max-width: 720px;
  margin: 0 auto;
  color: #d6e8f3;
  font-size: 18px;
  line-height: 1.7;
}

/* Grade */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

/* Card */

.services .service-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(65, 223, 247, 0.26);
  border-radius: 22px;
  background:
    linear-gradient(145deg,
      rgba(8, 40, 65, 0.93),
      rgba(4, 20, 36, 0.88));
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.services .service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%,
      rgba(65, 223, 247, 0.15),
      transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.services .service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(65, 223, 247, 0.78);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(65, 223, 247, 0.12);
}

.services .service-card:hover::before {
  opacity: 1;
}

/* Card logístico com detalhe laranja */

.services .service-logistica {
  border-color: rgba(255, 154, 60, 0.48);
  background:
    linear-gradient(145deg,
      rgba(21, 38, 52, 0.95),
      rgba(26, 25, 27, 0.9));
}

.services .service-logistica:hover {
  border-color: rgba(255, 154, 60, 0.85);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.38),
    0 0 35px rgba(255, 154, 60, 0.14);
}

.service-card-link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  height: 100%;
  padding: 28px 26px 23px;
  color: inherit;
  text-decoration: none;
}

/* Topo */

.service-card-top {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: #42ddf5;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.service-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 13px rgba(65, 223, 247, 0.25));
}

.service-logistica .service-icon {
  color: #ff9a3c;
}

.service-logistica .service-icon svg {
  filter: drop-shadow(0 0 13px rgba(255, 154, 60, 0.25));
}

.service-card:hover .service-icon {
  transform: translateY(-4px) scale(1.06);
  filter: brightness(1.12);
}

/* Imagem destacada */

.service-image {
  width: 82px;
  height: 82px;
  overflow: hidden;
  border: 1px solid rgba(65, 223, 247, 0.34);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* Pontos decorativos */

.service-card-decoration {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 3px);
  gap: 6px;
}

.service-card-decoration i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #42ddf5;
  box-shadow: 0 0 7px rgba(66, 221, 245, 0.55);
}

.service-logistica .service-card-decoration i {
  background: #ff9a3c;
  box-shadow: 0 0 7px rgba(255, 154, 60, 0.55);
}

/* Conteúdo */

.service-card-body {
  flex: 1;
  text-align: center;
}

.services .service-card h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 1.17rem;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}

.services .service-card p {
  max-width: none;
  margin: 0;
  color: #cfdeea;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Rodapé do card */

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(65, 223, 247, 0.14);
  color: #4ce4fa;
  font-size: 0.88rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.service-logistica .service-card-footer {
  color: #ff9a3c;
  border-top-color: rgba(255, 154, 60, 0.17);
}

.service-card-footer svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-footer {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card-footer svg {
  transform: translateX(4px);
}

/* Benefícios inferiores */

.services-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 22px 10px;
  border-top: 1px solid rgba(65, 223, 247, 0.18);
  border-bottom: 1px solid rgba(65, 223, 247, 0.1);
}

.services-benefits span {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
  color: #b9cedc;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.35;
}

.services-benefits span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  width: 1px;
  background: rgba(65, 223, 247, 0.22);
}

.services-benefits strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.98rem;
}

/* Estado vazio */

.services-empty {
  grid-column: 1 / -1;
  padding: 42px;
  border-radius: 22px;
  text-align: center;
}

.services-empty h3 {
  margin: 0 0 10px;
}

.services-empty p {
  margin: 0;
  color: #d6e8f3;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1180px) {

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 850px;
  }

  .services-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 0;
    max-width: 760px;
  }

  .services-benefits span:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 720px) {

  .services-title {
    margin-bottom: 40px;
  }

  .services-title h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .services-title p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 460px;
  }

  .services .service-card,
  .service-card-link {
    min-height: auto;
  }

  .service-card-link {
    padding: 26px 22px 22px;
  }

  .service-card-footer {
    opacity: 1;
    transform: none;
  }

  .services-benefits {
    grid-template-columns: 1fr 1fr;
    max-width: 480px;
  }

  .services-benefits span:nth-child(3)::after {
    display: block;
  }

  .services-benefits span:nth-child(even)::after {
    display: none;
  }
}

@media (max-width: 460px) {

  .services-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-benefits span {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(65, 223, 247, 0.12);
  }

  .services-benefits span::after {
    display: none !important;
  }

  .services-benefits span:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}



.partners {

  position: relative;

  overflow: hidden;

}

.partners-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 28px;

  margin-top: 70px;

}

.partner-card {

  display: flex;

  align-items: center;

  justify-content: center;

  height: 160px;

  padding: 30px;

  border-radius: 22px;

  background: #fff;

  border: 1px solid rgba(0, 0, 0, .05);

  box-shadow:

    0 10px 30px rgba(0, 0, 0, .05);

  transition: .35s;

}

.partner-card:hover {

  transform: translateY(-8px);

  box-shadow:

    0 25px 60px rgba(0, 0, 0, .12);

}

.partner-logo {

  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;

  height: 100%;

}

.partner-logo img {

  max-width: 170px;

  max-height: 70px;

  object-fit: contain;

  filter: grayscale(100%);

  opacity: .65;

  transition: .35s;

}

.partner-card:hover img {

  filter: none;

  opacity: 1;

  transform: scale(1.05);

}

.partner-logo span {

  font-size: 1.15rem;

  font-weight: 700;

  color: #073554;

  text-align: center;

}

.img-logo {
  max-width: 128px;
}

.nav-menu {
  background: unset;
  border: unset;
}

.nav-menu .nav-menu {
  left: 0;
  padding: 15px;
  background: #040f1b;
  border-radius: 0;
  top: 66px;
}

.nav-menu li a {
  color: #41dff7 !important;
}

@media screen and (min-width: 768px) {
  .nav-menu li a {
    color: #040f1b !important;
  }

  .nav-menu .nav-menu {
  left: 0;
  padding: 15px;
  background: unset;
  border-radius: 0;
  top: 66px;
}

}


.wpforms-container.wpforms-container-full.wpforms-render-modern {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

label.wpforms-field-label {
  color: #58e8ff !important;
}

input.wpforms-field-medium {
  max-width: unset !important;
}

textarea.wpforms-field-medium,
input.wpforms-field-medium {
  border-radius: 11px !important;
}

.wpforms-submit {
  background: #083451 !important;
  width: 100% !important;
  border-radius: 60px !important;
}





/* =========================================================
   CONTATO
========================================================= */

.contact-section {
  position: relative;
  display: block;
  width: 100%;
  padding: 110px 50px;
  overflow: hidden;
}

.contact-section *,
.contact-section *::before,
.contact-section *::after {
  box-sizing: border-box;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 100%,
      rgba(255, 255, 255, 0.11),
      transparent 35%),
    linear-gradient(90deg,
      rgba(16, 98, 126, 0.16),
      transparent 48%);
}

/* Cabeçalho da seção */

.contact-section .contact-header {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.contact-section .section-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: #3fdef5;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-section .contact-header h2 {
  display: block;
  width: 100%;
  max-width: 850px;
  margin: 0 auto 20px;
  color: #fff;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -2px;
  text-align: center;
}

.contact-section .contact-header>p {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
}

/* Conteúdo em duas colunas */

.contact-section .contact-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
  gap: 70px;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Coluna esquerda */

.contact-section .contact-copy {
  display: block;
  width: 100%;
  max-width: 580px;
}

.contact-section .contact-label {
  display: inline-block;
  margin-bottom: 15px;
  color: #3fdef5;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.contact-section .contact-copy h3 {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.contact-section .contact-copy>p {
  display: block;
  width: 100%;
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

/* Benefícios */

.contact-section .contact-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  margin-top: 38px;
}

.contact-section .contact-benefit {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 17px;
  align-items: flex-start;
  width: 100%;
}

.contact-section .contact-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(63, 222, 245, 0.35);
  border-radius: 13px;
  background: rgba(63, 222, 245, 0.06);
  color: #3fdef5;
  font-size: 12px;
  font-weight: 800;
}

.contact-section .contact-benefit div {
  min-width: 0;
}

.contact-section .contact-benefit strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.contact-section .contact-benefit p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

/* Formulário */

.contact-section .contact-form {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 38px;
  border: 1px solid rgba(63, 222, 245, 0.35);
  border-radius: 24px;
  background:
    linear-gradient(145deg,
      rgba(9, 38, 61, 0.94),
      rgba(5, 25, 42, 0.9));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-section .contact-form-heading {
  display: block;
  margin-bottom: 28px;
}

.contact-section .contact-form-heading span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-section .contact-form-heading p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

/* WPForms */

.contact-section .wpforms-container {
  width: 100%;
  margin: 0 !important;
}

.contact-section .wpforms-form {
  width: 100%;
}

.contact-section .wpforms-field-container {
  width: 100%;
}

.contact-section .wpforms-field {
  width: 100% !important;
  padding: 0 0 20px !important;
}

.contact-section .wpforms-field-label {
  display: block !important;
  margin-bottom: 9px !important;
  color: #46def6 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section input[type="tel"],
.contact-section textarea,
.contact-section select {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  border: 1px solid transparent !important;
  border-radius: 11px !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.97) !important;
  color: #071c2d !important;
  font-family: inherit !important;
}

.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section input[type="tel"],
.contact-section select {
  min-height: 52px !important;
  padding: 0 17px !important;
}

.contact-section textarea {
  min-height: 135px !important;
  padding: 16px 17px !important;
  resize: vertical;
}

.contact-section input:focus,
.contact-section textarea:focus,
.contact-section select:focus {
  border-color: #3fdef5 !important;
  box-shadow: 0 0 0 4px rgba(63, 222, 245, 0.12) !important;
}

.contact-section .wpforms-submit-container {
  width: 100%;
  padding: 0 !important;
}

.contact-section button[type="submit"] {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 52px !important;
  padding: 12px 25px !important;
  border: 1px solid rgba(63, 222, 245, 0.18) !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #075073, #086287) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer;
}

.contact-section button[type="submit"]:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #09658c, #087ba0) !important;
  box-shadow: 0 12px 30px rgba(12, 174, 211, 0.22);
}

/* Tablet */

@media (max-width: 980px) {
  .contact-section {
    padding: 90px 30px;
  }

  .contact-section .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 720px;
  }

  .contact-section .contact-copy {
    max-width: 100%;
  }

  .contact-section .contact-form {
    max-width: 100%;
  }
}

/* Celular */

@media (max-width: 600px) {
  .contact-section {
    padding: 75px 20px;
  }

  .contact-section .contact-header {
    margin-bottom: 48px;
    text-align: left;
  }

  .contact-section .section-eyebrow {
    text-align: left;
  }

  .contact-section .contact-header h2 {
    margin-left: 0;
    font-size: 40px;
    letter-spacing: -1.4px;
    text-align: left;
  }

  .contact-section .contact-header>p {
    margin-left: 0;
    text-align: left;
  }

  .contact-section .contact-content {
    gap: 40px;
  }

  .contact-section .contact-copy h3 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .contact-section .contact-form {
    padding: 26px 20px;
    border-radius: 19px;
  }
}

.contact-copy.reveal.visible {
  margin-bottom: auto;
}



/* =========================================================
   FOOTER
========================================================= */

.site-footer-custom {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(72, 220, 244, 0.16);
  background:
    linear-gradient(180deg,
      #071b2d 0%,
      #051522 100%);
}

.site-footer-custom *,
.site-footer-custom *::before,
.site-footer-custom *::after {
  box-sizing: border-box;
}

.footer-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 82px 0 30px;
}

.footer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: 0.13;
}

.footer-glow-left {
  bottom: -250px;
  left: -150px;
  background: #2bd9f3;
}

.footer-glow-right {
  top: -280px;
  right: -170px;
  background: #0d83b6;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) minmax(150px, 0.65fr) minmax(250px, 0.9fr);
  gap: 80px;
  align-items: flex-start;
}

/* Marca */

.footer-brand {
  max-width: 450px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo .custom-logo-link {
  display: inline-flex;
}

.footer-logo img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
}

.footer-site-name {
  display: inline-block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}

.footer-description {
  max-width: 430px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.75;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(62, 220, 245, 0.3);
  border-radius: 999px;
  background: rgba(62, 220, 245, 0.06);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-cta span {
  color: #3edcf5;
  font-size: 17px;
}

.footer-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(62, 220, 245, 0.7);
  background: rgba(62, 220, 245, 0.11);
  box-shadow: 0 12px 30px rgba(0, 176, 220, 0.12);
}

/* Colunas */

.footer-column-title {
  display: block;
  margin-bottom: 24px;
  color: #3edcf5;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-navigation,
.footer-menu {
  width: 100%;
}

.footer-menu {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-menu a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-menu a:hover {
  color: #3edcf5;
  transform: translateX(4px);
}

/* Contato */

.footer-contact-list {
  display: grid;
  gap: 20px;
}

.footer-contact-list a,
.footer-contact-item {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-contact-list a {
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-contact-label {
  color: rgba(62, 220, 245, 0.8);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Base */

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 64px 0 28px;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.14),
      transparent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #3edcf5;
}

/* Tablet */

@media (max-width: 980px) {
  .footer-container {
    width: min(100% - 48px, 760px);
    padding-top: 70px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 55px 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 600px;
  }
}

/* Mobile */

@media (max-width: 640px) {
  .footer-container {
    width: calc(100% - 40px);
    padding: 60px 0 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-description {
    font-size: 14px;
  }

  .footer-divider {
    margin: 50px 0 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

.logo-footer {
  max-width: 271px;
}


@media screen and (max-width: 1023px) {
  #languageSelect {
    display: none;
  }
}