/*
Theme Name: Elaine Marques
Theme URI: http://www.elainemarques.com.br
Description: Tema desenvolvido por Rafael Marques
Author: Rafael Marques
Author URI: http://www.fieldesigner.com.br
*/



* {
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, div, body {
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
  scroll-padding-top: 25%;
}
body, form input, form textarea, form select{
  font-family: Calibri, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 400;
}
body{
  background-color: rgb(15, 15, 15);
  color: #ccc;
  font-size: 1.1rem;
}
a{
  color: #f8b3ab;
}


#headerhome{
  display: flex;
  align-items: center;
  padding: 14px 10px;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 14;
  transition: all 0.3s;
  top:0;
  
}

#headerhome > div{
  display: inline-flex;
  align-items: center;
}

.scrolled{
  background: rgb(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0px 3px 5px rgba(0,0,0,0.6);
  border-bottom:#f8b3ab solid 1px;
}

.h1logo{
  display: inline-block;
  font-size: 0;
}
.logo{
  font-size: 0;
  display: inline-block;
  overflow: hidden;
  height: 42px;
  width: 127px;
  margin-top: -4px;
}
.logo img{
  height: 78px;
}
.slogan{
  font-size: 0.75rem;
  line-height: 0.75rem;
  text-transform: uppercase;
  border-top: dashed 1px rgb(255, 207, 202, 0.5);
  border-bottom: dashed 1px rgb(255, 207, 202, 0.5);
  display: inline-block;
  padding: 8px 0;
  color: rgb(255, 207, 202, 0.8);
  width: 141px;
}



.toggleMenu{
  position: relative;  
  width: 25px;
  margin: 3px 12px;
  cursor: pointer;
}
.toggleMenu span{
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  border-radius: 5px;
  background: #fff;
  transition: all 0.3s;
}

#spaceMenu{
  display: inline-flex;
  align-items: center;
  position: relative;
}
#spaceMenu .menu{
  position: absolute;
  right: 0;
  background: rgba(24, 24, 24, 0.0);
  top: 44px;
  margin: 0px -10px 0 -10px;
  height: 100vh;
  width: 100vw;
  transition: all 0.3s;
  max-width: 0;
  overflow: hidden;
}
#spaceMenu .menu > ul{
  border: solid 1px rgba(255,255,255,0.04);
  margin: 20px;
  list-style: none;
  padding: 0;
  box-shadow: -1px -1px 0 rgba(0,0,0,0.9), 1px 1px 0 rgba(0,0,0,0.9);
}
#spaceMenu .menu ul li{
  border-bottom: solid 1px rgba(0,0,0,0.9);
  position: relative;
  box-shadow: 0px 1px 0 rgba(255,255,255,0.06);
}
#spaceMenu .menu ul li:last-child{
  border-bottom: none;
  box-shadow: none;
}
#spaceMenu .menu ul li a{
  padding: 8px 12px;
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
}
#spaceMenu .menu ul li a:hover{
  color: rgb(255, 184, 176);
  background: rgba(0,0,0,0.15);
}

#spaceMenu .menu ul li.page_item_has_children > a{
  display: inline-block;
}
#spaceMenu .menu ul li ul{
  max-height: 0;
  overflow: hidden;
}
#spaceMenu .menu ul li ul::before{
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fee9d3 transparent transparent transparent;
  margin: 16px;
}
#spaceMenu .menu ul li:hover ul{
  max-height: 400px;
}


#toggleMenu:checked ~ header{ background: rgb(24, 24, 24); }
#toggleMenu:checked ~ header #spaceMenu .menu{
  background: rgba(24, 24, 24, 1);
  max-width: 100vw;
}
#toggleMenu:checked ~ header #spaceMenu .toggleMenu span:first-child{ transform: rotate(45deg); position: absolute; top: 0px;}
#toggleMenu:checked ~ header #spaceMenu .toggleMenu span:nth-child(2){ transform: rotate(-45deg); position: absolute; top: 0px;}
#toggleMenu:checked ~ header #spaceMenu .toggleMenu span:last-child{ opacity: 0;}

.hide{
  display: none;
}



