#principal {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: #092e4f;
  position: relative;
  box-sizing: border-box;
  margin-top: 94px;
}


.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  bottom: 0;
  animation: float 4s infinite;
}

@keyframes float {
  0% {
      bottom: 0%;
      transform: scale(0.8);
      opacity: 0;
  }
  20% {
      opacity: 1;
  }
  100% {
      bottom: 100%;
      transform: scale(1.2);
      opacity: 0;
  }
}
#painel {
  min-height: 90vh;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conteudo-painel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  width: 90%;
}

.logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  flex-shrink: 0;
}

.texto-painel {
  color: #fff;
  max-width: 600px;
  flex: 1 1 50%;
}

.titulo {
  color: #fdbd03;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.subtitulo {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.4;
}

.amarelo {
  color: #fdbd03;
  font-weight: 600;
}


/* simple section */
.simple-section {
  padding: 60px 20px;
  background-color: rgba(253, 189, 3, 0.05);
}

.simple-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.simple-title {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.simple-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.text-content {
  flex: 1;
}

.image-container {
  flex: 1;
  min-width: 45%;
  border-radius: 10px;
  overflow: hidden;
}

.responsive-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
}

.saiba-mais-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fdbd03;
  color: #000000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.saiba-mais-btn:hover {
  background-color: #c79b15;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(253, 189, 3, 0.3);
}

   /* reverse section */
   .reverse-section {
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.05);
}

.reverse-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.reverse-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.reverse-container {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row; /* Direção padrão (imagem esquerda/texto direita) */
}

.image-container {
    flex: 1;
    min-width: 45%;
    border-radius: 10px;
    overflow: hidden;
}

.responsive-image {
    width: 60%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.text-content {
    flex: 1;
    color: #ffffff;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.saiba-mais-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fdbd03;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.saiba-mais-btn:hover {
    background-color: #c79b15;
}


/* form section */

.form-ctt {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.form-entre-ctt {
  max-height: 750px;
  max-width: 500px;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  border: solid 2px #fdbd03;
}

h1 {
  color: #fdbd03;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2em;
}

.form-columns {
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  color: #333;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

textarea {
  height: 120px;
  resize: vertical;
}

.required::after {
  content: "*";
  color: #e74c3c;
  margin-left: 3px;
}

button {
  background-color: #fdbd03;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #c79b15;
}

.required-notice {
  margin-top: 20px;
  color: #7f8c8d;
  font-size: 0.9em;
  text-align: center;
}

.success-message {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4CAF50;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: none;
  animation: slideUp 0.5s ease-out;
  z-index: 1000;
}


.whats {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}


