body{
    margin: 0;
    font-family: arial, sans serif;
    text-align: justify;
    background-color:rgb(195, 215, 218);
    color: #222;
    /* padding-bottom: 60px; */ /* Removido, já que o rodapé não é mais fixo */
}

main{
    margin-left: 15%;
    margin-right: 15%;
    flex: 1;
}

header {
    background-color:rgb(100, 152, 220);
    color: white;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 10px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.inicio h1{
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.imagem{
  text-align: center;
}

.imagem-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
}

.imagem-container img {
  max-width: 100%;
  max-height: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color:rgb(0, 255, 234);
}

main h1, h2, h3{
    text-align: center;
}

.depoimento {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #f0f8ff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.foto-depoente {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #91c9f7;
}

.texto-depoimento h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #003366;
}

.texto-depoimento p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.social-buttons a {
  text-decoration: none;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-facebook {
  background-color: #3b5998;
}

.btn-facebook:hover {
  background-color: #2d4373;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn-instagram:hover {
  opacity: 0.85;
}

.btn-youtube {
  background-color: #ff0000;
}

.btn-youtube:hover {
  background-color: #cc0000;
}

.btn-email {
  background-color: #6c757d;
}

.btn-email:hover {
  background-color: #5a6268;
}

main.conteudo-principal {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.caixa-info {
  background-color: #f0f8ff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  margin-bottom: 30px;
}

.caixa-info:hover {
  transform: scale(1.01);
}

.caixa-info h2 {
  margin-bottom: 10px;
  font-size: 1.3em;
}

.caixa-info ul {
  padding-left: 20px;
}

.caixa-info li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.caixa-info a {
  text-decoration: none;
  color: #0056b3;
}

.caixa-info a:hover {
  text-decoration: underline;
}

footer {
  width: 100%;
  background-color: rgb(100, 152, 220);
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 15px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}
