@charset "UTF-8";
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  height: 60px;
  background: #44025c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.navbar .logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
}
.navbar .logo .logo-img {
  height: 40px;
  width: auto;
}
.navbar .logo .logo-text {
  display: flex;
  align-items: center;
}
.navbar .logo .logo-text::after {
  content: "|";
  margin-left: 15px;
  font-weight: 200;
  opacity: 0.5;
}

body {
  padding-top: 60px;
}

.nav-links-desktop {
  flex: 2;
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
}
.nav-links-desktop a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  transition: 0.3s;
  border-radius: 4px;
}
.nav-links-desktop a:hover {
  color: #cbcbcb;
}
.nav-links-desktop a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.nav-right .btn-login-destaque {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: 0.3s;
}
.nav-right .btn-login-destaque:hover {
  color: #cbcbcb;
}
.nav-right .btn-login-destaque:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only, .nav-links-desktop, .nav-right {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .navbar {
    padding: 0 5%;
  }
  #menu-bar {
    width: 55px;
    height: 34px;
    cursor: pointer;
    z-index: 105;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    border-radius: 4px;
  }
  #menu-bar .bar {
    height: 3px;
    width: 100%;
    background-color: #fff;
    display: block;
    border-radius: 3px;
    transition: 0.5s;
    margin: 4px 0;
  }
  #menu-bar #bar2 {
    width: 70%;
  }
  .nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 104;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nav-mobile.change {
    display: flex;
  }
  .nav-mobile ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }
  .nav-mobile ul li {
    padding: 20px 0;
  }
  .nav-mobile ul li a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    display: block;
  }
  .nav-mobile ul li a:hover {
    color: #cbcbcb;
  }
  .menu-bg {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 0;
    height: 0;
    background: rgba(31.1063829787, 0.914893617, 42.085106383, 0.9);
    border-radius: 50%;
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90;
  }
  .menu-bg.change-bg {
    width: 300vmax;
    height: 300vmax;
    transform: translate(50%, -50%);
  }
  .change #bar1 {
    transform: translateY(11px) rotateZ(-45deg);
    width: 100%;
  }
  .change #bar2 {
    opacity: 0;
    transform: translateX(10px);
  }
  .change #bar3 {
    transform: translateY(-11px) rotateZ(45deg);
    width: 100%;
  }
}
@keyframes fadeInMenu {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
.secao-carrossel {
  margin-top: 20px;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.carousel-container {
  width: 95%;
  max-width: 1300px;
  height: 650px;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.05);
  touch-action: pan-y;
}
.carousel-container .slides-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}
.carousel-container .slide {
  min-width: 100%;
  height: 100%;
}
.carousel-container .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}
.carousel-container .seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 20;
  background: #b40096;
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.45);
}
.carousel-container .seta:hover {
  background: #44025c;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.55);
}
.carousel-container .seta.esquerda {
  left: 25px;
}
.carousel-container .seta.direita {
  right: 25px;
}

