@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Bree+Serif);
@import url(https://fonts.googleapis.com/css2?family=Antonio&display=swap);

:root {
    --yellow:#f5bf23;
    --black:#111111;
    --white:#ffffff;
    --light-color:#666666;
    --dark-color:#cfcfcf;
    --light-bg:#eeeeee;
    --box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    --border: 0.1rem solid rgba(0,0,0,0.3);
}

* {
    font-family: 'Poppins', sans-serif;
    margin:0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x:hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

html::-webkit-scrollbar{
    width: 1rem;
}

html::-webkit-scrollbar-track{
    background:transparent;
}

html::-webkit-scrollbar-thumb{
    background:var(--yellow);
}

section {
  padding: 5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  text-transform: capitalize;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.btn:hover {
  background: var(--yellow);
  color: var(--black);
}

@-webkit-keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    top: 50%;
    opacity: 0;
  }
}

.header {
    position:-webkit-sticky;
    position: sticky;
    top:0;
    left:0;
    right:0;
    box-shadow:var(--box-shadow);
    padding: 1.5rem 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index:1000;
    background:var(--white);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .logo {
font-size: 2.5rem;
color: var(--black);
text-transform: capitalize;
}

.header img {
    height: 10%;
    width: 10%;
}

.header .navbar a {
font-size: 2rem;
color: var(--black);
text-transform: capitalize;
margin: 0 1rem;
}

.header .navbar a:hover {
  color: var(--yellow);
}

.header .icons div {
height: 5rem;
width: 5rem;
line-height: 5rem;
font-size: 2rem;
background: var(--light-bg);
color: var(--black);
cursor: pointer;
text-align: center;
margin-left: .3rem;
}

.header .icons div:hover {
background: var(--black);
color: var(--white);
}

.header #menu-btn {
    display: none;
}
.header #login-btn {
    display: none;
}
.header #search-btn {
    display: none;
}

.header .search-form {
position: absolute;
top: 120%;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
width: 70rem;
background: var(--white);
-webkit-box-shadow: var(--box-shadow);
box-shadow: var(--box-shadow);
padding: 1rem;
display: none;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 1rem;
-webkit-animation: fadeIn .2s linear;
animation: fadeIn .2s linear;
}

.header .search-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}

.header .search-form label:hover {
  color: var(--yellow);
}

.header .login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
  display: none;
}

.header .login-form.active {
  display: block;
}

.header .login-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.header .login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: .7rem 0;
}

.header .login-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.header .login-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.header .login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.header .login-form .flex a:hover {
  color: var(--yellow);
  text-decoration: underline;
}

.header .login-form .btn {
  width: 100%;
}

.header .login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}

.header .login-form p a {
  color: var(--yellow);
}

.header .login-form p a:hover {
  text-decoration: underline;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: 35rem;
  background: var(--white);
  height: 100%;
  text-align: center;
  z-index: 1100;
  padding: 0 2rem;
  padding-top: 5rem;
  display: none;
}

.contact-info.active {
  -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7);
  display: block;
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 4rem;
  color: var(--black);
}

.contact-info #close-contact-info:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.contact-info .info {
  padding: 2rem 0;
}

.contact-info .info i {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin-bottom: .5rem;
}

.contact-info .info i:hover {
  background: var(--black);
  color: var(--white);
}

.contact-info .info h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.contact-info .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.contact-info .share {
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 1rem;
}

.contact-info .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--black);
  cursor: pointer;
  text-align: center;
  margin: 0 .3rem;
}

.contact-info .share a:hover {
  background: var(--black);
  color: var(--white);
}

.home {
  padding: 0;
}

.home .slide {
  min-height: 80rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.home .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent));
  background: linear-gradient(90deg, var(--white), transparent);
}

#organograma img{
  display: block;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.home .slide .content {
  width: 50rem;
  position: relative;
}

.home .slide .content h3 {
  font-size: 6rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
}

.home .slide .content p {
  font-size: 1.4rem;
  color: black;
  line-height: 2;
  padding: 1rem 0;
  background-color: #ffffff70;
}

.home .swiper-button-next,
.home .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
  background: var(--yellow);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}

.home .swiper-button-prev {
  right: 7rem;
}

.about .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}

.about .row .video {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .video img {
  width: 70%;
}

.about .row .content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
}

.about .row .content h3 {
  font-size: 3.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.about .row .content h2 {
  font-size: 1.5rem;
  color: var(--black);
  text-transform: none;
}

/* .about .row .content img {
text-align: center;
} */

.about .row .content p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding: 1rem 0;
}


