:root {
  --bg-body: #020617;
  --bg-surface: #030712;
  --bg-card: #020617;
  --primary: #0A5E6A;
  --primary-soft: #38bdf8;
  --border: #1f2937;
  --text: #e5e7eb;
  --text-soft: #9ca3af;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.85);
  --maxw: 1180px;
  --hero-bg-url: url("../images/fundo.jpg");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-body);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font: inherit
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

header {
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #0f172a;
  border: 1px solid #0A5E6A;
  color: #e5e7eb;
  font-weight: 700;
  font-size: 17px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.brand-text strong {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  color: #e5e7eb;
}

.brand-text span {
  font-size: 12px;
  color: var(--text-soft);
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  color: var(--text-soft);
  position: relative;
  padding-bottom: 3px;
  font-size: 13px;
}

.menu a:hover {
  color: var(--text);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: width .18s;
}

.menu a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .15s transform, .15s box-shadow, .15s background, .15s border-color, .15s color;
  white-space: nowrap;
  background: none;
  color: var(--text);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.8);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.btn-ghost {
  border-color: #374151;
  color: var(--text-soft);
}

.btn-ghost:hover {
  background: #020617;
  color: var(--text);
}

.burger {
  display: none;
}

main {
  padding-bottom: 72px;
}

#hero {
  position: relative;
  padding: 52px 0 70px;
  border-bottom: 1px solid #111827;
  overflow: hidden;
  background-color: #020617;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-url);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(250deg,
      rgba(2, 6, 23, 0.8) 0%,
      rgba(2, 6, 23, 0.7) 35%,
      rgba(2, 6, 23, 0.6) 70%,
      rgba(2, 6, 23, 0.1) 100%),
    linear-gradient(110deg,
      rgba(2, 6, 23, 0.8) 0%,
      rgba(2, 6, 23, 0.7) 35%,
      rgba(2, 6, 23, 0.6) 70%,
      rgba(2, 6, 23, 0.1) 100%);
  z-index: 0;
  pointer-events: none;
}

#hero.fade-out::before {
  opacity: 0;
}


.hero-images::after {
  position: absolute;
  content: '';
  height: 300px;
  width: 300px;
  background-color: #38bdf850;
  border-radius: 50%;
  filter: blur(200px);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 38px;
  align-items: stretch;
}

.hero-images {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  min-height: 60vh;
}

.hero-images img {
  height: 350px;
  object-fit: contain;
}


.hero-images span {
  position: relative;
  font-size: 1.5rem;
}

.hero-images p {
  font-size: 15px;
}

.hero-images span::before {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, rgb(61, 61, 61, 0.7) 0%, transparent 100%);
  border-radius: 10px;
  left: -10px;
  z-index: -1;
  /* background-color: red; */
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--text-soft);
  margin-bottom: 10px;
}

#hero h1 {
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.15;
  margin-bottom: 10px;
}

#hero h1 span {
  color: var(--primary-soft);
  font-weight: 500;
}

.hero-sub {
  font-size: 13px;
  color: var(--text-soft);
  max-width: 460px;
  margin-bottom: 20px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.hero-footnote {
  font-size: 12px;
  color: var(--text-soft);
}

.hero-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  border-radius: 999px;
  padding: 4px 10px;
  background: #020617;
  border: 1px solid #374151;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #16a34a;
}

.hero-panel {
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  border: 1px solid #1f2937;
  box-shadow: var(--shadow-soft);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.hero-panel-header h2 {
  font-size: 14px;
  margin: 0 0 2px;
}

.hero-panel-header p {
  font-size: 12px;
  color: var(--text-soft);
}

.hero-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #374151;
  color: var(--text-soft);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-metric {
  border-radius: 12px;
  background: #020617;
  border: 1px solid #1f2937;
  padding: 8px 10px;
  font-size: 11px;
}

.hero-metric strong {
  display: block;
  font-size: 14px;
  margin-bottom: 1px;
  color: #e5e7eb;
}

.hero-metric span {
  color: var(--text-soft);
}

.hero-modulos {
  border-radius: 14px;
  border: 1px solid #1f2937;
  background: #020617;
  padding: 10px;
  font-size: 11px;
  color: var(--text-soft);
}

.hero-modulos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}

.pill-mod {
  border-radius: 999px;
  border: 1px solid #374151;
  background: #020617;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-soft);
  white-space: nowrap;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

.hero-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-soft);
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

section {
  padding: 60px 0;
}


.logo img {
  max-width: 80px;
}

.logo-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background-color: #020617;
  position: relative;
}

.logo-container::after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, transparent, #020617);
  width: 50px;
}

.logo-container::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to left, transparent, #020617);
  width: 50px;
}

.logo-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logo-track,
.logo-track2 {
  display: flex;
  width: max-content;
  will-change: transform;
}

.logo-list,
.logo-list2 {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.logo-list img,
.logo-list2 img {
  height: 30px;
  margin: 0 30px;
  opacity: 0.9;
  transition: opacity 0.9s;
  max-width: none;
  object-fit: contain;
}

.logo-list img:hover,
.logo-list2 img:hover {
  opacity: 1;
  cursor: pointer;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}


.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.section-title {
  font-size: 18px;
}

.section-sub {
  font-size: 13px;
  color: var(--text-soft);
  max-width: 380px;
}

/* BENEFÍCIOS */
#beneficios {
  border-bottom: 1px solid #111827;
  background: #020617;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benef-card {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid #1f2937;
  padding: 16px 14px 14px;
  font-size: 13px;
}

