/*header*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
}

.header {
  width: 100%;
  background: #d9d9d9;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  height: 80px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.logo-text strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.logo-text span {
  color: #000;
  font-size: 11px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #000000ac;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 580;
}

.nav a:hover {
  color: #e10000;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}




.btn-orcamento-header {
  composes: btn-orcamento-base;
  
  font-size: 16px;
}

.btn-orcamento-header {
 display: inline-block;
  margin-top: 20px;
   background: linear-gradient(
    to bottom,
    #e10000 0%,
    #ff3131 60%,
    #ff4747 100%
  );
  color: #fff;
  padding: 14px 20px;
  border-radius: 22px;
  font-weight: 580;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(255, 2, 2, 0.35),
              inset 0 1px 0 rgba(255,255,255,.25);
  transition: .3s;
}

.btn-orcamento-mobile {
 background: linear-gradient(
    to bottom,
    #e10000 0%,
    #ff3131 60%,
    #ff4747 100%
  );
  color: #fff;
  width: 100%;
  padding: 14px 0;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
 box-shadow: 0 4px 6px rgba(255, 2, 2, 0.35),
              inset 0 1px 0 rgba(255,255,255,.25);

transition: .3s;
}

.btn-orcamento-header:hover,
.btn-orcamento-hero:hover,
.btn-orcamento-mobile:hover {
  background: linear-gradient(
    to bottom,
    #e1000087 0%,
    #ff3131 60%,
    #ff4747 100%
  );
  transform: translateY(-1px);
}


.hamburger {
  display: none;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #d9d9d9;
  padding: 20px;
  gap: 18px;
}

.mobile-menu a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}


@media (max-width: 900px) {

  .nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo-text {
    display: none;
  }

  .logo-area img {
    height: 80px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-btn {
    width: 100%;
    text-align: center;
    
  }

  .mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-phone img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

}

.hero-guincho {
  min-height: 90vh;
  background-image: url("img/capa1.png"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;
  position: relative;
}

.hero-guincho::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.398); /* escurece a imagem */
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.hero-content h1 {
 
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #cbc4c4;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-info {
  display: block;
  margin-top: 25px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* BOTÃO */
.btn-whatsapp {
  display: inline-block;
  background: linear-gradient(
    to bottom,
    #e10000 0%,
    #ff3131 60%,
    #ff4747 100%
  );
  color: #fff;
  padding: 15px 35px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(211, 37, 37, 0.4);
}

/* ANIMAÇÕES */
.reveal-text,
.reveal-btn {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-text.active,
.reveal-btn.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.3rem;
   
  }

  .hero-content p {
    font-size: 1.2rem;
  }
  .hero-info {
  display: block;
  margin-top: 25px;
  font-size: 1.0rem;
  opacity: 0.85;
}

.hero-guincho {
  min-height: 100vh;
  background-image: url("img/capacelular1.png"); /* coloque sua imagem */
  padding-top: 80px; 

}

}

@media (min-width: 1024px) and (max-width: 1366px) {

    .hero-guincho {
  min-height: 100vh;
}
}

/*segunda parte*/

.sobre-nos {
  padding: 80px 20px;
  background: #f2f5f8;
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 50px;
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #e10000; /* laranja forte */
  margin-bottom: 10px;
}

.sobre-texto h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
}

.sobre-texto p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

.sobre-imagem {
  flex: 1;
  text-align: center;
}

.sobre-imagem img {
  max-width: 100%;
  height: auto;
}

/* NOTEBOOK */
@media (max-width: 1366px) {
  .sobre-texto h2 {
    font-size: 2.5rem;
  }
}

/* TABLET */
@media (max-width: 1023px) {
  .sobre-container {
    gap: 30px;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    text-align: left;
  }

  .sobre-texto {
    order: 1;
  }

  .sobre-imagem {
    order: 2;
    margin-top: 30px;
  }

  .sobre-texto h2 {
    font-size: 2.2rem;
  }

  .sobre-texto h3 {
    font-size: 1.2rem;
  }
}


/*serviços*/

.servicos-guincho {
  padding: 70px 20px;
  
  background-image: url("img/capa2.png"); /* coloque sua imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.servicos-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.servico-card {
  background: #fff;
  width: 300px;
  padding: 25px 20px 30px;
  border-radius: 20px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.servico-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.servico-card h3 {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 20px;
}

/* BOTÃO */
.btn-solicitar {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: #e10000;
  border-radius: 25px;
  text-decoration: none;

  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-solicitar:hover {
  background: #ff2b2b;
  transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .servico-card {
    width: 100%;
    max-width: 340px;
  }
}


/*form*/

.contato-guincho {
  padding: 80px 20px;
  background: #f7f9fc;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 50px;
}

/* FORM */
.form-card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.form-card h2 {
  font-size: 1.8rem;
  color: #e10000;
  margin-bottom: 30px;
  font-weight: 800;
  text-align: center;
}

.form-card input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.form-card input:focus {
  outline: none;
  border-color: #e10000;
}

.form-card button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: #e10000;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;

  transition: background 0.3s ease, transform 0.3s ease;
}

.form-card button:hover {
  background: #e10000aa;
  transform: translateY(-2px);
}

/* IMAGEM */
.contato-imagem {
  flex: 1;
  text-align: center;
}

.contato-imagem img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .contato-container {
    flex-direction: column;
  }

  .form-card {
    order: 1;
  }

  .contato-imagem {
    order: 2;
    margin-top: 30px;
  }
}


/*footer*/

.footer {
  background: #d9d9d9;
  color: #000;
  padding-top: 70px;
}


.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}


.footer-col h4 {
  font-size: 1.0rem;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.90rem;
  line-height: 1.6;
  margin-top: 20px;
}


.footer-logo {
  max-width: 180px;
}


.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}


.footer a,
.footer p {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
   font-size: 0.83rem;
}

.footer a:hover,
.footer p:hover {
  color: #ff3232;
}

.footer-small {
  font-size: 0.8rem;
  margin-top: 6px;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
    background: linear-gradient(
    to bottom,
    #e10000 0%,
    #ff3131 60%,
    #ff4747 100%
  );
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 50, 50, 0.311);
  
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px; 
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  z-index: 9999;
  animation: jump 0.6s infinite alternate;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}


.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}


@keyframes jump {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }
}