* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Archivo', sans-serif;
}

body {
  line-height: 1.6;
  background-color: #000;
  color: #fff;
}

p {
  font-size: 17px;
}

p.suporte-text,
p.inteligente-text,
p.modular-text,
p.contato-paragraph,
h2.contato-title {
  color: #000;
  text-shadow: none;
}

p.hero-subtitle {
  padding: 60px;
}

/* HEADER */
.logo {
  width: 150px;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* logo à esquerda, menu à direita */
  padding: 0rem 3rem;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 150px;
  height: auto;
}

.atlas-nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.atlas-nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.atlas-nav-link:hover,
.atlas-nav-link:focus {
  color: #7e57c2;
  outline: none;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    gap: 1rem;
  }

  .atlas-nav-list {
    flex-direction: column;
    gap: 1rem;
  }
}


/* HERO */

.hero {
  background-image: url('./assets/banner_princiapl.png');
  background-size: cover;
  background-position: center;
  padding: 12rem 2rem;
  text-align: center;
  color: #fff;
  border-radius: 0 0 40px 40px;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 22px;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  display: inline-block;
}

h2,
p {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* SECTION STRUCTURE */
.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 4rem 5%;
  align-items: center;
}

.section:nth-child(even) {
  background-color: #838282;
}

.text-box {
  margin-left: 80px;

}

.text-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* SECTIONS ELEMENTS */
.quem-img,
.servicos-img,
.porque-img {
  width: 100%;
  border-radius: 20px;
}

.quem-paragraph,
.servicos-paragraph,
.porque-paragraph {
  color: #fff;
}

.porque-list {
  margin-top: 1rem;
}

.features-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: nowrap;
}

.feature img {
  transition: transform 0.4s ease;
}

.quem-img:hover,
.servicos-img:hover,
.porque-img:hover,
.feature img:hover {
  transform: scale(1.05) translateY(-5px);
}

.feature {
  width: 345px;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature img {
  width: 100%;
  height: 171px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.modular-text,
.inteligente-text,
.suporte-text {
  color: #000;
}

.sistema-integrado {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
}

.sistema-integrado .text-box {
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
 /*Botão*/

 .button {
  padding-left: 30%; /* afasta do canto esquerdo */
}

.button button {
  background-color: #25d366; /* verde WhatsApp */
  color: white;
  padding: 15px 32px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button button:hover {
  background-color: #1ebe5b; /* tom mais escuro no hover */
  transform: scale(1.03); /* leve zoom */
}





/* CONTATO */
.contact {
  background-image: url('./assets/entre-em-contato.png');
  font-size: 15px;
  background-size: cover;
  background-position: center;
  padding: 7rem 2rem;
}

.content {
  margin-left: 86px;
}

.contato-paragraph {
  margin: 0.5rem 0;
}

/*ícone whats*/

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-btn img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}

.whatsapp-msg {
  background-color: #25d366;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  animation: showMessage 0.6s ease-in-out 3s forwards;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes showMessage {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo (esconder msg no mobile se quiser) */
@media (max-width: 500px) {
  .whatsapp-msg {
    display: none;
  }
}

/* FOOTER */
footer {
  font-size: 0.9rem;
  background-color: #000;
  border-top: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.footer-text {
  color: #fff;
  margin: 0;
}

.footer-logo {
  width: 100px;
  margin: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .section {
    grid-template-columns: 1fr;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  footer {
    flex-direction: column;
  }
}