:root {
  --azul-principal: #00849F;
  --azul-hover: #00E8DA;
  --azul-escuro: #005E6D;
  --fundo-escuro: #002B36;
  --texto-branco: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f4f8;
}

.top-header {
  background-color: var(--fundo-escuro);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.logo img {
  height: 80px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--texto-branco);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--azul-hover);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--azul-hover);
  left: 0;
  bottom: -4px;
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions a {
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.btn-login {
  color: var(--azul-hover);
}

.btn-cta {
  background-color: var(--azul-hover);
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--azul-principal);
  color: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Titillium+Web:wght@700&display=swap');

  .hero-title {
    font-family: 'Titillium Web', sans-serif;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid #00E8DA;
    width: 0;
    animation: typing 4s steps(60, end) forwards, blink 0.8s infinite step-end alternate;
  }

  .hero-title .destaque {
    color: #00E8DA;
    text-shadow: 0 0 5px #00E8DA;
  }
  .hero-section {
  position: relative;
  background: url('../img/banner.png') center center / cover no-repeat;
  color: white;
  padding: 100px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  z-index: 1;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 43, 54, 0.65); /* Overlay escuro */
  z-index: 0;
}

.hero-content {
  max-width: 515px;
  z-index: 2;
  position: relative;
}


  .hero-section h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .hero-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.95;
  }

  .hero-benefits {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn-hero-primary {
    background-color: #00E8DA;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn-hero-primary:hover {
    background-color: #00c8c8;
  }

  .btn-hero-secondary {
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border: 2px solid #00E8DA;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }

  .btn-hero-secondary:hover {
    background-color: #fff;
    color: #000;
  }
  

.cards-recursos h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #002B36;
  font-family: 'Titillium Web', sans-serif;
}
.cards-recursos {
  position: relative;
  background:#DDDDDD; /* overlay escuro */
  padding: 100px 20px;
  color: white;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  background: url('../img/mosaico.png') center center / cover no-repeat;
}



.cards-recursos h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color:#005E6D;
  font-family: 'Titillium Web', sans-serif;
  position: relative;
  z-index: 2;
}



.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.card {
background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  padding: 30px 20px;
  width: 100%;
  max-width: 280px;

  transition: transform 0.3s;
  color: #ffffff;
}

.card:hover {
  transform: translateY(-6px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00E8DA;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: bold;
}

.card p {
  font-size: 0.95rem;
  color: #d0e9eb;
  line-height: 1.5;
}


.card:hover {
  transform: translateY(-6px);
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #00E8DA;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #005E6D;
  font-weight: bold;
}

.card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}.porque-uso {
  background-color: #002B36;
  padding: 100px 30px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.porque-content {
  max-width: 90%;
}

.porque-content h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 2.4rem;
  color: #00E8DA;
  margin-bottom: 50px;
  text-align: center;
}

.porque-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #f1f1f1;
  text-align: left;
}

.porque-lista {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d0e9eb;
}

.porque-lista li {
  margin-bottom: 10px;
}

.btn-cta-porqueeuquero {
  background-color: #00E8DA;
  color: #000;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.btn-cta-porqueeuquero:hover {
  background-color: #00b5b5;
  color: #fff;
}

/* Animações CSS baseadas no atributo data-anim */

[data-anim] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

[data-anim].active {
  opacity: 1;
  transform: translateY(0);
}

[data-anim="fade-left"] {
  transform: translateX(-40px);
}

[data-anim="fade-right"] {
  transform: translateX(40px);
}

[data-anim="fade-up"] {
  transform: translateY(40px);
}.formulario-leve {
  position: relative;
  background: url('../img/backgroundlogin.jpg') center center / cover no-repeat;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

.formulario-leve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 43, 54, 0.55); /* overlay azul escuro */
  z-index: 0;
}

.formulario-leve-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 500px;
  width: 100%;
  background: rgba(0, 63, 77, 0.9);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.formulario-leve-box h2 {
  font-size: 2rem;
  color: #00E8DA;
  margin-bottom: 10px;
  font-family: 'Titillium Web', sans-serif;
}

.formulario-leve-box p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 25px;
}

