* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: linear-gradient(to right, #ff9800, #ff5722);
  color: rgb(147, 251, 62);
  padding: 40px 0;
  text-align: center;
}

nav {
  margin-top: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.section {
  padding: 60px 0;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
  color: #ff5722;
}

.bg-light {
  background-color: #ffffff;
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: white;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding-bottom: 20px;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.card h3 {
  margin: 15px 0;
  color: #ff5722;
}

.card p {
  padding: 0 15px;
}

.card:hover {
  transform: translateY(-8px);
}

/* CONTATO */
.contato {
  background: #ff9800;
  color: white;
}

.contato h3 {
  margin-top: 15px;
  font-size: 24px;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* CARROSSEL */
.carousel-section {
  background: #ffffff;
}

.carousel {
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}

.carousel-track {
  display: flex;
  width: calc(300px * 10);
  animation: scroll 30s linear infinite;
}

.carousel-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 10px;
}

/* ANIMAÇÃO */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* IMAGEM ATRAVESSANDO A TELA */
/* SOL FLUTUANDO NO CÉU - NÃO INTERFERE NO LAYOUT */

.imagem-movendo {
  
  position: fixed;   /* remove do layout */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;     /* ocupa altura da tela */
  pointer-events: none; /* não atrapalha clique */
  z-index: 0;        /* atrás do conteúdo */
}

/* SOL */
.imagem-movendo img {
  
  position: absolute;
  width: 100px;
  height: 70px;
  object-fit: contain;
  animation: sol 25s linear infinite;
}

/* MOVIMENTO EM ELIPSE */
@keyframes sol {

  0% {
    transform: translate(-200px, 80vh);
  }

  25% {
    transform: translate(25vw, 55vh);
  }

  50% {
    transform: translate(50vw, 45vh); /* ponto mais alto - antes era 15vh */
  }

  75% {
    transform: translate(75vw, 55vh);
  }

  100% {
    transform: translate(110vw, 80vh);
  }
}

/* ===== MANUTENÇÃO CARDS MODERNOS ===== */

.manut-desc {
  margin-bottom: 40px;
}

.manut-servicos {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.manut-card {
  background: #e1f476;
  width: 260px;
  padding: 25px;
  border-radius: 20px; /* arredondado */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Efeito leve ao passar o mouse */
.manut-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Linha animada inferior */
.manut-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(to right, #ff9800, #ff5722);
  transition: 0.4s;
}

.manut-card:hover::after {
  width: 100%;
}

.manut-card h3 {
  margin-bottom: 10px;
  color: #ff5722;
}

.manut-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.manut-card span {
  font-weight: bold;
  font-size: 14px;
  color: #ff9800;
}