.slideHome{
  display: block;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.slides, .testemunhos {
  height: 100vh;
  width: 100%;
  display: flex;
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.slide {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  scroll-snap-align: center;
  transform-origin: center center;
  transform: scale(1);
}
.slide img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slide .dataSlide{
  position: absolute;
  bottom: 60px;
  max-width: 600px;
}
.slide .dataSlide .title{
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 800;
  font-style: italic;
  display: inline-block;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
  outline: 1px rgb(255, 184, 176, 0.15) dashed;
  outline-offset: -5px;
  width: max-content;
  max-width: 68%;
  z-index: 2;
  position: relative;
}
.slide .dataSlide .contentSlide{
  position: relative;
  padding: 15px 15px;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.2);
  font-size: 1rem;
  line-height: 1.1rem;
  color:#000;
  margin: -3px 20px 20px 20px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(7px);
  font-style: italic;
  border-radius: 0 20px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  z-index: 1;
}
.slide .dataSlide .contentSlide p{
  margin: 0;
  padding: 0;
}



a.slide__prev,
.slider::before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left: 5%;
}

a.slide__next,
.slider::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right: 5%;
}

.slider::before,
.slider::after,
.slide__prev,
.slide__next {
  position: absolute;
  top: 48%;
  width: 20px;
  height: 20px;
  border: solid black;
  border-width: 0 6px 6px 0;
  padding: 3px;
  box-sizing: border-box;
  z-index: 9;
}

.slider::before,
.slider::after {
  content: "";
  z-index: 1;
  background: none;
  pointer-events: none;
}



.down-arrow {  
  z-index: 3;
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -10px;
  height: 38px;
  border: solid 2px rgb(109, 109, 109, 0.1);
  border-radius: 20px;
  padding-top: 5px;
}
.down-arrow svg{
  fill: rgb(109, 109, 109);
  width: 20px;
  animation: jumpInfinite 1.5s infinite;
  position: relative;
}

@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 10px;
  }
  100% {
    margin-top: 0;
  }
}




.servicos,
.perfil,
.blog,
.portfolio{
  padding: 60px 20px;
}
h3{
  font-size: 2.5rem;
  line-height: 2.5rem;
  color: #fbc7c1;
  font-style: italic;
  display: block;
  text-align: center;
  position: relative;
  text-shadow: 
    4px 4px 0 rgb(255, 184, 176, 0.1),
    0 0 20px #000, 
    0 0 10px #000, 
    0 0 50px #000;
  margin-bottom: 20px;
}
.whithDash::before{
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: 1px rgb(255, 184, 176, 0.1) dashed;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;

}
.descArea{
  font-weight: 100;
}
.centerText{
  text-align: center;
}



.accordion-item{
  background-color: rgb(255, 184, 176, 0.05);
  box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
  outline: 1px rgb(255, 184, 176, 0.15) dashed;
  outline-offset: -5px;
  margin-bottom: 15px;
}
.accordion-title{
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 15px 20px;
  align-items: center;
}
.accordion-title a{
  color: #fbc7c1;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-style: italic;
  font-weight: 900;
  
}

.answer{
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: rgba(0,0,0,0.5);
  transition: max-height 650ms;
  margin: 6px 9px 0px 9px;
  bottom: 9px;
  border-radius: 5px;
}

.answer p{
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  padding: 20px;
  margin: 0;
}
.accordion-item .icon{
  font-style: normal;
  transition: all 0.8s ease-in-out;
  box-shadow: inset 0 2px 5px -1px rgb(0 0 0);
  font-weight: bold;
  display: flex;
  align-items: center;
  color: #fff;
  aspect-ratio: 1/1;
  justify-content: center;
  border-radius: 50%;  
  width: 30px;
  font-size: 19px;
  line-height: 12px;
  margin-bottom: -10px;
  margin-top: -8px;
  padding-bottom: 2px;
}
.accordion-item:target .answer{
  max-height: 20rem;
}
.accordion-item:target .accordion-link .icon{
  display: none
}
.accordion-item:target .accordion-link .ion-md-arrow-down{
  display: block;
}

.vermais{
  background: #fbc7c1;
  color:#0e0e0d;
  font-size: 0.8rem;
  line-height: 0.8rem;
  display: inline-block;
  padding: 5px 8px;
  text-decoration: none;
  border-radius: 5px 0;
  float: right;
}
.clear{
  clear: both;
}


