@font-face {
  font-family: "PolySans";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/PolySans/Median.ttf");
}
@font-face {
  font-family: "PolySans";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/PolySans/Slim.ttf");
}
@font-face {
  font-family: "PolySans";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/PolySans/SlimItalic.ttf");
}
body {
  font-family: "PolySans", Arial, Verdana, Sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background-color: #f5f5f5;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.modalVideo {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
  width: 100%;
  height: 100%;
}
.modalVideo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.7);
}
.modalVideo .body {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.7);
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 800px;
  z-index: 15;
}
.modalVideo .body video {
  width: 100%;
}

.sticky-btn {
  display: inline-block;
  padding: 20px;
  border-radius: 8px;
  background-color: #EF0026;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 10;
  font-family: "PolySans", Arial, Verdana, Sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.sticky-btn:hover {
  background-color: #a11129;
}
@media (max-width: 768px) {
  .sticky-btn {
    display: none;
  }
}

.cta_topo {
  display: none;
  padding: 20px;
  border-radius: 8px;
  background-color: #EF0026;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  z-index: 10;
  font-family: "PolySans", Arial, Verdana, Sans-serif;
  font-size: 20px;
  font-weight: 600;
  width: 90%;
  margin: 0 auto;
}
.cta_topo:hover {
  background-color: #a11129;
}
@media (max-width: 768px) {
  .cta_topo {
    display: inline-block;
  }
}

.hero2 {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: url("../images/img-topo-new.webp") no-repeat center;
  background-size: cover;
}
@media (max-width: 768px) {
  .hero2 {
    background-position: 37% center;
  }
}
.hero2:before {
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero2__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
  z-index: -2;
}
.hero2__video.mobile {
  display: none;
}
@media (max-width: 768px) {
  .hero2__video.mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .hero2__video.desktop {
    display: none;
  }
}
.hero2__content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  height: 80vh;
  color: #fff;
  z-index: 1;
  padding: 20px;
}
@media (max-width: 768px) {
  .hero2__content {
    justify-content: center;
    height: 100%;
  }
}
.hero2 button {
  background: none;
  border: none;
}
@media (max-width: 768px) {
  .hero2 button {
    width: 100px;
    height: 100px;
    margin: 50px 0;
  }
  .hero2 button img {
    width: 100%;
  }
}
.hero2 h1 {
  text-align: center;
  position: absolute;
  top: 30px;
  left: 30px;
}
.hero2 h1 img {
  max-width: 70%;
}
@media (max-width: 768px) {
  .hero2 h1 {
    top: 4vh;
    left: auto;
  }
}
.hero2 h2 {
  font-size: 48px;
  font-weight: bold;
  max-width: 780px;
}
@media (max-width: 768px) {
  .hero2 h2 {
    font-size: 32px;
  }
}

.hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 60px 0;
  color: #fff;
  background: #ff0134;
  background: url("../images/bg-hero.jpg") no-repeat center center;
  background-size: cover;
}
@media (max-width: 768px) {
  .hero {
    background: url("../images/bg-hero-mobile.jpg") no-repeat center center;
    padding: 0;
    background-size: cover;
  }
}
.hero .container {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    justify-content: flex-start;
    gap: 5vh;
    padding: 3vh 20px 60px;
  }
}
.hero .hero-left,
.hero .hero-right {
  width: 50%;
}
.hero .hero-left {
  text-align: left;
}
.hero .hero-left img.logo {
  width: 100%;
  max-width: 397px;
  margin: 20px 0 60px;
}
@media (max-width: 768px) {
  .hero .hero-left img.logo {
    margin: 0 0 5vh;
  }
}
.hero .hero-left .event-info {
  font-size: 16px;
  line-height: 1.5em;
  display: flex;
  gap: 10px;
}
.hero .hero-left .event-info a {
  color: white;
  text-decoration: none;
}
.hero .hero-left .event-info a:hover {
  text-decoration: underline;
}
.hero .hero-left .event-info.top {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .hero .hero-left .event-info.top {
    margin-bottom: 25px;
  }
}
.hero .hero-left .event-info span {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2em;
}
@media (max-width: 768px) {
  .hero .hero-left .event-info span {
    font-size: 28px;
  }
}
.hero .hero-right h1.headline {
  font-size: 64px;
  margin: 0;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero .hero-left,
  .hero .hero-right {
    width: 100%;
  }
  .hero .hero-right h1.headline {
    font-size: 36px;
    text-align: left;
    letter-spacing: -0.9px;
    line-height: 1.1em;
  }
}
.hero .hero-bottom {
  width: 100%;
  margin-top: 90px;
}
@media (max-width: 768px) {
  .hero .hero-bottom {
    margin-top: 0px;
  }
}
.hero .hero-bottom .hero-button {
  font-size: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  width: 100%;
  padding: 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #ff0134;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  box-sizing: border-box;
}

