/* RESET E BASE */
h1, h2, h3, h4, p, span { color: #fff; }
body {
  background: #000104;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  position: relative;
}
html, body {
  width: 100%;
  min-width: 0px;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-weight: bold; }
.heading { font-size: 60px; }
.subheading { font-size: 14px; font-weight: bold; padding-bottom: 60px; }
.bold { font-weight: bold; }
p { letter-spacing: 0px; line-height: 28px; }

.linha-entre-sessoes {
  width: 80vw;
  max-width: 1200px;
  height: 3px;
  margin: 0 auto 60px auto;
  background: linear-gradient(90deg, #1e90ff 0%, #00c6fb 60%, #1e90ff 100%);
  border-radius: 2px;
  box-shadow: 0 0 24px #00c6fb88, 0 0 2px #1e90ff;
  opacity: 0.9;
  position: relative;
  animation: brilho-sintilante 1.2s infinite alternate;
}

@keyframes brilho-sintilante {
  0% {
    text-shadow: 0 0 8px #00c6fb, 0 0 16px #1e90ff;
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 24px #00c6fb, 0 0 48px #1e90ff;
    opacity: 0.7;
  }
}

/* NAVBAR */
.custom-navbar {
  background: #000104;
  margin-bottom: 0;
}
.custom-navbar .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end; /* Isso alinha o menu à direita */
  width: 100%;
}
.custom-navbar .navbar-brand  {
  color: #14619a;
  font-size: 20px;
  font-family: "Allerta Stencil", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  letter-spacing: -2px;
}
.custom-navbar .navbar-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-right: -6px;
}
.custom-navbar .navbar-brand .navbar-toggle {
  background: #3e8bd9;
  padding: 4px 6px;
  font-size: 16px;
  color: #fff;
}
.custom-navbar .nav li a {
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 4px;
  padding-right: 20px;
  padding-left: 20px;
  transition: all 0.3s ease-in-out;
}
.custom-navbar .nav li a:hover {
  background: #047ad0;
  transition: all 0.3s ease-in-out;
}
.custom-navbar .nav > li > a:focus {
  background-color: transparent;
  outline: none;
}
.custom-navbar .nav li.active > a {
  background-color: #047ad0;
}
.custom-navbar .navbar-toggle {
  border: none;
  padding-top: 10px;
}
.custom-navbar .navbar-toggle .icon-bar {
  background: #047ad0;
  border-color: transparent;
}

