@font-face {
    font-family: 'Host Grotesk';
    src: url('fonts/HostGrotesk-Regular.woff2') format('woff2'),
         url('fonts/HostGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Host Grotesk';
    src: url('fonts/HostGrotesk-Bold.woff2') format('woff2'),
         url('fonts/HostGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}




 body {
            font-family: 'Host Grotesk', sans-serif;
            background-color: #fef7f9;
            margin: 0;
            padding: 0;
            color: #666666;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            text-align: center;
            margin-bottom: 40px;
        }
        header img {
            max-width: 150px;
            margin-bottom: 20px;
        }
        header nav {
            margin-bottom: 30px;
        }
        header a {
            text-decoration: none;
            color: #000;
            font-weight: bold;
            margin: 0 20px;
            cursor: pointer;
        }
         h2 {
            color: #18b0a6;
        }
        h3 {
            color: #333;
        }
        h4 {
          color: #333333;
	 font-size: 30px;
        }
        h5 {
         	color: #4f4f4f;
	 font-size: 9px;
        }
       h6 {
            color: #18b0a6;
        }


        p {
            line-height: 1.6;
        }
	 p1 {
            line-height: 1.0;
        }
        section {
            display: none;
            margin-bottom: 50px;
        }
        section.active {
            display: block;
        }
        footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            background-color: #f0f0f0;
            color: #666;
            font-size: 0.9em;
        }
		.logo {
        width: 150px;
	   }
	   
	   .faq-item {
      margin-bottom: 10px;
      border-bottom: 1px solid #00C49F;
      padding-bottom: 10px;
    }

    .faq-question {
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 5px;
    }

    .faq-answer {
      display: none;
    }
	.modal {
      display: none; /* Escondido por padrão */
      position: fixed;
      z-index: 1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); 
    }

    .modal-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 600px;
      background-color: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 24px;
      cursor: pointer;
      background-color: transparent;
      border: none;
      font-weight: bold;
    }

    .modal-content img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
     .buttons-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .button {
            display: block;
            width: 200px;
            padding: 10px;
            margin: 10px;
            text-align: center;
            text-decoration: none;
            color: #fff;
            background-color: #009F9D;
            border-radius: 5px;
            font-size: 16px;
            border: none;
        }

        .button:hover {
            background-color: #00BB92;
        }

        .button:active {
            background-color: #004080;
        }


/* Estilo do botão flutuante */
.whatsapp-button {
    position: fixed; /* Mantém o botão fixo na tela */
    bottom: 20px; /* Distância do rodapé */
    right: 20px; /* Distância da lateral direita */
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 30px;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}

/* Estilo do tooltip */
.tooltip {
    position: absolute;
    bottom: 80px; /* Ajusta a posição acima do botão */
    right: 0; /* Alinha o tooltip à direita */
    transform: translateX(0); /* Remove o deslocamento centralizado */
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Criando uma seta para o tooltip */
.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: auto;
    right: 15px; /* Ajusta a seta para manter o alinhamento */
    transform: translateX(0);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

/* Animação do tooltip ao passar o mouse */
.whatsapp-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}