.event-details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 60px 20px;
  color: white;
  background: url("../images/bg-sobre-evento.jpg") no-repeat center center;
  background-color: #001e4e;
  background-size: cover;
}
.event-details .event-title,
.event-details .event-description {
  width: 100%;
  max-width: 950px;
}
.event-details .event-title {
  font-size: 48px;
  line-height: 1.2em;
  margin-bottom: 70px;
  color: transparent;
  background: linear-gradient(45deg, #00e5d4, #f9f9f9);
  -webkit-background-clip: text;
}
.event-details .event-description {
  font-size: 24px;
  line-height: 1.2em;
}
@media (max-width: 768px) {
  .event-details .event-title {
    font-size: 32px;
  }
  .event-details .event-description {
    font-size: 20px;
  }
}

.why-it-matters {
  padding: 50px 20px;
  color: #001e4e;
  background: url("../images/detalhe-why-matters.png") no-repeat 100% 0 #ebe8e2;
}
@media (max-width: 768px) {
  .why-it-matters {
    padding: 50px 0px;
    background-position: -1% -2%;
  }
}
.why-it-matters .why-title {
  font-size: 48px;
  margin-bottom: 60px;
  color: #3406c9;
}
@media (max-width: 768px) {
  .why-it-matters .why-title {
    font-size: 32px;
    margin-top: 10px;
  }
}
.why-it-matters .why-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  padding: 60px;
  background: url("../images/bg-papel.png") no-repeat top center;
  background-size: cover;
}
.why-it-matters .why-content .column-left,
.why-it-matters .why-content .column-right {
  width: 48%;
}
.why-it-matters .why-content .column-left p,
.why-it-matters .why-content .column-right p {
  line-height: 1.2em;
}
.why-it-matters .why-content .column-left .highlight,
.why-it-matters .why-content .column-right .highlight {
  color: #3406c9;
}
.why-it-matters .why-content .column-left p {
  font-size: 32px;
  font-weight: 500;
}
.why-it-matters .why-content .column-right {
  font-size: 24px;
}
@media (max-width: 768px) {
  .why-it-matters .why-content .column-left,
  .why-it-matters .why-content .column-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .why-it-matters .why-content {
    padding: 50px 20px 100px;
  }
}
.why-it-matters .why-bottom {
  font-size: 24px;
}
.why-it-matters .why-bottom big {
  font-size: 32px;
  font-weight: 500;
  display: block;
}
.why-it-matters .nielsen {
  font-size: 16px;
  display: block;
  margin: 30px 0 80px;
  text-decoration: none;
  color: #888;
  cursor: default;
}

.schedule {
  display: flex;
  padding: 50px 0;
  background: #ebe8e2;
}
.schedule .container {
  display: flex;
  width: 100%;
  max-width: 100%;
  padding: 0;
  flex-wrap: wrap;
}
.schedule .schedule-left {
  width: 35%;
}
.schedule .schedule-left .schedule-title {
  font-size: 98px;
  position: sticky;
  top: 50px;
  margin: 0;
  padding: 0 0 120px 160px;
  color: #001e4e;
  background: url("../images/detalhe-programacao.png") no-repeat top left;
}
.schedule .schedule-left .schedule-title.mobile {
  display: none;
}
.schedule .schedule-right {
  width: 65%;
  max-width: 620px;
  position: relative;
}
.schedule .schedule-right #tit-sch-mob {
  display: block;
}
@media (min-width: 1024px) {
  .schedule .schedule-right #tit-sch-mob {
    display: none;
  }
}
.schedule .schedule-right .time {
  color: #001e4e;
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .schedule .schedule-right .schedule-title.mobile {
    font-size: 80px;
    display: block;
    position: sticky;
    margin: 0 0 70px;
    padding: 50px 20px;
    color: #001e4e;
    background: url("../images/detalhe-programacao.png") left center no-repeat;
    background-size: contain;
    line-break: anywhere;
    transition: 0.3s linear;
    width: 100%;
    box-sizing: border-box;
  }
  .schedule .schedule-right .schedule-title.mobile.small {
    font-size: 36px;
    padding: 20px;
    background-position: -9px -12px;
    position: fixed;
    top: 0;
    bottom: auto;
    background-color: #ebe8e2;
  }
  .schedule .schedule-right .schedule-title.mobile.abs {
    position: absolute;
    top: auto;
    bottom: 0;
  }
}
.schedule .schedule-right .schedule-item {
  margin-bottom: 40px;
}
.schedule .schedule-right .schedule-item time {
  font-size: 24px;
  display: block;
  margin-bottom: 25px;
  color: #001e4e;
}
.schedule .schedule-right .schedule-item h3 {
  font-size: 24px;
  margin-bottom: 40px;
  color: #ff0134;
}
.schedule .schedule-right .schedule-item .panelists {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #ccc7be;
}
.schedule .schedule-right .schedule-item .panelists .panelist {
  font-size: 15px;
  display: flex;
  align-items: center;
  max-width: 45%;
  gap: 24px;
}
.schedule .schedule-right .schedule-item .panelists .panelist b {
  font-size: 20px;
  display: block;
}
.schedule .schedule-right .schedule-item .panelists .panelist img {
  max-width: 100px;
}
.schedule .schedule-right .schedule-item .panelists .panelist p {
  font-size: 15px;
  margin: 0;
  color: #001e4e;
}
@media (max-width: 768px) {
  .schedule {
    padding-top: 0;
  }
  .schedule .schedule-left, .schedule .schedule-right {
    width: 100%;
  }
  .schedule .schedule-right {
    padding: 0 0px 60px;
  }
  .schedule .schedule-right .schedule-item {
    padding: 0 20px 0px;
  }
  .schedule .schedule-right .schedule-item h3 {
    font-size: 20px;
  }
  .schedule .schedule-right .schedule-item .panelists {
    flex-wrap: wrap;
  }
  .schedule .schedule-right .schedule-item .panelists .panelist {
    max-width: 100%;
    width: 100%;
    align-items: center;
  }
  .schedule .schedule-right .schedule-item .panelists .panelist:nth-child(1) {
    margin-bottom: 30px;
  }
  .schedule .schedule-left .schedule-title.desktop {
    display: none;
  }
}