.indicadores {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.indicadores .dot {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}
.indicadores .dot.active {
  background: #b40096;
  border-color: #ffffff;
  width: 30px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .carousel-container {
    width: 90%;
    height: 350px;
    border-radius: 15px;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05);
  }
  .carousel-container .seta {
    display: none !important;
  }
}
.map-section {
  padding: 0 20px;
  width: 100%;
  max-width: 98%;
  margin: 50px auto;
  box-sizing: border-box;
  position: relative;
  display: block;
}
.map-section .map-container {
  width: 100%;
  height: 70vh;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid #ffffff;
}
.map-section .map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) contrast(1.1);
  border: none;
}
.map-section .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.map-section button.btn-mapa {
  appearance: none;
  border: none;
  cursor: pointer;
  background-color: #b40096;
  color: #fff;
  padding: 20px 50px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 10px 20px rgba(180, 0, 150, 0.4);
  transition: all 0.3s ease;
}
.map-section button.btn-mapa:hover {
  background-color: rgb(129, 0, 107.5);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(180, 0, 150, 0.6);
}
@media (max-width: 768px) {
  .map-section {
    padding: 0 10px;
    max-width: 100%;
    margin: 30px auto;
  }
  .map-section .map-container {
    height: 80vh;
    border-radius: 15px;
  }
  .map-section button.btn-mapa {
    padding: 15px 30px;
    font-size: 0.85rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stats-section {
  padding: 80px 8%;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
}
.stats-section .stats-title {
  font-family: "Montserrat", sans-serif;
  color: #44025c;
  font-size: 2.2rem;
  margin-bottom: 60px;
  font-weight: 800;
  animation: fadeInUp 0.8s ease forwards;
  transition: color 0.3s ease;
}
.stats-section .stats-title:hover {
  color: #b40096;
}
.stats-section .stats-container {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
.stats-section .stats-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.stats-section .stats-cards .stat-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 35px;
  border-radius: 20px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.stats-section .stats-cards .stat-card:nth-child(1) {
  animation-delay: 0.2s;
  background-color: #028264;
}
.stats-section .stats-cards .stat-card:nth-child(2) {
  animation-delay: 0.4s;
  background-color: #b40096;
}
.stats-section .stats-cards .stat-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.08);
  filter: brightness(1.1);
}
.stats-section .stats-cards .stat-card:hover .card-icon {
  transform: rotate(15deg) scale(1.1);
}
.stats-section .stats-cards .stat-card .card-content {
  text-align: left;
}
.stats-section .stats-cards .stat-card .card-number {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.stats-section .stats-cards .stat-card .card-label {
  font-weight: 600;
  font-size: 1rem;
  display: block;
}
.stats-section .stats-cards .stat-card .card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}
.stats-section .stats-cards .stat-card .card-icon img {
  width: 60%;
  height: 60%;
}
.stats-section .stats-chart {
  flex: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}
.stats-section .stats-chart .chart-container {
  position: relative;
  width: 320px;
  height: 320px;
  padding: 20px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
}
.stats-section .stats-chart .chart-container:hover {
  transform: translate(-5px, -5px);
  box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.08);
}
.stats-section .stats-chart .chart-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#028264 0% 82%, #b40096 82% 95%, #f0f0f0 95% 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.stats-section .stats-chart .chart-ring::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  background-color: #fff;
  border-radius: 50%;
}
.stats-section .stats-chart .chart-legend-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.stats-section .stats-chart .chart-legend-inner .main-stat {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: #000000;
  line-height: 1;
}
.stats-section .stats-chart .chart-legend-inner .sub-text {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .stats-section {
    padding: 60px 20px;
  }
  .stats-section .stats-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }
  .stats-cards {
    width: 100%;
    order: 1;
    padding: 0 10px;
  }
  .stats-cards .stat-card {
    padding: 20px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.05);
    min-height: 100px;
  }
  .stats-cards .stat-card:hover {
    transform: none;
  }
  .stats-cards .stat-card .card-content {
    max-width: 70%;
  }
  .stats-cards .stat-card .card-number {
    font-size: 2.2rem;
    overflow-wrap: break-word;
  }
  .stats-cards .stat-card .card-label {
    font-size: 0.9rem;
    line-height: 1.2;
    white-space: normal;
  }
  .stats-cards .stat-card .card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .stats-chart {
    order: 2;
    width: 100%;
  }
  .stats-chart .chart-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.05);
  }
  .stats-chart .chart-legend-inner .main-stat {
    font-size: 2.8rem;
  }
  .stats-chart .chart-legend-inner .sub-text {
    font-size: 0.8rem;
  }
}
@media (max-width: 380px) {
  .stats-section .stats-cards .stat-card {
    padding: 15px;
  }
  .stats-section .stats-cards .stat-card .card-number {
    font-size: 1.8rem;
  }
  .stats-section .stats-cards .stat-card .card-icon {
    width: 40px;
    height: 40px;
  }
}
.contact-section {
  padding: 100px 8%;
  background-color: #fff;
  overflow: hidden;
  text-align: left;
}
.contact-section .contact-container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: space-between;
  max-width: 100%;
}
.contact-section .contact-card {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-width: 0;
}
.contact-section .contact-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 20px 20px 0px rgba(0, 0, 0, 0.08);
}
.contact-section .contact-card .fieldset-reset {
  border: none !important;
  outline: none !important;
  margin: 0 0 25px 0;
  padding: 0;
  display: block;
  width: 100%;
}
.contact-section .contact-card .label-style, .contact-section .contact-card label {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-section .contact-card .form-group {
  margin-bottom: 25px;
  text-align: left;
}
.contact-section .contact-card .form-group label {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-section .contact-card .form-group .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-section .contact-card .form-group .input-wrapper i {
  position: absolute;
  left: 15px;
  color: #000000;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s, color 0.3s;
}
.contact-section .contact-card .form-group .input-wrapper input, .contact-section .contact-card .form-group .input-wrapper textarea {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  background-color: #fcfcfc;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  color: #000000;
  font-size: 1rem;
}
.contact-section .contact-card .form-group .input-wrapper input::placeholder, .contact-section .contact-card .form-group .input-wrapper textarea::placeholder {
  color: #000000;
  opacity: 0.4;
}
.contact-section .contact-card .form-group .input-wrapper input:focus, .contact-section .contact-card .form-group .input-wrapper textarea:focus {
  border-color: #028264;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(2, 130, 100, 0.1);
}
.contact-section .contact-card .form-group .input-wrapper input:focus + i, .contact-section .contact-card .form-group .input-wrapper textarea:focus + i {
  opacity: 1;
  color: #028264;
}
.contact-section .contact-card .form-group .input-wrapper textarea {
  height: 140px;
  resize: none;
  padding-top: 15px;
}
.contact-section .contact-card .form-group .input-wrapper i.fa-comment-dots {
  top: 18px;
}
.contact-section .type-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0px;
}
.contact-section .type-buttons .btn-type {
  flex: 1;
  min-width: 90px;
  padding: 12px;
  border: none;
  border-radius: 12px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
}
.contact-section .type-buttons .btn-type:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 0px rgba(0, 0, 0, 0.1);
}
.contact-section .type-buttons .btn-type:active {
  transform: translateY(0px);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.1);
}
.contact-section .type-buttons .btn-fisica {
  background-color: #028264;
}
.contact-section .type-buttons .btn-visual {
  background-color: #8399fb;
}
.contact-section .type-buttons .btn-auditiva {
  background-color: #b40096;
}
.contact-section .btn-submit {
  background-color: #b40096;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 10px 20px rgba(180, 0, 150, 0.2);
}
.contact-section .btn-submit:hover {
  background-color: rgb(129, 0, 107.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(180, 0, 150, 0.3);
}
.contact-section .contact-info {
  flex: 1;
  min-width: 0;
}
.contact-section .contact-info h2 {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
}
.contact-section .contact-info p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-section .contact-info .info-list {
  list-style: none;
  padding: 0;
}
.contact-section .contact-info .info-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 25px;
}
.contact-section .contact-info .info-list li i {
  color: white;
  background-color: #44025c;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .contact-section {
    padding: 60px 25px;
  }
  .contact-container {
    flex-direction: column;
    gap: 50px;
  }
  .contact-card {
    width: 100%;
    order: 2;
    padding: 30px 20px;
  }
  .contact-info {
    order: 1;
    width: 100%;
  }
  .contact-info h2 {
    font-size: 2.2rem;
  }
}
.main-footer {
  background-color: #44025c;
  color: #fff;
  padding: 60px 8% 20px 8%;
  border-radius: 60px 60px 0 0;
  text-align: center;
  position: relative;
  margin-top: 50px;
}
.main-footer .footer-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.main-footer .footer-description {
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  opacity: 0.9;
}
.main-footer .team-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}
.main-footer .team-container .team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.main-footer .team-container .team-member .member-photo {
  width: 130px;
  height: 130px;
  background-color: #555;
  border-radius: 45% 55% 70% 30%/30% 40% 60% 70%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.main-footer .team-container .team-member .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: 0.3s;
}
.main-footer .team-container .team-member .member-photo:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: #b40096;
}
.main-footer .team-container .team-member .member-photo:hover img {
  filter: none;
}
.main-footer .team-container .team-member .member-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.main-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-size: 0.85rem;
}
.main-footer .footer-bottom .copyright {
  opacity: 0.8;
}
.main-footer .footer-bottom .footer-logo-if {
  font-weight: 700;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 5% 20px 5%;
    border-radius: 40px 40px 0 0;
  }
  .main-footer .team-container {
    gap: 30px;
    flex-wrap: wrap;
  }
  .main-footer .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
