/* CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 20px 0;
  font-weight: bold;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

strong {
  font-weight: bold;
}

.margin {
  margin: 25px;
}

.btn-entrar {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 0.85em 3em 0.85em 3em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px #fff;
  transition: background 0.3s ease-in-out;
}
.btn-entrar:hover {
  background-color: #fff;
  color: #666;
  border: 1px solid #666;
}

.btn-send {
  transition: all 0.25s ease-in-out;
  position: relative;
  display: inline-block;
  padding: 0.85em 3em 0.85em 3em;
  border-radius: 0.25em;
  cursor: pointer;
  border: 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 13pt;
  line-height: 1.65em;
  -webkit-text-stroke: 0.1px;
  border: 1px solid #cacaca;
  background-color: rgba(255, 255, 255, 0.3137254902);
}
.btn-send:hover {
  background: #3d3d3d;
}
.btn-send:active {
  background-color: #26283f;
}

.max-width {
  max-width: 1024px;
  width: 100%;
  height: auto;
}

.middle-width {
  max-width: 768px;
  width: 100%;
  height: auto;
}

.center-div {
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

.stroke-text {
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.satellasoft-logo {
  margin: 30px 10px;
}
.satellasoft-logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.flex-inline {
  gap: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.flex-inline div {
  width: 100%;
}
@media (max-width: 768px) {
  .flex-inline {
    flex-direction: column;
  }
}

.mv {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #8e2e38 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #8e2e38;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

.alert-success {
  background-color: #d0f8cd;
  color: #2e8e4c;
  border: 1px solid #2e8e4c;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
}

.alert-danger {
  background-color: #edb4b9;
  color: #8e2e38;
  border: 1px solid #8e2e38;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
}

.page-header {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/banners/sala-de-aula-learn-iepe.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.page-header .content {
  max-width: 768px;
  width: 100%;
  padding: 20px;
  text-align: center;
}
.page-header .content .logo {
  text-align: center;
}
.page-header .content .logo img {
  border: none;
  margin: 50px;
  max-width: 150px;
  width: 100%;
  height: auto;
}
.page-header .content h1,
.page-header .content p {
  color: #fff;
}
.page-header .content h1 {
  font-weight: 300;
}
.page-header .content p {
  font-size: 18px;
}

.content-type {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 150px 20px;
  text-align: center;
  width: 100vw;
}
.content-type h2,
.content-type p {
  color: #666;
}
.content-type h2 {
  margin-bottom: 30px;
}
.content-type p {
  font-size: 18px;
}
.icons-section {
  width: 100vw;
  min-height: 100vh;
  padding: 50px 20px;
  color: #fff;
  background-image: url("../img/banners/background-effect.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
}
.icons-section .icon-section-flex {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 50px;
}
.icons-section .icon-section {
  max-width: 350px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.icons-section .icon-section .round-icon {
  width: 150px;
  height: 150px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1725490196);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.icons-section .icon-section .round-icon:hover {
  background-color: rgba(255, 255, 255, 0.3647058824);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}
.icons-section .icon-section .round-icon:active {
  box-shadow: 0 0 10px rgb(169, 215, 252);
}
.icons-section .icon-section .line-vertical {
  width: 1px;
  height: 75px;
  background-color: #fff;
}
.icons-section .icon-section .round-div {
  width: 25px;
  height: 25px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
}
.icons-section h3 {
  margin-bottom: 40px;
  font-weight: 300;
}
.icons-section p {
  font-size: 18px;
}
@media (max-width: 768px) {
  .icons-section .icon-section-flex {
    width: 100%;
    flex-direction: column;
  }
}

.icon-section {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.icon-section.animate {
  opacity: 1;
  transform: translateY(0px);
}

.courses-sections {
  padding: 50px 10px;
  width: 100vw;
  min-height: 100vh;
  background: url("../img/banners/bgtr.svg") top right no-repeat, url("../img/banners/bgbl.svg") bottom left no-repeat, url("../img/banners/overlay.png"), linear-gradient(45deg, #27263e, #2c424e, #2f394e);
}
.courses-sections .courses-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}
.courses-sections .course-card {
  text-align: left;
}
.courses-sections .course-card img {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: grayscale(0.3);
  cursor: pointer;
  transform: all 0.3s;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5254901961);
}
.courses-sections .course-card img:hover {
  filter: grayscale(0);
}
.courses-sections .course-card h3 {
  padding: 0;
  margin: 0;
}
.courses-sections .course-card div {
  width: 100%;
  margin-bottom: 50px;
}
.courses-sections h2,
.courses-sections h3,
.courses-sections p {
  color: #fff;
}
.courses-sections h2,
.courses-sections h3 {
  font-weight: 300;
}
@media (max-width: 768px) {
  .courses-sections .courses-section-grid {
    grid-template-columns: 1fr;
  }
}

.form-section {
  width: 100vw;
  padding: 50px 10px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-image: url("../img/banners/banner_forms.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  text-align: center;
}
.form-section .form {
  margin: 50px auto;
  text-align: left;
  max-width: 768px;
  width: 100%;
  height: auto;
}
.form-section .form label {
  font-size: 18px;
  display: block;
  margin-bottom: 3px;
}
.form-section .form .form-control {
  appearance: none;
  display: block;
  box-shadow: inset 0 0 0 1px #e6e6e6;
  background: #f8f8f8;
  width: 100%;
  padding: 15px 20px;
  border-radius: 0.25em;
  border: 0;
  color: #888;
  font-size: 1rem;
  -webkit-text-stroke: 0.1px;
}
.form-section .form .form-control:focus {
  outline: 0;
  box-shadow: inset 0 0 0 1px #0038f0;
  background: #fcfcfc;
  box-shadow: 0 0 5px #fcfcfc;
}
.form-section .form .buttons {
  margin: 20px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .form-section .courses-section-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  box-shadow: inset 0 1px 0 0 #e6e6e6;
  text-align: center;
  font-size: 18px;
  background: #f8f8f8;
  padding: 50px 20px;
  width: 100vw;
}
.footer a {
  color: #453cf0;
}
.footer .social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto;
}
.footer .social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}
.footer .social-icons img:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .products {
    margin: 0 10px;
  }
}
.products .product-category {
  margin: 25px auto;
}
.products .product-items {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  overflow-y: hidden;
  overflow-x: auto;
  gap: 20px;
  width: auto;
  padding: 0 20px;
}
.products .product-items .item {
  padding: 10px 0;
}
.products .product-items .item img {
  max-width: 320px;
  min-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 5px #ccc;
  cursor: pointer;
}
.products .product-items .item img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 5px #000;
}
.products .product-items .item h3 {
  font-size: 16px;
}
.products .product-items .item .item-details {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 10px;
}
.products .product-items .item .item-details .price {
  background-color: #21bc19;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}
.products .product-items .item .item-details .quantity {
  background-color: #0038f0;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}
.products .items-buttons {
  margin-top: 10px;
  display: flex;
  width: 100%;
  gap: 10px;
}
.products .items-buttons .btn-scroll {
  width: 32px;
  height: 32px;
  position: relative;
  font-weight: bold !important;
  border: none;
  background-color: #eee;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 2px #333333;
  border-radius: 5px;
}
.products .items-buttons .btn-scroll:hover {
  transform: scale(1.1);
}
.products .items-buttons .btn-scroll:active {
  box-shadow: 0 0 3px #000;
}

#detail-modal {
  width: 100vw;
  height: 100vh;
  background-color: rgba(39, 38, 62, 0.8117647059);
  position: fixed;
  z-index: 999999;
  top: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
#detail-modal .btn-modal-close {
  width: 28px;
  height: 28px;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: #b41414;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 0 5px red;
  cursor: pointer;
}
#detail-modal .content {
  max-width: 480px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 5px #000;
  border-radius: 5px;
  padding: 10px;
  overflow-y: auto;
  margin: 20px 0;
}
#detail-modal .content .thumb {
  max-width: 250px;
  width: 100%;
  height: auto;
}
#detail-modal .content .btn-buy {
  padding: 5px 10px;
  border: 2px solid #35b92e;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  color: #35b92e;
  margin: 20px 0;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
#detail-modal .content .btn-buy:hover {
  background-color: #35b92e;
  color: #fff;
  box-shadow: 0 0 3px #000;
}
#detail-modal .content .item-details {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 15px;
  margin-top: 20px;
}
#detail-modal .content .item-details .price {
  background-color: #21bc19;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}
#detail-modal .content .item-details .quantity {
  background-color: #0038f0;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

.hide {
  display: none !important;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=main.css.map */
