@font-face {
  font-family: 'Montserrat';
  font-weight: 100;
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 300;
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 900;
  font-style: normal;
  src: url('../fonts/Montserrat-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 900;
  font-style: italic;
  src: url('../fonts/Montserrat-BlackItalic.ttf') format('truetype');
}


/* Fonts */
:root {
  --default-font: "Montserrat",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #666666; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2dc997; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #666666; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2dc997; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2f3942;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #445360;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.hero img.img-logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 550px;
  margin: 0 auto;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
  text-transform: uppercase;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  display: flex !important;
}

.btn-inscricao {
  border-radius: 20px;
  background: #253E80;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  padding: 7px 20px;
  transition: all 0.5s;
}

.btn-inscricao:hover,
.btn-inscricao:focus,
.btn-inscricao:active {
  color: #FFF;
  background: rgba(37, 62, 128, 0.60);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #FFF;
}

.mobile { display: none !important; }

@media (max-width: 1199px) {
  .mobile { display: block !important; }
  .desktop { display: none !important; }

  .hero img.img-logo {
    width: 75%;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #06143B;
    font-size: 16px;
    font-style: italic;
    font-weight: 800;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: aLL 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #06143B;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #06143B;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #06143B;
    font-size: 32px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #06143B;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #FFF;
  background-color: #06143B;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer img {
  display: block;
  margin: 0 auto;
  max-width: 100px;
}

.footer p {
  color: #FFF;
  font-size: 12px;
  font-weight: 100;
  margin: 0;
  margin-top: 20px;
}

.footer img.img-footer-1 {
  position: absolute;
  top: -350px;
  left: 0;
  max-width: 400px;
}

.footer img.img-footer-2 {
  position: absolute;
  top: -200px;
  right: 0;
  max-width: 300px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #06143B transparent #06143B transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #f39306;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(243, 148, 7, 0.80);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 81px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  color: #FFF;
  font-size: 26px;
  font-weight: 800;
  background: #F39407;
  padding: 5px 15px;
  line-height: 1;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}

.hero p {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 0 0;
}

.hero .card-hero {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 13, 26, 0.60);
  backdrop-filter: blur(12.5px);
  padding: 40px 30px;
  line-height: 1;
}

.hero .card-hero p {
  color: #FFF;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}

.hero .card-hero .img-icone {
  float: left;
  width: 45px;
  margin-right: 25px;
  margin-top: -10px;
}

.hero .card-hero .duplo {
  margin-top: 5px !important;
}

.hero .card-hero .duplo2 {
  margin-top: 0 !important;
}

.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  color: #06143B;
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.about .content p {
  color: #62656A;
  font-size: 18px;
  font-weight: 400;
  margin: 30px 0;
}

.about .content a {
  border-radius: 10px;
  background: #253E80;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  padding: 10px 25px;
  transition: all 0.5s;
}

.about .content a:hover,
.about .content a:focus,
.about .content a:active {
  background: rgba(37, 62, 128, 0.60);
  color: #FFF;
}

/*--------------------------------------------------------------
# KIT
--------------------------------------------------------------*/
.stats {
  background-image: url('../img/bg-testeira.png'), linear-gradient(277deg, #06143B 36.77%, #0F37A1 108.79%);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  padding: 6% 0;
}

.stats h2 {
  color: #F39407;
  font-size: 26px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.stats p {
  color: #FFF;
  font-size: 17px;
  font-style: italic;
  font-weight: 900;
  float: left;
  margin-bottom: 35px;
}

.stats p img {
  float: left;
  margin-right: 20px;
}

.stats p img.first {
  margin-top: -15px;
}

.stats p img.last {
  margin-top: 30px;
}

.stats p.observacao {
  color: #FFF;
  font-size: 10px;
  font-weight: 300;
  font-style: normal;
}



/*--------------------------------------------------------------
# PROVA
--------------------------------------------------------------*/
.prova {
  background: url('../img/bg-prova-1.png') no-repeat left bottom content-box, url('../img/bg-prova-2.png') no-repeat right top content-box;
  padding: 30px 0;
}

.prova .row {
  padding: 10% 0;
}

.prova h2 {
  color: #06143B;
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.prova p {
  color: #253E80;
  font-size: 16px;
  font-weight: 400;
}


/*--------------------------------------------------------------
# EFEITO LETREIRO
--------------------------------------------------------------*/
.letreiro {
  background: #F39306;
  padding: 30px 0;
}

.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  margin: 0;
}

.marquee__content li {
  color: #FFF;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  list-style: none;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 12s linear infinite;
}


/* CUSTOM RADIO */
.custom-radio {
  display: block;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 10px;
  border: 1px solid #253E80;
  background: rgba(30, 30, 30, 0.10);
  padding: 10px 15px;
  padding-left: 55px;
  color: #62656A;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.5s;
}

/* Hide the browser's default radio button */
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 13px;
  left: 15px;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
  border: 1px solid #253E80;
}

.custom-radio:hover {
  color: #253E80;
}

.custom-radio.check {
  border: 1px solid #253E80;
  background: #253E80;
  color: #FFF;
}

/* On mouse-over, add a grey background color */
.custom-radio:hover input ~ .checkmark {
  background-color: #D9D9D9;
}

/* When the radio button is checked, add a blue background */
.custom-radio input:checked ~ .checkmark {
  background-color: #D9D9D9;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio .checkmark:after {
  top: 4px;
  left: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #F39407;
}

.btn-laranja {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  background: #F39407;
  display: block;
  padding: 10px 20px;
  text-align: center;
  transition: all 0.5s;
}

.btn-laranja:hover,
.btn-laranja:focus,
.btn-laranja:active {
  color: #FFF;
  background: rgba(243, 148, 7, 0.80);
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.accordion-button {
  border-radius: 10px !important;
  background: #253E80;
  color: #FFF;
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
}

.accordion-item {
  border: unset;
  margin-bottom: 20px;
}

.accordion-body {
  background: #253E80;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #253e80;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: unset;
}



/*--------------------------------------------------------------
# INSCRIÇÃO
--------------------------------------------------------------*/
.testeira {
  background-image: url('../img/testeira-inscricao.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  margin-top: 83px;
}

.testeira .section-title {
  text-align: left;
  padding-bottom: 0;
}

.testeira h2 {
  color: #FFF;
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  width: 60%;
}

.accordion-button::after {
  background-image: url('../img/Mais_Azul.png');
}

.accordion-button:not(.collapsed)::after {
  background-image: url('../img/Menos_Azul.png');
}

.formulario h2 {
  color: #253E80;
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.formulario .label {
  color: #06143B;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.formulario input,
.formulario select {
  border-radius: 10px;
  border: 1px solid #253E80;
  background: #FFF;
  color: #253E80;
  font-size: 12px;
  font-weight: 500;
  padding: 15px;
  margin-bottom: 20px;
  display: block;
  width: 100%;
}

.formulario a {
  color: #253E80;
  font-size: 10px;
  font-weight: 500;
  text-decoration: underline;
}

.formulario input:disabled,
.formulario input.disabled {
  border-radius: 10px;
  border: 1px solid rgba(98, 101, 106, 0.10);
  background: rgba(30, 30, 30, 0.10);
  margin-bottom: 10px;
}

.formulario .custom-radio {
  padding: 22px 15px;
  padding-left: 55px;
}

.formulario .checkmark {
  top: 24px;
}

.formulario .btn-cadastro {
  border-radius: 10px;
  background: #F39407;
  border: unset;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  padding: 20px;
  text-align: center;
  display: block;
  width: 100%;
  transition: all 0.5s;
}

.formulario label.aceite {
  color: #011f49;
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}

.formulario a.link_arquivo {
  color: #011f49;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
}

.formulario input[type=checkbox] {
  float: left;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  padding: 0;
  color: #011f49;
  font-size: 16px;
  font-weight: 400;
  width: 1.25em;
  height: 1.25em;
  border: 0.15em solid #C7C7CC;
  border-radius: 3px;
  transform: translateY(-0.075em);
  display: grid;
  margin: 0 auto;
  margin-right: 10px;
  margin-top: 2px;
}

.formulario input[type=checkbox]::before {
  content: "";
  width: 0.75em;
  height: 0.75em;
  border-radius: 3px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: #f9a51a;
  margin: 2px 0 0 2px;
}

.formulario input[type=checkbox]:checked::before {
  transform: scale(1);
}


/*===== Vertical Timeline =====*/
.timeline h2 {
  color: #06143B;
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline p {
  color: #62656A;
  font-size: 22px;
  font-weight: 400;
}

.timeline .sticky-top {
  top: 120px;
  z-index: 10;
}

#conference-timeline {
  position: relative;
}

#conference-timeline .conference-center-line {
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 68px;
  background: rgba(6, 20, 59, 0.20);
  z-index: 0;
}

#conference-timeline .conference-timeline-content {
  padding-top: 67px;
  padding-bottom: 67px;
}

.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 0 70px;
}

.timeline-article .content-right-container {
  max-width: calc(100% - 150px);
  width: 100%;
}

.timeline-article .content-right {
  position: relative;
  width: auto;
  padding: 15px 25px;
  min-height: 60px;
}

.timeline-article p {
  margin: 0;
  padding: 0;
  color: #62656A;
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.timeline-article .content-right-container {
  float: right;
}

.timeline-article .meta-date {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 60px;
  color: #fff;
  border-radius: 150px;
  background: #0F37A1;
}

.timeline-article .meta-date .date {
  display: block;
  text-align: center;
  font-weight: 900;
}

.timeline-article .meta-date .date {
  font-size: 20px;
  line-height: 60px;
}

@media only screen and (max-width: 830px) {
  #conference-timeline .timeline-start,
  #conference-timeline .timeline-end {
    margin: 0;
  }
  #conference-timeline .conference-center-line {
    margin-left: 0;
    left: 69px;
  }
  .timeline-article .meta-date {
    margin-left: 0;
    left: 0;
  }

  .timeline-article .content-right-container {
    max-width: 100%;
    width: auto;
    float: none;
    margin-left: 110px;
    min-height: 53px;
  }

  .timeline-article .content-right {
    padding: 8px 25px;
    min-height: 65px;
  }

  .timeline-article p {
    font-size: 18px;
  }

  .timeline-article .content-right:before {
    display: none;
  }

  .timeline-article {
    margin-bottom: 40px;
  }

  #conference-timeline .conference-timeline-content {
    padding-bottom: 0;
  }

}

@media only screen and (max-width: 400px) {
  .timeline-article p {
    margin: 0;
  }
  .timeline-article p span.article-number {
    display: none;
  }
  
}

.alert .close {
  border: unset !important;
  background: transparent !important;
  font-size: 30px !important;
  top: 17px !important;
}


@media (max-width: 1199px) {
  .hero .card-hero p {
    font-size: 22px;
  }

  .hero .card-hero {
    padding: 25px;
  }

  .hero .card-hero .img-icone {
    width: 40px;
  }

  .about .content h3,
  .about .content p,
  .stats h2 {
    text-align: center;
  }

  .about .content a {
    display: block;
    text-align: center;
  }

  .stats {
    background-image: linear-gradient(326deg, #06143B 22.73%, #0F37A1 82.02%);
    padding-bottom: 0;
  }

  .stats h2 {
    margin-bottom: 40px;
  }

  .stats p {
    display: block;
    width: 100%;
  }

  .stats p img {
    width: 40px;
    margin-top: -10px !important;
  }

  .stats p img.last {
    margin-top: 20px !important;
  }

  .col-m-p-5 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .prova {
    text-align: center;
    background: unset;
    padding: 30px 0;
  }

  .testeira {
    background-position: 90% center;
    margin-top: 65px;
  }

  .footer img.img-footer-1,
  .footer img.img-footer-2 {
    display: none;
  }

  .navmenu a.btn-inscricao {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    padding: 7px 20px;
    transition: all 0.5s;
    margin: 20px;
    text-align: center;
    justify-content: center;
  }

  .kit-mobile {
    max-width: 100%;
    float: right;
  }
}