@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/*.top-bar {
  position: absolute;
  top: 50px;
  right: 150px;
  display: flex;
  gap: 15px; /* Espaço entre os ícones */
/* padding: 10px;
}*/

.dourado {
 /* color: #aa7f2e;
color: #B78E42;*/
color: #b78c3f;
}





body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}



/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #b78c3f;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #b78c3f;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #b78c3f;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}



input[type=text], input[type=password], textarea {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus {
  background-color: #fff;
  border-bottom: 2px solid #b78c3f;
}

input[type=text]:placeholder, input[type=password]:placeholder{
  color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #b78c3f;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}

.underlineHover{
  text-decoration: none;
  color: black;
}

/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}







/* --------------------
   Reset básico
-------------------- */
*, ::after, ::before {
  box-sizing: border-box;
}

a {
  cursor: pointer;
  text-decoration: none;
}

li {
  list-style: none;
}

/* --------------------
   Estrutura base
-------------------- */
.wrapper2 {
  align-items: stretch;
  display: flex;
  width: 100%;
}

#sidebar {
  max-width: 264px;
  min-width: 264px;
  background: #fff;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 0 35px 0 rgba(66, 61, 49, 0.5);
  z-index: 1111;
}

/* --------------------
   Estado recolhido
-------------------- */
#sidebar.collapsed {
  margin-left: -264px;
}

.main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
}

/* --------------------
   Cabeçalho do menu
-------------------- */
.sidebar-logo {
  padding: 1.15rem 1.5rem;
  text-align: center;
}

.sidebar-logo a {
  color: #ffbb00;
  font-size: 1.25rem;
  font-weight: 600;
}

.sidebar-nav {
  padding: 0;
}

.sidebar-header {
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.5rem 1.5rem .375rem;
  text-transform: uppercase;
}

a.sidebar-link {
  padding: .625rem 1.625rem;
  color: #000000;
  position: relative;
  display: block;
  font-size: .8rem;
}

.sidebar-link:hover {
  color: #b78c3f;
  font-weight: bold;
}

.sidebar-link[data-bs-toggle="collapse"]::after {
  border: solid;
  border-width: 0 .075rem .075rem 0;
  content: "";
  display: inline-block;
  padding: 2px;
  position: absolute;
  right: 1.5rem;
  top: 1.4rem;
  transform: rotate(-135deg);
  transition: all .2s ease-out;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after {
  transform: rotate(45deg);
}

/* --------------------
   Conteúdo principal
-------------------- */
.content {
  flex: 1;
  max-width: 100vw;
  width: 100%;
  overflow-x: auto;
}

.main.expanded {
  margin-left: 0;
}

/* --------------------
   Submenu
-------------------- */
.sidebar-dropdown {
  display: none;
  padding-left: 20px;
}

.sidebar-dropdown.show {
  display: block;
}

/* --------------------
   RESPONSIVO
-------------------- */

/* --- Mobile e Tablet --- */
@media (max-width: 992px) {
  #sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out;
    z-index: 2000; /* acima do conteúdo */
  }

  /* Estado visível do menu */
  #sidebar.active {
    transform: translateX(0);
  }

  /* Área principal SEM margem no mobile */
  .main {
    margin-left: 0 !important;
    width: 100%;
  }

  /* Botão hamburguer */
  #sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2100; /* acima do menu */
    position: absolute;
    left: 15px;
    top: 15px;
  }

  /* Cabeçalho da página com espaço pro botão */
  .page-header {
    padding-left: 60px; /* deixa espaço para o botão */
    display: flex;
    align-items: center;
    height: 50px;
  }
}

/* --- Desktop --- */
@media (min-width: 993px) {
  #sidebar {
    position: relative;
    transform: none;
  }

  #sidebar.collapsed {
    margin-left: -264px;
  }

  .main {
    margin-left: 0px;
    transition: margin-left 0.35s ease-in-out;
  }

  .main.expanded {
    margin-left: 0;
  }

  #sidebar-toggle {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1200;
  }

  .page-header {
    padding-left: 0;
  }
}

.file-upload {
  font-family: Arial, sans-serif;
  margin-top: 20px;
  width: 100%;
  max-width: 1110px;
}

input[type="file"] {
  display: none;
}

.file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #202020;
  border: 2px dashed #fff;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.file-label:hover {
  background-color: #2c2c2c;
  border-color: #000000;

}

.file-btn {
  background-color: #202020;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  cursor: pointer;
}