/* ==========================================================================
   1. V-LIBRAS (Customização do Botão de Libras)
   ========================================================================== */
div[vw].enabled {
  position: fixed !important;
  top: 50% !important;
  bottom: auto !important;
  right: 20px !important;
  left: auto !important;
  z-index: 2147483647 !important;
}
div[vw].enabled [vw-access-button], div[vw].enabled .vw-access-button {
  background-color: #028264 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
div[vw].enabled [vw-access-button] img, div[vw].enabled .vw-access-button img {
  filter: hue-rotate(310deg) saturate(1.5) !important;
}

/* ==========================================================================
   2. WIDGET DE ACESSIBILIDADE NATIVO (A+, A-, Contraste)
   ========================================================================== */
.widget-acessibilidade-nativo {
  position: fixed !important;
  top: 62% !important;
  bottom: auto !important;
  right: 20px !important;
  left: auto !important;
  z-index: 2147483647 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.widget-acessibilidade-nativo button {
  width: 44px;
  height: 44px;
  background-color: #028264;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.widget-acessibilidade-nativo button:hover {
  background-color: rgb(1.3818181818, 89.8181818182, 69.0909090909);
  transform: scale(1.08);
}
.widget-acessibilidade-nativo button:focus-visible {
  outline: 3px solid #b40096;
  outline-offset: 2px;
  transform: scale(1.08);
}

/* ==========================================================================
   3. REGRAS DE RESPONSIVIDADE (Ajustes para Mobile)
   ========================================================================== */
@media (max-width: 768px) {
  div[vw].enabled {
    top: 45% !important;
    right: 10px !important;
    transform: scale(0.85);
  }
  .widget-acessibilidade-nativo {
    top: 56% !important;
    right: 10px !important;
  }
  .widget-acessibilidade-nativo button {
    width: 38px;
    height: 38px;
  }
}
/* ==========================================================================
   4. ESTILOS GLOBAIS DE ALTO CONTRASTE (Injetado via JavaScript no body)
   ========================================================================== */
body.alto-contraste {
  background-color: #000000 !important;
  color: #ffffff !important;
}
body.alto-contraste h1, body.alto-contraste h2, body.alto-contraste h3, body.alto-contraste h4, body.alto-contraste p, body.alto-contraste span, body.alto-contraste li, body.alto-contraste a, body.alto-contraste label, body.alto-contraste legend, body.alto-contraste .logo-text, body.alto-contraste .back-link, body.alto-contraste .switch {
  color: #ffff00 !important;
}
body.alto-contraste .navbar, body.alto-contraste .auth-card, body.alto-contraste .main-footer, body.alto-contraste .stats-section, body.alto-contraste .contact-card, body.alto-contraste .sidebar {
  background-color: #000000 !important;
  background: #000000 !important;
  border: 2px solid #ffff00 !important;
  box-shadow: none !important;
}
body.alto-contraste .input-group input, body.alto-contraste .search-container input {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #ffff00 !important;
}
body.alto-contraste .input-group input::placeholder, body.alto-contraste .search-container input::placeholder {
  color: #ffff00 !important;
  opacity: 0.8;
}
body.alto-contraste button, body.alto-contraste .btn-auth, body.alto-contraste .btn-mapa, body.alto-contraste .btn-submit, body.alto-contraste .btn-type {
  background-color: #000000 !important;
  color: #ffff00 !important;
  border: 2px solid #ffff00 !important;
  box-shadow: none !important;
}
body.alto-contraste button:hover, body.alto-contraste button:focus-visible, body.alto-contraste .btn-auth:hover, body.alto-contraste .btn-auth:focus-visible, body.alto-contraste .btn-mapa:hover, body.alto-contraste .btn-mapa:focus-visible, body.alto-contraste .btn-submit:hover, body.alto-contraste .btn-submit:focus-visible, body.alto-contraste .btn-type:hover, body.alto-contraste .btn-type:focus-visible {
  background-color: #ffff00 !important;
  color: #000000 !important;
}
body.alto-contraste .widget-acessibilidade-nativo button {
  background-color: #000000 !important;
  color: #ffff00 !important;
  border: 2px solid #ffff00 !important;
  box-shadow: none !important;
}
body.alto-contraste .widget-acessibilidade-nativo button:hover {
  background-color: #ffff00 !important;
  color: #000000 !important;
}
body.alto-contraste #map, body.alto-contraste iframe, body.alto-contraste img, body.alto-contraste .slide img {
  filter: grayscale(100%) contrast(140%) !important;
}

.container-mapa {
  display: flex;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #f4f4f4;
  overflow: hidden;
}
.container-mapa .sidebar {
  width: 380px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
  z-index: 10;
  padding: 25px;
}
.container-mapa .sidebar h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 20px;
}
.container-mapa .sidebar .search-container {
  position: relative;
  margin-bottom: 20px;
}
.container-mapa .sidebar .search-container .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  opacity: 0.6;
  pointer-events: none;
  font-size: 0.9rem;
  z-index: 5;
}
.container-mapa .sidebar .search-container #search-input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #000000;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}
.container-mapa .sidebar .search-container #search-input::placeholder {
  color: #000000;
  opacity: 0.5;
}
.container-mapa .sidebar .search-container #search-input:focus {
  outline: none;
  border-color: #b40096;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(180, 0, 150, 0.1);
}
.container-mapa .sidebar .fieldset-reset {
  border: none;
  margin: 0 0 25px 0;
  padding: 0;
}
.container-mapa .sidebar .fieldset-reset span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 8px;
}
.container-mapa .sidebar .fieldset-reset .type-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
}
.container-mapa .sidebar .fieldset-reset .type-buttons .btn-type {
  flex: 1;
  padding: 10px 5px;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  background-color: #f9f9f9;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.container-mapa .sidebar .fieldset-reset .type-buttons .btn-type:hover {
  border-color: #ddd;
  background-color: #f0f0f0;
}
.container-mapa .sidebar .fieldset-reset .type-buttons .btn-type.active {
  color: #ffffff;
}
.container-mapa .sidebar .fieldset-reset .type-buttons .btn-type.active:nth-child(1) {
  background-color: #c95106;
  border-color: #c95106;
}
.container-mapa .sidebar .fieldset-reset .type-buttons .btn-type.active:nth-child(2) {
  background-color: #b40096;
  border-color: #b40096;
}
.container-mapa .sidebar .fieldset-reset .type-buttons .btn-type.active:nth-child(3) {
  background-color: #001774;
  border-color: #001774;
}
.container-mapa .sidebar .header-filtros {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.container-mapa .sidebar .header-filtros h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  margin: 0;
}
.container-mapa .sidebar .header-filtros .btn-reset {
  background: #b40096;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(180, 0, 150, 0.2);
}
.container-mapa .sidebar .header-filtros .btn-reset:hover {
  background: rgb(129, 0, 107.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(180, 0, 150, 0.3);
}
.container-mapa .sidebar .header-filtros .btn-reset:active {
  transform: translateY(0);
}
.container-mapa .sidebar .filtros {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.container-mapa .sidebar .filtros .filtro {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.container-mapa .sidebar .filtros .filtro img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.container-mapa .sidebar .filtros .filtro:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.container-mapa .sidebar .filtros .filtro.ativo {
  background: rgba(180, 0, 150, 0.05);
  border-color: #b40096;
}
.container-mapa .sidebar .filtros .filtro.ativo img {
  filter: drop-shadow(0 0 2px rgba(180, 0, 150, 0.5));
}
.container-mapa .sidebar #lista-lugares {
  flex: 1;
  overflow-y: auto;
  padding-right: 5px;
}
.container-mapa .sidebar #lista-lugares::-webkit-scrollbar {
  width: 6px;
}
.container-mapa .sidebar #lista-lugares::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.container-mapa .sidebar #lista-lugares .item-lugar {
  padding: 15px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.container-mapa .sidebar #lista-lugares .item-lugar:hover {
  background: #fdfdfd;
  border-color: #b40096;
  transform: translateX(5px);
}
.container-mapa .sidebar #lista-lugares .item-lugar p {
  margin: 0 0 5px 0;
  font-weight: 600;
  color: #000000;
  font-size: 0.95rem;
}
.container-mapa .sidebar #lista-lugares .item-lugar span {
  font-size: 0.8rem;
  color: #000000;
  display: block;
}
.container-mapa #map {
  flex: 1;
  height: 100%;
  background-color: #e5e5e5;
  cursor: crosshair;
}
.container-mapa #map .leaflet-popup-content-wrapper {
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
}
.container-mapa #map .leaflet-popup-content {
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  color: #000000;
}
.container-mapa #map .leaflet-popup-content strong {
  color: #000000;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 992px) {
  .container-mapa {
    flex-direction: column !important;
    height: auto !important;
  }
  .sidebar {
    width: 100% !important;
    height: auto !important;
    padding: 20px !important;
  }
  .sidebar #lista-lugares {
    max-height: 40vh;
    overflow-y: auto;
    margin-bottom: 20px;
  }
  #map {
    width: 100% !important;
    height: 400px !important;
    flex: none !important;
  }
}
/* Página de Login */
.auth-page {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #f0f0f0, #dcdcdc);
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Ondas de fundo */
.auth-page::before,
.auth-page::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 300px;
  background: #e6e6e6;
  border-radius: 50%;
  left: -50%;
}

