* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", Arial, Helvetica, sans-serif;
}

html {
  font-size: clamp(14px, 2vw, 18px);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.col {
  width: 100%;
  flex: 1 0 0%;
  padding: 15px;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  text-decoration: underline;
}

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.875em;
  color: #666;
}

ul,
ol {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.justify-left {
  display: flex;
  justify-content: left;
}

.justify-right {
  display: flex;
  justify-content: right;
}

.dsp-button-1 {
  width: auto;
  height: auto;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 1rem 2em;
  background: #00AA7D;
  text-decoration: none;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}

.dsp-button-2 {
  width: auto;
  height: auto;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 1rem 2em;
  background: #0b548f;
  text-decoration: none;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}

.dsp-title-h1 {
  font-size: 2.5rem;
  color: #0b548f;
  margin: 0 0 1rem 0;
}

.dsp-title-h2 {
  font-size: 1.5rem;
  color: #0b548f;
  margin: 0 0 1rem 0;
}

@media (max-width: 768px) {
  .display-768px {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .container {
    flex-direction: column !important;
  }
}
.hero {
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2rem;
  background-image: url("https://image.email.desenvolvesp.com.br/lib/fe30117473640579741777/m/1/ca2012f3-d74d-43cc-8bc3-14625ee6c31b.jpg");
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 0 0 60px 0;
  }
}
.hero .container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }
}
.hero .container .header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
}
@media (max-width: 768px) {
  .hero .container .header {
    position: relative;
  }
}
.hero .container .header .col {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .container .header .col img {
  width: 200px;
}
.hero .container .header .col .dsp-button-cta {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem 2rem;
  font-weight: bold;
  border-radius: 10px;
  background: #00AA7D;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: medium;
}
.hero .container .hero-content {
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .hero .container .hero-content {
    align-items: center;
    text-align: center;
  }
}
.hero .container .hero-content img {
  width: 80%;
}
.hero .container .hero-content p {
  color: #005c4f;
  font-size: 1.4rem;
  margin: 0;
}
@media (max-height: 768px) {
  .hero .container .hero-content p {
    font-size: 1.2rem;
  }
}
.hero .container .hero-content .dsp-button-cta {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 3rem;
  font-weight: bold;
  color: #fff;
  border-radius: 100px;
  background: transparent;
  text-decoration: none;
  background-color: #005c4f;
  text-align: center;
  font-size: large;
}
.hero .container .hero-content .dsp-button-cta:hover {
  background-color: #004d43;
}
.hero .container .hero-image {
  display: flex;
}
.hero .container .hero-image img {
  width: 100%;
  max-width: 100%;
}

.agenda hr {
  outline-color: #004d43;
}
.agenda .container {
  display: flex;
  flex-direction: column;
  padding: 100px 15px;
  gap: 2rem;
}
@media (max-width: 768px) {
  .agenda .container {
    padding: 60px 15px;
    gap: 4rem;
  }
}
.agenda .container .title .dsp-title-h1 {
  text-align: center;
  color: #00995a;
  margin: 0;
}
.agenda .container .title .p {
  margin: 0;
  text-align: center;
  font-size: 1rem;
}
.agenda .container .hr {
  width: 40%;
  border-top: 2px solid #00874f;
  margin: 0 auto 1rem auto;
}
.agenda .container .eventos {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 768px) {
  .agenda .container .eventos {
    flex-direction: column;
  }
}
.agenda .container .eventos .evento-destaque {
  display: flex;
  flex: 1.2;
  flex-direction: column;
  background-color: #00995a;
  border-radius: 20px;
  justify-content: space-evenly;
  align-items: center;
  padding: 2rem;
}
.agenda .container .eventos .evento-destaque .abas {
  position: relative;
  margin-top: -55px;
  width: 100%;
  display: flex;
  flex: 1;
  justify-content: space-evenly;
}
.agenda .container .eventos .evento-destaque .abas .aba {
  border: 5px solid #fff;
  width: 35px;
  height: 60px;
  background-color: #00995a;
  border-radius: 100px;
}
.agenda .container .eventos .evento-destaque .info {
  width: 100%;
  display: flex;
  padding: 1.2rem 0 0 0;
  gap: 1rem;
  color: #fff;
  border-radius: 20px;
  justify-content: space-evenly;
  align-items: center;
}
.agenda .container .eventos .evento-destaque .info .data {
  flex-direction: column;
  font-size: 1rem;
  display: flex;
}
.agenda .container .eventos .evento-destaque .info .data .semana {
  font-size: 1.2rem;
  font-weight: 500;
  color: #005a35;
  margin: 0;
}
.agenda .container .eventos .evento-destaque .info .data .dia {
  font-family: "Montserrat";
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  line-height: 1;
  flex-direction: column;
}
.agenda .container .eventos .evento-destaque .info .data .dia span {
  font-family: "Montserrat";
  font-size: 6rem;
}
.agenda .container .eventos .evento-destaque .info .line {
  height: -webkit-fill-available;
  border: 1px solid #00874f;
}
.agenda .container .eventos .evento-destaque .info .endereco .local {
  margin: 0;
}
.agenda .container .eventos .evento-destaque .info .endereco .local span {
  font-weight: bold;
}
.agenda .container .eventos .evento-destaque .info .endereco .horario {
  font-family: "Montserrat";
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #fff;
  margin: 1rem 0;
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
}
.agenda .container .eventos .lista-eventos {
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #edeeef;
  padding: 24px;
  border-radius: 20px;
}
.agenda .container .eventos .lista-eventos .datas {
  overflow: auto;
  max-height: 250px;
}
.agenda .container .eventos .lista-eventos h3 {
  padding: 0 0 0.5rem 0;
  font-size: 1.2rem;
  color: #00874f;
  border-bottom: 1px solid #d7d7d7;
  margin: 0;
}
.agenda .container .eventos .lista-eventos .datas {
  list-style: none;
  padding: 0;
  margin: 0;
}
.agenda .container .eventos .lista-eventos .datas li {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0.7rem 0;
  align-items: center;
  border-bottom: 1px solid #d7d7d7;
}
.agenda .container .eventos .lista-eventos .datas li:last-child {
  border-bottom: none;
}
.agenda .container .eventos .lista-eventos .datas li .dia {
  font-family: "Montserrat";
  font-size: 0.8rem;
  text-align: center;
  color: #fff;
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1;
  background: #00995a;
  border-radius: 50px;
  padding: 12px 15px;
}
.agenda .container .eventos .lista-eventos .datas li .dia span {
  font-weight: bold;
  font-family: "Montserrat";
  font-size: 1.4rem;
}
.agenda .container .eventos .lista-eventos .datas li .cidade {
  color: #00874f;
  font-weight: bold;
  line-height: normal;
  display: flex;
  flex-direction: column;
}
.agenda .container .eventos .lista-eventos .datas li .cidade small {
  font-size: 0.8rem;
  color: #666;
  font-weight: 400;
}
.agenda .container .cta {
  width: 100%;
  text-align: center;
  padding: 1rem;
}
.agenda .container .cta a {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 3rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #fff;
  border-radius: 100px;
  background: transparent;
  text-decoration: none;
  background-color: #005c4f;
  text-align: center;
  font-size: medium;
}

.video {
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  color: #005c4f;
  text-align: center;
  background-image: url("https://image.email.desenvolvesp.com.br/lib/fe30117473640579741777/m/1/249d8c0b-73af-46bf-9b25-60cefbe9e552.png");
  background-position: center;
  background-size: cover;
}
.video h2 {
  color: #005c4f;
}
.video .video-container iframe {
  width: 60%;
  height: 500px;
  left: 0;
  top: 0;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .video .video-container iframe {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .video .video-container iframe {
    height: 300px;
  }
}

.form-user {
  width: 100%;
  padding: 60px 0;
  background-image: url("https://image.email.desenvolvesp.com.br/lib/fe30117473640579741777/m/1/f7af5663-542e-48d9-a025-ca42cc356d46.png");
  background-position: center;
  background-size: cover;
}
.form-user .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 992px) {
  .form-user .container {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .form-user .container .justify-right {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .form-user .container .title {
    text-align: center;
  }
}
.form-user .container .title .dsp-title-h1 {
  line-height: normal;
  margin: 0;
}
.form-user .container .title .p {
  margin: 0;
  font-size: 1rem;
}
.form-user .form-wrapper {
  max-width: 520px;
  color: #fff;
  background: #00995a;
  padding: 50px 40px;
  border-radius: 40px;
}
.form-user .form-wrapper label {
  display: block;
  font-weight: bold;
  font-size: 1rem;
  margin: 0 1rem 0.5rem 1rem;
}
.form-user .form-wrapper input[type=text],
.form-user .form-wrapper input[type=email],
.form-user .form-wrapper select {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  border: 0;
  box-sizing: border-box;
  background: #0b7c4e;
}
.form-user .form-wrapper input[type=text]::-moz-placeholder, .form-user .form-wrapper input[type=email]::-moz-placeholder, .form-user .form-wrapper select::-moz-placeholder {
  color: #00cd78;
}
.form-user .form-wrapper input[type=text]::placeholder,
.form-user .form-wrapper input[type=email]::placeholder,
.form-user .form-wrapper select::placeholder {
  color: #00cd78;
}
.form-user .form-wrapper input[type=submit] {
  width: 100%;
  background: #fff;
  color: #00995a;
  border: none;
  padding: 12px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
}
.form-user .form-wrapper input[type=submit]::-moz-placeholder {
  color: #fff;
}
.form-user .form-wrapper input[type=submit]::placeholder {
  color: #fff;
}
.form-user .form-wrapper input[type=submit]:hover {
  background: #163a5c;
}
.form-user .form-wrapper .erro {
  color: red;
  font-size: 12px;
  display: none;
  margin-top: -14px;
  margin-bottom: 12px;
}
.form-user .form-wrapper .optin-label {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin: 0 0 1rem 0;
}
.form-user .form-wrapper .optin-label input[type=checkbox] {
  width: auto;
  flex-shrink: 0;
}

.form-user #eventoConfirmado {
  background: #0b548f;
  text-align: center;
  padding: 1rem;
  width: 100%;
  border-radius: 10px;
  display: none;
}

.footer {
  width: 100%;
  display: flex;
  padding: 2em 0;
  background: #000;
  justify-content: center;
  align-items: center;
}
.footer .container {
  text-align: center;
}
.footer img {
  width: 550px;
}
@media (max-width: 992px) {
  .footer img {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */