* {
    margin: 0;
    padding: 0;
}

/*  AJUSTE DO CABEÇALHO  */

.cabecalhos{
    display:flex;
    align-items:center;

    height:250px;
    padding:0 40px;

    background-image:url("../img/header3.png");
    background-size:cover;
    background-position:right center;
}

.cabecalhos img{
    width:300px;
}

.texto-header{
    margin-left: 40px;
    max-width: 200px;
}

.texto-header h1,
.texto-header p{
    color:white;
}

.texto-header h1 {
  font-size: 22px;
}

.texto-header p {
  font-size: 18px;
}

.texto-header .green {
  color: #9fcc37;
}

@media (max-width: 450px){

 .cabecalhos {
        height: 150px;
        justify-content: center;
        padding: 0;

        background-size: contain;
        background-repeat: no-repeat;
        background-position: right center;
    }

    .texto-header {
        display: none;
    }

    .cabecalhos img {
        width: 180px;
    }
}

/*  AJUSTE DO MENU  */

.menus ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.menus ul li a {
  display: block;
  padding: 12px 22px;
  margin: 5px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  background: linear-gradient(135deg, #b8f14a, #98d71e);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 18px rgba(152, 215, 30, 0.25);
  transition: all 0.3s ease;
}
.menus ul li a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #98d71e, #7fbc12);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(152, 215, 30, 0.35);
}
.menus ul li a:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(152, 215, 30, 0.25);
}


/* AJUSTE DO AVISO */

.avisos {
    font-size: 25px;
    background-color: grey;
    height: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*  AJUSTE DO FOOTER */

.fots {
    display: flex;
    background-color: black;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.fots p {
    
    color: white;

}


/*  ALTERAÇÃO NO BODY COMPLETO COM IA  */

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#f7f8fb;
    color:#333;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

.section{

    padding:80px 0;

}

.titulo{

    text-align:center;
    margin-bottom:50px;

}

.titulo h2{

    font-size:38px;
    color:#1f2937;
    margin-bottom:15px;

}

.titulo p{

    color:#666;
    font-size:18px;

}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;

}

.card{

    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

.icone{

    font-size:50px;
    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;
    color:#9fcc37;

}

.card p{

    margin-bottom:20px;
    line-height:1.7;

}

.card ul{

    padding-left:20px;

}

.card li{

    margin-bottom:8px;

}

.fundo{

    background:#eef3fa;

}

.vantagens{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;

}

.vantagem{

    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,.06);

}

.passos{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;

}

.passo{

    text-align:center;
    padding:35px;
    background:white;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.passo span{

    display:flex;
    align-items:center;
    justify-content:center;

    width:60px;
    height:60px;

    background:#9fcc37;
    color:white;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    font-size:24px;
    font-weight:bold;

}

.cta{

    background:linear-gradient(135deg,#9fcc37,#000000);
    color:white;
    text-align:center;
    padding:90px 0;

}

.cta h2{

    font-size:40px;
    margin-bottom:20px;

}

.cta p{

    font-size:20px;
    margin-bottom:40px;

}

.botao{

    display:inline-block;
    padding:18px 40px;
    background:#25d366;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;

}

.botao:hover{

    background:#1ebe5d;
    transform:scale(1.05);

}

@media(max-width:768px){

    .titulo h2{

        font-size:30px;

    }

    .cta h2{

        font-size:30px;

    }

}

/* AJUSTE DO CONTATO E MAPA */


.cta-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;

}

.cta-info{

    text-align:left;

}

.endereco{

    margin-top:40px;

}

.endereco h3{

    margin-bottom:15px;
    color:#fff;

}

.endereco p{

    margin-bottom:8px;
    font-size:18px;

}

.mapa iframe{

    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

@media(max-width:768px){

    .cta-grid{

        grid-template-columns:1fr;

    }

    .cta-info{

        text-align:center;

    }

}


/* Personalização do Formulário   */

input {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

input[type="text"], input[type="email"], input[type="date"], input[type="number"], textarea{
    width: 400px;
}

.form-container {
    background-color: #fdfdfd;
    width: 60%;
    margin: 0 auto;
    position: relative;
    top: 25px;
    padding-bottom: 150px;
}

textarea {
    padding: 10px 5px;
    width: 60%;
    height: 100px;
}

.form-header {
    padding: 20px;
    text-align: center;
    border-bottom:  2px solid #1ebe5d;
}

.form-header h1 {
    margin-bottom: 15px;
}

.box-input label, .box-input input, .box-input textarea {
    display: block;
    padding: 8px;
    margin-bottom: 8px;
}

.submit input{

    display:inline-block;
    padding:18px 40px;
    background:#25d366;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;

}

.submit input:hover{

    background:#1ebe5d;
    transform:scale(1.05);
}

@media (max-width: 600px) {

    .form-container {
        width: 95%;
        padding: 15px;
        top: 10px;
        padding-bottom: 80px;
    }

    input[type="text"],
    input[type="email"],
    input[type="date"],
    input[type="number"],
    textarea {
        width: 100%;
    }

    textarea {
        height: 120px;
    }

    .submit input {
        width: 100%;
        padding: 15px;
    }

    .form-header h1 {
        font-size: 24px;
    }

}

/* Personalizado acompanhamento de Ordem de serviço Monitoring */

.monitoring {
    padding: 20px;
    margin: 0 auto;
    background-color: white;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    margin-bottom: 50px;
    text-align: center;
}

.monitoring a {
    display: inline-block;
    text-decoration: none;
    background-color: #25d366;
    padding: 10px;
    border-radius: 18px;
    color: white;
    font-weight: bold;
    transition: .3s;
    
}

.monitoring a:hover {
    background:#1ebe5d;
    transform:scale(1.05);
}

.monitoring h1 {
    padding: 20px;
}