.perfil{
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fff0ef+0,ffcfca+100 */
  background: rgb(255,240,239); /* Old browsers */
  background: -moz-linear-gradient(-45deg,  rgba(255,240,239,1) 0%, rgba(255,207,202,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg,  rgba(255,240,239,1) 0%,rgba(255,207,202,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg,  rgba(255,240,239,1) 0%,rgba(255,207,202,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff0ef', endColorstr='#ffcfca',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

  border-top: solid 1px rgb(255, 255, 255, 0.05);
  border-bottom: solid 1px rgb(255, 255, 255, 0.05);
  color: #000;
  position: relative;
  text-align: center;
}

.perfil h3{
  color: #000;
  text-shadow: 
    4px 4px 0 rgb(0, 0, 0, 0.1),
    0 0 20px rgb(255,240,239), 
    0 0 10px rgb(255,240,239), 
    0 0 50px rgb(255,240,239);
  margin-bottom: 20px;
}
.perfil .whithDash::before{
  content: '';
  border-bottom: 1px rgb(0, 0, 0, 0.1) dashed;
  z-index: 0;
}

.perfil .thumbPerfil{
  width: 60%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 1px 1px 5px rgba(255,255,255,0.4);
}
.perfil .thumbPerfil img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.perfil .vermais,
.fullvermais{
  text-align: center;
  float: unset;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 15px;
  color:#fff;
  background: #000;
  position: relative;
  border-radius: 20px;
  text-decoration: none;
  font-style: italic;
}

.fullvermais{
  background: #fbc7c1;
  color:#0e0e0d;
}


.blog{
  background-color: rgb(255, 184, 176, 0.05);
  border-top: solid 1px rgb(255, 184, 176, 0.05);
  border-bottom: solid 1px rgb(255, 184, 176, 0.05);
  display: block;
  position: relative;
}
.blog::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  background-image: url('http://elainemarques.com.br/wp-content/uploads/2014/04/buque-keicy.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}


.loopPost{
  display:block;
  position: relative;
}
.itemLoopPost{
  display: block;
  background: #000;
  overflow: hidden;
  border-radius: 8px;
  margin: 30px 0 30px 0;
  position: relative;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  outline: 1px rgb(255, 184, 176, 0.1) dashed;
  outline-offset: -5px;
}
.itemLoopPost .dados{
  display: block;
  padding: 10px 20px;
  position: relative;
}
.itemLoopPost .dados a{
  text-decoration: none;
  color: #fbc7c1;
  font-size: 1.3rem;
  line-height: 1.3rem;
  display: inline-block;
}
.thumbList{
  width: 100%;

}
.thumbList img{ 
  width: 100%;
  height: auto;
  object-fit: cover;
}


.portfolio{
}

/* masonry styles */

.masonry {
	max-width: 1280px;	
  margin: auto;
  margin-top: 30px;
}

.masonry-item {
  outline: 1px rgb(255, 184, 176, 0.2) dashed;
  outline-offset: -5px;
  display: inline-block;
  border-radius: 5px;
  font-size: 0;
}

.masonry-item > p {
	font-size: 14px;
	padding: 0.5rem;
	margin: 0;
}

.masonry-item > img {
	width: 100%;
	height: auto;
  border-radius: 5px;
}

.masonry {
	--masonry-columns: 2;
	--masonry-gap: 10px;
}

@media (min-width: 768px) {
	.masonry {
		--masonry-columns: 3;
		--masonry-gap: 1rem;
	}
}

@media (min-width: 1024px) {
	.masonry {
		--masonry-columns: 4;
		--masonry-gap: 2rem;
	}
}

/* load only if grid-template-rows: masonry is supported by the browser else use the fallback */
@supports (grid-template-rows: masonry) {
	.masonry {
		display: grid;
		grid-template-columns: repeat(var(--masonry-columns), 1fr);
		grid-gap: var(--masonry-gap);
		grid-template-rows: masonry;
	}

	.masonry > * {
		margin-bottom: 0;
	}
}

/* fallback */
.masonry {
	column-count: var(--masonry-columns);
	column-gap: var(--masonry-gap);
}

.masonry > * {
	margin-bottom: var(--masonry-gap);
	break-inside: avoid;
}





#footer{
  padding: 60px 20px;
  text-align: center;
  background: #000;
  clear: both;
}
#footer .alogofooter{
  display: block ;
  text-align: center;
}
#footer .alogofooter img{
  width: auto;
  height: 100px;
}

.copy{
  font-size: 0.6rem;
  text-transform: uppercase;
  margin-top: 30px;
}

.bloqquote,
blockquote{
  font-style: italic;
  font-weight: 100;
  color:#fbc7c1;
  padding: 0;
  margin: 0;
}
blockquote{
  background: rgba(255,255,255,0.05);
  padding: 5px 20px;
  border-radius: 20px 0;
}
.bloqquote::before,
.bloqquote::after,
blockquote p::before,
blockquote p::after{
  content: '“';
  font-size: 2.2rem;
  line-height: 1rem;
  opacity: 0.5;  
}
.bloqquote::after,
blockquote p::after{
  content: '”';  
  line-height: 0;
  top: 25px;
  position: relative;
}


.zaplink, .tel{
  text-decoration: none;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.zaplink svg, .tel svg{
  fill: #fbc7c1;
  width: 50px;
  height: 50px;
  clear: both;
}
.tel svg{
  margin: 10px;
  width: 30px;
}

.interna{
  margin-top: 70px;
}

.headLine{
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 2px 2px 5px #000;
  font-style: italic;  
  
  border-bottom:#f8b3ab solid 1px
}
.headLine h1{
  font-size: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
}
.headLine .bgimg, 
.headLine .bgimgThumb{
  position: absolute;
  background-image: url('http://elainemarques.com.br/wp-content/uploads/2013/09/Nauana.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  top: 0;
  left: 0;
  
}
.headLine .bgimgThumb {
  background-image: unset;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.headLine .bgimgThumb img{
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 100%;
}

.headLine *{
  position: relative;
  z-index: 1;
}

#conteudo{
  background: rgb(255, 255, 255, 0.02);
}

.artigo{
  padding:  20px 20px 20px 20px;
}
.artigo strong,
.artigo b{
  font-weight: 900;
  color:#fbc7c1;
  font-size: 1.1rem;
}

.artigo .alignleft{
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}
.artigo .alignright{
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}
.artigo .aligncenter {
  display: block;
  clear: both;
  margin: 5px auto 14px auto;
  border-radius: 8px;
}

#comments{
  margin:20px;
  padding: 40px 0 20px 0;
  border-top: 1px dashed rgb(251, 199, 193, 0.3);
}
#comments a{
  text-decoration: none;
  color: #fbc7c1;
}
#comments h4{
  font-size: 1.3rem;
  color:#f8b3ab;
  margin-bottom: 10px;
}

#comments label{
  width:120px;
  height:30px;
  padding: 10px 0 0 0;
  display:block;
  float:left;
  clear: both;
}
#comments input[type=submit], #comments input[type=buttom]{
  width:auto;
  float:right;
}
.commentlist{
  margin:0 0 20px 0;
  padding:0;
  font-size: 14px;
  list-style: none;
}
.commentlist li{
  padding: 10px;
  background:rgba(216,200,189,0.05);
  margin-bottom: 2px;
  border-bottom: solid 1px rgba(255,255,255,0.05);
  border-radius: 6px;

}
.commentlist .avatar{
  float:left;
  margin-right: 10px;
  border: solid 4px rgba(0,0,0,0.50);
  border-radius: 50%;
}
.commentlist cite{
  font-weight: 900;
  font-style: normal;
  text-transform: capitalize;
}
.commentlist .commentmetadata{
  font-size: 9px;
  font-family:Tahoma, Geneva, sans-serif;
  display:block;
  margin-bottom: 5px;
}
.commentlist p{
  clear: none !important;
  font-size: 0.8rem;
}

