/*
 @media (min-width:481px)  { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. }*/

/*@media (min-width:641px)  { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
/*@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */
/* @media (min-width:1281px) { /* hi-res laptops and desktops */

/* font do menu */
@import url("https://fonts.googleapis.com/css2?family=Akshar:wght@300&display=swap");
/* font do texto */
@import url("https://fonts.googleapis.com/css2?family=ce&display=swap");
/* font rodape*/
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* main page */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Variável para controlar o tamanho do logo */
:root {
  --logo-size: 100px; /* Ajuste aqui o tamanho do logo */
}

/* Efeito flip */
.logo-flip {
  width: var(--logo-size);
  height: var(--logo-size);
  animation: flip 3s linear infinite;
  transform-origin: center;
  display: inline-block;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Texto da sigla */
.navbar-brand .logo-text {
  font-family: "Poppins", sans-serif !important;
  font-weight: 800 !important;
}

/* Estilo do menu */
#sbmsbHeader nav ul li {
  display: inline-block;
  line-height: 30px;
}

#sbmsbHeader a {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
}
.landPage {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%
    ),
    url("../image/alagoinhas.jpeg");
  width: 100%;
  height: 420px;
  overflow: hidden;
  background-size: cover;
  position: relative;
}

.main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; /* Garante que .main-text tenha a largura total do contêiner pai */
  text-align: center; /* Centraliza o texto horizontalmente */
}

.main-text .imgTitle1,
.main-text .imgTitle2 {
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin: 0; /* Remove a margem padrão dos títulos para ajudar na centralização */
  display: inline-block; /* Garante que os elementos sejam tratados como blocos, mas alinhados como texto */
  width: 100%; /* Faz cada título ocupar a largura total de .main-text */
}

.main-text .imgTitle1 {
  font-size: 30px;
}

.main-text .imgTitle2 {
  font-size: 40px;
}

.main-text a {
  display: block; /* Faz com que o link seja tratado como um bloco, permitindo a centralização via text-align */
  width: 150px;
  height: 40px;
  outline: none;
  font-size: 15px;
  font-weight: 200;
  padding: 1rem;
  margin: 20px auto 0; /* Centraliza o link horizontalmente e adiciona espaço acima */
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0ffff;
  font-family: "Asap", sans-serif;
}

/* Estilo do botão */
.center-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

.btn-inscricao {
  background-color: #00303a;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border-radius: 25px; /* Ajuste aqui para um botão mais arredondado */
  display: inline-block;
  transition: background-color 0.3s;
}

/* Estilo ao passar o mouse */
.btn-inscricao:hover {
  background-color: #19a340;
  text-decoration: none;
  color: #000;
}

.textInfo {
  white-space: pre-wrap;
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  padding-left: 50px;
  padding-right: 50px;
}

.img-fluid {
  max-height: auto;
  max-width: 10vw;
}

.bg-grey {
  background: #292929;
}

/* footer */
footer {
  width: 100%; /* garante 100% da largura */
  background: #222;
  color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0; /* espaço interno */
}

footer .logo {
  font-size: 40px;
  text-align: center;
}

