
@font-face { font-family: Inter; src: url('../fonts/Inter/static/Inter_18pt-Bold.ttf'); font-weight: 600; }
@font-face { font-family: Inter; src: url('../fonts/Inter/static/Inter_18pt-Medium.ttf'); font-weight: 500; }
@font-face { font-family: Inter; src: url('../fonts/Inter/static/Inter_18pt-Regular.ttf'); font-weight: 400; }
@font-face { font-family: Inter; src: url('../fonts/Inter/static/Inter_18pt-Thin.ttf'); font-weight: 300; }

@font-face { font-family: Museo; src: url('../fonts/MuseoModerno/static/MuseoModerno-Bold.ttf'); font-weight: 600; }
@font-face { font-family: Museo; src: url('../fonts/MuseoModerno/static/MuseoModerno-Medium.ttf'); font-weight: 500; }
@font-face { font-family: Museo; src: url('../fonts/MuseoModerno/static/MuseoModerno-Regular.ttf'); font-weight: 400; }
@font-face { font-family: Museo; src: url('../fonts/MuseoModerno/static/MuseoModerno-Thin.ttf'); font-weight: 300; }

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

body {
  background: #f8f9fa;
  overflow-x: hidden;
}

.swalTitle {
  	font-size: 20px; 
  	font-weight: 600; 
  	color: var(--cinza-escuro);
  	margin-top: -15px;
}

.swalSubtitle{
    font-size: 16px; 
    font-weight: 400; 
    margin-top: 2px; 
    color: var(--cinza);
    margin: 5px 0px 15px 0px;
}

.dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-btn {
      background: #fff;
      border: 1px solid #ccc;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 6px;
      font-weight: bold;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background: #fff;
      min-width: 200px;
      box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
      border-radius: 6px;
      margin-top: 5px;
      z-index: 10;
    }

    .dropdown-content a {
      display: block;
      padding: 10px;
      color: #333;
      text-decoration: none;
    }

    .dropdown-content a:hover {
      background: #f5f5f5;
    }

    /* Mostrar quando tiver a classe active */
    .dropdown.show .dropdown-content {
      display: block;
    }

/* Ganhador */

.mid{
    background: linear-gradient(to bottom, #83e6b7, white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.midgreen{
    display: flex;
    justify-content: center;
    padding: 100px 0px;
    
}

.text-mid-green {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#futuro-title{
    width: 375px;
    font-weight: bold;
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

#botton-experimente{
    border: 1px solid #17916f;
    background-color: #17916f;
    width: 300px;
    color: #ffff;
    border-radius: 16px;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
    font-size: 18px;
    
}

/* Navbar container */

.navbar-desktop {
    display: flex !important;
}

.navbar-mobile {
    display: none !important;
}
.navbar {
  width: 100%;
  background: #fff;
  height: 86px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
/* Logo */
.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #00a06a;
}
.navbar .logo img {
  /* height: 30px; */
  margin-right: 8px;
}
/* Links */
.navbar .menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .menu a {
  text-decoration: none;
  font-family: 14px;
  font-weight: 500;
  line-height: 38px;
  color: #5C5C5C;
  font-size: 14px;
  transition: color 0.3s;
}
.navbar .menu a:hover {
  color: #00a06a;
}
/* Botões */
.navbar .buttons {
  display: flex;
  gap: 10px;
}
.navbar .buttons .btn {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #D0DBEA;
  cursor: pointer;
  font-size: 14px;
  background: #fff;
  transition: all 0.3s;
  padding: 8px;
}
.navbar .buttons .btn-login {
  border: 1px solid #ccc;
  background: #fff;
  width: 140px;
}
.navbar .buttons .btn-login:hover {
  background: #f1f1f1;
}
.navbar .buttons .btn-start {
  background: #53BE51;
  color: #fff;
  border: none;
  width: 170px;
}

.navbar .buttons .btn-start:hover {
  background: #218838;
}
/* Animação X do hambúrguer */
.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active div:nth-child(2) {
  opacity: 0;
}
.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* Hamburguer */
.navbar .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: absolute;
  left: 20px; /* fica na esquerda */
}
.navbar .hamburger div {
  width: 25px;
  height: 3px;
  background: #666;
}

/* Inicio */

.bg-inicio {
    /* background: linear-gradient(to bottom, #69E1A8 0%, rgba(30, 184, 130, 0) 100%); */

    background: linear-gradient(to bottom, #69E1A8 0%, #ffffff 100%);

}

.container-inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 50px 0;
}