.commentlist .children{
  list-style: none;
  padding: 0;
}

form{
  background: #000;
  outline: 1px rgb(255, 184, 176, 0.15) dashed;
  outline-offset: -5px;
  padding: 18px;
  clear: both;
}
fieldset{
  border: none;
  display: grid;
  grid-template-columns: 75px 1fr;
  margin: 0;
  padding: 2px;
  align-items: center;
}
fieldset label{
  font-size: 0.75rem;
}
form input, form textarea, form select{
  width: 100%;
  font-size: 0.8rem;
  padding: 7px 11px;
  border:none;
  border-radius: 5px;  
}
form textarea{
  height: 100px;
  resize: none;
  margin-top: 1px;
}
form button,
form input[type=submit]{
  background: #fbc7c1;
  color:#0e0e0d;
  font-size: 0.8rem;
  line-height: 0.9rem;
  display: inline-block;
  padding: 7px 8px;
  text-decoration: none;
  border:none;
  width: auto;
  border-radius: 20px;
  margin-top: 2px
}

hr{
  border: none;
  height: 1px;
  background: transparent;
  border-bottom: #0e0e0d solid 1px;
}

.testemunho{
  background: #000;
  border-top: solid rgba(255,255,255,0.1) 1px;
  padding: 60px 0;
}
.testemunhos{
  height: auto;
  align-items: center;
}
.balao{
  background: #fbc7c1;
  margin: 0 auto;
  width: 75%;
  border-radius: 8px;
  overflow: hidden;
}
.balao p.bloqquote{
  color:#000;
  padding: 5px 15px 25px 15px;
  font-size: 1.15rem;
  text-align: center;
  position: relative;
}
.balao .foto{
  position: relative;
}
.balao .foto::before{
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 0 0 40px;
  border-color: transparent transparent transparent #fbc7c1;
  bottom: 0px;
  left: 20px;
}
.balao .title{
  display: block;
  color: #000;
  padding: 20px 20px 0 20px;
  text-align: center;
  font-size: 1.3rem;
  font-style: italic;
}

