/* Estilos gerais */
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p {
  font-size: 18px;
}

p,
a,
li,
span {
  font-weight: 400;
  text-decoration: none;

}

/* */

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  height: 50vh;
  opacity: 1;
}

.mobile-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
}

.mobile-menu a:hover {
  color: #0d6efd;
}

.hero h2 {
  font-size: 60px;
  margin: 0 0 20px 0;
  font-weight: 700;
  max-width: 700px;
  line-height: 1.2;
  text-align: left;
}

.hero h2 .highlight {
  font-size: 80px;
  color: #ffa000;
  font-weight: 900;
}

.btn-main {
  background-color: #4c78b6;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    display: none;
  }

  .hero h2 {
    font-size: 40px;
  }

  .hero h2 .highlight {
    font-size: 60px;
  }
}

.hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  min-width: 100vw;
  padding: 8rem 3rem;
  color: #fff;
  text-align: left;
  text-shadow: 1px 1px 2px #000;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/modelo\ fundo\ 3\ -\ capa.jpg.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.7);
  z-index: -1;
}

.hero-content,
.hero-logo {
  position: relative;
  z-index: 1;
}

.social-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 15px;
  z-index: 10;
  padding: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ccc;
}

.energia-solar-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 550px;
  background-color: #ffffff;
}

.energia-solar-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 20px;
}

.energia-solar-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.energia-solar-imagem img {
  width: 100%;
  width: 500px;
  height: auto;
  object-fit: cover;
}

@media (max-width: 950px) {
  .energia-solar-container {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    gap: 20px;
  }

  .energia-solar-imagem img {
    width: 100%;
    width: 80%;
    height: auto;
    object-fit: cover;
  }
}

#servicos img {
  width: 60%;
  margin: 20px auto;
  display: block;
}

/* */

/* Rodapé */
footer {
  background-color: #4c78b6;
  color: white;
  padding: 30px 0;
  text-align: center;
  text-decoration: none;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content p {
  margin: 0;
}

.footer-content a {
  color: #ffa000;
  text-decoration: none;
}

.footer-content a {
  text-decoration: none;
  color: white;
}
