.flipdown.flipdown__theme-dark .rotor-group-heading {
    color: #FFF;
}
@font-face {
    font-family: 'Exo';
    src: url('fontes/exo2.0-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }  

  @font-face {
    font-family: 'Exo B';
    src: url('fontes/exo2.0-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
  }  
  
  @font-face {
  font-family: 'Cal Sans';
  font-style: normal;
  font-weight: normal;
  src: url('fontes/CalSans-Regular.ttf') format('ttf');
}

  body {
    margin: 0;
    padding: 0;
    font-family: 'Exo', sans-serif;
    background: #58AD65;
    background: radial-gradient(circle,rgba(88, 173, 101, 1) 0%, rgba(6, 39, 37, 1) 100%);
    color: #d0ffd3;
    display: flex; /* Ativa o Flexbox */
    justify-content: center; align-items: center; /* Centraliza horizontalmente/Verticalmente */
    min-height: 100vh; min-height: 100svh; /* Garante que o body ocupe toda a altura da tela */
  }

  .wave {
    background: rgba(4, 48, 19, 0.685);
    border-radius: 1000% 1000% 0 0;  
    width: 200%; height: 19em;
    position: fixed;
    bottom: 0; left: 0;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    z-index: -1;
  }
  
  .wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
  }
  
  .wave:nth-of-type(3) {
    bottom: -3.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
  }
  
  @keyframes wave {
    2% {transform: translateX(1);}
    25% {transform: translateX(-25%);}
    50% {transform: translateX(-50%);}
    75% {transform: translateX(-25%);}
    100% {transform: translateX(1);}
  }
  
    @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .card {
    background-color: #062725AA;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 130, 0.3);
    border: 1px solid rgba(0, 255, 130, 0.5);
    text-align: center;
    max-width: 500px;
    width: 90%;
    align-items: center;
    display: flex; /* Usado para centralizar o conteúdo interno */
    flex-direction: column; /* Alinha os itens na vertical */
    justify-content: center; /* Centraliza verticalmente */
    position: relative; /* Para o posicionamento do botão de contato */
    z-index: 1; /* Para garantir que o card fique acima do fundo animado */
    animation: fadeInUp 3s ease forwards;
  }

  .logo {
    max-width: 350px;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  h1 {
    font-size: 1.9rem;
    color: #a5f3b4;
    margin-bottom: 10px;
    font-family: 'exo b', sans-serif;
    font-weight: bold; 
  }

  p {
    font-size: 1rem;
    color: #91b99b;
    margin: 20px 0;
    line-height: 25px;
  }

  @media (max-width: 768px) {    

    .card {
        max-width: 290px;
        width: 90%;
    }

    .logo {
        width: 280px;
        margin-bottom: 20px;
        border-radius: 10px;
      }

      h1 {
        font-size: 1.5rem;
        color: #a5f3b4;
        margin-bottom: 10px;
        font-family: 'exo b', sans-serif;  
      }
}



  .footer {
    margin-top: 30px;
    font-size: 14px;
    color: #607d6b;
  }

  small {

    font-size: 0.8rem;
    color: #607d6b;
  }  

  @media (max-width: 300px) {
    h1 { font-size: 22px; }
    p { font-size: 14px; }
    .logo { width: 150px; }
  }

  .botao-contato {
    display: inline-block;
    background-color: #1c3f2e;
    color: #a5f3b4;
    text-decoration: none;
    padding: 10px 18px;
    margin: 5px 8px;
    border-radius: 30px;
    border: 1px solid #00ff91;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .botao-contato:hover {
    background-color: #00ff91;
    color: #062725;
    transform: scale(1.05);
  }
  
  .botao-contato i {
    margin-right: 6px;
  }

.quadrado-home {
  position: fixed;
  right: 20px; bottom: 20px; width: 20px; height: 20px;
  background: #1c3f2e;
  border-radius: 4px;
  z-index: 1000;
  transition: background 0.2s, transform 0.2s;
  display: block;
}
.quadrado-home:hover {
  background: #1c3f2e;
  transform: scale(1.15);
}