.about .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  min-height: 100%;
}

.about .box-container .box .row {
  height: 100%;
}

.about .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
  color: #FEC20A;
}

.about .box-container .box p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
  text-align: center;
}

.about .box-container .box1 {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  min-height: 100%;
}

.about .box-container .box1 .row {
  height: 100%;
}

.about .box-container .box1 h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
  color: #FEC20A;
}

.about .box-container .box1 p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
  text-align: center;
}

.about .box-container .box2 {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  min-height:100%;
}

.about .box-container .box2 .row {
  height: 100%;
}

.about .box-container .box2 h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
  color: #0F57A4;
}

.about .box-container .box2 p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
  text-align: center;
}

.about .box-container .box3 {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  min-height:100%;
}

.about .box-container .box3 .row {
  height: 100%;
}

.about .box-container .box3 h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
  color: #63A242;
}

.about .box-container .box3 p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
  text-align: center;
}

.about .box-container .box4 {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  min-height:100%;
}

.about .box-container .box4 .row {
  height: 100%;
}

.about .box-container .box4 h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
  color: #9E1B6A;
}

.about .box-container .box4 p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: .5rem;
  text-align: center;
}

/* socio */

.socio {
	box-sizing: border-box;
}

body .socio{
	--h: 212deg;
	--l: 43%;
	--brandColor: hsl(var(--h), 71%, var(--l));
	margin: 0;
	background-color: whitesmoke;
}

.socio p {
	margin: 0;
	line-height: 1.6;
}

.socio ol {
	list-style: none;
	counter-reset: list;
	padding: 0 1rem;
}

.socio li {
	position: relative;
	counter-increment: list;
	max-width: 85rem;
	margin: 2rem auto;
	padding: 2rem 1rem 1rem;
	box-shadow: 0.1rem 0.1rem 1.5rem rgba(0, 0, 0, 0.3);
	border-radius: 0.25rem;
	overflow: hidden;
	background-color: white;
}

.socio li::before {
	--stop: calc(100% / var(--length) * var(--i));
	--l: 62%;
	--l2: 88%;
	--c1: hsl(var(--h), 71%, var(--l));
	--c2: hsl(var(--h), 71%, var(--l2));
	content: "";
	display: block;
	width: 100%;
	height: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(
		to right,
		var(--light-color) var(--stop),
		var(--dark-color) var(--stop)
	);
}

.socio h3 {
	display: flex;
	align-items: baseline;
	margin: 0 0 1rem;
	color: var(--black);
}

.socio h3::before {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	margin-right: 1rem;
	width: 3rem;
	height: 3rem;
	content: counter(list);
	padding: 1rem;
	border-radius: 50%;
	background-color: var(--yellow);
	color: white;
}

@media (min-width: 40em) {
	.socio li {
		margin: 3rem auto;
		padding: 3rem 2rem 2rem;
	}

	.socio h3 {
		font-size: 1.8rem;
		margin: 0 0 2rem;
	}

	.socio h3::before {
		margin-right: 1.5rem;
	}
}

/* Fim Sócio */
/* voluntariado */
.homevol {
  padding: 0;
}

.homevol .heading {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var(--black);
  text-transform: capitalize;
  padding-left: 1rem;
  border-left: 1rem solid var(--yellow);
}

.homevol .slide {
  min-height: 80rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.homevol .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent));
  background: linear-gradient(90deg, var(--white), transparent);
}
.homevol .slide .content {
  width: 100rem;
  position: relative;
}

.homevol .content p {
  text-align: justify;
}

.homevol .slide .content h3 {
  font-size: 6rem;
  color: var(--black);
  text-transform: capitalize;
  text-transform: uppercase;
}

.homevol .slide .content p {
  font-size: 1.5rem;
  color: black;
  line-height: 2;
  padding: 1rem 0;
  background-color: #ffffffc2;
}

.homevol .swiper-button-next,
.homevol .swiper-button-prev {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  background: var(--white);
}

.homevol .swiper-button-next:hover,
.homevol .swiper-button-prev:hover {
  background: var(--yellow);
}

.homevol .swiper-button-next::after,
.homevol .swiper-button-prev::after {
  font-size: 2rem;
  color: var(--black);
}

.homevol .swiper-button-prev {
  right: 7rem;
}


.voluntariado .box-container {
  margin-top: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(16rem, 0,5fr));
  gap: 2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.voluntariado .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  min-height: 100%;
}

