/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 1rem;
}

/* Variáveis */
:root {

    /* Color */
    --main-color: #d90429;
    --text-color: #f1f1f1;
    --bg-color: #020102;
    --secundary-color: #323131;
    --blue-color: #0f077e;
    --strongblue-color: #0c0c1f;
    --lightblue-color: #049CB5;
    --opac-color: #ccc;

    /* Font-Size's */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.5rem;

    /* Font-Weight's */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border-Radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site-Width */
    --site-max-width: 1300px;
}

html, body {
    height: 100%;
    background-color: var(--text-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    min-width: 320px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    width: 100%;
    display: block;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 20px;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: transparent;
}

body.contact-page header,
body.area_c-page header,
body.info-page header,
body.services-page header {
    background-color: var(--lightblue-color);
    padding: 0px 20px;
}

body.index-page header {
    background-color: var(--lightblue-color);
    padding: 0px 20px;
}

header.scrolled {
    background-color: var(--secundary-color);
    padding: 1px 20px;
    box-shadow: 0 4px 8px rgba(15, 1, 110, 0.5);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.navbar .logo-text {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.logo-img {
    height: auto;
    width: 120px;
    object-fit: contain;
    display: inline-block;
    align-items: center;
    margin-top: -22px; 
    
}

.navbar .nav-menu {
    display: flex;
    gap: 30px;
}

.navbar .nav-menu .nav-link {
    font-size: var(--font-size-m);
    color: var(--text-color);
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.nav-item i {
    font-size: var(--font-size-xl);
    color: var(--text-color);
    padding: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item i:hover {
    font-size: var(--font-size-xl);
    color: var(--secundary-color);
    padding: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}


body.contact-page .navbar .nav-menu .nav-link,
body.area_c-page .navbar .nav-menu .nav-link,
body.info-page .navbar .nav-menu .nav-link,
body.services-page .navbar .nav-menu .nav-link {
    color: var(--text-color); 
}

body.contact-page .nav-item i,
body.area_c-page .nav-item i,
body.info-page .nav-item i,
body.services-page .nav-item i {
    color: var(--text-color);
}

body.contact-page .nav-item i:hover,
body.area_c-page .nav-item i:hover,
body.info-page .nav-item i:hover,
body.services-page .nav-item i:hover {
    color: var(--secundary-color);
}

.navbar .nav-menu .nav-link:hover {
    color: var(--secundary-color);
}

body.contact-page .navbar .nav-menu .nav-link:hover,
body.area_c-page .navbar .nav-menu .nav-link:hover,
body.info-page .navbar .nav-menu .nav-link:hover,
body.services-page .navbar .nav-menu .nav-link:hover {
    color: var(--secundary-color); 
}

/* Estilizando Menu Celular */

/* Esconde o checkbox */
.nav-toggle {
    display: none;
}
  
/* Ícone hamburguer só aparece no mobile */
.nav-toggle-label {
    display: none;
    font-size: 1.8rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 2000;
}

body.contact-page .nav-toggle-label,
body.area_c-page .nav-toggle-label,
body.info-page .nav-toggle-label,
body.services-page .nav-toggle-label,
body.login-page .nav-toggle-label {
    color: var(--text-color);
}

.nav-toggle:checked ~ .nav-toggle-label {
    color: var(--text-color) !important;
}

/* Estilo para o overlay escuro fosco */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.0));
    backdrop-filter: blur(4px);
    display: none;
    z-index: 999;
}
  
/* Mostra menu ao clicar */
.nav-toggle:checked ~ .nav-menu {
    right: 0;
}
  
/* Mostra overlay ao abrir menu */
.nav-toggle:checked ~ .nav-overlay {
    display: block;
}

/* Estilizando Index */
.banner-section img {
  width: 100%;
  height: clamp(100px, 25vh, 300px);
  object-fit: cover;
  display: block;
  margin-top: 100px;
}

.conteudo-section {
  width: 100%;
  max-width: var(--site-max-width); 
  margin: 0 auto;
  padding: 2rem 0rem;
  background-color: var(--text-color);
  box-sizing: border-box;
  cursor: default;
  
}

.conteudo-bloco {
  max-width: var(--site-max-width);
  margin-left: 0 ;
  text-align: left;
}

.conteudo-bloco > * {
  margin-bottom: 90px;
}

/* Video Index */
.bloco-horizontal {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.bloco-horizontal .texto {
  flex: 2.5;
  padding-left: 40px;
  padding-right: 20px;
  min-width: 0;
}

.texto-ajustado {
  padding-left: 40px;
}

.bloco-horizontal .video {
  flex: 0 0 340px;
  max-width: 340px;
  margin-left: auto;
}

.bloco-horizontal .video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/*----------------------------------------------*/
/* Slide Index */
.bloco-horizontal .slider {
  flex: 0 0 380px;
  max-width: 380px;
  margin-left: auto;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.progress-container {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 6px;
  background-color: #2c2c2c;
  border-radius: 3px;
  overflow: hidden;
  z-index: 900;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--lightblue-color), var(--main-color));
  transition: width 0.5s ease;
  border-radius: 3px;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: default;
}

.slider input[type="radio"] {
  display: none;
}

/* configurando a distancia das imagens */
#radio1:checked ~ .first {
    margin-left: 0;
}
#radio2:checked ~ .first {
    margin-left: -25%;
}
#radio3:checked ~ .first {
    margin-left: -50%;
}
#radio4:checked ~ .first {
    margin-left: -75%;
}
#radio5:checked ~ .first {
    margin-left: -100%;
}
#radio6:checked ~ .first {
    margin-left: -125%;
}
#radio7:checked ~ .first {
    margin-left: -150%;
}
#radio8:checked ~ .first {
    margin-left: -175%;
}
#radio9:checked ~ .first {
    margin-left: -200%;
}
#radio10:checked ~ .first {
    margin-left: -225%;
}
#radio11:checked ~ .first {
    margin-left: -250%;
}
#radio12:checked ~ .first {
    margin-left: -275%;
}
#radio13:checked ~ .first {
    margin-left: -300%;
}
#radio14:checked ~ .first {
    margin-left: -325%;
}
#radio15:checked ~ .first {
    margin-left: -350%;
}
#radio16:checked ~ .first {
    margin-left: -375%;
}
#radio17:checked ~ .first {
    margin-left: -400%;
}
#radio18:checked ~ .first {
    margin-left: -425%;
}
#radio19:checked ~ .first {
    margin-left: -450%;
}
#radio20:checked ~ .first {
    margin-left: -475%;
}
#radio21:checked ~ .first {
    margin-left: -500%;
}
#radio22:checked ~ .first {
    margin-left: -525%;
}
#radio23:checked ~ .first {
    margin-left: -550%;
}
#radio24:checked ~ .first {
    margin-left: -575%;
}
#radio25:checked ~ .first {
    margin-left: -600%;
}
#radio26:checked ~ .first {
    margin-left: -625%;
}