.file-name {
  font-size: 14px;
  color: #fff;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}




















































/*.bodyin {
  background: linear-gradient(
    143deg,
    rgba(255, 168, 217, 1) 0%,
    rgba(232, 168, 255, 1) 50%,
    rgba(168, 191, 255, 1) 100%
  );
}*/

p a{
  color:black;
  text-decoration: none;
}

/*.header {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  padding: 40px 100px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

section {
  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: center;

  min-height: 100vh;

  padding: 0 100px;
}

section .contentBx {
  position: relative;
  max-width: 700px;
  margin-top: 190px;
}

section .contentBx h2 {
  font-size: 60px;

  color: #ffffff;

  text-transform: uppercase;
}

section .contentBx p {
  font-size: 18px;

  color: #fff;
  text-decoration: none;
}

section .contentBx .countdown {
  display: flex;

  margin: 20px 0;
}

section .contentBx .countdown .time {
  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  background: #fff;

  margin-right: 20px;

  font-size: 48px;

  min-width: 110px;

  font-weight: 700;

  padding: 10px 5px 15px;

  border-radius: 4px;

  color: #e6007e;
}

section .contentBx .countdown .time span {
  margin-top: -10px;

  font-size: 20px;

  font-weight: 600;

  color: #312747;
}

section .contentBx a {
  position: relative;

  margin-top: 10px;

  display: inline-block;

  color: #fff;

  font-size: 20px;

  letter-spacing: 2px;

  padding: 15px 35px;

  text-decoration: none;

  border-radius: 40px;
}

section .imgBx img {
  position: relative;
  max-width: 1500px;
  width: 100%;
  margin-top: 100px;
  z-index: 2;
}

.wave {
  position: absolute;

  bottom: 0;

  right: 0;

  z-index: 1;

  pointer-events: none;
}

section .sci {
  position: absolute;

  bottom: 40px;

  left: 100px;

  z-index: 1000;

  display: flex;

  justify-content: center;

  align-items: center;

  filter: invert(1);
}

section .sci li {
  list-style: none;
}

section .sci li a {
  display: block;

  margin-right: 20px;

  transform: scale(0.8);
}

.newsletter {
  position: fixed;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 800px;

  padding: 60px;

  background: #fff;

  z-index: 10000;

  box-shadow: 0 0 0 100vh rgba(49, 39, 71, 0.95);

  visibility: hidden;

  opacity: 0;

  transition: 0.5s;
}

.newsletter .active {
  visibility: visible;

  opacity: 1;
}

.newsletter h2 {
  font-size: 48px;

  color: #312747;
}

.newsletter p {
  font-size: 20px;

  color: #312747;
}

.newsletter .inputBox {
  margin-top: 20px;
}

.inputBox .input-icon {
  width: 50px; /* Tamanho da imagem */


  /*height: 50px;

  outline: none;

  border: 1 solid #999;
  cursor: pointer;
}

.newsletter .close {
  position: absolute;

  top: 20px;

  right: 20px;

  width: 40px;

  height: 40px;

  cursor: pointer;
}

@media (max-width: 991px) {
  section {
    flex-direction: column;

    padding-top: 200px;

    height: auto;
  }

  header .logo img {
    position: relative;
    width: 60%;
  }

  section .contentBx {
    max-width: 100%;
    margin-top: 50px;
  }

  section .imgBx img {
    margin-top: 0;
  }

  /*.top-bar {
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    gap: 15px; /* Espaço entre os ícones */
  /*padding: 10px;
  }*/


  /*
  .top-bar a img {
    width: 50px; /* Tamanho dos ícones */
    
    /*
    height: 50px;
    transition: 0.3s;
  }

  .top-bar {
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
    margin-right: 30px;
  }

  .top-bar .contact-info {
    flex-direction: column;
    gap: 5px;
  }

  .top-bar .social-icons {
    margin-right: 10px;
    margin-top: 10px;
    text-decoration: none;
  }

  .top-bar .phone {
    position: absolute;
    margin-left: 100px;
    margin-top: 60px;
    color: #fff;
  }

  .top-bar .mail {
    display: absolute;
    margin-left: 50px;
    margin-top: 80px;
    color: #fff;
  }
}

@media (max-width: 767px) {
  header {
    padding: 20px 50px;
  }

  section {
    flex-direction: column;

    padding: 120px 50px 100px;

    height: auto;
  }

  section .contentBx h2 {
    font-size: 40px;
  }

  section .contentBx p {
    font-size: 16px;
  }

  section .contentBx .countdown .time {
    font-size: 30px;

    min-width: 70px;

    margin-right: 5px;
  }

  section .contentBx .countdown .time span {
    font-size: 14px;
  }

  section .contentBx a {
    position: relative;

    margin-top: 10px;

    display: inline-block;

    font-size: 16px;

    letter-spacing: 2px;

    padding: 10px 25px;

    text-decoration: none;

    border-radius: 40px;
  }

  section .sci {
    left: 50px;
  }

  .newsletter {
    width: 90%;

    padding: 30px;
  }

  .newsletter .inputBox input {
    margin-top: 10px;

    width: 100%;
  }

  .newsletter h2 {
    font-size: 36px;

    color: #312747;
  }
}