.formulario-leve-box input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.formulario-leve-box button {
  background-color: #00E8DA;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.formulario-leve-box button:hover {
  background-color: #00849F;
  color: white;
}
.rodape-checkpoint {
  background-color: #002B36;
  padding: 40px 20px;
  color: #d0e9eb;
  font-size: 0.95rem;
  text-align: center;
  position: relative;
}

.rodape-container {
  max-width: 1000px;
  margin: 0 auto;
}

.logo-rodape img {
  height: 60px;
  filter: brightness(1.2) drop-shadow(0 0 5px #00E8DA);
  margin-bottom: 15px;
}

.contato-rodape p {
  margin: 10px 0;
  font-size: 1rem;
  color: #ffffff;
}

.info-rodape {
  margin-top: 20px;
}

.info-rodape p {
  margin-bottom: 8px;
  color: #a2cfd1;
}

.info-rodape a {
  color: #00E8DA;
  text-decoration: none;
  font-weight: bold;
}

.info-rodape a:hover {
  text-decoration: underline;
}
.hamburguer {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburguer div {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: 0.3s ease;
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 43, 54, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.popup-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  max-width: 420px;
  text-align: center;
  animation: fadeIn 0.4s ease-out;
}

.popup-content h2 {
  color: #00849F;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.popup-content p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.popup-content button {
  background-color: #00E8DA;
  color: #000;
  font-weight: bold;
  padding: 12px 26px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.popup-content button:hover {
  background-color: #00849F;
  color: #fff;
}
#menu-mobile{text-align: center;font-size:1.3em;display:none;border-top:solid 2px #00E0D1}
    #box-btn{text-align: center;margin-bottom:60px;margin-top:50px}
    #app-box{text-align: center;width:50%;display:flex;justify-content:center}
    #section-app{width: 50%;text-align:left}
    #box-app{display: flex;justify-content:center;width:80%;margin-left:10%}
    #nav-mobile{display: none;}
    #quebra{display:none;}
    #img-app{width:400px;border-radius:20px;}
    @media(max-width:900px){
      .popup-content{width: 90%;margin-left: 5%;}
      #box-app{display: block;}
      .top-header{display:none}
      #nav-mobile{display: inline;}
      #funcionalidades h2{margin-top: -60px;font-size: 1.6em;text-align: left;margin-left: 20px;}
      #quebra{display:block;}
      .card-container{display: flex;overflow-y: auto;max-width: 90%;}
      .card{min-width: 280px;}
      .porque-content h2{font-size: 1.6em;text-align: left;margin-top: -30px;}
      #section-app{width: 100%;margin-left: -5%;margin-top: -40px;}
      #imagine{display: none;}
      #img-app{width: 300px;border-radius: 10px;margin-left: 5dvb;}
      #app-box{width: 90%;}
      #box-btn{margin-top: 20px;margin-bottom: 20px;margin-left: -4%;}
      .formulario-leve-box{margin-top: -50px;margin-bottom: -50px;}
    }
@keyframes fadeIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}




@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--fundo-escuro);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
    gap: 20px;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburguer {
    display: flex;
  }

  .top-header {
    position: relative;
  }
}
@media (max-width: 600px) {
  .logo-rodape img {
    height: 50px;
  }

  .rodape-checkpoint {
    font-size: 0.85rem;
  }
}


  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2rem;
    }

    .hero-section p {
      font-size: 1rem;
    }

    .hero-cta {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }

  @keyframes blink {
    50% { border-color: transparent; }
  }

  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
      white-space: normal;
      animation: none;
      border: none;
      width: 100%;
    }
  }



    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
    }
    @media (max-width: 768px) {
.top-header {
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
padding: 15px 20px;
}

.logo img {
height: 45px;
}

.hamburguer {
margin-left: auto;
margin-right: 15px;
}

.nav-actions {
display: none; /* esconde os botões no header mobile */
}

.nav-menu.active + .nav-actions {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 10px;
padding: 10px 20px;
background-color: var(--fundo-escuro);
border-top: 1px solid #00424f;
}

.nav-actions a {
font-size: 0.95rem;
padding: 10px 18px;
white-space: nowrap;
border-radius: 6px;
}

/* Mostra as ações dentro do menu ao clicar */
.nav-menu.active ~ .nav-actions {
display: flex;
}
}