#radio1:checked ~ .slides .slide:nth-child(1) {
  opacity: 1;
  z-index: 2;
}
#radio2:checked ~ .slides .slide:nth-child(2) {
  opacity: 1;
  z-index: 2;
}
#radio3:checked ~ .slides .slide:nth-child(3) {
  opacity: 1;
  z-index: 2;
}
#radio4:checked ~ .slides .slide:nth-child(4) {
  opacity: 1;
  z-index: 2;
}
#radio5:checked ~ .slides .slide:nth-child(5) {
  opacity: 1;
  z-index: 2;
}
#radio6:checked ~ .slides .slide:nth-child(6) {
  opacity: 1;
  z-index: 2;
}
#radio7:checked ~ .slides .slide:nth-child(7) {
  opacity: 1;
  z-index: 2;
}
#radio8:checked ~ .slides .slide:nth-child(8) {
  opacity: 1;
  z-index: 2;
}
#radio9:checked ~ .slides .slide:nth-child(9) {
  opacity: 1;
  z-index: 2;
}
#radio10:checked ~ .slides .slide:nth-child(10) {
  opacity: 1;
  z-index: 2;
}
#radio11:checked ~ .slides .slide:nth-child(11) {
  opacity: 1;
  z-index: 2;
}
#radio12:checked ~ .slides .slide:nth-child(12) {
  opacity: 1;
  z-index: 2;
}
#radio13:checked ~ .slides .slide:nth-child(13) {
  opacity: 1;
  z-index: 2;
}
#radio14:checked ~ .slides .slide:nth-child(14) {
  opacity: 1;
  z-index: 2;
}
#radio15:checked ~ .slides .slide:nth-child(15) {
  opacity: 1;
  z-index: 2;
}
#radio16:checked ~ .slides .slide:nth-child(16) {
  opacity: 1;
  z-index: 2;
}
#radio17:checked ~ .slides .slide:nth-child(17) {
  opacity: 1;
  z-index: 2;
}
#radio18:checked ~ .slides .slide:nth-child(18) {
  opacity: 1;
  z-index: 2;
}
#radio19:checked ~ .slides .slide:nth-child(19) {
  opacity: 1;
  z-index: 2;
}
#radio20:checked ~ .slides .slide:nth-child(20) {
  opacity: 1;
  z-index: 2;
}
#radio21:checked ~ .slides .slide:nth-child(21) {
  opacity: 1;
  z-index: 2;
}
#radio22:checked ~ .slides .slide:nth-child(22) {
  opacity: 1;
  z-index: 2;
}
#radio23:checked ~ .slides .slide:nth-child(23) {
  opacity: 1;
  z-index: 2;
}
#radio24:checked ~ .slides .slide:nth-child(24) {
  opacity: 1;
  z-index: 2;
}
#radio25:checked ~ .slides .slide:nth-child(25) {
  opacity: 1;
  z-index: 2;
}
#radio26:checked ~ .slides .slide:nth-child(26) {
  opacity: 1;
  z-index: 2;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 800px;
  max-height: 650px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
