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

.header {
  width: 100%;
  background: #f3f3f3;
  padding: 18px 0;
  position: relative;
  z-index: 999;
}

.container-header {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  letter-spacing: 0.3px;
}

.menu li a:hover {
  color: #000;
}

.btn-header {
  padding: 10px 22px;
  border: 2px solid #ffe235;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

.btn-header:hover {
  background: #ffe235;
  color: #000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}

@media (max-width: 991px) {

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f3f3f3;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 25px;

    display: none;
  }

  .nav.active {
    display: flex;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hamburger {
    display: flex;
  }
}

/*hero*/
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  background: url("img/capa.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8%;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
  text-align: left;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span{
    color: #ffe235;
}
.hero-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e5e5e5;
}

.btn-hero {
  display: inline-block;
  background: #ffe235;
  color: #000;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-hero:hover {
  background: #ffe235;
}

@media (max-width: 991px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
     height: 80vh;
  background: url("img/herocelular.png") no-repeat center center/cover;
  }

  
  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}

/*linha preta*/

.top-bar {
  width: 100%;
  background: #000;
  padding: 25px 20px;
  text-align: center;
  color: #fff;
}

.top-bar-content {
  max-width: 1200px;
  margin: auto;
}

.top-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.top-title img {
  width: 40px;
  height: auto;
}

.top-title h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}

.top-bar p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
  color: #ffffff;
}

.top-buttons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffe029;
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.contact-btn img {
  width: 18px;
  height: 18px;
}

.contact-btn:hover {
  background: #444;
}

.whatsapp {
  background: #ffe029;
}

.whatsapp:hover {
  background: #1ebe5d;
}

@media (max-width: 768px) {

  .top-title {
    flex-direction: column;
    gap: 10px;
  }

  .top-title h2 {
    font-size: 18px;
  }

  .top-title img {
    width: 45px;
  }

  .top-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 90%;
    justify-content: center;
  }
}

/*serviços*/

.servicos {
  padding: 80px 5%;
   background: url("img/fundoservicos.png") no-repeat center center/cover;
}

.container-servicos {
  max-width: 1300px;
  margin: auto;
}

.titulo-servicos {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 600;
  color: #222;
  position: relative;
}

.titulo-servicos::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ffe235;
  display: block;
  margin: 15px auto 0;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-servico {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.4s ease;
  transform: translateY(40px);
  opacity: 0;
}

.card-servico img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #111;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.card-servico:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
@media (max-width: 991px) {
  .grid-servicos {
    grid-template-columns: 1fr;
  }
  .servicos {
  padding: 80px 5%;
   background: url("img/fundoservicoscelular.png") no-repeat center center/cover;
}
}

/*sobre nos*/

.secao-noritz {
  padding: 80px 10%;
   background: url("img/fundosobre.png") no-repeat center center/cover;
}

.container-noritz {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.noritz-texto {
  flex: 1;
}

.noritz-texto h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000;
}

.noritz-texto p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.noritz-texto ul {
  padding-left: 0;
  margin-left: 0;
  list-style-position: inside;
   margin-bottom: 30px;
}

.noritz-texto li {
  margin-bottom: 8px;
}

.btn-orcamento {
  display: inline-block;
  padding: 14px 30px;
  background: #fce028;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-orcamento:hover {
  background: #000;
  color: #fce028;
}

.noritz-img {
  flex: 1;
}

.noritz-img img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .container-noritz {
    flex-direction: column;
  }

  .noritz-texto {
    order: 1;
  }

  .noritz-img {
    order: 2;
    margin-top: 30px;
   
  }

  .secao-noritz {
  padding: 80px 10%;
   background: url("img/sobrecelular.png") no-repeat center center/cover;
}


 
}

.reveal-text,
.reveal-img {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-text.active,
.reveal-img.active {
  opacity: 1;
  transform: translateY(0);
}

/*atendimento*/

.atendimento {
  padding: 60px 20px;
  background: url("img/fundo2.png") no-repeat center center/cover;
}


.atendimento-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
   color: #fce028;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background-color: #0000008d;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  width: 60px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
  
}

.descricao {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
}

.botao {
  display: inline-block;
  padding: 10px 20px;
  background-color:#fce028;;
  border-radius: 6px;
  text-decoration: none;
  color: black;
  font-weight: 600;
  transition: 0.3s;
}

.botao:hover {
  background: #000;
  color: #fce028;
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .atendimento {
  padding: 60px 20px;
  background: url("img/fundo2celular.png") no-repeat center center/cover;
}

}

/*form*/


.contato {
  padding: 60px 20px;
  background-image: url("img/fundosobre.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.form-box {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tag {
  color: #fce028;
;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.form-box h2 {
  margin: 10px 0;
  font-size: 32px;
}

.subtitulo {
  color: #666;
  margin-bottom: 25px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  outline: none;
  border-color: #fce028;
}

.form-box button {
  width: 100%;
  padding: 14px;
  background: #fce028;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background: #000;
  color: #fce028;
}

.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  border-radius: 18px;
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .container {
    flex-direction: column;
  }

  .form-box {
    padding: 25px;
  }

  .form-box h2 {
    font-size: 26px;
  }

  .subtitulo {
    font-size: 14px;
    line-height: 1.4;
  }

  .form-box input,
  .form-box select,
  .form-box textarea {
    font-size: 14px;
    padding: 12px;
  }

  
  .form-box select,
  .form-box option {
    white-space: normal;
  }

 
  input,
  select,
  textarea {
    font-size: 16px;
  }

}

/*footer*/


  footer li {
    margin-bottom: 6px;
    color: #ddd;
    font-size: 14px;
}
footer a:hover {
    text-decoration: underline;
}

.footer-toggle .arrow {
  display: none;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {

  .footer-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  .footer-toggle .arrow {
    display: inline-block;
  }

  .footer-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .footer-list.active {
    max-height: 2000px; 
  }

  .footer-toggle.active .arrow {
    transform: rotate(180deg);
  }
}

/* DESKTOP */
@media (min-width: 769px) {

  .footer-list {
    column-count: 3;     
    column-gap: 40px;     
  }

  .footer-list li {
    break-inside: avoid;
    margin-bottom: 8px;
  }

}


.btn-topo {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 52px;
  height: 52px;

  background: #fce02889; 
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.btn-topo.show {
  opacity: 1;
  pointer-events: auto;
}

.btn-topo img {
  width: 22px;
  height: 22px;
}

.btn-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  z-index: 99999;
  cursor: pointer;
}

.btn-whatsapp img {
  width: 28px;
  height: 28px;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.btn-whatsapp:hover {
  transform: scale(1.05);
}