.registration {
  padding: 130px 0;
  color: #001e4e;
  background: linear-gradient(180deg, #9af955 0%, #00d698 100%);
}
.registration .container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.registration .registration-left {
  width: 40%;
  background: url("../images/detalhe-form.png") no-repeat left 100%;
}
.registration .registration-left h2 {
  font-size: 98px;
  margin: 0;
  padding: 0 0 40px 160px;
  color: #001e4e;
}
.registration .registration-left h2.mobile {
  display: none;
}
.registration .registration-left p, .registration .registration-left ul {
  list-style: disc outside;
  font-weight: 600;
  padding: 0 0px 0 170px;
  max-width: 280px;
  font-weight: 20px;
}
.registration .registration-left p li, .registration .registration-left ul li {
  margin-bottom: 10px;
}
.registration .registration-right {
  width: 100%;
  max-width: 630px;
}
.registration .registration-right .tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.registration .registration-right .tabs button {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  width: 48%;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  color: rgba(0, 30, 78, 0.2);
  border: 2px solid transparent;
  border-radius: 8px;
  background: rgba(0, 78, 48, 0.1);
}
@media (max-width: 768px) {
  .registration .registration-right .tabs button {
    font-size: 16px;
    padding: 10px;
  }
}
.registration .registration-right .tabs button.active, .registration .registration-right .tabs button:hover {
  color: #001e4e;
  border: 2px solid #001e4e;
  background: rgba(0, 78, 48, 0);
}
.registration .registration-right .tab-content label {
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin: 10px 0 5px 0;
  color: #001e4e;
}
.registration .registration-right .tab-content input,
.registration .registration-right .tab-content select {
  font-family: "PolySans", Arial, Verdana, Sans-serif;
  box-sizing: border-box;
  width: 100%;
  padding: 6px 10px 10px 0;
  color: #001e4e;
  border: none;
  border-bottom: 2px solid #001e4e;
  background: none;
  font-size: 40px;
}
@media (max-width: 768px) {
  .registration .registration-right .tab-content input,
  .registration .registration-right .tab-content select {
    font-size: 20px;
  }
}
.registration .registration-right .tab-content input::-moz-placeholder, .registration .registration-right .tab-content select::-moz-placeholder {
  font-style: italic;
  color: #388e5f;
}
.registration .registration-right .tab-content input::placeholder,
.registration .registration-right .tab-content select::placeholder {
  font-style: italic;
  color: #388e5f;
}
.registration .registration-right .tab-content input.error,
.registration .registration-right .tab-content select.error {
  border-color: #FF0134;
  color: #FF0134;
}
.registration .registration-right .tab-content select {
  padding: 13px 10px 10px 0;
  font-size: 16px;
  border-bottom: 2px dashed #001e4e;
}
.registration .registration-right .registration-button {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  margin-top: 66px;
  padding: 21px;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: 8px;
  background-color: #001e4e;
}
.registration .registration-right .registration-button:disabled {
  opacity: 0.6;
  cursor: default;
}
.registration .registration-right .formSent {
  font-family: "PolySans", Arial, Verdana, Sans-serif;
  color: #001e4e;
}
.registration .registration-right .formSent h4 {
  font-size: 64px;
  margin: 0;
}
@media (max-width: 768px) {
  .registration .registration-right .formSent h4 {
    font-size: 32px;
  }
}
.registration .registration-right .formSent p {
  font-size: 36px;
}
@media (max-width: 768px) {
  .registration .registration-right .formSent p {
    font-size: 20px;
  }
}
.registration .registration-right .formSent a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: #001e4e;
  text-align: center;
  color: white;
  text-decoration: none;
  padding: 25px 0;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .registration {
    padding: 50px 20px;
  }
  .registration .registration-left, .registration .registration-right {
    width: 100%;
    max-width: 100%;
  }
  .registration .registration-left h2.desktop {
    display: none;
  }
  .registration .registration-left h2.mobile {
    display: none;
    font-size: 40px;
    position: static;
    margin: 0 0 40px;
    padding: 0;
    color: #001e4e;
    background: url("../images/detalhe-form.png") no-repeat left 100%;
  }
}