/*-----------------------------------------------*/

.conteudo-section hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 900px;
}

.title {
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  color: var(--secundary-color);
}

.subtitle {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  margin-bottom: 30px;
  color: var(--bg-color);
  opacity: 0.9;
}

.highlight-effect {
  display: inline-block;
  padding: 8px 20px;
  background: var(--secundary-color);
  color: var(--text-color);
  border-radius: var(--border-radius-m);
  font-weight: var(--font-weight-medium);
  border: 2px solid var(--text-color);
  transition: 0.3s ease;
}

.highlight-button {
  display: inline-block;
  padding: 8px 20px;
  margin-left: 3%;
  background-color: var(--secundary-color);
  color: var(--text-color);
  font-size: var(--font-size-n);
  border-radius: var(--border-radius-m);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.highlight-button:hover {
  background-color: var(--lightblue-color);
  color: var(--text-color);
}

/* Botão da Área do Cliente no cabeçalho */
.login-button {
  padding: 8px 20px;
  margin-left: 20px;
  background: var(--text-color);
  color: var(--lightblue-color);
  border-radius: var(--border-radius-m);
  font-size: var(--font-size-n);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
  border: 2px solid var(--text-color);
  text-decoration: none;
}

.login-button:hover {
  background: transparent;
  color: var(--secundary-color);
  border: 2px solid var(--secundary-color);
}



/* Estilizando About Section */
.about-section {
    padding: 30px 0px;
    background: var(--text-color);
    color: var(--secundary-color);
    max-width: none; 
    margin: 0 auto;
    cursor: default;
}

.about-container {
    display: block;
    overflow: hidden; 
}

.about-image {
    float: right;
    margin: 0 0 20px 30px;
    border-radius: 10px;
    height: auto;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.about-text {
    text-align: justify;
    overflow: hidden;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.detalhe_color {
    color: var(--bg-color); 
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Mapa Interativo */
.mapa-interativo {
  margin-top: 0px;
  padding-top: 20px;

}

p {
  margin-bottom: 0;
}

.mapa-titulo {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--bg-color);
}

.mapa-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.mapa-svg {
  width: 100%;
  height: auto;
  max-width: 612.51611px;
  display: block;
  margin: 0 auto;
}

.info-estado {
  flex: 1;
  min-width: 250px;
}

#estado-nome {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--lightblue-color);
  margin-bottom: 10px;
}

#cidades-lista {
  list-style: disc;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.tooltip-cidades {
  position: absolute;
  top: 220px;
  right: 420px;
  width: 250px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 6px;
  cursor: move;
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}

.tooltip-cidades h4 {
    color: var(--lightblue-color);
}

.tooltip-cidades ul {
  padding-left: 18px;
  margin: 0;
}

.seo-cidades {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}


/* Estilizando Contact Section */

.contact-section {
    position: relative;
    display: block;
    cursor: default;
    background: var(--text-color);
    padding: 30px 0px;
    max-width: none; 
    margin: 0 auto;
    cursor: default;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: inherit;
}

.contact-section .section-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--secundary-color);
    z-index: 10;
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.contact-section .section-title:after {
    content: "";
    width: 100px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secundary-color);
}

