* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Estilo para o VLibras fixo */
div[vw] {
    position: fixed !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    width: auto !important;
  }
  
  div[vw] .vw-access-button {
    background-color: #02006f !important;
    border-radius: 5px 0 0 5px !important;
    width: auto !important;
    padding: 10px !important;
    right: 0 !important;
  }
  
  div[vw] .vw-plugin-top-wrapper {
    position: fixed !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-right: 50px !important;
    border-radius: 5px 0 0 5px !important;
  }

html, body {
    width: 100%;
    height: 100%;
}

.exit-button:hover {
  transform: scale(1.3);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


.tooltip {
  display: none;
  position: absolute;
  left: 100%;
  white-space: nowrap;
  background-color: #02006f;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-size: clamp(1rem, 2vw, 2rem);
}

 .exit-button:hover .tooltip {
  display: block;
}



 .explain-button:hover {
  transform: scale(1.1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.tooltiper {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translateX(-50%);
  background-color: var(--color-secondary);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 500px;
  min-width: 320px;
  white-space: normal;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  text-align: center;
}

.explain-button:hover .tooltiper,
.explain-button:focus .tooltiper {
  display: block;
}


body {
    zoom: 0.6;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    scroll-behavior: smooth;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, button, input, textarea {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    width: 100%;
    overflow-x: hidden;
    background-color: var(--color-primary);
}

/* estilos contact button */


.fab-wrapper {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 4.5rem;
  height: 3rem;
}

.fab-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(71, 130, 255, 0.7);
  border-radius: 8px;
  z-index: 9999;
}


.fab {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  border-radius: 8px;
  z-index: 1;
  clip-path: polygon(
    0 0, 
    100% 0, 
    100% 100%, 
    0% 100%, 
    0% 0, 
    50% 40%, 
    100% 0
  );
}

.fab-wrapper:hover .fab,
.fab-wrapper:hover .fab-bg {
  transform: scale(1.3);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fab,
.fab-bg {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Pontinhos */
.fab-dots {
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: white;
  border-radius: 50%;
  bottom: 8px;
  transition: all 0.3s ease;
  animation: blink 3s ease infinite;
}

.fab-dots-1 {
  left: 10px;
  animation-delay: 0s;
}
.fab-dots-2 {
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.4s;
}
.fab-dots-3 {
  right: 10px;
  animation-delay: 0.8s;
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}



/* 
FAQ------------------ */


        .faq-section {
            width: 100%;
            margin: 0 auto;
            color: var(--color-primary);
        }
        
        .faq-title {
            padding-top: 30px;
            font-size: clamp(1.3rem, 3.0vw, 2.5rem);
            font-weight: bold;
            margin-bottom: 20px;
            color: #02006f;
        }
        
        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 15px 0;
            cursor: pointer;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            font-size: clamp(1.3rem, 3.0vw, 1.8rem);
        }
        
        .faq-question::after {
            content: "+";
            font-size: 24px;
            color: #666;
        }
        
        .faq-item.active .faq-question::after {
            content: "-";
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: #555;
            line-height: 1.6;
            font-size: clamp(1.3rem, 3.0vw, 1.5rem);
        }
        .faq-answer p {
            font-size: clamp(1.3rem, 3.0vw, 1.5rem);
        }

        div.faq-answer p {
            font-size: clamp(1.3rem, 3.0vw, 1.5rem);
        }

        
        .faq-item.active .faq-answer {
            max-height: 500px; /* Ajuste conforme necessário */
            margin-top: 15px;
        }
        
        .faq-answer ul {
            padding-left: 20px;
        }
        
        .faq-answer li {
            margin-bottom: 8px;
        }
    


/* 
FAQ------------------ */

*{padding:0;margin:0;}

body{
	font-family:'Montserrat', Geneva, sans-serif;
	font-size:18px;
	background-color:#CCC;
}

.float{
	position:fixed;
	width:80px;
	height:80px;
	bottom:40px;
	right:40px;
	background-color:#4285f4;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 5px 5px 6px #999;
}

.my-float{
	margin-top:22px;
}


:root {
    --color-primary: #02006f;
    --color-secondary: #4782ff;
    --color-black: #000;
    --color-white: #FFF;
}

.parent-container {
    display: flex;

}

.parent-container > article {
    flex: 1 1 300px; 
    margin: 10px;
}

.container {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
}

.container div {
    flex: 1;
    max-width: 50%;
}

.container img {
    max-width: 45%;
    height: auto;
    object-fit: contain;
}

.custom-header {
    padding: 1.5rem;
    border-bottom: #02006f 2px solid;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-logo {
    width: 80px;
    height: auto;
}

.header-title {
    flex: 1 1 auto;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
}

.header-nav {
    display: flex;
    gap: 1rem;
}

.header-button {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.5rem);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-button:hover {
    background-color: white;
    color: var(--color-secondary);
    transform: scale(1.1);
}


.header-button-erase {
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 2rem);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-button-erase:hover {
    background-color: white;
    color: var(--color-secondary);
    transform: scale(1.1);
}



.hero-section {
    color: var(--color-white);
    background-color: var(--color-primary);
    width: 100%;
    overflow: visible;
    text-align: left;
}

.hero-section img {
    flex: 1;
    max-width: 40%;
    object-fit: contain;
    padding: 6% 2% 0;
}

.hero-section p {
    font-size: clamp(1.2rem, 2vw, 2rem);
    padding-right: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.text-hero-section {
    flex: 1;
    max-width: 45%;
}

.hero-section h1 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.4;
    margin-bottom: 1rem;
}

#responsive-div {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

.text-content {
    width: 50%;
}

.text-content h2 {
    line-height: 1.6;
    color: #02006f;
    font-weight: 600;
    margin-bottom: 2rem;
}

.text-content h2 span {
    font-weight: 700;
}

.hero-img {
    width: 45%;
    max-width: 60%;
    padding-top: 6%;
}

@media screen and (max-width: 768px) {
    #responsive-div {
        flex-direction: column-reverse;
        align-items: center;
        /* padding: 2rem; */
        height: 80%;
    }


    nav a img {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .text-content, .hero-img {
        width: 100%;
        max-width: 100%;
        text-align: left;
        justify-content: start;
    }

    .hero-img {
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 0px;
    }
}




.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 5rem 0;
    background-color: #FFF;
}

.info-section-select {
    display: flex;
    align-items: left;
    padding-top: 4%;
    padding-bottom: 4%;
    padding-left: 13.5%;
    padding-right: 13.5%;

}

h2 {
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

article p {
    font-weight: 300;
}

.button {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: block;
    font-size: clamp(0.9rem, 1.8vw, 1.25rem);
    padding: 0.75rem 1rem;
    max-width: 14rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 30px;
}

.button-white {
    background-color: var(--color-white);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: clamp(1.6rem, 2.3vw, 1.575rem);
    padding: 20px 10px;
    width: 80%;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
}

.section-title {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.section-title.blue {
    background-color: #001f5c;
}

.section-title.light-blue {
    background-color: #4285f4;
}

.card {
    border: 1px solid #c2c2c2;
    border-radius: 20px;
    padding: 20px;
    background-color: white;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.card p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.card-section {
    text-align: center;
}

.profile-container div {
    max-width: 100%;
}

.profile-info {
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.273);
    max-width: 800px;
    margin: auto;
    align-items: center;
}

.profile-info h3 {
    color: var(--color-primary);
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    margin-bottom: 2rem;
    text-align: center;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    width: 100%;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    background-color: rgba(71, 130, 255, 0.05);
}

.info-item strong {
    color: var(--color-primary);
    font-weight: 600;
    flex: 1;
}

.info-item span {
    color: var(--color-black);
    font-weight: 400;
    flex: 2;
    text-align: right;
    padding-left: 1rem;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-primary { color: var(--color-primary); }
.text-center { text-align: center; }parent-container

footer {

   
    font-size: clamp(0.8rem, 1.6vw, 1.3rem);
    color: #02006f;
    display: flex;
    justify-content: left;
    align-items: start;
    padding-top: 1%;
    padding-left: 1%;
}

.footer-container {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    display: block;
    padding: 0;
    margin: 0;
}

.table-responsive table {
    min-width: 600px;
    width: 100%;
    box-sizing: border-box;
}



@media (max-width: 900px) {
    .table-responsive table {
        font-size: 0.85rem;
        min-width: 500px;
    }
}

.img-footer {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.edital-cards-container {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 0 auto;
    width: 75%;
}

.edital-card {
    min-width: 450px;
    max-width: 800px;
    width: 100%;
    height: 400px; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px;
}

.edital-cards-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 350px;

}


.edital-card p,
.edital-card a {
    text-align: center;
    width: 100%;
}



@media (max-width: 1100px) {
    .edital-cards-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 900px) {
    .edital-card {
        max-width: 95vw;
        min-width: 200px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .parent-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .edital-cards-container {
        grid-template-columns: 1fr;
        max-width: 98vw;
    }
    .edital-card {
        max-width: 98vw;
        min-width: 180px;
        height: 400px;
        
    }
    h2 {
        font-size: 1.8em;
    }
}





/* 
contato */


.newsletter-form label {
    display: block;
    font-size: clamp(1.3rem, 3.0vw, 2.5rem)
}

.newsletter-form input, textarea {
    font-size: clamp(1.3rem, 3.0vw, 2.5rem);
    padding: .5rem;
    width: 100%;
}

/*Utilitários*/

.mt-1 {
    margin-top: 1rem;
}
.mt-2 {
    margin-top: 2rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-primary {
    color: var(--color-primary);
}
.text-center {
    text-align: center;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #4782ff;
  border-radius: 16px;
  background: #f5f8ff;
  font-size: 1.8rem;
  color: #02006f;
  margin-bottom: 1.2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #02006f;
  outline: none;
  box-shadow: 0 0 0 2px #4782ff33;
}

label.mb-1 {
  font-weight: 600;
  color: #02006f;
  margin-bottom: 0.3rem;
  display: block;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.header-button[type="submit"] {
  background-color: #02006f;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(71,130,255,0.08);
}
.header-button[type="submit"]:hover {
  background-color: #fff;
  color: #02006f;
  border: 2px solid #02006f;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 1rem;
    padding: 0.6rem 0.8rem;
  }
  .header-button[type="submit"] {
    width: 100%;
    padding: 0.8rem 0;
  }
  .button-container {
    justify-content: center;
  }
}

* { box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: 'Montserrat', Arial, sans-serif; min-height: 100vh; display: flex; flex-direction: column; background-color: #f5f5f5; }
header { background-color: #02006f; padding: 1rem 0; position: relative; }
.nav-container { display: flex; justify-content: space-between; align-items: center; position: relative; width: 75%; margin: 0 auto; }
.nav-container img { width: 160px; }
.header-nav { display: flex; gap: 1rem; }
.faq-section { width: 78%; margin: 0 auto; }
.edital-title { font-weight: 800; margin-top: 40px; text-align: center; border-bottom: 3px solid #02006f; }
.content-section { background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(2,0,111,0.05); margin-bottom: 2.5rem; padding: 2rem 2.5rem; width: 100%; font-family: 'Montserrat', Arial, sans-serif; }
.content-section h2 { color: #02006f; font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 1.2rem; margin-top: 0; }
.content-section h3 { color: #02006f; font-size: 2rem; font-weight: 700; margin-bottom: 1.2rem; margin-top: 1.2rem; }
.content-section p { color: #333; font-size: clamp(1.5rem, 1.5vw, 1.1rem); margin-bottom: 1rem; line-height: 1.6; }
.content-section h4 { font-size: clamp(1.7rem, 1vw, 1.1rem); font-weight: 600;}
.section-item { margin-bottom: 1.5rem; }
.highlight-box { background: #f2f2ff; border-left: 4px solid #02006f; border-radius: 8px; padding: 1rem 1.5rem; margin: 1rem 0; color: #02006f; font-weight: 600; }
.point-table, .calendar, .annex-table { width: 100%; border-collapse: collapse; margin: 1.5rem; font-size: 1rem; padding: 1.5rem    ; }
.point-table th, .point-table td, .calendar th, .calendar td, .annex-table th, .annex-table td { border: 1px solid #ddd; padding: 0.7rem 1rem; text-align: left; font-size: 1.5rem; }
.point-table th, .calendar th, .annex-table th { background: #02006f; color: #fff; font-weight: 700; }
.point-table tr:nth-child(even), .calendar tr:nth-child(even), .annex-table tr:nth-child(even) { background: #f5f5f5; }
@media (max-width: 900px) { .content-section { padding: 1.2rem; } .point-table, .calendar, .annex-table { font-size: 0.95rem; } }
.section-item p { font-size: 1.8rem; }

@media (max-width: 720px) {
  .fab-wrapper {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .fab-bg, .fab {
    border-radius: 8px;
  }
  .fab-dots {
    height: 5px;
    width: 5px;
    bottom: 6px;
  }
  .fab-dots-1 {
    left: 7px;
  }
  .fab-dots-2 {
    left: 50%;
    transform: translateX(-50%);
  }
  .fab-dots-3 {
    right: 7px;
  }
}

#calendario .content-section {
  padding-left: 0;
  padding-right: 0;
}

#calendario .table-responsive {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}
@media (max-width: 900px) {
  #calendario .table-responsive {
    margin-left: -0.7rem;
    margin-right: -0.7rem;
  }
}
