
/*===CALL FONT====*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/*============*/

/*fix wrapper widh*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
/**/

body {display: flex; justify-content: center; align-items: center; width: 100%;
 height: 100vh;  padding: 0; margin: 0;    font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;   background: url("imgs/fundo.webp") no-repeat; background-size: cover; background-position: center center;}
#wrapper { max-width: 1300px; width: 1300px; padding: 30px 50px;}
.top {display: flex;  align-items: center;}
.top_left {width: 30%; display: block; margin-right: 20px;}
.top_left img {width: 100%; }
.top_right {
    width: 70%;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 26px;
    line-height: 27px;
    font-weight: 700;
    color:#275317;
}
.top_right .small {
    display: block;
    font-size: 13.5px;
    line-height: 20px;
    color: #000;
}
.content form { width: 100%; display: flex; padding-top: 15px;}
.column_left {width: 62%; padding-left: 30px;}
.column_left p { font-size: 15px ;}
.column_right {
    width: 38%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.column_right .atividade {width: 270px; text-align: center; }
.column_right .atividade span {
    display: block;
    margin-bottom: 10px;
   font-family: "Playfair Display", serif;
    font-size: 19px;
    color:#035F3E;
}

h2 { font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 500; margin-top: 25px; color:#035F3E;}

.list ul { margin:0 ; padding: 0;}
    .list li { list-style:  none; margin-bottom: 10px; display: flex; align-items: center;  } 
.list li img { width: 40px; height: auto;  flex-shrink: 0; margin-right: 10px;   }

input { 
width: 100%;
height: 30px;
border: 1px solid #D7B56D;
margin-bottom: 20px; padding-top: 15px; padding-bottom: 15px;  padding-left: 10px;   font-size: 25px;
    color: #898989;
}




 select { 
  
width: 100%;
 appearance: none;          /* Remove o estilo padrão (funciona na maioria dos navegadores) */
  -webkit-appearance: none;  /* Safari/Chrome */
  -moz-appearance: none;     /* Firefox */
border: 1px solid #D7B56D;
margin-bottom: 20px; padding-top: 15px; padding-bottom: 15px;  padding-left: 10px;   font-size: 15px;
    color: #2B2A29;
        padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 5px;

    background-image: url('imgs/seta_drop.svg');

  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  }




::placeholder { 
   
    font-size: 25px;
    color: #898989;
}
::-moz-placeholder {  
    font-size: 25px;
    color: #898989}
::-webkit-input-placeholder { 
    font-size: 25px;
    color: #898989}


.oferta {
    font-size: 35px;
    color: #035F3E;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 15px;
}

.boasvindas {  font-size: 20px;
    color: #035F3E;
    font-weight: 400;
margin: 0; color:#2B2A29;}

.seismeses {
  
    color: #2B2A29;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.consentimento {
    max-width: 365px;
  margin-top: 15px;
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

.check-circle {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  user-select: none;
}

.check-circle input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #275317;
  border-radius: 50%; /* torna o checkbox circular */
  transition: all 0.2s ease;
}

.check-circle input:checked ~ .checkmark {
  background-color: #275317;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check-circle input:checked ~ .checkmark:after {
  display: block;
}

.check-circle .checkmark:after {
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}


.btn-enviar {
  background-color: #035F3E;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
  cursor: pointer;
  padding: 18px 8px !important;
  transition: background-color 0.3s ease;
  margin-top: 20px;

  /* 👇 animação da sombra */
  animation: shadowPulse 1s infinite;
}

/* Hover normal */
.btn-enviar:hover {
  background-color: #048F5B;
}

/* 👇 definição da animação */
@keyframes shadowPulse {
  0%, 100% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 20px rgba(3, 95, 62, 0.7); /* sombra verde suave */
  }
}

.prr {margin-top: 50px;}


.mensagem {
  margin-top: 15px;
  font-size: 15px;
  font-weight: bold;
}

.mensagem.sucesso {
  color: #035F3E;
}

.mensagem.erro {
  color: #c0392b;
}

/*========== MOBILE RESPONSIVO ==========*/
@media (max-width: 768px) {

  body {
    height: auto;
    padding: 20px;
  }

  #wrapper {
    max-width: 100%;
    width: 100%;
    padding: 20px;
  }

  .top {
    flex-direction: column;
    align-items: flex-start;
  }

  .top_left,
  .top_right {
    width: 100%;
    margin: 0 0 15px 0;
    padding: 0;
  }

  .top_right {
  
    line-height: 22px;
  }


  .content form {
    flex-direction: column;
    padding-top: 10px;
  }

  .column_left,
  .column_right {
    width: 100%;
    padding: 0;
  }

 

  input, select {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .column_right .atividade {
    width: 100%;
  }

  .btn-enviar {
    width: 100%;
    font-size: 20px;
    padding: 15px 0 !important;
  }

  .prr {
    margin-top: 30px;
    width: 80%;
  }

  .list li img {
    width: 30px;
    margin-right: 8px;
  }


  .consentimento {
    max-width: 100%;
    font-size: 12px;
  }

  select {
    background-position: right 10px center;

    padding-top: 8px;
    padding-bottom: 8px;
  }
}
