* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.header {
  background: #000;
  padding: 15px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600
}

.btn-orcamento {
  background: #e97628;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #000;

    flex-direction: column;
    gap: 20px;
    padding: 25px 0;

    display: none;

    z-index: 9999;
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


/*primeira parte*/


.hero {
  min-height: 80vh;
  background-image: url('img/capa1.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-entrega {
  position: absolute;
  bottom: 30px; 
  left: 8%;
  padding: 16px 36px;
  background: #e97628;
  color: #fff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-entrega:hover {
  background: #f68c46;
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .cta-entrega {
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px; 
  }

  .cta-entrega:hover {
    transform: translateX(-50%) scale(1.05);
  }

  .hero {
  min-height: 100vh;
  background-image: url('img/capacelular1.png');
  background-size: cover;
  background-position: center;
  position: relative;
}
}

/*sobre nos*/


.about-section {
  background: #f1f1f1;
  padding: 100px 5%;
  color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-tag {
  color: #233b56;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.about-content h2 {
  font-size: 46px;
  line-height: 1.2;
  margin: 15px 0 20px;
  color: #e97628;
}

.about-description {
  color: #0e0e0e;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  max-width: 52px;
  max-height: 52px;


  background: #e97528e8;
  border-radius: 12px;

  flex-shrink: 0;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 0 0 rgba(255, 0, 0, 0);
}

.icon-box img {
  width: 26px;
}

.about-features li:hover .icon-box {
  box-shadow: 0 0 20px rgba(0, 153, 255, 0.7);
  transform: translateY(-2px);
}

.about-features h4 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #233b56;
}

.about-features p {
  font-size: 14px;
  color: #0e0e0e;
}

.about-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  margin-bottom: 40px;
}

.about-checks div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #0e0e0e;
}

.about-checks img {
  width: 18px;
}

.about-btn {
  display: inline-block;
  background: #e97628;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #e58646;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-checks {
    grid-template-columns: 1fr;
  }

   .icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
  }
}


/*serviços*/

.services-section {
  padding: 100px 5%;
 min-height: 80vh;
  background-image: url('img/capa2.png');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.services-header h2 {
  font-size: 32px;
  color: #e67e22;
  margin-bottom: 10px;
}

.services-header p {
  color: #fff;
  margin-bottom: 60px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  border-radius: 18px;
  overflow: hidden;

  transition: 0.4s;
  box-shadow: 0 0 0 rgba(230, 126, 34, 0);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(230, 126, 34, 0.7);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 25px 20px;
}

.service-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-content.dark {
  background: #233b56;
  color: #fff;
}

.service-content.orange {
  background: #e67e22;
  color: #fff;
}

.service-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  box-shadow: 0 0 15px rgba(230, 126, 34, 0.8);
}

.services-action {
  margin-top: 60px;
}

.bouton {
  display: inline-block;
  background: #233b56;
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.bouton:hover {
  box-shadow: 0 0 25px rgba(230, 126, 34, 0.9);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 26px;
  }

  .services-section {
  padding: 100px 5%;
 min-height: 80vh;
  background-image: url('img/capacelular2.png');
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

}


/*frota*/

.frota {
  background: #f1f1f1;
  padding: 80px 5%;
}

.frota-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.frota-texto {
  max-width: 500px;
  color: #233b56;
}

.frota-texto h5 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.frota-texto h2 {
  font-size: 42px;
  color: #e97628;
  margin-bottom: 20px;
}

.frota-texto p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #0e0e0e;
}

.frota-logo {
  max-width: 300px;
}

.frota-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .frota-container {
    flex-direction: column;
    text-align: left;
  }

  .frota-texto {
    max-width: 100%;
  }

  .frota-logo {
    margin-bottom: 30px;
  }
}


/*beneficios*/