.contact-section .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: start;
    z-index: 10;
    position: relative;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--secundary-color);
    padding: 12px 16px;
    border-radius: var(--border-radius-s);
    background: var(--card-bg-color);
    transition: transform 0.2s ease;
}

.contact-info:hover {
    transform: scale(1.02);
}

.contact-info i {
    font-size: 1.3rem;
    color: var(--lightblue-color);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.unstyled-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.contact-form .form-input,
.contact-form textarea.form-input {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    background-color: var(--input-bg-color);
    color: var(--secundary-color);
    border: 1px solid var(--lightblue-color);
    border-radius: var(--border-radius-s);
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form .form-input:focus,
.contact-form textarea.form-input:focus {
    border-color: var(--secundary-color);
}

.contact-form textarea.form-input {
    height: 120px;
    resize: vertical;
}

.contact-form .submit-button {
    align-self: flex-end;
    margin-top: 10px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    background-color: var(--lightblue-color);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-m);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .submit-button:hover {
    background-color: var(--secundary-color);
    color: var(--text-color);
    border: 1px solid var(--secundary-color);
}


/* Estilizando Services Section */
.services-section {
    text-align: center;
    position: relative;
    min-height: 100vh;
    overflow: visible;
    z-index: 0;
    background: var(--text-color);
    padding: 30px 0px;
    max-width: none; 
    margin: 0 auto;
    cursor: default;
}

.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    z-index: 1;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-top: 40px;
}

.service-card {
    flex: 1 1 calc(33% - 20px);
    min-width: 250px;
    max-width: 300px;
    box-sizing: border-box;
    padding: 1em;
    background: linear-gradient(var(--text-color) 50%, var(--lightblue-color) 50%);
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: var(--border-radius-s);
    text-align: center;
    transition: 0.5s;
}

.service-card:hover {
    background-position: 0 100%;
}

.service-card .icon {
    font-size: 2rem;
    color: var(--lightblue-color);
    margin-bottom: 15px;
}

.service-card:hover .icon {
    color: var(--text-color);
}

.service-card h3 {
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-bold);
    color: var(--lightblue-color);
    margin: 0.5em 0;
}

.service-card:hover h3 {
    color: var(--text-color);
}

.service-card p {
    font-size: var(--font-size-s);
    color: var(--lightblue-color);
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.service-card:hover p {
    color: var(--text-color);
}

/* Estilizando Area_Cliente Section */
.area_c-section {
    text-align: left;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: visible;
    z-index: 0;
    background: var(--text-color);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    cursor: default;
    padding: 120px 50px;
    box-sizing: border-box;
}

.area_c-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.area_c-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 180px;
    height: 180px;
    box-sizing: border-box;
    background: linear-gradient(to top, var(--lightblue-color) 100%, var(--text-color) 50%);
    background-size: 100% 200%;
    background-position: bottom center;
    border-radius: var(--border-radius-s);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.area_c-card:hover {
    background-position: top center;
}

.area_c-card.active {
    height: 470px;
    background-position: top center;
}

.area_c-card.card2.active {
    height: 500px;
    background-position: top center;
}


.area_c-card.active .icon,
.area_c-card.active h3 {
    color: #fff;
    pointer-events: none;
}

.area_c-card:hover .icon,
.area_c-card:hover h3 {
    color: var(--secundary-color);
}

.area_c-card .icon {
    font-size: 2rem;
    color: var(--text-color);
    margin: 15px;
}

.area_c-card h3 {
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin: 0.5em;
}

/* Painel Login dentro do card */
.login-panel-inside {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    background: var(--lightblue-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-bottom-left-radius: var(--border-radius-s);
    border-bottom-right-radius: var(--border-radius-s);
    padding: 20px;
    box-sizing: border-box;
}

/* Login visível quando ativo */
.area_c-card.active .login-panel-inside {
    max-height: 450px;
    opacity: 1;
}

.login-container {
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}

.login-card {
    width: 100%;
}

.login-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
    font-size: 28px;
    font-weight: 600;
}

.login-label-float {
    position: relative;
    margin-top: 20px;
    height: 50px;
}

.login-label-float input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding-right: 40px;
    font-size: 16px;
    padding: 10px 40px 10px 10px;
    border: none;
    border-bottom: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
    outline: none;
    box-sizing: border-box;
    font-family: inherit !important;
    font-size: 16px !important;
}