.voluntariado .box-container .box .row {
  height: 100%;
}

.voluntariado .box-container .box h3 {
  font-size: 4rem;
  color: var(--black);
  text-transform: capitalize;
  color: #0F57A4;
}
.voluntariado .box-container .box h2 {
  font-size: 1,5rem;
  color: var(--black);
  text-transform: capitalize;
  color: black;
  text-align: left;
}

.voluntariado .box-container .box p {
  font-size: 2.5rem;
  color: var(--black);
  line-height: 3.5rem;
  padding-top: .5rem;
  text-align: justify;
}

.voluntariado .box-container .box {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  min-height:100%;
}

.voluntariado .box-container .box .row {
  height: 100%;
}


/* Fim voluntariado */

/* Beneficios */
.benefits {
	max-width: 600px;
	margin: 0 auto;
}

.benefits ol {
	list-style: none;
	padding: 0;
}

.benefits li + li {
	margin-top: 1rem;
}

.benefits li {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #66666636;
	padding: 1.5rem;
	border-radius: 1rem;
	width: calc(100% - 2rem);
	box-shadow: 0.25rem 0.25rem 0.75rem rgb(0 0 0 / 0.1);
}

.benefits li::before {
	counter-increment: list-item;
	content: counter(list-item);
	font-size: 4rem;
	font-weight: 700;
	width: 2em;
	height: 2em;
	background: black;
	flex: 0 0 auto;
	border-radius: 50%;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}
.benefits li p{
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2.5rem;
  padding-top: .5rem;
  text-align: justify;
}

.benefits li:nth-child(even) {
	flex-direction: row-reverse;
	background: #f5c12346;
	margin-right: -2rem;
	margin-left: 2rem;
}

/* Fim Beneficios */

.services {
  background: var(--light-bg);
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.services .box-container .box {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: var(--border);
}

.services .box-container .box:hover img {
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.services .box-container .box img {
  height: 7rem;
  margin-bottom: .5rem;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.services .box-container .box h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  padding: 1rem 0;
}

.services .box-container .box p {
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.projects {
  background: var(--white);
}

.projects .heading {
  color: var(--black);
}

.projects .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.projects .box-container .box {
  cursor: initial;
}

.projects .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.projects .box-container .box .image {
  height: 8rem;
  overflow: hidden;
}

.projects .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.projects .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.projects .box-container .box .content .info {
  padding: 1rem 2rem;
}

/* .projects .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
}

.projects .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
} */

.projects .box-container .box .content i {
  width: 7.5rem;
  font-size: 3rem;
  background: var(--yellow);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

/* Partners */


.partners {
  background: var(--white);
}

.partners .heading {
  color: var(--black);
}

.partners .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.partners .box-container .box {
  cursor: initial;
}

.partners .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.partners .box-container .box .image {
  height: 8rem;
  overflow: hidden;
}

.partners .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.partners .box-container .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--white);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.partners .box-container .box .content .info {
  padding: 1rem 2rem;
  color: #666666;
  line-height: 2;
}

.partners .box-container .box .content .info h3 {
  font-size: 1.7rem;
  color: var(--black);
  text-transform: capitalize;
  line-height: 2;
}

.partners .box-container .box .content .info li {
  font-size: 1.5rem;
  color: var(--black);
  line-height: 2;
  
}

.partners .box-container .box .content .info p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
}

.partners .box-container .box .content i {
  min-width: 4.5rem;
  height: 50rem;

  font-size: 3rem;
  background: var(--yellow);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  line-height: 7.5rem;
}

/* End Partners */

/* medicos */


.medico {
  margin: 4vw;
}

.medico .intro h2{
  color: rgb(253, 195, 0);
  text-align: justify;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}

.medico .intro h3{
  color: black;
  text-align: justify;
  font-size: 15px;
  line-height: 25px; /* colocar 10px a mais do font-size */
}

.medico .grid-items{
  display: grid;
  column-gap: 2vw;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  justify-content: space-evenly;    
  align-content: space-evenly;    
}

.medico .grid-items .grid-1{
display: grid;
background-color: rgba(233, 233, 233, 0.37);
color: black;
grid-template-columns: 1fr;
grid-template-rows: 0.35fr 50px 0.35fr 50px 0.35fr;
grid-row-gap: 1vw;
justify-items: center;
text-align: center;
}

.medico .grid-items .grid-2{
  display: grid;
  background-color: rgba(233, 233, 233, 0.37);
  color: black;
  grid-template-columns: 1fr;
  grid-template-rows: 0.35fr 50px 0.35fr 50px 0.35fr;
  grid-row-gap: 1vw;
  justify-items: center;
  text-align: center;
}

.medico .grid-items .grid-3{
  display: grid;
  background-color: rgba(233, 233, 233, 0.37);
  color: black;
  grid-template-columns: 1fr;
  grid-template-rows: 0.18fr 50px 0.18fr 50px 0.35fr;
  grid-row-gap: 1vw;
  justify-items: center;
  text-align: center;
}

.medico .grid-items .material-icons{
  font-size: 48px;
}
.medico .grid-items .grid-1 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}
.medico .grid-items .grid-2 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}
.medico .grid-items .grid-3 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}

