﻿:root {
  --brand-blue: #005d99;
  --brand-blue-02: #2d4b71;
  --action-blue: #0073ff;
  --action-green: #b8d916;
  --action-green-01: #d3e52e;
  --action-green-04: #86bf00;
  --action-green-06: #5ea600;
  --blue-03: #a6dbff;
  --blue-04: #7fc6ff;
  --blue-05: #509be5;
  --blue-06: #2972cc;
  --blue-07: #114da6;
  --blue-08: #00337f;
  --blue-09: #002459;
  --blue-10: #001a40;
  --black: #1a1a18;
  --white: #fff;
  --gray-01: #faf9f5;
  --gray-02: #f2f1ed;
  --gray-03: #e5e4e1;
  --gray-04: #cccbc8;
  --gray-05: #b2b1af;
  --gray-06: #8c8b89;
  --gray-07: #666564;
  --gray-08: #4c4c4b;
  --gray-09: #333332;
  --gray-10: #262625;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  /* font-size: 1.6rem; */
  text-decoration: none !important;
  border: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth !important;
}

img {
  display: inline-block;
  width: auto;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  min-width: auto;
  padding: 0;
  margin-left: 0;
  font-family: 'Open Sans', sans-serif;
}

input[type='text'] {
  padding: 0;
}

div.accordion {
  border: 1px solid #cccbc8;
  border-radius: 5px;
}

div.translate {
  width: 100%;
  background-color: var(--gray-07);
}

div.translate .gtranslate_wrapper {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: end;
  gap: 0.2rem;
}
div.translate .gtranslate_wrapper a img {
  width: 100%;
  max-width: 2rem;
  height: 100%;
  max-height: 2rem;
  object-fit: cover;
  border-radius: 50%;
  opacity: 1;
  vertical-align: baseline;
}

.pos-container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}

.swiper {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.4);
  transition: opacity 0.75s, visibility 0.75s;
}

.loading-hidden {
  opacity: 0;
  visibility: hidden;
}

#loading::after {
  content: '';
  width: 6rem;
  height: 6rem;
  border: 1rem solid var(--gray-04);
  border-top-color: var(--gray-07);
  border-radius: 50%;
  animation: loading 0.75s ease infinite;
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

img.curso-capa {
    width: 100%;
    max-width: 67.5rem;
    height: 100%;
    max-height: 35rem;
    -o-object-fit: cover;
    object-fit: cover;
}
 
.curso-conceito img {
    max-width: 5.7rem;
}
 