/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  width: 100%;
  height: auto;
  background: url('Imagens/Início\ CABEÇALHO.png') no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  padding: 20px;
  position: relative;
}

.logo img {
  height: 300x;
  width: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  z-index: 100;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 10;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  top: -100px;
}

.nav-menu li {
  margin: 0 10px;
}
@media (max-width: 1024px) {
  .nav-menu li {
    margin: 15px 0;
    text-align: right;
  }
}

@media (max-width: 768px) {
  .nav-menu li {
    margin: 10px 0;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .nav-menu li {
    margin: 8px 0;
    text-align: right;
  }
}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color:#FF6A00;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.header-content {
  margin-top: 50px;
  text-align: left;
  padding: 20px;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.header-content span {
  color: #FF6A00;
  font-weight: bold;
}

.header-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #FF6A00;
  color: #000;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #FF6A00;
}

.btn:hover {
  background: transparent;
  color: #FF6A00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  background: url('Imagens/background-highlights.jpg') no-repeat center/cover;
  padding: 40px 5%;
  gap: 20px;
}

.highlight {
  background-color: #FF6A00;
  color: #fff;
  text-align: center;
  padding: 25px 15px;
  border-radius: 10px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.highlight img {
  max-width: 80px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.highlight:hover img {
  transform: scale(1.1);
}

.highlight h3 {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
}

/* ===== SOBRE ===== */
.sobre {
  padding: 60px 20px;
}

.sobre-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.sobre-imagem {
  width: 45%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.sobre-imagem:hover {
  transform: scale(1.02);
}

.sobre-texto {
  flex: 1;
  padding: 20px;
}

.sobre-texto h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.laranja {
  color: #FF6A00;
  font-weight: bold;
}

.branco {
  color: white;
}

.sobre-texto p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===== SERVIÇOS ===== */
.servicos {
  background-color: #FF6A00;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.servicos h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.servicos > p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cards {
  display: flex;
  justify-content: center; /* Centraliza os cards na página */
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 20px 15px;
  border-radius: 10px;
  flex: 1; /* Faz os cards ocuparem o mesmo espaço */
  min-width: 180px;
  max-width: 300px; /* Limita o tamanho máximo */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #000;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

.card h3 {
  font-size: 1rem;
  margin-top: 10px;
  color: #0f0f0f;
}

/* Responsividade */
@media (max-width: 1024px) {
  .card {
    width: calc(50% - 25px);
  }
}

@media (max-width: 768px) {
  .card {
    width: calc(100% - 25px);
  }
}

/* ===== TURBO/NEGÓCIOS ===== */
.Turbo {
  background-color: #000;
  padding: 60px 20px;
}

.negocios-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.Turbo-imagem {
  width: 100%;
  max-width: 200px;  /* Ajuste o valor conforme desejar */
  height: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease-out forwards;
  border-radius: 12px; /* Opcional: cantos arredondados */
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .Turbo-imagem {
    max-width: 90%;
  }
}

.Turbo-imagem:hover {
  transform: scale(1.02);
}

/* Estilos para a seção de clientes */
.clientes {
  background-color: #FF6A00;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.clientes h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.clientes p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Estilos para o carrossel */
.logo-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 auto;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-button {
  background-color: rgba(255, 255, 255, 0.9);
  color: #FFA500;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background-color: #e5e90e;
  color: #FF6A00;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(182, 243, 15, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .carousel-item img {
    width: 120px;
    height: 120px;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .carousel-item img {
    width: 100px;
    height: 100px;
  }

  .carousel-button {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .clientes h2 {
    font-size: 1.8rem;
  }

  .clientes p {
    font-size: 1rem;
  }
}

/* ===== ÍCONES SOCIAIS ===== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-icons a img {
  width: 20px; /* Tamanho apropriado para desktop */
  height: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Adiciona sombra ao hover */
}

/* ===== BOTÃO FLUTUANTE DO WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px; /* Tamanho maior para destaque */
  height: 70px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* Deixa o botão circular */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Sombra mais intensa no hover */
}

/* ===== RODAPÉ ===== */
.rodape-final {
  padding: 60px 20px;
  background-color: #000;
}

.rodape-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
}

.rodape-imagem {
  width: 45%;
  max-width: 500px;
}

.rodape-imagem img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.rodape-texto {
  flex: 1;
  min-width: 300px;
}

.rodape-texto h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.rodape-texto p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.8;
}

/* ===== ÍCONES FLUTUANTES ===== */
.float-icon {
   position: fixed;
  z-index: 1000;
  right: 20px;
  padding: 10px;
  border-radius: 50%; /* Ícones circulares */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideIn 0.6s ease;
}
.float-icon img {
  width: 50px;
  height: 50px;
}

.float-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ===== ANIMAÇÃO DE ENTRADA ===== */
@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .social-icons a img {
    width: 35px;
    height: 35px;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
  }

  .float-icon img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .social-icons a img {
    width: 30px;
    height: 30px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
  }

  .float-icon img {
    width: 40px;
    height: 40px;
  }
}


/* Utility Classes */
.desktop-break {
  display: inline;
}

/* ===== MEDIA QUERIES ===== */

/* Tablet Grande e Desktop Pequeno */
@media (max-width: 1200px) {
  .card {
    width: calc(50% - 25px);
  }
  
  .header-content {
    margin-top: 120px;
  }
  
  .header-content h1 {
    font-size: 2.2rem;
  }
  
  .highlight {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .sobre-container, .negocios-container {
    flex-direction: column;
    text-align: center;
  }
  
  .sobre-texto, .rodape-texto {
    text-align: center;
  }
  
  .sobre-imagem, .Turbo-imagem, .rodape-imagem {
    width: 80%;
    margin: 0 auto 30px;
    order: 1;
  }
  
  .sobre-texto, .rodape-texto {
    order: 2;
    padding: 0;
  }
  
  .header-content h1 {
    font-size: 2rem;
  }
  
  .logo-grid {
    gap: 20px;
  }
  
  .logo-grid img {
    width: 120px;
  }
  
  .desktop-break {
    display: none;
  }
}

/* Tablet Pequeno e Mobile Grande */
@media (max-width: 768px) {
  .header {
    background-position: right center;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    width: 250px;
    height: 100vh;
    padding-top: 80px;
    transition: 0.4s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
    text-align: center;
  }
  
  .nav-menu li a {
    font-size: 1.2rem;
    display: block;
    padding: 10px;
  }
  
  .header-content {
    text-align: center;
    margin-top: 100px;
    padding: 20px 10px;
  }
  
  .header-content h1 {
    font-size: 1.8rem;
  }
  
  .header-content p {
    font-size: 1rem;
  }
  
  .highlight {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  
  .card {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .highlights {
    flex-direction: column;
    padding: 30px 20px;
  }
  
  .servicos h2, .clientes h2, .sobre-texto h2, .rodape-texto h2 {
    font-size: 1.8rem;
  }
  
  .rodape-container {
    flex-direction: column;
  }
  
  .rodape-icones {
    justify-content: center;
  }
  
  .sobre-imagem, .Turbo-imagem, .rodape-imagem {
    width: 100%;
  }
}

/* Mobile Médio */
@media (max-width: 576px) {
  .header {
    min-height: 90vh;
  }
  
  .logo img {
    height: 45px;
  }
  
  .header-content h1 {
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .logo-grid img {
    width: 100px;
  }
  
  .rodape-texto h2 {
    font-size: 1.6rem;
  }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
  .header {
    padding: 10px;
  }
  
  .header-content {
    margin-top: 80px;
  }
  
  .header-content h1 {
    font-size: 1.4rem;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .highlight {
    padding: 15px 10px;
  }
  
  .highlight img {
    max-width: 60px;
  }
  
  .highlight h3 {
    font-size: 1rem;
  }
  
  .servicos {
    padding: 40px 15px;
  }
  
  .servicos h2, .clientes h2 {
    font-size: 1.5rem;
  }
  
  .servicos > p, .clientes p {
    font-size: 1rem;
  }
  
  .card {
    padding: 20px 15px;
  }
  
  .card h3 {
    font-size: 1.1rem;
  }
  
  .logo-grid {
    gap: 15px;
  }
  
  .logo-grid img {
    width: 80px;
  }
  
  .rodape-icones img {
    width: 40px;
    height: 40px;
  }
}