/* === CARDS === */

.cards {
  max-width: 1800px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background-color: rgb(228, 226, 226);
}

.card__image-container img {
  width: 30%;
  object-position: center;
}

.card__content,
.card__info {
  padding: 24px;
  text-align: left;
}

.card__content p {
  color: black;
  text-align: left;
  font-size: 18px;
  line-height: 28px; /* colocar 10px a mais do font-size */
}
.card__content h2 {
  color: rgba(0,87,165,255) !important;
  font-size: 21px !important;
  line-height: 31px !important; /* colocar 10px a mais do font-size */
}

.card__content li {
  color: black;
  font-size: 18px;
  line-height: 28px; /* colocar 10px a mais do font-size */
}

.card__content a {
color: rgb(0,87,165);
}

table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  max-width: 8080px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  font-size: 18px;
}

table * {
  position: relative;

}

table th {
  color:#eeeeee;
}

table td,
table th {
  padding-left: 8px;
}

table thead tr {
  height: 60px;
  background: rgb(126, 125, 125);
  font-size: 16px;
}

table tbody tr {
  height: 48px;
  border-bottom: 1px solid #000000;
  color: black;
}

table tbody tr:last-child {
  border: 0;
}

table td,
table th {
  text-align: left;
}

table td.l,
table th.l {
  text-align: right;
}

table td.c,
table th.c {
  text-align: center;
}

table td.r,
table th.r {
  text-align: center;
}

@media screen and (max-width: 50.5em) {
  table {
    display: block;
    font: 400 14px "Calibri", "Arial";
    padding: 20px;
  }

  table>*,
  table tr,
  table td,
  table th {
    display: block;
  }

  table thead {
    display: none;
  }

  table tbody tr {
    height: auto;
    padding: 8px 0;
    color: black;
  }

  table tbody tr td {
    padding-left: 45%;
    margin-bottom: 12px;
  }

  table tbody tr td:last-child {
    margin-bottom: 0;
  }

  table tbody tr td:before {
    position: absolute;
    font-weight: 700;
    width: 40%;
    left: 10px;
    top: 0;
  }

  table tbody tr td:nth-child(1):before {
    content: "Profissional";
  }

  table tbody tr td:nth-child(2):before {
    content: "Especialidade";
  }

  table tbody tr td:nth-child(3):before {
    content: "Endereço / E-mail";
  }

  table tbody tr td:nth-child(4):before {
    content: "Região";
  }

  table tbody tr td:nth-child(5):before {
    content: "Telefone";
  }
}


/* End medicos */

/* Contato Start */

.contatointro{
  margin: 2vw;
}

.contatointro .intro h2 {
  color: rgb(253, 195, 0);
  text-align: justify;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}

.contatointro .intro h3 {
  color: black;
  text-align: justify;
  font-size: 20px;
  line-height: 30px; /* colocar 10px a mais do font-size */
}

.mapa {
  margin: 0 10vw;
  height: 50rem;
}


.detalhes
{
  padding: 10px 15vw;
  max-width: 200vw;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: row;
}

.detalhes h2
{
  float: left;
  max-width: 400px;
  padding: 0 30px;
  text-justify: auto;
  text-align: justify;
  color: Black;
  margin-right: 20px;
  font-size: 20px;
  line-height: 30px; /* colocar 10px a mais do font-size */
  margin: none !important;
}

.detalhes img
{
  float: left;
  width: 250px;
  position: relative;
  display: flex;
  margin-right: auto;
}


.detalhes h3
{
  float: left;
  width: 250px;
  text-justify: auto;
  color: black;
  text-align: justify;
  font-size: 20px;
  line-height: 30px; /* colocar 10px a mais do font-size */
  margin: 0 20px;
}