footer p {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

footer .sm,
footer .links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

footer .links {
  flex-wrap: wrap;
}

footer .sm li {
  margin: 15px;
}

footer .links li {
  margin: 0 12px;
  margin-bottom: 10px;
}

footer .links li a,
footer .sm li a {
  color: #fafafa;
  transition: 0.3s ease;
  text-decoration: none;
}

footer .sm li a {
  font-size: 25px;
  padding: 8px;
  display: flex;
  align-items: center;
}

footer .sm li a:hover {
  background: #fafafa;
  color: #222;
  border-radius: 10px;
}

footer .links li a:hover {
  opacity: 0.5;
}

footer .copyright {
  text-align: center;
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid #555;
  font-size: 14px;
}

@media screen and (max-width: 500px) {
  footer .logo {
    font-size: 30px;
  }
  footer p {
    padding: 15px;
  }
  footer .sm li a {
    padding: 5px;
  }
}

/* Organizing Committee */
.orgTitle {
  background: #00303a;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.org-main-text {
  width: 80%;
  margin: 10px;
  padding: 5px;
  color: white;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.titleChair {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
  padding: 0;
}
.nameChair {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 0;
}

/* Keynote Speakers */
.speakers {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 200px;
}

.speaker {
  width: 150px;
  height: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.speaker-info {
  text-align: center;
  margin-top: 5px;
}

/* Adicionando estilos para os parágrafos dentro de .speaker-info */
.speaker-info p {
  font-family: "Roboto", sans-serif; /* Aplica a fonte Roboto */
  font-size: 14px; /* Define o tamanho da fonte */
}

.speaker-info p:first-child {
  font-weight: 700; /* Aplica peso de fonte mais pesado ao primeiro parágrafo (nome do professor) */
}

/* HISTORY */
.HText p {
  width: 1000px;
  margin: auto;
  font-size: 1.2rem;
  color: #00303a;
  text-align: justify;
  font-family: "Poppins", sans-serif;
}

.carousel-item-image {
  height: 400px;
  overflow: hidden;
}

.carousel-item-image img {
  height: 100%;
  width: auto;
}

/* CALL FOR PAPERS */

.columns {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.columns li {
  flex: 1 0 50%;
  padding: 5px;
}

.conference-topics {
  margin-left: 70px;
}

/* SUBMISION GUIDELINE*/
tg
/* ==========================
   Estilo para Sections Científicas
   Mobile First - Padrão Revista
========================== */

/* Diretrizes para Autores */
.author-directions {
  padding: 1rem;
  border-left: 4px solid #004466;
  background: #f9f9f9;
  margin-bottom: 2rem;
}

.author-directions h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.author-directions p {
  margin-bottom: 0.75rem;
  text-align: justify;
}

/* Foco e Escopo */
.about-sbmsb {
  padding: 1rem;
  background: #fff;
  margin-bottom: 2rem;
}

.about-sbmsb h2 {
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 2px solid #004466;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
}

.about-sbmsb p {
  text-align: justify;
  margin-bottom: 0.75rem;
}

/* Forma e Preparação */
.submission-guidelines {
  padding: 1rem;
  background: #f7f7f7;
  margin-bottom: 2rem;
}

.submission-guidelines h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.2rem;
}

.submission-guidelines h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
}

.submission-guidelines p {
  text-align: justify;
}

.submission-guidelines ul,
.submission-guidelines ol {
  margin-left: 1.2rem;
}

.submission-guidelines li {
  margin-bottom: 0.4rem;
}

/* Template Box */
#templateAnais {
  padding: 1rem;
  background: #eef4f7;
  margin-bottom: 2rem;
}

.linkTemplate {
  display: flex;
  align-items: left;
  gap: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.75rem;
  border-radius: 6px;
}

.linkTemplate img {
  width: 48px;
  height: auto;
}

.linkTemplate a {
  font-weight: 600;
  color: #004466;
}

.linkTemplate a:hover {
  text-decoration: underline;
}

/* Análise dos Artigos */
#analisePaper {
  padding: 1rem;
  background: #fff;
  border-top: 3px solid #004466;
}

#analisePaper h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

#analisePaper h3 {
  font-size: 1.15rem;
  margin-top: 1rem;
  font-weight: 500;
  color: #004466;
}

#analisePaper p {
  margin-bottom: 0.6rem;
}

#analisePaper ul {
  margin-left: 1.2rem;
}

#analisePaper li {
  margin-bottom: 0.4rem;
}

/* ==========================
   Responsividade Mobile First
========================== */

/* Telas pequenas */
@media (max-width: 576px) {
  .linkTemplate {
    flex-direction: column;
    align-items: flex-start;
  }

  .linkTemplate img {
    width: 40px;
  }

  .author-directions,
  .about-sbmsb,
  .submission-guidelines,
  #templateAnais,
  #analisePaper {
    padding: 0.75rem;
  }
}

/* Telas médias e grandes */
@media (min-width: 768px) {
  .author-directions,
  .about-sbmsb,
  .submission-guidelines,
  #templateAnais,
  #analisePaper {
    max-width: 900px;
    margin: auto;
  }
}