.about-skidun {
  position: relative;
  padding: 160px 20px 90px;
  background-color: #ebe8e2;
}
.about-skidun .container {
  max-width: 960px;
  padding: 0;
}
.about-skidun .top {
  display: flex;
  justify-content: center;
  position: relative;
}
.about-skidun .about-title {
  font-size: 3rem;
  font-size: 128px;
  font-weight: 400;
  font-style: italic;
  position: relative;
  z-index: 2;
  margin: 1rem -6.5rem 0 0;
  color: transparent;
  background: linear-gradient(264deg, #ff0134, #ffcd00);
  -webkit-background-clip: text;
}
.about-skidun .about-image {
  position: relative;
}
.about-skidun .about-image img {
  position: relative;
  z-index: 1;
  max-width: 680px;
  border-radius: 10px;
}
.about-skidun .about-content {
  margin-top: -12rem;
}
.about-skidun .about-content .social {
  display: flex;
  gap: 20px;
}
.about-skidun .about-content .about-description {
  font-size: 24px;
  line-height: 1.5em;
  max-width: 500px;
  margin-top: 50px;
  color: #001e4e;
}
@media (max-width: 768px) {
  .about-skidun {
    padding: 64px 20px 0px;
    overflow: hidden;
  }
  .about-skidun .top {
    min-height: 350px;
  }
  .about-skidun .about-title {
    font-size: 64px;
    font-weight: 400;
    z-index: 2;
    margin: 0;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
  }
  .about-skidun .about-image {
    position: relative;
    width: 100%;
    z-index: 1;
    padding-top: 126px;
  }
  .about-skidun .about-image img {
    position: absolute;
    width: 95%;
    right: -50px;
    z-index: 1;
    max-width: 100%;
  }
  .about-skidun .about-content {
    margin-top: 30px;
  }
  .about-skidun .about-content .social {
    display: flex;
    gap: 10px;
  }
  .about-skidun .about-content .about-description {
    font-size: 22px;
    margin: 45px 0 0;
  }
}

.client-logos {
  padding: 50px 0 80px;
  background-color: #ebe8e2;
}
.client-logos .logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 16px;
}
.client-logos .logo-grid img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .client-logos .logo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bullet-points {
  margin-top: -150px;
  padding: 300px 0 0;
  background: url("../images/detalhe-entregas.png") no-repeat 0 0 #ebe8e2;
  background-size: 100%;
}
@media (max-width: 768px) {
  .bullet-points {
    padding: 0;
    margin: 0;
    background: #ebe8e2;
  }
}
.bullet-points .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 80px;
}
.bullet-points .container > a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: #001e4e;
  text-align: center;
  color: white;
  text-decoration: none;
  padding: 25px 0;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
}
@media (max-width: 768px) {
  .bullet-points .container > a {
    font-size: 16px;
  }
}
.bullet-points h3 {
  font-size: 32px;
  width: 100%;
  margin-bottom: 100px;
  color: #001e4e;
}
@media (max-width: 768px) {
  .bullet-points h3 {
    margin-bottom: 82px;
  }
}
.bullet-points .column {
  width: 45%;
}
.bullet-points .point {
  display: flex;
  margin-bottom: 95px;
  gap: 47px;
}
@media (max-width: 768px) {
  .bullet-points .point {
    margin-bottom: 64px;
    gap: 30px;
  }
}
.bullet-points .point img {
  width: 40px;
  height: 40px;
  margin-top: 23px;
}
.bullet-points .point .point-title {
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 30px 0;
  color: #001e4e;
}
.bullet-points .point .point-description {
  font-size: 20px;
  margin: 0;
  color: #001e4e;
}
@media (max-width: 768px) {
  .bullet-points .column {
    width: 100%;
  }
}

footer {
  padding: 20px;
  text-align: center;
  color: white;
  background-color: #f04786;
}/*# sourceMappingURL=main.css.map */