.zap img
{
  float:left;
  width: 100px;
  position: relative;
  display: flex;
  margin-right: auto;
}


/* Contato Ends */

/* Eventos */


/*########### Page EVENTS ###############*/
.evento h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}

.evento h3{
  color: rgb(0,87,165);
  text-align: center;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}
.evento h4{
  color: black;
  text-align: center;
  font-size: 15px;
  line-height: 25px; /* colocar 10px a mais do font-size */
}

.rowevent {
  box-sizing: border-box;
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 70px;
  justify-content: center;
}

/* Create four equal columns that sits next to each other */
.columnevent {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 50%;
  padding: 0 4px;
}

.columnevent img {
  margin-top: 8px;
  vertical-align: middle;
  width: 50%;
  border: 5px solid #d9c6a500;
  border-radius: 25px;
}

/* Responsive layout TABLET - makes a two column-layout instead of four columns */
@media screen and (max-width: 1024px) {
  .columnevent {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 100%;
  }

  .columns img {
    position:relative;
    justify-content: center;
    max-width: 400px;
    display: flex;
    padding-right: 50px;
}
}

/* Responsive layout MOBILE - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .columnevent {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
  .detalhes .endereco{
    padding: 0 0 20px;
  }
}

/* Eventos Ends */

.reviews .slide p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.reviews .slide p::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reviews .slide .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.reviews .slide .user img {
  height: 7rem;
  width: 7rem;
}

.reviews .slide .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.reviews .slide .user .stars {
  padding-top: .5rem;
}

.reviews .slide .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}

.pricing {
  background: var(--light-bg);
}

.pricing .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.pricing .box-container .box {
  background: var(--white);
  text-align: center;
  padding: 2rem;
  border: var(--border);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.pricing .box-container .box i {
  font-size: 3rem;
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  background: var(--yellow);
  color: var(--black);
}

.pricing .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: normal;
}

.pricing .box-container .box .price {
  padding: 1rem 0;
  font-size: 5rem;
  color: var(--black);
  text-transform: capitalize;
}

.pricing .box-container .box .price span {
  font-size: 2rem;
}

.pricing .box-container .box .list {
  padding: 1rem 0;
}

.pricing .box-container .box .list p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.contact {
  background: var(--black);
}

.contact .heading {
  color: var(--white);
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.contact .row .map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
  width: 100%;
}

.contact .row form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 41rem;
          flex: 1 1 41rem;
  background: var(--white);
  padding: 2rem;
}

.contact .row form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.contact .row form .box {
  margin: .7rem 0;
  width: 100%;
  padding: 1.5rem 0;
  border-bottom: var(--border);
  font-size: 1.6rem;
  color: var(--light-color);
}

.contact .row form .box:focus {
  border-color: var(--yellow);
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}

.blogs {
  background: var(--light-bg);
}

.blogs .slide {
  text-align: center;
}

.blogs .slide:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blogs .slide .image {
  height: 25rem;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: -3rem;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.blogs .slide .content {
  padding: 2rem;
  padding-top: 5rem;
  background: var(--white);
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
}

.blogs .slide .content h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.blogs .slide .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: var(--light-color);
  line-height: 2;
}

.logo-container {
  text-align: center;
}

.logo-container .heading{
    text-align: left;
  }

.logo-container img {
  height: 10rem;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Start Org Funcional */

.voluntario{
  margin: 4vw;
}

.voluntario .intro h2{
  color: rgb(253, 195, 0);
  text-align: justify;
  font-size: 25px; 
  line-height: 35px; /* colocar 10px a mais do font-size */
}

.voluntario .intro h3{
  color: black;
  text-align: justify;
  font-size: 15px;
  line-height: 25px; /* colocar 10px a mais do font-size */
}

.voluntario .grid-items{
  display: grid;
  column-gap: 2vw;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  justify-content: space-evenly;    
  align-content: space-evenly;    
}

.voluntario .grid-items .grid-1{
display: grid;
background-color: rgba(233, 233, 233, 0.37);
color: black;
grid-template-columns: 1fr;
grid-template-rows: 0.35fr 50px 0.35fr 50px 0.35fr;
grid-row-gap: 1vw;
justify-items: center;
text-align: center;
font-size: 22px;
line-height: 32px;
}

.voluntario .grid-items .grid-2{
  display: grid;
  background-color: rgba(233, 233, 233, 0.37);
  color: black;
  grid-template-columns: 1fr;
  grid-template-rows: 0.35fr 50px 0.35fr 50px 0.35fr;
  grid-row-gap: 1vw;
  justify-items: center;
  text-align: center;
  font-size: 22px;
  line-height: 32px;
}

.voluntario .grid-items .grid-3{
  display: grid;
  background-color: rgba(233, 233, 233, 0.37);
  color: black;
  grid-template-columns: 1fr;
  grid-template-rows: 0.18fr 50px 0.18fr 50px 0.35fr;
  grid-row-gap: 1vw;
  justify-items: center;
  text-align: center;
  font-size: 22px;
  line-height: 32px;
}

.voluntario .grid-items .material-icons{
  font-size: 48px;
}
.voluntario .grid-items .grid-1 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px !important;
  line-height: 35px !important; /* colocar 10px a mais do font-size */
}
.voluntario .grid-items .grid-2 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px !important;
  line-height: 35px !important; /* colocar 10px a mais do font-size */
}
.voluntario .grid-items .grid-3 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px !important;
  line-height: 35px !important; /* colocar 10px a mais do font-size */
}