/* Presentational styles */
.lnkExternal {
  color: #54b3d6;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
}

table {
  width: 50%;
  border-collapse: collapse;
}

table,
th,
td {
  border: 1px solid black;
}

th,
td {
  padding: 15px;
  text-align: left;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

th {
  background-color: darkgoldenrod;
  color: white;
}

.gold {
  color: white;
}

.dark-blue {
  color: white;
}

/*Datas Importantes */
.table-center {
  margin: 0 auto; /* centraliza */
  width: 80%; /* controle flexível de largura */
  max-width: 1000px; /* largura máxima opcional */
  border-collapse: collapse;
}

.tg {
  border-collapse: collapse;
  border-spacing: 0;
}
.tg td,
.artigos td {
  border-color: black;
  border-style: solid;
  border-width: 1px;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  overflow: hidden;
  padding: 10px 5px;
  word-break: normal;
}
.tg th,
.artigos th {
  border-color: black;
  border-style: solid;
  border-width: 1px;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  overflow: hidden;
  padding: 10px 5px;
  word-break: normal;
  background-color: #00303a;
  color: #fff;
}

.tg .tg-sl {
  background-color: #00303a;
  color: #fff;
  text-align: left;
  vertical-align: top;
}
.tg .tg-sr {
  background-color: #fff;
  color: #00303a;
  text-align: left;
  vertical-align: top;
}
.art-title {
  text-align: center;
  vertical-align: top;
}
.art-cnt {
  text-align: center;
  vertical-align: top;
}

/*PROGRAMAÇÃO */
.thead-light {
  border: 2px solid black;
  border-bottom: 2px solid black;
}
.thead-light tr th {
  border-bottom: 1px solid #000000;
  border-left: 1px solid #000000;
}
/*CONTACT US*/
#contact {
  width: 100%;
  height: 100%;
}

.section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  font: 300 25px "Oswald", sans-serif;
  color: black;
  text-transform: uppercase;
  letter-spacing: 6px;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 840px;
}

/* Left contact page */
.form-horizontal {
  /*float: left;*/
  max-width: 400px;
  font-family: "Lato";
  font-weight: 400;
}

.form-control,
textarea {
  max-width: 500px;
  background-color: gainsboro;
  color: black;
  letter-spacing: 1px;
}

.send-button {
  margin-top: 15px;
  height: 34px;
  width: 400px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.alt-send-button {
  width: 400px;
  height: 34px;
  transition: all 0.2s ease-in-out;
}

.send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px "Lato", sans-serif;
  letter-spacing: 2px;
}

.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}

/* Begin Right Contact Page */
.direct-contact-container {
  max-width: 400px;
}

/* Location, Phone, Email Section */
.contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}

.list-item {
  line-height: 4;
  color: #aaa;
}

.contact-text {
  font: 500 18px "Lato", sans-serif;
  letter-spacing: 1.9px;
  color: black;
}

.place {
  margin-left: 62px;
}

.phone {
  margin-left: 56px;
}

.gmail {
  margin-left: 53px;
}

.contact-text a {
  color: black;
  text-decoration: none;
  transition-duration: 0.2s;
}

.contact-text a:hover {
  color: #fff;
  text-decoration: none;
}

/* Social Media Icons */
.social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.social-media-list li a {
  color: #fff;
}

.social-media-list li {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(27, 27, 27);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.social-media-list li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all 0.2s ease-in-out;
}

.social-media-list li:hover {
  background-color: #fff;
}

.social-media-list li:hover:after {
  opacity: 1;
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

.social-media-list li:hover a {
  color: #000;
}

.copyright {
  font: 200 14px "Oswald", sans-serif;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
}

hr {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Begin Media Queries*/
@media screen and (max-width: 850px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  .direct-contact-container,
  .form-horizontal {
    margin: 0 auto;
  }

  .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }
  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 569px) {
  .direct-contact-container,
  .form-wrapper {
    float: none;
    margin: 0 auto;
  }
  .form-control,
  textarea {
    margin: 0 auto;
  }

  .name,
  .email,
  textarea {
    width: 280px;
  }

  .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }
  .social-media-list {
    left: 0;
  }
  .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}