.diferenciais {
  background-image: url('img/capa3.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 5%;
  color: #fff;
  border-radius: 50px;
}

.diferenciais-container {
  max-width: 1200px;
  margin: auto;
}

.diferenciais-header {
  position: relative;
  margin-bottom: 50px;
}

.subtitulo {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.diferenciais-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin: 10px 0;
  color: #e97628;
}

.btn-cotacao {
  position: absolute;
  right: 0;
  top: 20px;
  background: #233b56;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;

  transition: all 0.3s ease;
}

.btn-cotacao:hover {
  transform: scale(1.05);
  background: #e97628;
  box-shadow: 0 8px 20px rgba(255, 157, 0, 0.5);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  display: flex;
  gap: 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 157, 0, 0.3);
  padding: 25px;
  border-radius: 16px;

  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #e97628;
  background: rgba(0, 0, 0, 0.053);
  box-shadow: 0 10px 30px rgba(255, 183, 0, 0.15);
}

.card img {
  width: 50px;
  height: 48px;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .diferenciais {
    padding: 60px 20px;
    border-radius: 0;
  }

  .diferenciais-header h2 {
    font-size: 26px;
  }

  .btn-cotacao {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    flex-direction: row;
  }
}


/*avaliações*/

.avaliacoes {
  background-image: url('img/capa4.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #000;
  text-align: center;
  padding: 80px 20px;
}

.nota-geral {
  margin: 30px 0 50px;
}

.estrelas img {
  width: 40px;
}

.google-logo {
  width: 150px;
  margin-top: 10px;
}

.carrossel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.avaliacao {
  display: none;
  width: 520px;       
  min-height: 260px;  
  background: #0e0e0ef1;
  padding: 35px;
  border-radius: 16px;
}

.avaliacao.ativa {
  display: block;
}

.avatar {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--cor);
  color: #fff;
  font-weight: bold;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.avaliacoes h2{
  font-size: 45px;
  color: #e97628;
}

.nome {
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.texto {
  margin-top: 12px;
  line-height: 1.5;
  color: #fff;
}

.google-icon {
  width: 18px;
  margin-top: 14px;
}

.seta {
  background: none;
  border: none;
  color: #0e0e0e;
  font-size: 36px;
  cursor: pointer;
}

@media (max-width: 768px) {

  .avaliacoes {
  background-image: url('img/capacelular4.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #000;
  text-align: center;
  padding: 80px 20px;
}
.carrossel {
    gap: 10px;
  }

  .avaliacao {
    width: 100%;
    max-width: 340px;   
    min-height: auto;
    padding: 22px;
    border-radius: 14px;
  }

  .avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .avaliacoes h2 {
    font-size: 32px;
  }

  .texto {
    font-size: 14px;
    line-height: 1.4;
  }

  
  .estrelas {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: nowrap;
  }

  .estrelas img {
    width: 22px; 
  }

  .seta {
    font-size: 28px;
  }

  .google-logo {
    width: 120px;
  }
}



.contato-guincho {
  padding: 80px 20px;
  background-color: #f1f1f1;}

.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: #e97628;
  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: #e97628;
}

.form-card button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: #e97628;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;

  transition: background 0.3s ease, transform 0.3s ease;
}

.form-card button:hover {
  background: #e97628;
  transform: translateY(-2px);
}

.contato-imagem {
  flex: 1;
  text-align: center;
}

.contato-imagem img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .contato-container {
    flex-direction: column;
  }

  .form-card {
    order: 1;
  }

  .contato-imagem {
    order: 2;
    margin-top: 30px;
  }
}



/*footer*/

.footer {
  background:  #0e0e0e;
  color: #fff;
  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: 140px;
}


.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}


.footer a,
.footer p {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
   font-size: 0.83rem;
}

.footer a:hover,
.footer p:hover {
  color: #e97628;
}

.footer-small {
  font-size: 0.8rem;
  margin-top: 6px;
}

.footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
   background: #e97628;
  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, 146, 50, 0.6);
  color: #ffffff;
}

.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;
  }
}