/* end org funcional */

/* Start Metas */

.metas {
  margin: 4vw;
}

.metas .intro h2{
  color: rgb(253, 195, 0);
  text-align: justify;
  font-size: 25px; 
  line-height: 35px; /* colocar 10px a mais do font-size */
}

.metas .intro h3{
  color: black;
  text-align: justify;
  font-size: 15px;
  line-height: 25px; /* colocar 10px a mais do font-size */
}

.metas .grid-items{
  display: grid;
  column-gap: 2vw;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  justify-content: space-evenly;    
  align-content: space-evenly;    
}

.metas .grid-items .grid-1{
display: grid;
background-color: rgba(233, 233, 233, 0.37);
color: black;
grid-template-columns: 1fr;
grid-template-rows: 0.35fr 50px 0.35fr 50px 0.35fr;
grid-row-gap: 1vw;
justify-items: center;
text-align: center;
font-size: 22px;
line-height: 32px;
}

.metas .grid-items .grid-2{
  display: grid;
  background-color: rgba(233, 233, 233, 0.37);
  color: black;
  grid-template-columns: 1fr;
  grid-template-rows: 0.35fr 50px 0.35fr 50px 0.35fr;
  grid-row-gap: 1vw;
  justify-items: center;
  text-align: center;
  font-size: 22px;
  line-height: 32px;
}

.metas .grid-items .grid-3{
  display: grid;
  background-color: rgba(233, 233, 233, 0.37);
  color: black;
  grid-template-columns: 1fr;
  grid-template-rows: 0.18fr 50px 0.18fr 50px 0.35fr;
  grid-row-gap: 1vw;
  justify-items: center;
  text-align: center;
  font-size: 22px;
  line-height: 32px;
}

.metas .grid-items .material-icons{
  font-size: 48px;
}
.metas .grid-items .grid-1 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px !important;
  line-height: 35px !important; /* colocar 10px a mais do font-size */
}
.metas .grid-items .grid-2 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px !important;
  line-height: 35px !important; /* colocar 10px a mais do font-size */
}
.metas .grid-items .grid-3 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px !important;
  line-height: 35px !important; /* colocar 10px a mais do font-size */
}

/* end Metas */

.footer {
  text-align: center;
}

.footer .links .btn {
  margin: .5rem;
}

.footer .credit {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer .credit span {
  color: var(--yellow);
}

@media (max-width: 1440px) {
  .header {
    padding: 1rem 1.5rem;
  }
  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 1024px) {
  .header {
    padding: 1rem 1.5rem;
  }
  section {
    padding: 3rem 5%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  section {
    padding: 3rem 2rem;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: .2s linear;
    transition: .2s linear;
  }
  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .navbar a {
    display: block;
    margin: 2rem;
  }
}

@media (max-width: 768px) {
  }
  .home .slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .home .slide .content {
    text-align: center;
  }
  .home .slide .content h3 {
    font-size: 3rem;
  }

  .homevol .slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .homevol .slide .content {
    text-align: justify;
  }
  .homevol .slide .content h3 {
    font-size: 3rem;
  }

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .about .row .content h3 {
    font-size: 2.5rem;
  }
}
/*# sourceMappingURL=style.css.map */
/*###########################################################################################*/
/* Menu Estiloso */
#container {
  margin: 0 auto;
  max-width: 890px;
}

.toggle,
[id^="drop"] {
  display: none;
}

