* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #a4a4b1, #ece7e7);
    color: rgb(24, 24, 24);
}

.topo{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 24px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}

.logotecmaq img {
  height: 60px;
  width: 200px;
}

.whatsapp{
    display: flex;
    align-items: center;
}

.whatsapp a {
  display: inline-flex;          /* deixa o link um bloco flexível */
  align-items: center;           /* centraliza verticalmente o conteúdo */
  padding: 10px 20px;            /* espaço interno do botão */
  background-color: #25D366;     /* verde WhatsApp */
  color: white;                  /* cor do texto */
  font-weight: bold;              /* texto em negrito */
  text-decoration: none;          /* remove sublinhado do link */
  border-radius: 8px;             /* cantos arredondados */
  transition: background 0.3s;    /* animação suave ao passar o mouse */
  border: 0;
}

.whatsapp a:hover {
  background-color: #1baa54;      /* muda a cor ao passar o mouse */
  cursor: pointer;                /* muda o cursor para indicar clique */
}

.whatsapp img {
    width: 50px;
    height: 40px;
    padding-right: 10px;
}

.faixa {
  position: relative; /*essencial se quiser por  texto sobre imagem, esse comando diz que os filhos serão relativos a .faixa e nao sobre body, a pagina.*/
  width: 100%;
  height: 400px; /* altura da faixa, pode ajustar */
  overflow: hidden; /* evita que a imagem ultrapasse */
}

/* 🔹 imagem de fundo */
.faixa img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* imagem cobre toda a área sem distorcer, dando um efeito legal */
  filter: brightness(50%); /* escurece a imagem (50% = meio escuro) */
}

/* 🔹 centralizar o texto sobre a imagem */
.faixa h1,
.faixa p {
  position: absolute; /*Coloca o texto por cima da imagem, comando essencial para esse efeito*/
  left: 50%;
  color: white;
  text-align: center;
  transform: translateX(-50%); /* centraliza horizontalmente */
  width: 80%; /* limita o tamanho do texto */
}

/* posição individual dos textos */
.faixa h1 {
  top: 20%;
  font-size: 3.5rem;
  margin: 0;
}

.faixa p {
  font-size: 1.8rem;
  padding: 30px;
}

.p1 {
    top: 45%;
}

.p2 {
    top: 70%;
}

.botao1 {
    display: flex;
    justify-content: center;
}

.whatsapp2 {
  display: inline-flex;          /* deixa o link um bloco flexível */
  align-items: center;           /* centraliza verticalmente o conteúdo */
  padding: 20px 40px;            /* espaço interno do botão */
  background-color: #414470;     /* verde WhatsApp */
  color: white;                  /* cor do texto */
  font-weight: bold;              /* texto em negrito */
  text-decoration: none;          /* remove sublinhado do link */
  border-radius: 20px;             /* cantos arredondados */
  transition: background 0.3s;    /* animação suave ao passar o mouse */
  margin-top: 40px;
  font-size: 30px;
}

.whatsapp2:hover {
  background-color: #6872a8;      /* muda a cor ao passar o mouse */
  cursor: pointer;                /* muda o cursor para indicar clique */
}

.block {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* permite quebrar em telas menores */
  padding: 30px;
}

.block2 {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap; /* permite quebrar em telas menores */
    padding: 30px;
}

.card {
  width: 300px;
  text-align: center;
  background: linear-gradient(135deg, #425d86, #94aae7);
  padding-top: 30px;
  padding-bottom: 10px;
  border-radius: 10%;
}

.card2 {
    width: 300px;
    text-align: center;
}

.card2 img{
  width: 200px;     /* tamanho do ícone */
  height: 200px;
  object-fit: cover;
  border-radius: 50%; /* deixa redondo */
  margin-bottom: 15px;
}

.card img {
  width: 120px;     /* tamanho do ícone */
  height: 120px;
  object-fit: cover;
  border-radius: 50%; /* deixa redondo */
  margin-bottom: 15px;
}

.primeira {
    color: #2b2825;
    padding-bottom: 50px;
}

.funciona {
    display: flex;
    justify-content: center;
    font-size: clamp(1rem, 4vw, 3rem);
    padding: 20px 0;
    margin-top: 30px;
}

.card p {
    margin-top: 20px;
    font-weight: 600;
    padding: 0 10px;
}

.segunda {
    color: #2b2825;
    font-size: clamp(1rem, 4vw, 3rem);
    padding: 20px;
    padding-bottom: 80px;
    background-color: rgb(241, 240, 245);
    display: flex;
    justify-content: center;
}

.segunda h3{
    margin: 50px;
    text-align: center;
}

.segunda ul {
    display: inline;
    justify-content: center;
}

.segunda li {
    padding: 10px;
    margin-left: 30px;
}

footer {
    width: 100%;
    height: 100px;
    text-align: center;
    align-items: center;
    display: flex;
    background-color: rgb(101, 104, 255);
    justify-content: center;
}

footer div {
    font-size: 30px;
    color: rgb(23, 28, 53);
    font-weight: 500;    
}

.marcas{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 30px;
    font-size: 3rem;
    margin-top: 30px;
    
}

.block h2 {
    color: rgb(228, 226, 255);
}









































@media (max-width: 600px) {
    .topo{
        padding: 5px 20px;
    }
    .whatsapp img{
        display: none;
    }
    .whatsapp a{
        font-size: 15px;
        padding: 8px 16px;
    }
    .faixa h1{
        font-size: 2.2rem;
    }
    .faixa p{
        font-size: 1.3rem;
    }
    .segunda {
    color: #2b2825;
    font-size: clamp(1rem, 6vw, 6rem);
    padding: 50px;
    background-color: rgb(241, 240, 245);
    display: flex;
    justify-content: center;
    }
    
    .segunda h3{
        margin-bottom: 40px;
    }
    
    .segunda ul {
        display: inline;
        justify-content: center;
    }

    .marcas {
        font-size: 30px;
    }
    .logotecmaq img {
    height: 40px;
    width: 135px;
    }
    footer div {
        font-size: 20px;
        color: rgb(23, 28, 53);
        font-weight: 500;    
    }
    .marcas{
        display: flex;
        justify-content: center;
        text-align: center;
        padding: 30px;
        font-size: 1.7rem;
        margin-top: 30px;
    }
}