.testemunho .slide__prev, .testemunho .slide__next {
  border: solid #fbc7c1;
  border-width: 0 6px 6px 0;
}


.artigo iframe{
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 8px;
}

.gallery-item {
  width: 50% !important;
  margin-top: 0 !important;
}
.gallery-caption {
  margin-left: 0;
  font-size: 0.8rem;
}
.gallery br{
  display: none !important;
}
.gallery br:last-child{
  display: block !important;
}
.gallery img {
  width: calc(100% - 17px);
  height: auto;
}

.rsvp-me-event-meta,
.rsvp-me-event-form {
  float: none !important;  
  width: 100% !important;
}

.rsvp-me-event-meta h3,
.rsvp-me-event-form h3{
  font-size: 1.3rem;
  text-align: left;
  margin-bottom: -5px;
  line-height: 1.2rem;
}
.rsvp-me-event-meta h3::before{
  content: 'Local:';
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 1.2rem;
  opacity: 0.5;
}
.rsvp-me-event-form h3{
  font-size: 0;
}
.rsvp-me-event-form h3::before{
  content: 'Você comparecerá? Então informe pelo formulario abaixo:';
  font-size: 1.3rem;
}
.rsvp-me-event-form p{
  margin: 0;
}
label[for=fname],
label[for=lname]{
  font-size: 0;
}
label[for=fname]::before{
  content: 'Nome completo:';
  font-size: 1.1rem;
}
label[for=lname]::before{
  content: 'Telefone:';
  font-size: 1.1rem;
}

.rsvp-me-event-form input[type=radio]{
  display: inline-block;
  width: unset;
}
.rsvp-me-event-form input[type=text]{ margin-bottom: 10px; }

.rsvp-me-event-form form p:nth-child(6){
  font-size: 0; 
  margin-top: 10px;
}
.rsvp-me-event-form form p:nth-child(6)::before{
  content: 'Confirme quantas pessoas incluindo você e quais nomes de cada uma:';
  top: -20px;
  font-size: 1.1rem;
}
.rsvp-me-event-form form p:nth-child(7){
  text-align: right;
}
.rsvp-me-event-form form input[type=submit]{
  color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='60'%3E%3Crect x='10' y='10' width='230' height='40' fill='%23fbc7c1' /%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' fill='%23000000' font-family='Arial' font-size='18px' font-weight='bold'%3EENVIAR CONFIRMAÇÃO%3C/text%3E%3C/svg%3E");
  background-size: 96%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 200px;
  height: 40px;
  margin-top: 8px;
}


@media screen and (min-width: 500px) {
  .gallery-item {
    width: 33.333% !important;
  }  
  .artigo .alignleft {
    width: 50%;
    height: auto;
    float: left;
    margin-right: 20px;
  }
  .artigo .alignright{
    width: 50%;
    height: auto;
    float: right;
    margin-left: 20px;
  }
}
@media screen and (min-width: 850px) {
  .gallery-item {
    width: 25% !important;
  }  
  .slides, .testemunhos {
    overflow: hidden;
  }  
}
@media screen and (min-width: 900px) {
  .testemunhos {
    justify-content: center;
  }
  .testemunhos .slide {
    display: block;
    height: auto;
    width: 33%;
    max-width: 354px;
  }
  .testemunhos .slide__prev, .testemunhos .slide__next {
    display: none;
  }
  .balao {
    width: 89%;
  }
  #loopPost {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  #footer .alogofooter{
    display: inline-block
  }
  #footer .bloqquote {
    margin: 0 auto;
    width: 500px;
  }
  .zaplink, .tel {
    display: inline-flex;
  }
}
@media screen and (min-width: 1000px) {
  #conteudo .artigo,
  .limitWidth,
  #loopPost{
    max-width: 1000px;
    margin: 0 auto;
  }
  #comments{
    max-width: 951px;
    margin: 0 auto;
  }
  .commentlist p {
    font-size: 0.9rem;
  }
  .flexPerfil{
    display: flex;
    align-items: center;
  }
  .perfil .thumbPerfil {
    width: 188%;
  }
  .flexPerfil .descArea p{
    padding: 20px;
    font-size: 1.5rem;
    text-align: left;
    font-weight: 400;
    font-style: italic;
  }
  .perfil .vermais, .fullvermais {
    font-size: 1.5rem;
    padding: 14px 34px;
    border-radius: 43px;    
    font-style: italic;
  }
  .answer p {  
    font-size: 1rem;
  }
}