/* Giving a background-color to the nav container. */
nav {
  margin: 0;
  padding: 0;
  background-color: rgb(255, 255, 255);
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.logo img {
  height: 50px;
  margin-left: 50px;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
  content: "";
  display: table;
  clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
  display: flex;
  float: right;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 9999 !important;
}

/* Positioning the navigation items inline */
nav ul li {
  margin: 0px;
  display: inline-block;
  float: left;
  background-color: rgb(255, 255, 255);
}

/* Styling the links */
nav a {
  display: block;
  padding: 14px 20px;
  color: black;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
}

nav ul li ul li:hover {
  background: #a2abfa;
}

/* Background color change on Hover */
nav a:hover {
  background-color: #FEC40C;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
  display: none;
  position: absolute;
  /* has to be the same number as the "line-height" of "nav a" */
  /* top: 60px; */
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
  display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
  width: 170px;
  float: none;
  display: list-item;
  position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
  position: relative;
  top: -60px;
  /* has to be the same number as the "width" of "nav ul ul li" */
  left: 170px;
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:after {
  content: " +";
}
li > a:only-child:after {
  content: "";
}

.logo 
{
    display: flex;
    margin-right: auto;
}


/* Links Uteis */


.links {
  margin: 4vw;
}

.links .intro h2{
  color: rgb(253, 195, 0);
  text-align: justify;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}

.links .intro h3{
  color: black;
  text-align: justify;
  font-size: 15px;
  line-height: 25px; /* colocar 10px a mais do font-size */
}

.links .grid-items{
  display: grid;
  column-gap: 2vw;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  justify-content: space-evenly;    
  align-content: space-evenly;    
}

.links .grid-items .grid-1{
display: grid;
background-color: rgba(233, 233, 233, 0.37);
color: black;
grid-template-columns: 1fr;
grid-template-rows: 0.35fr 50px 0.35fr 50px 0.35fr;
grid-row-gap: 1vw;
justify-items: center;
text-align: center;
}

.links .grid-items .grid-2{
  display: grid;
  background-color: rgba(233, 233, 233, 0.37);
  color: black;
  grid-template-columns: 1fr;
  grid-template-rows: 0.35fr 50px 0.35fr 50px 0.35fr;
  grid-row-gap: 1vw;
  justify-items: center;
  text-align: center;
}

.links .grid-items .grid-3{
  display: grid;
  background-color: rgba(233, 233, 233, 0.37);
  color: black;
  grid-template-columns: 1fr;
  grid-template-rows: 0.18fr 50px 0.18fr 50px 0.35fr;
  grid-row-gap: 1vw;
  justify-items: center;
  text-align: center;
}

.links .grid-items .material-icons{
  font-size: 48px;
}
.links .grid-items .grid-1 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}
.links .grid-items .grid-2 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}
.links .grid-items .grid-3 h2{
  color: rgb(253, 195, 0);
  text-align: center;
  font-size: 25px;
  line-height: 35px; /* colocar 10px a mais do font-size */
}

/* === CARDS === */

.cards {
  max-width: 1800px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background-color: rgb(228, 226, 226);
}

.card__image-container img {
  width: 30%;
  object-position: center;
}

.card__content,
.card__info {
  padding: 24px;
  text-align: left;
}

.card__content p {
  color: black;
  text-align: left;
  font-size: 18px;
  line-height: 28px; /* colocar 10px a mais do font-size */
}
.card__content h2 {
  color: rgba(0,87,165,255) !important;
  font-size: 21px !important;
  line-height: 31px !important; /* colocar 10px a mais do font-size */
}

.card__content li {
  color: black;
  font-size: 18px;
  line-height: 28px; /* colocar 10px a mais do font-size */
}

.card__content a {
color: rgb(0,87,165);
}

.links table {
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  max-width: 8080px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  font-size: 18px;
}

.links table * {
  position: relative;

}

.links table th {
  color:#eeeeee;
}

.links table td,
table th {
  padding-left: 8px;
}

.links table thead tr {
  height: 60px;
  background: rgb(126, 125, 125);
  font-size: 16px;
}

.links table tbody tr {
  height: 48px;
  border-bottom: 1px solid #000000;
  color: black;
}

.links table tbody tr:last-child {
  border: 0;
}

.links table td,
table th {
  text-align: left;
}

.links table td.l,
table th.l {
  text-align: right;
}

.links table td.c,
table th.c {
  text-align: center;
}