/* HOME */
#home {
  background: url('../images/home-bg.png') no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  height: 100vh;
  text-align: center;
}
#home hr {
  border: 2px solid #ffffff;
  width: 100px;
}
#home h3 {
  color: #ffffff;
  letter-spacing: 2px;
  padding-top: 20px;
}
#home h1 {
  color: #ffffff;
  font-size: 60px;
  font-weight: bold;
  padding-top: 20px;
}
#home .btn {
  border-radius: 10px;
  border: 3px solid #047ad0;
  color: #b0b0b0;
  font-weight: bold;
  padding: 16px 42px;
  margin-top: 40px;
  transition: all 0.4s ease-in-out;
  background: 
    linear-gradient(#11131a, #11131a) padding-box,
    linear-gradient(120deg, #00243e, #00c6fb 80%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 24px 0 #000a;
}
#home .btn:hover {
  background: linear-gradient(120deg, #00243e, #00c6fb 80%) border-box;
  color: #ffffff;
}

/* SESSÃO CHAMADA TEMPLATES */
.chamada-templates {
  background: linear-gradient(120deg, #000104 70%, #0a223a 130%);
  padding: 70px 0 40px 0;
  margin-bottom: 0;
}
.chamada-templates .heading {
  font-size: 50px;
  margin-bottom: 16px;
  font-weight: bold;
}
.chamada-templates .btn-primary {
  border-radius: 10px;
  border: 3px solid #047ad0;
  color: #b0b0b0;
  font-weight: bold;
  padding: 16px 42px;
  transition: all 0.4s ease-in-out;
  background: 
    linear-gradient(#11131a, #11131a) padding-box,
    linear-gradient(120deg, #00243e, #00c6fb 80%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 24px 0 #000a;
}
.chamada-templates .btn-primary:hover {
  background: linear-gradient(120deg, #00243e, #00c6fb 80%) border-box;
  color: #ffffff;
}

/* SESSÃO ESTRATÉGICA */
.sessao-estrategica {
  background: #000104
  padding: 150px 0 10px 0;
  color: #fff;
}
.sessao-box {
  max-width: 540px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 10px;
  background: 
    linear-gradient(rgba(17,19,26,0.95), rgba(17,19,26,0.95)) padding-box,
    linear-gradient(120deg, #000b2a, #00c6fb 80%) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 24px 0 #000a;
}
.sessao-box h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 32px;
  line-height: 1.2;
}
.sessao-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sessao-box li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}
.sessao-box li:last-child { margin-bottom: 0; }
.sessao-box .icon {
  color: #1e90ff;
  font-size: 2rem;
  margin-right: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}
.sessao-box strong {
  color: #1e90ff;
  font-size: 1.65rem;
  display: block;
  margin-bottom: 2px;
}
.sessao-box span {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  display: block;
  margin-bottom: 0;
}
.notebook-img-strategia {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  margin-top: -35px;
}

/* SESSÃO PROFISSIONAIS */
.sessao-profissionais {
  background: #000104;
  padding:0px 0 110px 0;
  color: #fff;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.sessao-profissionais .container {
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  margin: 0;
}
.profissionais-header {
  max-width: 1200px;
  margin: 0 auto 32px auto;
}
.profissionais-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.2;
}
.gradient-text {
  background: linear-gradient(90deg, #1e90ff, #00c6fb 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.profissionais-linha {
  width: 100vw;
  max-width: 100vw;
  height: 36px;
  position: relative;
  margin: 0 auto 48px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
}
.profissionais-linha::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3vw;
  right: 3vw;
  height: 3px;
  background: linear-gradient(90deg, #1e90ff 0%, #00c6fb 100%);
  z-index: 1;
  transform: translateY(-50%);
}
.profissionais-linha .ponto {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  background: linear-gradient(120deg, #1e90ff, #00c6fb 80%);
  border-radius: 50%;
  border: 3px solid #000104;
  box-shadow: 0 0 12px #00c6fb55;
  flex-shrink: 0;
}
.profissionais-lista {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100vw;
  max-width: 100vw;
  margin: 32px 0 0 0;
  padding: 0 3vw;
  gap: 0;
}
.profissional-item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  margin: 0 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profissional-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.profissional-item p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}
/* SESSÃO COMPARATIVO */
.sessao-comparativo {
  background:
    linear-gradient(to bottom, #000104 0%, rgba(0,1,4,0.7) 20%, rgba(0,1,4,0.0) 40%, rgba(0,1,4,0.0) 60%, rgba(0,1,4,0.7) 80%, #000104 100%),
    url('../images/peçastabuleiro.png') no-repeat center bottom;
  background-size: cover;
  padding: 110px 0 200px 0;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#sessao-comparativo .profissionais-header {
  text-align: center;
  margin-bottom: 100px;
}
#sessao-comparativo .profissionais-header h2 {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0;
}
.comparativo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.comparativo-card {
  background: rgba(20, 20, 20, 0.95);
  border-radius: 16px;
  border: 2px solid transparent;
  padding: 36px 32px 32px 32px;
  width: 340px;
  min-width: 280px;
  color: #fff;
  box-shadow: 0 0 24px 0 #000a;
  text-align: left;
  position: relative;
  transition: border-color 0.3s;
}
.card-agencia {
  background:
    linear-gradient(#11131a, #11131a) padding-box,
    linear-gradient(120deg, #00243e, #ff4444 60%) border-box;
}
.card-nosso {
  background:
    linear-gradient(#11131a, #11131a) padding-box,
    linear-gradient(120deg, #00243e, #00c6fb 80%) border-box;
}
.comparativo-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.comparativo-sub {
  font-size: 0.95rem;
  color: #b0b0b0;
  display: block;
  margin-bottom: 18px;
}
.comparativo-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comparativo-card li {
  display: flex;
  align-items: flex-start;
  font-size: 1.08rem;
  margin-bottom: 18px;
  line-height: 1.5;
}
.comparativo-card li:last-child { margin-bottom: 0; }
.icon-negativo {
  color: #ff4444;
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 2px;
}
.icon-positivo {
  color: #00c6fb;
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 2px;
}
.comparativo-x {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -40px;
  z-index: 2;
}
.x-circle {
  background: linear-gradient(120deg, #1e90ff, #00c6fb 80%);
  color: #fff;
  font-size: 4.5rem;
  font-weight: bold;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 32px 8px rgba(0,198,251,0.35),
    0 0 64px 16px rgba(30,144,255,0.25);
  border: none;
  animation: brilho-sintilante 1.2s infinite alternate;
}

@keyframes brilho-sintilante {
  0% {
    text-shadow: 0 0 8px #00c6fb, 0 0 16px #1e90ff;
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 24px #00c6fb, 0 0 48px #1e90ff;
    opacity: 0.7;
  }
}
/* SESSÃO PROCESSO */
.sessao-processo {
  background:
    linear-gradient(to bottom, #000104 0%, rgba(0,1,4,0.7) 20%, rgba(0,1,4,0.0) 40%, rgba(0,1,4,0.0) 60%, rgba(0,1,4,0.7) 80%, #000104 100%),
    url('../images/processobg1.png') no-repeat center bottom;
  background-size: cover;
  padding: 160px 0 200px 0;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.sessao-processo .container {
  max-width: 1200px;
  margin: 0 auto;
}
.processo-chamada {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 0;
}
.processo-titulo {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 56px;
  margin-top: 10px;
}
.sessao-processo .gradient-text {
  background: linear-gradient(90deg, #1e90ff, #00c6fb 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.processo-etapas-duas-linhas {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin: 0 auto;
}
.processo-etapas-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
}
.processo-etapa {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 32%;
  min-width: 200px;
  position: relative;
  text-align: left;
  gap: 18px;
}
.processo-circulo {
  background: linear-gradient(120deg, #0a2a4d, #00c6fb 80%);
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 0;
  font-size: 2.2rem;
  font-weight: bold;
  box-shadow: 0 0 24px 0 rgba(0,198,251,0.20);
  border: none;
  flex-shrink: 0;
  animation: brilho-sintilante 1.2s infinite alternate;
}

@keyframes brilho-sintilante {
  0% {
    text-shadow: 0 0 8px #00c6fb, 0 0 16px #1e90ff;
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 24px #00c6fb, 0 0 48px #1e90ff;
    opacity: 0.7;
  }
}
.processo-etapa h3 {
  color: #fff;
  font-size: 1.18rem;
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 0;
}
.processo-etapa p {
  color: #e0e0e0;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}
/* CONTATO */
#contact {
  background: #000104;
  text-align: center;
  padding: 60px 0 0 0;
}
#contact .fa {
  font-size: 40px;
  color: #1e90ff;
  transition: color 0.3s;
  animation: brilho-sintilante 1.2s infinite alternate;
}

@keyframes brilho-sintilante {
  0% {
    text-shadow: 0 0 8px #00c6fb, 0 0 16px #1e90ff;
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 24px #00c6fb, 0 0 48px #1e90ff;
    opacity: 0.7;
  }
}
#contact .fa:hover {
  color: #00c6fb;
}
#contact form {
  padding-top: 80px;
}
#contact .form-control {
  border-radius: 0;
  box-shadow: none;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
#contact .form-control:focus {
  border: 2px solid #808080;
}
#contact input {
  height: 50px;
}
#contact input[type="submit"] {
  border: 2px solid #808080;
  margin-top: 18px;
  height: 54px;
}
#contact input[type="submit"]:hover {
  background: #808080;
  color: #ffffff;
}
#contact textarea {
  height: 170px;
}
.contact-info-box h3 { font-size: 16px; }

/* COPYRIGHT */
#copyright {
  background: #404040;
  color: #ffffff;
}
#copyright a:hover {
  color: #047ad0;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
#copyright .fa {
  background: #383838;
  color: #ffffff;
  font-size: 18px;
  width: 60px;
  height: 34px;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.4s ease-in-out;
}
#copyright .fa:hover {
  background: #047ad0;
  color: #000;
}


/* MENU RESPONSIVO MOBILE */
@media (max-width: 767px) {
  /*Estrutura do menu responsivo*/
  .linha-entre-sessoes {
    display: none !important;
  }
  /*Custom Navbar*/
  .custom-navbar .container {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 0 !important;
    margin: 0 !important;
  }
  .custom-navbar .navbar-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
  }
  .custom-navbar .navbar-brand {
    margin: 0 auto;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    z-index: 2;
  }
  .custom-navbar .navbar-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    color: #00c6fb;
    z-index: 10;
    margin: 0;
  }
  .custom-navbar .collapse.navbar-collapse,
  .custom-navbar .nav {
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .custom-navbar .collapse.navbar-collapse {
    display: none;
    width: 100vw;
    background: #000104;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 8px 24px #000a;
  }
  .custom-navbar .collapse.navbar-collapse.open {
    display: block;
  }
  .custom-navbar .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    padding: 0;
    margin: 0;
  }
  .custom-navbar .nav li {
    width: 100vw;
    text-align: center;
    border-bottom: 1px solid #222;
  }
  .custom-navbar .nav li a {
    font-size: 15px;
    padding: 18px 0;
    color: #fff;
    letter-spacing: 2px;
    display: block;
    width: 100vw;
    background: none;
    transition: background 0.2s;
  }
  .custom-navbar .nav li a:hover,
  .custom-navbar .nav li.active > a {
    background: #1e90ff;
    color: #fff;
  }
}
/* MENU RESPONSIVO DESKTOP */
@media (min-width: 768px) {
  /*Custom Navbar*/
  .custom-navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    width: 100vw;
    padding-left: 32px;
    padding-right: 32px;
  }
  .custom-navbar .navbar-header {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }
  .custom-navbar .navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 32px;
  }
  .custom-navbar .collapse.navbar-collapse {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 auto;
    background: none;
    box-shadow: none;
    position: static;
  }
  .custom-navbar .nav {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: auto;
  }
  .custom-navbar .nav li {
    border: none;
    width: auto;
  }
  .custom-navbar .nav li a {
    font-size: 13px;
    padding: 0 20px;
    width: auto;
  }
  .custom-navbar {
    width: 100vw;
    left: 0;
    right: 0;
    position: fixed;
  }
  .custom-navbar > .container {
    max-width: 100vw;
    width: 100vw;
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* MENU RESPONSIVO ENTRE DESKTOP E MOBILE */
@media (max-width: 991px) and (min-width: 768px) {
  /*Custom Navbar*/
  .custom-navbar .container,
  .custom-navbar .container-fluid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    max-width: 100vw;
    padding: 0 0;
  }

  .custom-navbar .navbar-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .custom-navbar .navbar-brand {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 100%;
    text-align: center;
  }

  .custom-navbar .collapse.navbar-collapse {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    background: none;
    position: static;
    box-shadow: none;
    margin-top: 0;
  }

  .custom-navbar .nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
  }

  .custom-navbar .nav li {
    width: auto;
    border: none;
  }

  .custom-navbar .nav li a {
    font-size: 15px;
    padding: 0 18px;
    width: auto;
  }

  .custom-navbar .navbar-toggle {
    display: none !important;
  }
}