.login-label-float input:focus {
    border-bottom-color: var(--text-color);
}

.login-label-float label {
    position: absolute;
    top: 14px;
    left: 10px;
    font-size: 16px;
    color: var(--text-color);
    pointer-events: none;
    transition: all 0.3s ease;
}

.login-label-float input:focus + label,
.login-label-float input:not(:placeholder-shown) + label {
    top: -12px;
    font-size: 12px;
    color: var(--text-color);
}

.fa-eye {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-eye:hover {
    color: var(--text-color);
}

.icon-senha-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: auto;
}

.icon-senha-toggle i {
    font-size: 18px;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
}

.icon-senha-toggle i:hover {
    color: var(--text-color);
}

.login-button2 {
    background-color: transparent;
    color: var(--text-color);
    padding: 12px 24px;
    font-weight: bold;
    font-size: var(--font-size-m);
    margin-top: 30px;
    border-radius: var(--border-radius-m);
    cursor: pointer;
    outline: none;
    transition: all 0.4s ease-out;
    border: 2px solid var(--text-color);
    width: 100%;
    box-sizing: border-box;
}

.login-button2:hover {
    background-color: var(--text-color);
    color: var(--lightblue-color);
    border-color: var(--lightblue-color);
}

.login-justify-center {
    display: flex;
    justify-content: center;
}

#card-1 {
    height: auto;
    cursor: default;
}

#card-1 .login-panel-inside {
    max-height: none;
    opacity: 1;
    overflow: visible;
    transition: none;
    padding: 20px;
}

#card-1:hover {
    background-position: bottom center;
}
#card-1:hover .icon,
#card-1:hover h3 {
    color: var(--text-color);
}

#card-2, #card-3, #card-4 {
    cursor: pointer;
}
#card-2 .card-content,
#card-3 .card-content,
#card-4 .card-content {
    pointer-events: none;
}


/* Estilizando Fadiga Section */
.fadiga-section {
    padding: 140px;
    background: var(--text-color);
    color: var(--secundary-color);
    max-width: none; 
    margin: 0 auto;
    cursor: default;
}

.fadiga-container {
    display: block;
    overflow: hidden; 
}