@media screen and (max-width: 410px) {
  .send-button {
    width: 99%;
  }
}

/*history*/
.carousel {
  width: 600px;
  height: 400px;
  margin: 0 auto;
}

.carousel-inner > .item > img {
  margin: 0 auto;
}

div.c-wrapper {
  width: 100%;
  /* for example */
  margin: auto;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  width: 100%;
  /* use this, or not */
  margin: auto;
}

/*guideline */

.calendar {
  margin: 20px auto;
  width: 180px;
  border: 1px solid #d5d5d5;
  text-align: center;
  box-shadow: 0px 10px 25px #ababab;

  .background {
    background: #00303a;
    color: white;
  }

  .month {
    text-transform: uppercase;
    font-size: 16px;
    padding: 5px;
  }

  .day {
    font-size: 20px;
    padding-top: 5px;
  }

  .date {
    font-size: 70px;
    font-weight: bold;
    padding-bottom: 5px;

    .date-after {
      text-transform: uppercase;
      font-weight: normal;
      font-size: 15px;
      position: relative;
      top: -30px;
    }
  }

  .time {
    font-size: 12px;
    padding: 8px;
  }
}

/* estilo para agenda */
.espaco {
  padding-bottom: 50px;
}

.pfundo {
  display: flex;
  justify-content: center;
  margin: 0;
  padding-top: 30px;
}

.section-program {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

/* Estilo para cabeçalho das seções */

.section-program::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #00303a;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-program h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

#tabProgramacao {
  font-family: "Raleway" sans-serif;
  text-decoration: none;
  font-size: 18px;
  border-collapse: collapse;
  width: 100%;
}

#tabProgramacao td,
#tabProgramacao th {
  border: 1px solid #ddd;
  padding: 8px;
}

#tabProgramacao tr th {
  background-color: #2e8b57; /* Verde Escuro sugerido para o cabeçalho */
  color: white; /* Cor do texto branco */
  text-align: center; /* Alinhar o texto ao centro */
  padding: 10px; /* Espaçamento interno */
  font-size: 16px; /* Tamanho da fonte */
  border-bottom: 2px solid #fff; /* Linha separadora */
}

#tabProgramacao th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
}
#tabProgramacao td {
  text-align: center;
}

.tabConteiner {
  margin: 0;
  padding: 20px;
}
.tMC {
  padding: 8px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Raleway" sans-serif;
  text-decoration: none;
  font-size: 18px;
}
.tMCC {
  padding: 8px;
  margin-left: 0;
  font-family: "Raleway" sans-serif;
  text-decoration: none;
  font-size: 15px;
  text-align: justify;
  text-justify: inter-word;
}
.textoPalestrante {
  padding-top: 0;
  font-family: "Raleway" sans-serif;
  text-decoration: none;
  font-size: 20px;
  text-align: justify;
  text-justify: inter-word;
  color: #025955;
  font-weight: bold;
}

.textoPalestra {
  padding-top: 0;
  font-family: "Open Sans" sans-serif;
  text-decoration: none;
  font-size: 16px;
  text-align: justify;
  text-justify: inter-word;
  color: #19a340;
}

.colPalestra {
  align-items: center;
  justify-content: center;
}

/* Estilo para a imagem circular */
.img-circle {
  width: 100px; /* Ajuste o tamanho conforme necessário */
  height: 100px;
  border-radius: 50%; /* Torna a imagem circular */
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px; /* Espaço entre a imagem e o texto */
  object-fit: cover; /* Ajusta a imagem para cobrir o círculo sem distorcer */
}

/* Estilo para mini-curso */
/* Container principal para cada mini curso */
.mini-course {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
}

/* Título do mini curso */
.course-title {
  font-size: 24px;
  color: #2e8b57;
  margin-bottom: 15px;
  text-align: center;
}

/* Estilos para a disposição da imagem e informações do curso */
.course-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Estilos para a seção de palestrantes */
.course-speakers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Estilos para cada imagem de palestrante */
.course-image {
  text-align: center;
}

.course-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #2e8b57;
  margin-bottom: 10px;
}

.course-image p {
  font-size: 14px;
  color: #333;
}