.content-bg-image img {
    width: 100%;
}

.content-titulo {
    max-width: 380px;
}

.titulo {
    font-family: 'Inter';
    font-size: 38px;
    font-weight: 600;
    line-height: 36px;
}

.subtitulo {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    padding: 20px 0;
}

.btn-descobrir {
    background-color: #1EB882;
    padding: 14px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    width: 200px;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
}

/* Enquete */

.container-enquete {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 40px 0;
}

.card-geral {
    padding: 50px;
    border-radius: 30px;
    border: 5px solid #000000;
    max-width: 600px;
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.titulo-card {
    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    text-align: center;
}

.subtitulo-card {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    padding: 20px 0;
    text-align: center;
}

.card-nomes-ia {
    padding: 24px;
    border-radius: 30px;
    border: 5px solid #000000;
    background-color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 45px;
    text-align: center;
    position: absolute;
    left: 30%;
    bottom: -50px;
}

/* CARDS NOMES ENQUETE */

section {
    position: relative;
}

.img-debe {
    position: absolute;
    max-width: 600px;
    width: 100%;
    left: -110px;
    bottom: 0;
}

.img-salvia {
    position: absolute;
    max-width: 450px;
    width: 100%;
    right: -50px;
    bottom: -130px;
}

.content-cards-nomes {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
    z-index: 1;
}

.content-card-debe {
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 5px solid #000000;
    background-color: #4EF3A5;
    border-radius: 30px;
    padding: 40px;
    max-width: 400px;
    min-height: 465px;
    position: relative;
}

.content-titulo-enquete img {
    display: none;
}

.titulo-card-debe {
    font-family: 'Museo';
    font-size: 22px;
    font-weight: 600;
    background-color: #E0FFE7;
    padding: 10px 20px;
    line-height: 145%;
    padding: 15px 30px;
    border-radius: 21px;
}


.subtitulo-card-debe {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    background-color: #0000;
    padding: 10px 20px;
    line-height: 145%;
    padding: 30px 0;
    text-align: center;
    line-height: 35px;
}

.content-card-salvai {
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 5px solid #000000;
    background-color: #05E279;
    border-radius: 30px;
    padding: 40px;
    max-width: 400px;
    min-height: 465px;
    position: relative;
}

.titulo-card-debe {
    font-family: 'Museo';
    font-size: 22px;
    font-weight: 700;
    background-color: #E0FFE7;
    padding: 10px 20px;
    line-height: 145%;
    padding: 15px 30px;
    border-radius: 21px;
}


.subtitulo-card-debe {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    background-color: #0000;
    padding: 10px 20px;
    line-height: 145%;
    padding: 30px 0;
    text-align: center;
    line-height: 35px;
}

.card-votar {
    font-family: 'Museo';
    position: absolute;
    bottom: -20px;
    background-color: #fff;
    color: rgba(39, 42, 45, 1);
    font-weight: 500;
    font-size: 22px;
    text-align: center;
    line-height: 145%;
    border-radius: 30px;
    border: 3px solid #000;
    padding: 10px 25px;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease, border 0.3s ease;
    display: inline-block;
}

.card-votar.active {
  background: #1EB882; /* verde */
  color: #fff;
  border-color: #1EB882;
}

.card-votar.salvai.active {
  background: rgba(120, 35, 242, 1); /* <<< aqui fica roxo sólido quando ativo */
  color: #fff;
  border-color: rgba(120, 35, 242, 1);
}

/* pseudo-elemento ocupa todo o botão, mas começa fora (embaixo) */
.card-votar.salvai:hover {
    background-color: rgba(120, 35, 242, 0.5);
    border: 3px solid #000;
    color: rgba(255, 255, 255, 1);
}

.card-votar.debe:hover {
    background-color: #05E279;
    color: rgba(255, 255, 255, 1);
}

.btn-confirmar {
    border-radius: 6px;
    background-color: #E9EEF5;
    color: rgba(148, 155, 166, 1);
    width: 277px;
    margin-top: 50px;
    padding: 5px;

    font-family: 'Inter';
    font-size: 18px;
    font-weight: 700;
    line-height: 48.352px;
    text-align: center;
    z-index: 1;
}

/* botão confirmar ativo */
.btn-confirmar.active {
  background: #1EB882;
  color: #fff;
  cursor: pointer;
}

.footer-desktop {
    display: flex;
    flex-direction: column;
}


.footer-mobile {
    display: none;
}

footer {
    background: #212121;
    position: relative; 
    z-index: 10000;     
}

.container-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 30px;
}