.benef-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #020617;
  border: 1px solid #374151;
  margin-bottom: 10px;
  font-size: 16px;
}

.benef-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.benef-card p {
  color: var(--text-soft);
  margin-bottom: 8px;
}

.benef-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-soft);
}

/* JORNADA */
#jornada {
  background: #020617;
  border-bottom: 1px solid #111827;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  font-size: 13px;
}

.step {
  border-radius: var(--radius-lg);
  border: 1px solid #1f2937;
  background: var(--bg-surface);
  padding: 14px 13px 13px;
}

.step-index {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #374151;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.step h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.step p {
  color: var(--text-soft);
}

/* MÓDULOS */
#modulos {
  background: #020617;
  border-bottom: 1px solid #111827;
}

.mod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  font-size: 12px;
}

.mod-card {
  border-radius: 14px;
  border: 1px solid #1f2937;
  background: var(--bg-surface);
  padding: 11px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mod-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-soft);
}

.mod-title {
  font-size: 13px;
}

.mod-desc {
  font-size: 12px;
  color: var(--text-soft);
}

.mod-tag {
  font-size: 11px;
  color: var(--primary-soft);
  margin-top: 3px;
}

/* DEPOIMENTOS */
#depoimentos {
  background: #020617;
  border-bottom: 1px solid #111827;
}

.dep-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 22px;
}

.dep-list {
  display: grid;
  gap: 12px;
}

.dep-card {
  border-radius: 16px;
  border: 1px solid #1f2937;
  background: var(--bg-surface);
  padding: 14px 14px 12px;
  font-size: 13px;
}

.dep-card p {
  color: var(--text-soft);
  margin-bottom: 8px;
}

.dep-card footer {
  font-size: 12px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.dep-aside {
  border-radius: 16px;
  border: 1px solid #1f2937;
  background: var(--bg-surface);
  padding: 14px 13px;
  font-size: 13px;
  color: var(--text-soft);
}



.cont-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 22px;
  align-items: flex-start;
}

.form-card {
  border-radius: 18px;
  border: 1px solid #1f2937;
  background: var(--bg-surface);
  padding: 16px 15px 14px;
  box-shadow: var(--shadow-soft);
}

form {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

label {
  font-size: 12px;
  color: var(--text-soft);
}

input,
textarea {
  margin-top: 4px;
  border-radius: 9px;
  border: 1px solid #1f2937;
  background: #020617;
  padding: 7px 8px;
  font: inherit;
  font-size: 13px;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
}

textarea {
  resize: vertical;
  min-height: 50px;
}

.notice {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 6px;
}

.cont-info {
  font-size: 13px;
  color: var(--text-soft);
}

.cont-info h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid #374151;
  padding: 6px 9px;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--text-soft);
}

/* FOOTER */
footer {
  background: #020617;
  border-top: 1px solid #111827;
  padding: 16px 0 20px;
  font-size: 12px;
  color: var(--text-soft);
}

footer .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

footer a {
  color: var(--text-soft);
}

footer a:hover {
  color: var(--primary-soft);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-panel {
    max-width: 460px;
    margin-left: auto;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .mod-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dep-grid {
    grid-template-columns: 1fr;
  }

  .cont-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu {
    display: none;
  }

  .burger {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid #374151;
    background: #020617;
    color: var(--text-soft);
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
  }

  .nav {
    padding: 9px 0;
  }

  #hero {
    padding-top: 34px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-panel {
    margin: 0;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .mod-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

li {
  list-style-type: none;
}

.dropdown-trigger {
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 450px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 100;
  margin-top: 16px;
  z-index: 9999;
}

.dropdown-trigger.active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  z-index: 9999;
}

.menu-column {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid #27272a;
}

.menu-column:first-child {
  padding-left: 0;
}

.menu-column:last-child {
  padding-right: 0;
  border-right: none;
}

.column-title {
  font-size: 13px;
  color: #71717a;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 8px 0;
  group: hover;
}

.menu-item:hover .item-title {
  color: #fff;
}

.item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-title {
  color: #e4e4e7;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}

.item-desc {
  color: #71717a;
  font-size: 13px;
  line-height: 1.4;
}

.arrow-icon {
  color: #52525b;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s ease;
}

.menu-item:hover .arrow-icon {
  opacity: 1;
  transform: translateX(0);
  color: #fff;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  padding: .5rem;
  border-radius: 12px;
  max-height: 85vh;
  width: 100%;
  max-width: 960px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  position: relative;
  overflow: auto;
}

.modal-content-form {
  padding: .5rem;
  border-radius: 12px;
  max-height: 85vh;
  width: 100%;
  max-width: 800px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  position: relative;
  overflow: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
}

.modal-title {
  font-size: 1.5rem;
  color: #1C2540;
  font-weight: bold;
}

.btn-modal {
  cursor: pointer;
}

.btn-close {
  background-color: var(--border);
  outline: none;
  border: none;
  cursor: pointer;
  color: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: var(--primary);
}

.row {
  display: flex;
  gap: 10px;
}

.row .form-group {
  flex: 1;
}


#container_news {
  max-width: 45rem;
}