.links table td.r,
table th.r {
  text-align: center;
}

@media screen and (max-width: 50.5em) {
  .links table {
    display: block;
    font: 400 14px "Calibri", "Arial";
    padding: 20px;
  }

  .links table>*,
  table tr,
  table td,
  table th {
    display: block;
  }

  .links table thead {
    display: none;
  }

  .links table tbody tr {
    height: auto;
    padding: 8px 0;
    color: black;
  }

  .links table tbody tr td {
    padding-left: 45%;
    margin-bottom: 12px;
  }

  .links table tbody tr td:last-child {
    margin-bottom: 0;
  }

  .links table tbody tr td:before {
    position: absolute;
    font-weight: 700;
    width: 40%;
    left: 10px;
    top: 0;
  }

  .links table tbody tr td:nth-child(1):before {
    content: "Nome";
  }

  .links table tbody tr td:nth-child(2):before {
    content: "Descrição";
  }

  .links table tbody tr td:nth-child(3):before {
    content: "Acesso";
  }


}


/* End Links Uteis */

/* Media Queries
--------------------------------------------- */

@media all and (max-width: 1024px) {
  #logo {
    display: block;
    padding: 0;
    width: 100%;
    text-align: center;
    float: none;
  }

  nav {
    margin: 0;
  }

  /* Hide the navigation menu by default */
  /* Also hide the  */
  .toggle + a,
  .menu {
    display: none;
  }

  /* Stylinf the toggle lable */
  .toggle {
    display: block;
    background-color: rgba(228, 226, 226, 0);
    padding: 14px 20px;
    color: black;
    font-size: 15px;
    text-decoration: none;
    border: none;
  }

  .toggle:hover {
    background-color: #FEC40C;
  }

  /* Display Dropdown when clicked on Parent Lable */
  [id^="drop"]:checked + ul {
    display: block;
  }

  /* Change menu item's width to 100% */
  nav ul li {
    display: block;
    width: 100%;
  }

  nav ul ul .toggle,
  nav ul ul a {
    padding: 0 40px;
  }

  nav ul ul ul a {
    padding: 0 80px;
  }

  nav a:hover,
  nav ul ul ul a {
    background-color: #FEC40C;
  }

  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a {
    padding: 14px 20px;
    color: black;
    font-size: 17px;
  }

  nav ul li ul li .toggle,
  nav ul ul a {
    background-color: rgb(228, 226, 226);
  }

  /* Hide Dropdowns by Default */
  nav ul ul {
    float: none;
    position: static;
    color: black;
    /* has to be the same number as the "line-height" of "nav a" */
  }

  /* Hide menus on hover */
  nav ul ul li:hover > ul,
  nav ul li:hover > ul {
    display: none;
  }

  /* Fisrt Tier Dropdown */
  nav ul ul li {
    display: block;
    width: 100%;
  }

  nav ul ul ul li {
    position: static;
    /* has to be the same number as the "width" of "nav ul ul li" */
  }

  .voluntario .grid-items{
    display: grid;
    row-gap: 2vw;
    grid-template-columns: 1fr !important;
    justify-items: center;
    justify-content: space-evenly;    
    align-content: space-evenly;    
  }
  .columns
  {
    margin: 5vw 0 0 0;
    padding: 10px 15vw;
    max-width: 200vw;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    z-index:-1000;
  }
  .columns h2
{
  max-width: 320px;
}
  .columns img
  {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  .detalhes
  {
    text-align: center;
    align-items: center;
    flex-direction: column !important;
  }
}

@media all and (max-width: 330px) {
  nav ul li {
    display: block;
    width: 94%;
  }
  .voluntario .grid-items{
    display: grid;
    row-gap: 2vw;
    grid-template-columns: 1fr;
  }
  .detalhes
  {
    padding: 10vw 15vw;
    max-width: 200vw;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column !important;
  }
}

/* ##################################### */

.projects .box-container .box .content .info {
  padding: 24px;
  text-align: left;
}

.projects .box-container .box .content .info p {
  color: black;
  text-align: left;
  font-size: 16px;
  line-height: 26px; /* colocar 10px a mais do font-size */
}
.projects .box-container .box .content .info h3 {
  color: rgba(0,87,165,255) !important;
  font-size: 18px !important;
  line-height: 28px !important; /* colocar 10px a mais do font-size */
}

.projects .box-container .box .content .info li {
  color: black;
  font-size: 16px;
  line-height: 26px; /* colocar 10px a mais do font-size */
}