/* Estilos para as informações detalhadas do curso */
.course-details {
  flex-grow: 1;
}

.course-details p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.course-details strong {
  color: #2e8b57;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .course-info {
    flex-direction: column;
    text-align: center;
  }

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

  .course-speakers {
    justify-content: center;
  }
}

/* parceiros */
.partners {
  padding: 10px;
}

@-webkit-keyframes slideleft {
  0% {
    background-position: 385000px;
  }
  100% {
    background-position: 0;
  }
}

@keyframes slideleft {
  0% {
    background-position: 385000px;
  }
  100% {
    background-position: 0;
  }
}

.partners-img-container {
  height: 100px;
  width: 100%;
  overflow: auto;
}

.partners-img-container::-webkit-scrollbar {
  width: 0 !important;
} /* hide scrollbar in Chrome */
.partners-img-container {
  scrollbar-width: none;
} /* hide scrollbar in mozilla */
.partners-img-container {
  -ms-overflow-style: none;
} /* hide scrollbar in IE */

.partners-img-container .partners-img {
  height: 100%;
  width: 200%;
  background: transparent url("../image/partners.png") repeat-x 50% 0;
  -webkit-animation: slideleft 5000s linear infinite;
  animation: slideleft 5000s linear infinite;
  cursor: grab;
}
/* ==========================
   Processo de Avaliação por Pares - Mobile First
========================== */

#peerReviewProcess {
  padding: 1rem;
  background: #fff;
  margin-bottom: 2rem;
  border-top: 3px solid #004466;
}

#peerReviewProcess h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid #004466;
  padding-bottom: 0.3rem;
}

#peerReviewProcess ol {
  counter-reset: review-step;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

#peerReviewProcess ol li {
  counter-increment: review-step;
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
  position: relative;
}

#peerReviewProcess ol li::before {
  content: counter(review-step);
  position: absolute;
  left: 0;
  top: 0;
  background: #004466;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem;
  border-radius: 50%;
  text-align: center;
}

#peerReviewProcess strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #004466;
}

#peerReviewProcess p {
  margin: 0;
  text-align: justify;
  font-size: 0.95rem;
  color: #333;
}

/* ==========================
   Mobile First Responsivo
========================== */

/* Telas pequenas */
@media (max-width: 576px) {
  #peerReviewProcess {
    padding: 0.75rem;
  }

  #peerReviewProcess h2 {
    font-size: 1.2rem;
  }

  #peerReviewProcess ol li {
    padding-left: 2rem;
  }

  #peerReviewProcess ol li::before {
    font-size: 0.9rem;
    width: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
  }
}

/* Telas médias e grandes */
@media (min-width: 768px) {
  #peerReviewProcess {
    max-width: 900px;
    margin: auto;
  }
}

/* minicursos */
/* ==========
   Sections
========== */
.section-padding {
  padding: 2rem 1rem; /* Mobile-first padding */
}

@media (min-width: 768px) {
  .section-padding {
    padding: 3rem 2rem; /* Mais respiro em tablets e desktops */
  }
}

.section-padding h2,
.section-padding h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #003366; /* Azul institucional suave */
}

.section-padding p,
.section-padding li {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

/* ==========
   Listas
========== */
.section-padding ul,
.section-padding ol {
  padding-left: 1.2rem;
}

.section-padding ul li,
.section-padding ol li {
  margin-bottom: 0.6rem;
}

/* ==========
   Backgrounds alternados
========== */
.bg-light {
  background-color: #f8f9fa;
}

/* ==========
   Destaques
========== */
.text-danger {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #b30000 !important;
}

strong {
  font-weight: 600;
}

/* ==========
   Links
========== */
.section-padding a {
  color: #0066cc;
  text-decoration: underline;
}

.section-padding a:hover {
  color: #004999;
}

/* ==========
   Popularização da Ciência destaque
========== */
#popularizacao-ciencia {
  border-left: 4px solid #0066cc;
  padding-left: 1rem;
  background-color: #f0f7ff;
  border-radius: 4px;
}

/* Link destacado dentro das sections */
.section-padding a {
  color: #0066cc;
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
  padding: 2px 4px;
  border-radius: 3px;
}

