
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

body {
  background-image: url("imagem/fundo3.jpg");
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
}

nav.navbar-ajuste {
	padding: 10px 10px;
	background-color: rgb(255, 255, 255); 
	color: rgba(255,255,255,0.9);
}

.navbar-light .navbar-nav .nav-link {
color: black ;
border-color: rgba(255,255,255,0.9);
}

.navbar-light .navbar-nav .nav-link:hover {
color: purple;
border-color: rgba(255,255,255,0.9);
}

.navbar-light .navbar-toggler {

	color: rgba(28, 28, 28, 0.9);
    border-color: rgba(255,255,255,0.9);
}

.titulo-destaque {
  color: white; /* cor principal da fonte (branco) */
  -webkit-text-stroke: 1.5px #000; /* contorno preto ao redor das letras */
  font-weight: 700; /* letras mais "fortes" */
  text-transform: uppercase; /* deixa o título em maiúsculas */
  letter-spacing: 1px; /* espaçamento entre letras */
  text-align: center;
}

.alinhamento-texto {
  letter-spacing: 1px; /* espaçamento entre letras */
  text-align: center;
}

.sub-titulo {
  color: whitesmoke; /* cor principal da fonte (branco) */
  -webkit-text-stroke: 1.5px #000; /* contorno preto ao redor das letras */
  font-weight: 700; /* letras mais "fortes" */
  text-transform: uppercase; /* deixa o título em maiúsculas */
  letter-spacing: 1px; /* espaçamento entre letras */
  text-align: center;
}


/* carousel */

#carouselTopo img {
    width: 100%;
    height: 100%;
}

<style>
  #carouselTopo img {
    height: 100vh; /* ou 100vh se quiser tela cheia */
    object-fit: cover;
  }
</style>

/* Efeito opcional de brilho ao passar o mouse */
.titulo-destaque:hover {
  text-shadow: 0 0 8px rgba(0, 180, 216, 0.8);
}

/* Estilos para a seção de serviços */
#solucoes-servicos { /* já tem bg-light pela classe do section */ }

/* Card visual */
.serviço-card { 
  transition: transform .28s ease, box-shadow .28s ease;
  overflow: hidden;
}
.serviço-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(20,20,40,0.08);
}



/* Ícone do serviço */
.servico-icone {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0,123,255,0.08), rgba(0,123,255,0.02));
  color: #007bff;
  flex: 0 0 56px;
}

/* Ajuste de tipografia */
#solucoes-servicos h2 { letter-spacing: .6px; }
#solucoes-servicos h3 { font-size: 1.05rem; margin-bottom: .25rem; }

/* Responsividade - espaço entre linhas em telas pequenas */
@media (max-width: 576px) {
  .servico-icone { width: 48px; height: 48px; font-size: 1.05rem; }
}


/* QUEM SOMOS */

#quem-somos .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#quem-somos .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

/* --- SEÇÃO DE CONTATO --- */

.contact-section {
  padding: 80px 0;
  background: #ffffff;
}

.contact-card {
  display: flex;
  align-items: center;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e3e3e3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: 0.3s ease;
  background: #fff;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* CÍRCULO AO LADO DO TEXTO */
.contact-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

/* IMAGENS DENTRO DO CÍRCULO */
.avatar-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.contact-info h5 {
  margin: 0;
  font-weight: 700;
}

.contact-info p {
  margin: 0;
  color: #555;
}

.whats-block {
  margin-top: 60px;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp-modern {
  padding: 14px 32px;
  background: #25D366;     /* verde padrão */
  border-radius: 40px;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.25s;
  font-weight: 600;
}

/* HOVER — botão verde mais claro + texto roxo */
.btn-whatsapp-modern:hover {
  background: #3CE97A !important;   /* verde claro */
  color: #7B2CFF !important;        /* texto roxo */
  transform: scale(1.05);
}


h2 {
  
  width: 95%;
  text-align: left;
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 3%;
  

}

h4 {

  width: 95%;
  text-align: justify;
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 3%;
  margin-bottom: 3%;

}

a{
  color: white;
  text-decoration: ;
}

.imagem{
  width: 94%;
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 3%;
  margin-bottom: 3%;
  border-radius: 20px;
  
} 



footer {
  padding: 50px 0px 50px 0px;
  background-color: rgba(0, 28, 28, 0.4); 
 
}

/* Deixa o logo normal no desktop (não mexe no comportamento original) */
.footer-logo {
    position: absolute;
    bottom: 50px;
    right: 200px;
    height: 50px;
}

/* Ajuste para celular */
@media (max-width: 576px) {
    .footer-logo {
        position: static !important; /* remove o absolute */
        display: block;
        margin: 20px auto 0 auto; /* centraliza e coloca abaixo do texto */
    }
}