.auth-page::before {
  bottom: 120px;
}

.auth-page::after {
  bottom: 0;
  background: #dcdcdc;
}

/* Container central */
.auth-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card */
.auth-card {
  width: 350px;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 2;
}
.auth-card h2 {
  color: #5a2a83;
  margin-bottom: 30px;
  font-size: 28px;
}
.auth-card button {
  width: 100%;
  padding: 12px;
  background: #ff4b6e;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}
.auth-card button:hover {
  background: #e63e5f;
}

.auth-card.active {
  display: block;
}

/* Inputs */
.input-group {
  margin-bottom: 20px;
}
.input-group input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px;
  outline: none;
  font-size: 14px;
  background: transparent;
}

/* Linha dupla (senha + confirmar) */
.input-row {
  display: flex;
  gap: 10px;
}
.input-row input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #aaa;
  padding: 10px;
  outline: none;
}

/* Opções */
.options {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 5px;
}
.options a {
  text-decoration: none;
  color: #333;
}
.options a:hover {
  text-decoration: underline;
}

/* Alternância */
.switch {
  margin-top: 20px;
  font-size: 14px;
}
.switch span {
  color: #5a2a83;
  cursor: pointer;
  font-weight: bold;
}
.switch span:hover {
  text-decoration: underline;
}