.content-image-footer {
    display: flex;
    flex-direction: column;
    gap: 25px;

}

.titulo-footer {
    font-family: 'Inter';
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    color: #ffff;
}


.btn-footer {
    border-radius: 6px;
    background-color: rgba(30, 184, 130, 1);
    color: #fff;
    width: 150px;
    margin-top: 10px;
    padding: 5px;

    font-family: 'Inter';
    font-size: 14px;
    font-weight: 700;
    line-height: 48.352px;
    text-align: center;
    cursor: pointer;
}
.content-social-footer {
    display: flex;
    gap: 15px;
}

.content-social-footer img {
    width: 100%;
    /* height: 22px; */
    cursor: pointer;
}

.footer-copy {
    color: #fff;
    text-align: center;
    font-family: 'Inter';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    padding-top: 20px;
    padding-bottom: 30px;
}


@media(max-width: 1320px) {
    .img-debe {
        max-width: 380px;
    }

    .img-salvia {
        max-width: 350px;
    }
}

@media(max-width: 1080px) {
    .img-debe {
        display: none;
    }

    .img-salvia {
        display: none;
    }

    .content-titulo-enquete {
        display: flex; 
        align-items: center; 
        gap: 10px
    }

    .content-titulo-enquete img{
        display: flex !important;        
            width: 90px;
        /* height: 100px; */
    }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

.menu,
.buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

    /* Responsivo */
@media (max-width: 993px) {

    .navbar-desktop {
        display: none !important;
    }

    .navbar-mobile {
        display: flex !important;
    }
      .navbar {
        justify-content: center; 
        flex-direction: column;
        flex-wrap: nowrap !important;
      }

      .navbar.active {
        height: 100%;
      }

      .content-navbar-mobile {
        display: flex;
        align-items: center;
      }

      .navbar .logo {
        margin: 0 auto;
      }

      .navbar .menu,
      .navbar .buttons {
        display: none;
        gap: 0;
      }

      .navbar.active .menu,
      .navbar.active .buttons {
        transform: translateY(-10px);
        transition: all 0.4s ease;  
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        /* gap: 5px; */
      }

      .navbar .hamburger {
        display: flex;
      }

      .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Esconde menu e botões inicialmente */
  .navbar .menu,
  .navbar .buttons {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 20px;

    transition: left 0.4s ease;
  }

  /* Quando navbar tiver a classe active, mostra menu expandido */
  .navbar.active {
    background: #fff;
    /* min-height: 100vh;  */
    padding: 20px;
  }

  .navbar.active .menu,
  .navbar.active .buttons {
    display: flex;

  transition: left 0.4s ease;
    /* gap: 15px; */
  }

  .navbar.active .buttons button,
  .navbar.active .dropdown {
    width: 100%;
  }
  
    }

@media (max-width: 800px) {
    .container-inicio  {
        display: flex;
        flex-direction: column;
    }

    .content-titulo {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-geral {
        padding: 23px;
    }

    .titulo-card {
        font-size: 28px;
    }

    .subtitulo-card {
        padding: 10px 0 20px 0;
    }

    .card-nomes-ia {
        padding: 10px 15px;
        font-size: 20px;
        left: 30%;
        bottom: -40px;
    }

    .content-cards-nomes {
        display: flex;
        flex-direction: column;
    }
    .content-card-debe {
        max-width: 100%;
    }

    .content-card-salvai {
        max-width: 100%;
    }

    .footer-desktop {
        display: none;
    }


    .footer-mobile {
        display: flex;
        padding: 30px;
    }

    .footer-container {
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Logo */
    .footer-logo img {
    width: 130px;
    margin-bottom: 20px;
    }

    /* Botão verde */
    .footer-btn {
    display: inline-block;
    background: #1EB882;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    margin-bottom: 25px;
    transition: background 0.3s ease;
    }
    .footer-btn:hover {
    background: #159867;
    }

    /* Links */
    .footer-links {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-links li {
    margin: 10px 0;
    }
    .footer-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 15px;
    transition: color 0.3s ease;
    }
    .footer-links a:hover {
    color: #fff;
    }

    /* Aplicativos */
    .footer-apps h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    }

    .app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 220px;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    }
    .app-btn img {
    height: 20px;
    }
    .app-btn:hover {
    background: #fff;
    color: #121212;
    }
}