*{
    margin:0;
    padding:0;
}
 
body{
    width:100%;
    font-family: 'El Messiri', sans-serif;
    background-color:#131b25;
	background-color: #333333;
	color: #ECECEC;
	letter-spacing: 2px;
	word-spacing: 4px;
}

a {
	color: #D1D1D1;
}

a:visited {
    color: #D7D7D7;
}

div {
	margin:10px;
}

section {
	margin:10px 0px;
}

p{
	margin:20px;
	text-align: justify;
}

hr {
	margin: 10px 0px 40px 0px;
}

input, textarea {
	padding:10px;
	width: 300px;
}

button {
	width: 322px;
	padding:10px;
}


.abrir-div-dropdown{
	margin: 40px 10px 20px 0px;
	padding-left: 44px !important;
}

#whatsAppBtn1 {
	width: 360px;
	height: 144px;
	background-image: url('https://imperiodequimbanda.com.br/assets/img/consulta-whatsapp.jpg'); 
  	background-position: center; 
  	background-repeat: no-repeat;
  	background-size: cover;
}


.estrelas_1, .estrelas_2, .estrelas_3, .estrelas_4, .estrelas_5{
	width:78px;
	height:12px;
	display:block;
	float:left;
	margin-top:3px;
}

.post h3, .post hr {
	margin-left: 20px;
	margin-right: 20px;
}

.avaliacao {
	padding-left: 10px;
}


/* Galeria */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajusta automaticamente */
    gap: 20px; /* Espaço entre os itens */
    margin: auto;
    padding: 10px;
    width: 94%; /* Ocupa toda a largura */
}

/* Itens da Galeria */
.gallery-item {
    background-color: #444; /* Cor de fundo */
    border-radius: 10px; /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra */
    overflow: hidden; /* Garante que os itens respeitem o contêiner */
    text-align: center; /* Centraliza o conteúdo */
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px); /* Animação ao passar o mouse */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

/* Imagem */
.gallery-item img {
    width: 100%; /* Imagem ocupa toda a largura */
    height: auto; /* Mantém a proporção */
    border-radius: 8px; /* Bordas arredondadas */
    margin-bottom: 10px; /* Espaço abaixo da imagem */
}

/* Data */
.date-container p {
    font-size: 14px;
    color: #D1D1D1; /* Cor do texto */
    margin: 5px 0;
}

/* Legenda */
.caption-container p {
    font-size: 16px;
    color: #ECECEC;
    margin: 10px 0;
    text-align: justify; /* Alinha o texto */
    word-break: break-word; /* Evita estouro de texto */
}

/* Link para Instagram */
.caption-container a {
    color: #D1D1D1;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
}

.caption-container a:hover {
    color: #FFD700; /* Cor diferente ao passar o mouse */
}




footer {
	margin: 80px 10px 10px 10px;
	padding-top:10px;
	text-align: center;
	border-top: 1px solid #ECECEC;
}







@media screen and (max-width:760px){


	body {
		text-align: center;
	}
	
	#whatsAppBtn1 {
		margin: auto;
	}
	
	
    .gallery {
        grid-template-columns: 1fr; /* 1 coluna */
    }


}