.section-padding a:hover {
  background-color: #e6f0ff;
  color: #004999;
  text-decoration: none;
}

.section-padding a:active {
  background-color: #cce0ff;
  color: #003366;
}
/* submissão */

/* Seção de Submissão - Ajustada para o padrão da página */
#submissionSection {
  padding: 1rem;
  background: #eef4f7;
  margin-bottom: 2rem;
  border-left: 4px solid #004466;
}

#submissionSection .section-header {
  margin-bottom: 1.5rem;
}

#submissionSection .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #004466;
  border-bottom: 2px solid #004466;
  padding-bottom: 0.3rem;
  text-align: left;
}

.submission-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  max-width: 100%;
}

.submission-link:hover {
  border-color: #004466;
  background-color: #f8fbff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 68, 102, 0.15);
}

.submission-icon {
  width: 48px;
  height: 48px;
  background: #004466;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.submission-icon::before {
  content: "📤";
  font-size: 1.5rem;
}

.submission-text {
  flex-grow: 1;
}

.submission-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #004466;
  margin-bottom: 0.25rem;
}

.submission-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  text-align: justify;
}

.submission-arrow {
  color: #004466;
  font-size: 1.2rem;
  margin-left: 1rem;
  transition: transform 0.2s ease;
  font-weight: bold;
}

.submission-link:hover .submission-arrow {
  transform: translateX(3px);
}

/* Responsividade */
@media (max-width: 576px) {
  #submissionSection {
    padding: 0.75rem;
  }
  
  #submissionSection .section-title {
    font-size: 1.2rem;
  }

  .submission-link {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding: 1rem;
  }

  .submission-icon {
    align-self: center;
    margin-bottom: 1rem;
  }

  .submission-arrow {
    align-self: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* Telas médias e grandes */
@media (min-width: 768px) {
  #submissionSection {
    max-width: 900px;
    margin: 2rem auto;
  }
}

/* modal */
  /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
        }

        /* Modal Container */
        .modal-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 450px;
            width: 90%;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            animation: slideUp 0.4s ease;
            border: 1px solid #e1e5e9;
        }

        /* Modal Header */
        .modal-header {
            background: linear-gradient(135deg, #00303a 0%, #004466 100%);
            color: white;
            padding: 1.5rem;
            text-align: center;
            position: relative;
        }

        .modal-header h2 {
            font-family: "Poppins", sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin: 0;
        }

        /* Botão de fechar */
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 1.5rem;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        /* Modal Body */
        .modal-body {
            padding: 2rem;
            text-align: center;
        }

        /* Ícone */
        .modal-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        /* Texto principal */
        .modal-message {
            font-family: "Poppins", sans-serif;
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        /* Texto secundário */
        .modal-description {
            font-family: "Poppins", sans-serif;
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        /* Botão OK */
        .modal-btn {
            background: #00303a;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-family: "Poppins", sans-serif;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .modal-btn:hover {
            background: #19a340;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(25, 163, 64, 0.3);
        }

        /* Animações */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Responsividade */
        @media (max-width: 576px) {
            .modal-container {
                width: 95%;
                margin: 1rem;
            }

            .modal-header {
                padding: 1.2rem;
            }

            .modal-header h2 {
                font-size: 1.1rem;
            }

            .modal-body {
                padding: 1.5rem;
            }

            .modal-icon {
                font-size: 3rem;
            }

            .modal-message {
                font-size: 1rem;
            }

            .modal-description {
                font-size: 0.85rem;
            }
        }

        /* Exemplo de container para demonstração */
        .demo-container {
            text-align: center;
            padding: 3rem;
        }

        .demo-container h1 {
            font-family: "Poppins", sans-serif;
            color: #00303a;
            margin-bottom: 2rem;
        }

         /* Botão de inscrição (exemplo) */
        .btn-inscricao {
            background-color: #00303a;
            color: #ffffff;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            font-family: "Poppins", sans-serif;
            font-size: 16px;
            border-radius: 25px;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .btn-inscricao:hover {
            background-color: #19a340;
            color: #000;
        }