/* Responsividade para a sessão home */
@media (max-width: 991px) {
  #home h1.heading {
    font-size: 3rem;
    padding: 10px 0;
  }
  #home h3 {
    font-size: 1.6rem;
    padding-top: 10px;
  }
  #home .btn {
    padding: 12px 28px;
    font-size: 1rem;
    margin-top: 24px;
  }
  #home {
    height: auto;
    min-height: 70vh;
    padding: 60px 0 40px 0;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  #home {
    height: 90vh;
    background-size: cover;
    background-position: 80% center;
  }
  #home h1.heading {
    font-size: 2rem;
    padding: 8px 0;
    line-height: 1.2;
  }
  #home h3 {
    font-size: 1.3rem;
    padding-top: 8px;
  }
  #home .btn {
    padding: 10px 16px;
    font-size: 1.4rem;
    margin-top: 50px;
    animation: brilho-sintilante 1.2s infinite alternate;
  }
  #home .container {
    padding: 0 10px;
  }
}

/* Responsividade para a sessão Estrategia */
@media (max-width: 767px) {
  .sessao-estrategica {
    padding: 80px 0 40px 0;
  }
  .sessao-box {
    padding: 24px;
    max-width: 100%;
    margin: 0 auto;
    background: 
    linear-gradient(rgba(17,19,26,0.95), rgba(17,19,26,0.95)) padding-box,
    linear-gradient(120deg, #000b2a, #00c6fb 80%) border-box;
  }
  .sessao-box h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .sessao-box li {
    margin-bottom: 24px;
  }
}
.notebook-img-strategia {
  max-width: 100%;
  height: auto;
  margin: -35px auto -150px auto;
  display: block;
  box-shadow: 0 0 24px #000a;
  border-radius: 10px;
  animation: brilho-sintilante 1.2s infinite alternate;
}
/* Responsividade para a sessão Profissionais */
@media (max-width: 991px) {
  .profissionais-lista {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 0;
  }
  .profissional-item {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 0 1%;
    margin-bottom: 32px;
  }
  .profissionais-linha {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .profissionais-lista {
    flex-direction: column;
    margin-top: 50px;
  }
  .profissional-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 0 32px 0;
  }
}

/* --- Sessão Profissionais: Cards e Responsividade --- */

/* Esconde os cards no desktop */
@media (min-width: 992px) {
  .profissional-item .sessao-box {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
  .profissional-item .ponto {
    display: none !important;
  }
  .profissional-item {
    margin-bottom: 0;
  }
}

/* Telas médias: dois cards por linha */
@media (max-width: 991px) and (min-width: 601px) {
  .profissionais-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 0;
  }
  .profissional-item {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 0 1% 32px 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .profissional-item .sessao-box {
    width: 100%;
    max-width: 350px;
    min-height: 320px; /* Ajuste conforme necessário para simetria */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
      linear-gradient(rgba(17,19,26,0.92), rgba(17,19,26,0.92)) padding-box,
      linear-gradient(120deg, #000b2a, #00c6fb 80%) border-box;
    border: 2px solid transparent;
    box-shadow: 0 0 24px 0 #000a;
    border-radius: 10px;
    padding: 32px 18px;
    margin: 0 auto;
  }
  .profissional-item .ponto {
    display: block;
    margin: 0 auto 12px auto;
  }
  .profissional-item .sessao-box h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .profissional-item .sessao-box p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

/* Mobile: um card por linha */
@media (max-width: 600px) {
  .profissionais-lista {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .profissional-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .profissional-item .sessao-box {
    background:
      linear-gradient(rgba(17,19,26,0.92), rgba(17,19,26,0.92)) padding-box,
      linear-gradient(120deg, #000b2a, #00c6fb 80%) border-box;
    border: 2px solid transparent;
    box-shadow: 0 0 24px 0 #000a;
    border-radius: 10px;
    padding: 24px 10px;
    margin: 0 auto;
    width: 98%;
    max-width: 350px;
  }
  .profissional-item .ponto {
    display: block;
    margin: 0 auto 12px auto;
  }
  .profissional-item .sessao-box h3 {
    font-size: 2rem;
  }
  .profissional-item .sessao-box p {
    font-size: 1.25rem;
  }
}

/* Esconde a linha de bolinhas no mobile e médio */
@media (max-width: 991px) {
  .profissionais-linha {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sessao-profissionais {
    padding: 0px 0 80px 0;
    margin-top: 0px;
  }
  .profissionais-header h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .sessao-comparativo {
    background-position: right 65% bottom;
    background-size: fill;
    padding: 0;
    margin-top: 0px;
  }
  .comparativo-container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding-top: 0px;
    margin-top: 0px;
  }
  .comparativo-card {
    width: 98vw !important;
    max-width: 370px;
    margin: 0 auto 24px auto !important;
    text-align: left;
  }
  .comparativo-x {
    margin: 0 auto 24px auto !important;
    justify-content: center !important;
  }
  .x-circle {
    width: 72px;
    height: 72px;
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .sessao-processo {
    background-position: center 30%;
    background-size: fill;
    padding: 80px 0 120px 0;
  }
  .processo-etapas-duas-linhas {
    flex-direction: column;
    align-items: center;
    gap: 120px;
  }
  .processo-etapas-row {
    flex-direction: column;
    align-items: stretch;
    gap: 120px;
  }
  .processo-etapa {
    width: 100% !important;
    min-width: 0;
    margin: 0;
  }
}
@media (max-width: 991px) {
  #contact .col-md-offset-4.col-md-4,
  #contact .col-sm-offset-4.col-sm-6 {
    margin: 24px auto 0 auto !important;
    float: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 350px;
  }
  #contact #submit.form-control {
    width: 100%;
    margin: 0;
  }
}

