* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden; 
    width: 100%; 
    scroll-behavior: smooth;
}

body {
  padding-top: 120px;
}

.interface {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Efeitos ---------- */

.effect-txt-sv, .effect-services-img1, .effect-services-img2, .effect-services-img3, .effect-txt-ava, .effect-feedback-img1, .effect-feedback-img2, .effect-feedback-img3, .effect-txt-aboutus, .effect-txt-insta, .effect-img-aboutus {
  visibility: hidden;
}

/* ---------- HEADER ----------*/

header {
  width: 100%;
  font-family: "Quicksand", sans-serif;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed; 
  top: 0; 
  z-index: 1000;
}

header .header-site {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


header .header-logo img {
    max-width: 120px;
}

header .nav-list {
  display: flex;
  align-items: center;
}

header .nav-list ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}


header .nav-list .nav-link {
    color: #000000;
    text-decoration: none;
    padding: 17px;
    display: inline-block;
}

.nav-list a:hover {
    transform: scale(1.05);
    transition: .2s;
}

header .solicite button {
    width: 190px;
    height: 40px;
    font-size: 15px;
    background-color: red;
    color: #ffffff;
    font-family: "Quicksand", sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: .5s;
}

header .solicite button:hover {
    background-color: rgb(172, 0, 0);
    color: #ffffff;
    border: 1px solid red;
}

/* ---------- MENU RESPONSIVO ---------- */


.mobile-menu-icon {
  display: none;
}

.mobile-menu {
  display: none;
}



/*---------- CAROUSEL ----------*/

.custom-carousel {
    max-height: 600px; 
    overflow: hidden;
    margin-bottom: 30px;
}

.custom-carousel img {
    object-fit: cover; 
    height: 100%;
}

/* ---------- SERVIÇOS ---------- */

.services {
    margin-bottom: 50px;
}

.txt-sv {
    text-align: center;
    margin: 30px;
}

.txt-sv h1 {
    font-family: "Roboto", serif;
    font-size: 1.4rem;
}

.services-img {
    display: flex;
    justify-content: space-around;
}

.services-img img {
    width: 380px;
}

.services-img img:hover {
    transform: scale(1.01);
    transition: .2s;
}

/* --------- RECOMENDAÇÃO ---------- */

.rcmd {
    background-color: #000000;
    height: 260px;
    width: 100%;
    display: flex;
    align-items: center;
}

.txt-rcmd {
    text-align: center;
    color: #ffffff;
}

.txt-rcmd h1 {
    font-family: "Roboto", serif;
    font-size: 1.8rem;
    margin: 0;
}

.txt-rcmd h3 {
    font-family: "Roboto", serif;
    font-size: 1.2rem;
}

.txt-rcmd p {
    font-family: "Roboto", serif;
    font-size: 25px;
    margin-top: 5px;
    color: #c9c9c9;
}

.topicos-rcmd {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

/*---------- Botão Orçamento ----------*/ 
.btn-solicitacao {
    display: flex;
    justify-content: center;
}

.btn-solicitacao a {
  text-decoration: none;
}

.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: red;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
  .button:hover .icon {
    transform: translate(4px);
  }
  
  .button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  
  /* ---------- Avaliações ---------- */

  .feedbacks {
    margin-bottom: 60px;
    margin-top: 60px;
  }

  .txt-ava h1 {
    text-align: center;
    font-family: "Roboto", serif;
    font-size: 1.4rem;
    margin: 20px;
  }

  .ava {
    display: flex;
    gap: 30px;
    justify-content: center;
  }

  .btn-ava {
    display: flex;
    justify-content: center;
  }

  .itens-ava .feedback {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 17px;
  }

  .itens-ava .feedback img {
    width: 400px;
    border-radius: 8px;
    box-shadow: 2px 1px 10px rgb(131, 131, 131);
  }

  .btn-ava button {
    width: 190px;
    height: 40px;
    font-size: 15px;
    background-color: rgb(219, 219, 219);
    color: #000000;
    font-family: "Quicksand", sans-serif;
    cursor: pointer;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 4px;
    margin-top: 17px;
  }

  .btn-ava button:hover {
    background-color: rgb(175, 175, 175);
  }

  /* ---------- Contato ---------- */
  
  .contact {
    background-color: #000000;
  }

  .itens-ctt {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .itens-ctt .logo-ctt img {
    width: 200px;
    margin: 50px;
  }

  .txt-ctt h1 {
    font-size: 25px;
    color: #ffffff;
  }

  .txt-ctt p {
    font-size: 18px;
    color: #a5a5a5;
  }

  .txt-ctt span {
    font-size: 22px;
  }

  .txt-ctt {
    width: 600px;
  }

  .ctts h1 {
    font-size: 25px;
    color: #ffffff;
  }

  .ctts p {
    font-size: 18px;
    color: #a5a5a5;
  }

  /* ---------- Footer ----------- */

  footer {
    background-color: #000000;
    width: 100%;
    height: 40px;
}

footer p {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 0.1;
    color: #4d4d4d;
    font-size: 15px;
    text-align: center;
    margin: 0;
}

footer a {
  text-decoration: none;
}

footer span {
    color: #009DFF;
}

#direitos {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px solid #a5a5a5;
}

  /* ---------- Quem somos ---------- */

  .aboutus {
    background-color: #f1f1f1;
  }

  .itens-aboutus {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .itens-aboutus img {
    width: 350px;
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .txt-aboutus {
    width: 600px;
  }

  .itens-aboutus .txt-aboutus h1 {
    text-align: center;
    font-family: "Roboto", serif;
    font-size: 1.4rem;
    margin: 15px;
  }

  .itens-aboutus .txt-aboutus p {
    font-family: "Roboto", serif;
    font-size: 18px;
    margin-top: 5px;
  }

  .insta {
    display: flex;
    justify-content: center;
  }

  .insta a {
    text-decoration: none;
  }

  .btn-insta {
    background: transparent;
    position: relative;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    cursor: pointer;
    border: 1px solid rgb(255,0,0);
    border-radius: 25px;
    outline: none;
    overflow: hidden;
    color: rgb(255,0,0);
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
    z-index: 100;
  }

  .btn-insta span {
    margin: 10px;
  }

  .btn-insta::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
  }

  .btn-insta:hover {
    color: #fff;
    border: 1px solid rgb(255,0,0);
  }

  .btn-insta:hover::before {
    box-shadow: inset 0 0 0 10em rgb(255, 0, 0);
  }
    
  /* ---------- Botão WhatsApp ---------- */

  .wpp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Cor do WhatsApp */
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.wpp-btn a {
  color: white;
  font-size: 24px;
}



    