.fadiga-image {
    float: right;
    margin: 0 0 20px 30px;
    border-radius: 10px;
    height: auto;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.fadiga-text {
    text-align: justify;
    overflow: hidden;
}

.fadiga-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.detalhe_color {
    color: var(--bg-color); 
}

.fadiga-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Estilizando Envio Section */
.envio-section {
    padding: 140px;
    background: var(--text-color);
    color: var(--secundary-color);
    max-width: none; 
    margin: 0 auto;
    cursor: default;
}

.envio-container {
    display: block;
    overflow: hidden; 
}

.envio-image {
    float: right;
    margin: 0 0 20px 30px;
    border-radius: 10px;
    height: auto;
    max-width: 170px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.envio-text {
    text-align: justify;
    overflow: hidden;
}

.envio-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.detalhe_color {
    color: var(--bg-color); 
}

.envio-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Estilizando App Section */
.app-section {
    padding: 140px;
    background: var(--text-color);
    color: var(--secundary-color);
    max-width: none; 
    margin: 0 auto;
    cursor: default;
}

.app-container {
    display: block;
    overflow: hidden; 
}

.app-image {
    float: right;
    margin: 0 0 20px 30px;
    border-radius: 10px;
    height: auto;
    max-width: 170px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.app-text {
    text-align: justify;
    overflow: hidden;
}

.app-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.detalhe_color {
    color: var(--bg-color); 
}

.app-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Estilizando Iscas Section */
.iscas-section {
    padding: 140px;
    background: var(--text-color);
    color: var(--secundary-color);
    max-width: none; 
    margin: 0 auto;
    cursor: default;
}

.iscas-container {
    display: block;
    overflow: hidden; 
}

.iscas-image {
    float: right;
    margin: 0 0 20px 30px;
    border-radius: 10px;
    height: auto;
    max-width: 170px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.iscas-text {
    text-align: justify;
    overflow: hidden;
}

.iscas-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.detalhe_color {
    color: var(--bg-color); 
}

.iscas-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Estilizando Seguro Section */
.seguro-section {
    padding: 140px;
    background: var(--text-color);
    color: var(--secundary-color);
    max-width: none; 
    margin: 0 auto;
    cursor: default;
}

.seguro-container {
    display: block;
    overflow: hidden; 
}

.seguro-image {
    float: right;
    margin: 0 0 20px 30px;
    border-radius: 10px;
    height: auto;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.seguro-image2 {
    float: right;
    margin: 0 0 20px 30px;
    border-radius: 10px;
    height: auto;
    max-width: 170px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.seguro-text {
    text-align: justify;
    overflow: hidden;
}

.seguro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.detalhe_color {
    color: var(--bg-color); 
}

.seguro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Estilizando SGF Section */
.sgf-section {
    margin-top: 8rem;
    position: relative;
    z-index: 10;
}

.sgf_container {
    position: relative;
}

.wrapper {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: 5rem auto;
  overflow: hidden;
  position: relative;
  z-index: 11;
  background-color: transparent;
  box-shadow: none;  
}

.wrapper-holder {
  display: flex;
  width: calc(26 * 100%);
  height: 100%;
  transition: transform 0.5s ease-in-out;
  z-index: 12;
}

.wrapper-holder > div {
 flex: 0 0 calc(100% / 26);
  width: auto;
  height: 387px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  flex-shrink: 0;
  position: relative;
}

.wrapper-holder > div img {
 max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
}


.nav-buttons {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
}

.nav-buttons button {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--text-color);
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 8px;
}

.nav-buttons button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#nav-toggle:checked ~ .nav-overlay {
  display: block;
}

/* Responsividade para Celular */
@media screen and (max-width: 1020px) {

    *,
    a,
    button,
    input,
    label,
    .map a,
    .map button,
    .mapa-svg,
    .mapa-svg * {
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        user-select: none;
        touch-action: manipulation;
    }

    .mapa-svg, .mapa-svg * {
        outline: none;
    }

    .mapa-svg a, .mapa-svg a * {
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
    }

    svg:focus,
    svg *:focus {
        outline: none !important;
    }

    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        height: 100%;
    }

    body:not(.login-page) {
        padding-top: 125px;
    }

    body.index-page {
        padding-top: 0;
    }

    body.index-page .banner-section {
        padding-top: 63px !important;
   }

    main,
    section,
    .about-section {
        margin-top: 0 !important;
        padding-top: 63px !important;
    }

    .nav-menu .nav-link,
    .nav-menu i,
    .nav-menu li a {
        color: var(--text-color) !important;
    }

    .nav-menu .login-button {
        color: var(--strongblue-color) !important;
    }

    .nav-menu .login-button:hover {
        color: var(--secundary-color) !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu i:hover {
        color: var(--secundary-color) !important;
    }

    .hero-video {
        margin-top: 60px;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 10px 20px;
        height: 125px;
        
    }
    
    /* Mostra botão menu */
    .nav-toggle-label {
        display: block;
    }

    /* Estilo do overlay escuro gradiente */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.0));
        backdrop-filter: blur(4px);
        display: none;
        z-index: 999;
    }

    /* Estilo menu mobile lateral */
    .nav-toggle-label {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1100; /* acima do header e overlay */
        font-size: 1.8rem;
        color: var(--text-color);
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 250px;
        height: 100vh;
        background-color: var(--lightblue-color);
        flex-direction: column;
        padding: 60px 30px;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
    }

    /* Mostra menu quando checkbox ativo */
    .nav-toggle:checked ~ .nav-menu {
        right: 0;
    }

    /* Mostra overlay quando menu ativo */
    .nav-toggle:checked ~ .nav-overlay {
        display: block;
    }

    /* Ajuste dos links no mobile */
    .navbar .nav-menu li {
        margin: 10px 0;
    }

    .nav-menu .nav-link,
    .nav-menu .login-button,
    .nav-menu i {
        font-size: 1.2rem;
        color: var(--text-color);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .login-button:hover,
    .nav-menu i:hover {
        color: var(--text-color);
    }

    .nav-menu .login-button {
        font-size: 1rem;
        padding: 8px 12px;
        white-space: nowrap;
    }

    header.bgmobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--lightblue-color); 
        z-index: 999;
        height: 125px;
        display: flex;
        align-items: center;
    }

    header, .banner-section {
        margin: 0;
        padding: 0;
        border: none;
        box-shadow: none;
    }

    .title {
        font-size: 1.5rem;
        text-align: left;
        margin-left: 10px;
    }

    .subtitle {
        font-size: 1rem;
        text-align: left;
        margin-left: 10px;
    }

    .banner-section {
        position: relative !important;
        top: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: auto !important;      
    }

    .banner-section img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        margin: 0 !important;
        padding: 0 !important;
    }

    .bloco-horizontal {
        display: flex;
        flex-direction: column; 
        gap: 0px;
        align-items: flex-start;
    }
    
    .bloco-horizontal + .conteudo-bloco {
        margin-top: 10px !important;
    }

    .bloco-horizontal .texto {
        padding: 0;
        width: 100%;
    }

    .bloco-horizontal .video {
        flex: 0 0 300px;
        max-width: 300px;
        margin: 0 auto;
    }

    .bloco-horizontal video {
        display: block;
        margin-bottom: 0;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .texto-ajustado {
        padding-left: 0;
    }

    .conteudo-bloco > * {
        margin-bottom: 30px;
    }

    .conteudo-bloco {
        margin-bottom: 20px;
    }

    .conteudo-section {
        padding-top: 10px;   
        padding-bottom: 30px;
        max-width: none;
        margin: 0 auto;
        cursor: default;
    }

    .conteudo-section hr {
        margin: 10px auto; 
        max-width: 900px;
    }

    .highlight-effect,
    .highlight-button {
        margin-left: 10px;
    }

    header.navbar,
    header,
    .navbar,
    .section-content:first-child {
        border-bottom: none !important;
        box-shadow: none !important;
        margin-bottom: 0 !important;
    }

    .services-section {
        overflow-y: visible;
        height: auto !important;
    }

    .contact-section {
        padding: 100px 20px;
    }

    .contact-section .section-content {
        grid-template-columns: 1fr;
        gap: 20px; 
    }

    .contact-info-list {
        display: block; 
    }

    .contact-info {
        display: block; 
        margin-bottom: 15px; 
        padding: 12px;
        text-align: center; 
    }

    .contact-info i {
        font-size: 1.5rem; 
    }

    .contact-form {
        flex: 1;
        display: block; 
    }

    .contact-form .form-input,
    .contact-form textarea.form-input {
        padding: 14px; 
        font-size: 1.1rem; 
    }

    .contact-form .submit-button {
        width: 100%; 
        margin-top: 20px;
    }

    .fadiga-section {
        padding: 80px 20px 40px 20px !important;
        background: var(--text-color);
        color: var(--secundary-color);
        max-width: none;
        margin: 0 auto;
        cursor: default;
    }

    .fadiga-image {
        float: none;
        display: block;
        margin: 20px auto;
        border-radius: 10px;
        height: auto;
        max-width: 90%;
        width: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .fadiga-text {
        text-align: left;
        overflow: hidden;
    }

    .fadiga-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: bold;
        text-align: center;
    }

    .fadiga-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .envio-section {
        padding: 80px 20px 40px 20px !important;
        background: var(--text-color);
        color: var(--secundary-color);
        max-width: none;
        margin: 0 auto;
        cursor: default;
    }

    .envio-image {
        float: none;
        display: block;
        margin: 20px auto;
        border-radius: 10px;
        height: auto;
        max-width: 50%;
        width: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .envio-text {
        text-align: left;
        overflow: hidden;
    }

    .envio-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: bold;
        text-align: center;
    }

    .envio-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .app-section {
        padding: 80px 20px 40px 20px !important;
        background: var(--text-color);
        color: var(--secundary-color);
        max-width: none;
        margin: 0 auto;
        cursor: default;
    }

    .app-image {
        float: none;
        display: block;
        margin: 20px auto;
        border-radius: 10px;
        height: auto;
        max-width: 50%;
        width: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .app-text {
        text-align: left;
        overflow: hidden;
    }

    .app-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: bold;
        text-align: center;
    }

    .app-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .iscas-section {
        padding: 80px 20px 40px 20px !important;
        background: var(--text-color);
        color: var(--secundary-color);
        max-width: none;
        margin: 0 auto;
        cursor: default;
    }

    .iscas-image {
        float: none;
        display: block;
        margin: 20px auto;
        border-radius: 10px;
        height: auto;
        max-width: 50%;
        width: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .iscas-text {
        text-align: left;
        overflow: hidden;
    }

    .iscas-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: bold;
        text-align: center;
    }

    .iscas-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .seguro-section {
        padding: 80px 20px 40px 20px !important;
        background: var(--text-color);
        color: var(--secundary-color);
        max-width: none;
        margin: 0 auto;
        cursor: default;
    }

    .seguro-image {
        float: none;
        display: block;
        margin: 20px auto;
        border-radius: 10px;
        height: auto;
        max-width: 100%;
        width: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

      .seguro-image2 {
        float: none;
        display: block;
        margin: 20px auto;
        border-radius: 10px;
        height: auto;
        max-width: 50%;
        width: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    .seguro-text {
        text-align: left;
        overflow: hidden;
    }

    .seguro-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: bold;
        text-align: center;
    }

    .seguro-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .wrapper {
        width: 100%;
        max-width: 90%;
        margin: 2rem auto;
        position: relative;
        overflow: hidden;
        background-color: transparent;
        border-radius: 12px;
    }

    .wrapper-holder {
        display: flex;
        width: 100%;
        transition: transform 0.5s ease-in-out;
        height: auto;
    }

    .wrapper-holder > div {
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        height: auto;
        min-height: 250px;
        padding: 1rem;
    }

    .wrapper-holder > div img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        border-radius: 8px;
    }

    .nav-buttons {
        position: static;
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .nav-buttons button {
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        border: none;
        font-size: 1.5rem;
        padding: 0.4rem 1rem;
        cursor: pointer;
        border-radius: 6px;
        transition: background-color 0.3s;
    }

    .nav-buttons button:hover {
        background-color: rgba(0, 0, 0, 0.9);
    }

    .area_c-section {
        padding: 100px 10px 20px;
    }

    .area_c-grid {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
        white-space: nowrap;
        gap: 10px;
        scroll-behavior: smooth;
    }

    .area_c-card {
        flex: 0 0 auto;
        width: 200px;
        min-width: 160px;
        max-width: 200px;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-right: 10px;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }

    .area_c-card.card2 h3 {
        white-space: normal;
        word-break: break-word;
        text-align: center;
        font-size: calc(var(--font-size-m) + 2px);
        line-height: 1.2;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .area_c-card.active {
        height: 500px;
    }

    .area_c-card.card2.active {
        height: 550px;
    }

    .area_c-card .icon {
        font-size: 2.5rem; 
    }

    .area_c-card.active .login-panel-inside {
        max-height: 500px;
    }

    .area_c-card h3 {
        white-space: normal;
        word-break: break-word;
        text-align: center;
        font-size: calc(var(--font-size-m) + 1px);
        line-height: 1.2;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .login-button2 {
        font-size: calc(var(--font-size-m) + 2px);
        padding: 14px 26px;
    }

    .mapa-interativo {
        padding: 10px;
        overflow: hidden;
    }

    .mapa-content {
        flex-direction: column;
        align-items: center;
    }

    .mapa-svg {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .mapa-svg svg {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        transform: scale(0.6);
        transform-origin: center center;
        display: block;
    }

    .tooltip-cidades {
        display: block;
        opacity: 1;
        position: fixed;
        top: 360px;
        left: 25px;
        right: auto;
        width: auto;
        max-width: 220px;
        z-index: 9999;
        background: var(--text-color);
        border: 1px solid var(--opac-color);
        border-radius: 6px;
        padding: 5px 8px;
        font-size: 0.7rem;
        line-height: 1.2;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    }

    .tooltip-cidades h4 {
        margin-top: 0;
        margin-bottom: 4px;
        font-size: 0.7rem;
        font-weight: bold;
        color: var(--lightblue-color);
    }

    .tooltip-cidades ul {
        padding-left: 14px;
        margin: 0;
    }

    .tooltip-cidades li {
        margin-bottom: 2px;
    }
}