/* custom.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
/* Adicione o restante do código CSS aqui */
@import url('https://fonts.cdnfonts.com/css/futura-pt');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html, body {
    margin: 0;
}

body {
    font-size: 100%;
    --background-color: linear-gradient(100deg, #23232f 35rem, #024560 85.61rem);
    background: var(--background-color);
    --sb-track-color: #024560;
    --sb-thumb-color: #00c1c3;
    --sb-size: 13px;
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    opacity: 0;
    clip-path: circle(0% at 50% 50%); /* Máscara circular começa em 0% */
    animation: circleReveal 2s ease-in forwards; /* Animação */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animação de revelação em círculo */
@keyframes circleReveal {
    0% {
        opacity: 0;
        clip-path: circle(0% at 50% 50%);
    }
    100% {
        opacity: 1;
        clip-path: circle(150% at 50% 50%); /* Expande a máscara para cobrir toda a área */
    }
}

main {
    width: 100%;
    background: inherit;
    flex-grow: 1;
}

body::-webkit-scrollbar {
    width: var(--sb-size);
    height: var(--sb-size);
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);

}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 10px;
  }
 
.cabecalho {
    width: 100%;
    position: fixed;
    z-index: 2;
    background: var(--background-color);
    border-bottom: 0.4px solid #FFF2E7;
    top: 0;
    left: 0;
    padding: 10px 0; /* Ajuste o padding conforme necessário */
}


.cabecalho-grade {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1280px;
}


.cabecalho-grade, .cabecalho-grade-sm {
    width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.cabecalho-imagem {
    display: block;
    height: 1.5rem;
    opacity: 0;
    transform: scale(0) rotateY(-90deg); /* Inicia pequeno e girado */
    animation: logoReveal 2s ease-out forwards; /* Animação de revelação */
    font-size: 5rem; /* Tamanho do logo */
    font-weight: bold;
    color: #00c1c3; /* Cor do logo */
    opacity: 0;
    transform: scale(0) rotateY(-90deg); /* Inicia pequeno e girado */
    transform-origin: center; /* Foco da transformação */
    animation: logoReveal 5s ease-out forwards; /* Animação de revelação */
}

/* Animação de logo reveal */
@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0) rotateY(-90deg); /* Ponto inicial */
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2) rotateY(45deg); /* Meio da animação */
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg); /* Fim da animação */
    }
}


.cabecalho-menu {
    display: flex;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.cabecalho-menu-item {
    font-family: 'Futura PT', sans-serif;
    color: #FFF2E7;
    font-weight: 400;
    font-size: 18px; 
}

.conteudo {
    width: min(90%, 1600px);
    margin-inline: auto;
    padding-top: 80px;
    padding-bottom: 20px;
    padding-inline: clamp(16px, 2vw, 32px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.conteudo, .conteudo-sm {
    width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 5em;
}

.conteudo-principal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.conteudo-principal-escrito {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.conteudo-principal-escrito-titulo {
    font-family: 'Futura PT', sans-serif;
    font-weight: 400;
    font-size: 64px;
    color: #FFF2E7
}

.conteudo-principal-escrito-subtitulo {
    font-family: 'Futura PT', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #ECD6C4;
}

.conteudo-principal-escrito-botao {
    background-color: #ECD6C4;
    width: 180px;
    height: 60px;
    border: none;
    box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    font-family: 'Futura PT', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #2F2325;
}

.conteudo-principal-escrito-botao:hover {
    background-color: rgba(236, 214, 196, 0.53);
}

.conteudo-principal-imagem {
    height: 25rem;
    filter: drop-shadow(14px 15px 4px rgba(0, 0, 0, 0.25));
}


.conteudo-secundario {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.conteudo-secundario-titulo {
    padding-top: 1rem;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 35px;
    color: #FFF2EF;
    margin-bottom: 0.4em;
}

.conteudo-recurso {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    margin-right: -32px;
    margin-left: -32px;
    margin-bottom: 5em;
}

.recurso-interno {
    width: 25rem;
    text-align: center;
    padding: 32px 32px;
}

.conteudo-recurso-icone {
    justify-content: center;
    text-align: center;
}

.recurso-icone {
    max-width: 10rem;
    height: 6rem;
}

.mt1-24 {
    margin-top: 5px;
    font-size: 25px;
    line-height: 34px;
    font-family: 'Futura PT', sans-serif;
    color: #FFF2E7;
    text-align: center;
    cursor: pointer;
}

.texto-sm {
    color: #8A94A7;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: -0.1px;
}

.rodape {
    /*padding-bottom: 25px;*/
    border-top: 0.4px solid #FFF2E7;
    height: 4.0rem; /* Ajuste a altura conforme necessário */
    display: flex; /* Flexbox para centralizar o conteúdo */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
}

.rodape-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 0.3rem;
    color: #f1f1f1;
	font-size: 0.7rem;
}

.rodape-container {
    display: flex;
    flex-direction: column; /* Organiza os elementos em coluna */
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente (se necessário) */
    text-align: center; /* Centraliza texto nos elementos */
}

.rodape-imagem {
    height: 25px;
    display: block;
    margin: 0 auto;
} 

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.hidden {
    display: none;
}

/* Ajustes no Tailwind */
.bg-white {
    background-color: #00c1c3 !important;
    --tw-bg-opacity: 1;
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    background-color: #009ea1;
    color: #fff;
}

.bg-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0);
}

.text-dark {
    --tw-text-opacity: 1;
    color: rgb(0 0 0);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    background-color: #f0f0f0; /* Cor de fundo para ajudar na visualização */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Remover borda */
}

.bg-blue:hover {
    --tw-bg-opacity: 1;
    background-color: #009ea1;
    color: white;
}

/* Adicione essa classe ao seu arquivo custom.css ou a um arquivo específico para a página */
.centralizado {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: calc(100vh - 120px); /* altura da viewport - cabeçalho */
    background: var(--background-color);
    padding: 60px 20px; /* mais espaço em cima e embaixo */
}

.centralizado .conteudo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.centralizado .conteudo-principal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px; /* Ajuste conforme necessário */
}

.centralizado .conteudo-principal-escrito {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
    max-width: 700px;
    gap: 1.5rem;
}

.form {
    width: min(100%, 820px); /* aumentamos para 820px */
    padding: clamp(2rem, 4vw, 3rem);
    background-color: rgba(44, 50, 61, 0.92);
    border: 1px solid #444;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.form input {
    height: 44px;
}

.form-title {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    color: #ffffff !important;
    margin-bottom: 2rem !important;
}

/* Estilo dos inputs (campo de texto, email, senha etc.) */
.form input[type="text"],
.form input[type="email"],
.form input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    height: 50px;
    background-color: #1e212b;
    color: #fff;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.2s ease;
}

.form input:focus {
    outline: none;
    border-color: #00c1c3;
    box-shadow: 0 0 0 2px rgba(0,193,195,0.2);
}

/* Labels */
.form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #ccc;
}

/* Botão registrar */
.form button,
.form .btn-submit,
.form .x-primary-button {
    background-color: #00c1c3;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
}

.form button:hover,
.form .btn-submit:hover,
.form .x-primary-button:hover {
    background-color: #00a5a7;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    cursor: pointer;
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #00c1c3;
}

input[type="password"] {
    font-family: 'password-dots'; /* ou alguma fonte de ícone */
}