.autenticacao {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(180deg, #f0f0f0, #dcdcdc);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
  /* Header com Logo e Voltar - Fixado no canto superior esquerdo */
}
.autenticacao .auth-header {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}
.autenticacao .auth-header .logo-img-auth {
  width: 100px; /* Define um tamanho fixo para não "bugar" */
  height: auto; /* Mantém a proporção */
  display: block;
}
.autenticacao .auth-header .back-link {
  text-decoration: none;
  color: #44025c;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
}
.autenticacao .auth-header .back-link:hover {
  color: #b40096;
}
.autenticacao {
  /* Container do Card */
}
.autenticacao .auth-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.autenticacao {
  /* Card de Cadastro */
}
.autenticacao .auth-card {
  width: 100%;
  max-width: 450px; /* Cadastro costuma ser um pouco mais largo que login */
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.autenticacao .auth-card h2 {
  color: #44025c;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 800;
}
.autenticacao .auth-card {
  /* Campos de Input */
}
.autenticacao .auth-card .input-group {
  margin-bottom: 20px;
  text-align: left;
}
.autenticacao .auth-card .input-group input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 10px 5px;
  outline: none;
  font-size: 15px;
  background: transparent;
  transition: border-color 0.3s;
}
.autenticacao .auth-card .input-group input:focus {
  border-bottom-color: #b40096;
}
.autenticacao .auth-card {
  /* Nome e Sobrenome na mesma linha */
}
.autenticacao .auth-card .input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.autenticacao .auth-card .input-row .input-group {
  flex: 1;
  margin-bottom: 0;
}
.autenticacao .auth-card button {
  width: 100%;
  padding: 14px;
  background: #b40096;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}
.autenticacao .auth-card button:hover {
  background: rgb(129, 0, 107.5);
  transform: translateY(-2px);
}
.autenticacao .auth-card .switch {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}
.autenticacao .auth-card .switch a {
  color: #44025c;
  text-decoration: none;
  font-weight: bold;
}
.autenticacao .auth-card .switch a:hover {
  text-decoration: underline;
}

/* Ajustes para Celular */
@media (max-width: 600px) {
  .autenticacao {
    padding-top: 100px; /* Abre espaço para a logo no topo */
    align-items: flex-start;
  }
  .autenticacao .auth-header {
    left: 20px;
    top: 20px;
  }
  .autenticacao .auth-header .logo-img-auth {
    width: 80px; /* Diminui a logo no celular */
  }
  .autenticacao .auth-card {
    padding: 30px 20px;
  }
  .autenticacao .auth-card .input-row {
    flex-direction: column; /* Nome e Sobrenome um sob o outro no celular */
    gap: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
}

:focus:not(:focus-visible) {
  outline: none !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* No seu arquivo CSS/SCSS principal */
button:focus,
input:focus,
[role=button]:focus {
  outline: 3px solid #007750; /* Mesma cor verde de identidade do seu projeto */
  outline-offset: 2px;
}

/*# sourceMappingURL=style.css.map */
