/* Estilos Gerais */
:root {
  --primary-color: #0066cc;
  --secondary-color: #004d99;
  --accent-color: #00cc99;
  --dark-color: #333333;
  --light-color: #f8f9fa;
  --text-color: #444444;
  --border-radius: 5px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  font-size: 1.1rem;
  color: #777;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section {
  padding: 80px 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
}

.menu {
  display: flex;
}

.menu li {
  margin-left: 30px;
}

.menu a {
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.menu a:hover {
  color: var(--primary-color);
}

.menu a:hover::after {
  width: 100%;
}

.btn-contato {
  background-color: var(--primary-color);
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--border-radius);
}

.btn-contato:hover {
  background-color: var(--secondary-color);
}

.btn-contato::after {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("hero-bg.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  margin-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-content .btn-primary {
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sobre Section */
.sobre-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.sobre-text {
  flex: 1;
}

.sobre-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.sobre-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Serviços Section */
.servicos {
  background-color: var(--light-color);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.servico-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servico-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.servico-card h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* Soluções Section */
.solucoes-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.tab-btn {
  padding: 15px 30px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.tab-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  width: 80%;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: flex;
  gap: 40px;
  align-items: center;
}

.tab-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-text {
  flex: 1;
}

.tab-text h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.tab-text p {
  margin-bottom: 20px;
}

.tab-text ul {
  margin-left: 20px;
}

.tab-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.tab-text ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Clientes Section */
.clientes {
  background-color: var(--light-color);
}

.clientes-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.cliente-logo {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.cliente-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.depoimentos {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.depoimento-slider {
  overflow: hidden;
}

.depoimento {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 10px;
}

.depoimento-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.depoimento-text::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2rem;
  color: rgba(0, 102, 204, 0.1);
  position: absolute;
  top: -20px;
  left: -10px;
}

.depoimento-autor {
  display: flex;
  align-items: center;
}

.depoimento-autor img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.depoimento-autor h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.depoimento-autor p {
  font-size: 0.9rem;
  color: #777;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.prev-btn,
.next-btn {
  background-color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Contato Section */
.contato-content {
  display: flex;
  gap: 50px;
}

.contato-form {
  flex: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contato-info {
  flex: 1;
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.info-item h4 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.social-media {
  display: flex;
  margin-top: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1.5;
  min-width: 300px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: #aaa;
  max-width: 300px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #aaa;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .sobre-content,
  .tab-content.active,
  .contato-content {
    flex-direction: column;
  }

  .tab-content.active {
    gap: 30px;
  }

  .sobre-image,
  .tab-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .menu.active {
    left: 0;
  }

  .menu li {
    margin: 0 0 20px 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .tabs-nav {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .tab-btn::after {
    bottom: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .cliente-logo {
    width: 120px;
    height: 60px;
  }
}

/* Adicionando ao CSS existente - Novas seções e WhatsApp */

/* Botão de WhatsApp flutuante */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.whatsapp-button i {
  font-size: 30px;
}

.whatsapp-button:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.4;
  z-index: -1;
  animation: pulse 2s infinite;
}

/* Estilos para as novas seções de serviços */
.servico-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.servico-section:nth-child(odd) {
  background-color: var(--light-color);
}

.servico-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0) 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

.servico-section::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 204, 153, 0.05) 0%, rgba(0, 204, 153, 0) 70%);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  z-index: 0;
}

.servico-container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.servico-container.reverse {
  flex-direction: row-reverse;
}

.servico-content {
  flex: 1;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s var(--ease-out);
}

.servico-content.animated {
  opacity: 1;
  transform: translateX(0);
}

.servico-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s var(--ease-out);
  position: relative;
}

.servico-container.reverse .servico-content {
  transform: translateX(30px);
}

.servico-container.reverse .servico-image {
  transform: translateX(-30px);
}

.servico-image.animated {
  opacity: 1;
  transform: translateX(0);
}

.servico-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-out);
}

.servico-image:hover img {
  transform: scale(1.05);
}

.servico-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.servico-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 0;
  transition: width 0.4s var(--ease-out);
}

.servico-content:hover .servico-title::after {
  width: 100%;
}

.servico-subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.servico-description {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.servico-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(10px);
}

.feature-icon {
  margin-right: 15px;
  color: var(--accent-color);
  font-size: 1.5rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.2);
  color: var(--primary-color);
}

.feature-text {
  font-size: 1.1rem;
}

.servico-cta {
  margin-top: 30px;
}

/* Estilos para a seção de Telemetria Veicular */
.telemetria-section {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("telemetria-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.telemetria-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.telemetria-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-slow);
  text-align: center;
  position: relative;
  top: 0;
  opacity: 0;
  transform: translateY(30px);
}

.telemetria-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.telemetria-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.telemetria-card-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: var(--transition);
  display: inline-block;
}

.telemetria-card:hover .telemetria-card-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--accent-color);
}

.telemetria-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  transition: var(--transition);
}

.telemetria-card:hover h3 {
  color: var(--primary-color);
}

.telemetria-card p {
  font-size: 1rem;
  color: var(--text-color);
}

/* Estilos para a seção de Oferecemos */
.oferecemos-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.oferecemos-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.2rem;
  color: var(--dark-color);
  position: relative;
}

.oferecemos-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s var(--ease-out);
}

.oferecemos-title:hover::after {
  width: 100px;
}

.oferecemos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.oferecemos-item {
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.oferecemos-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.oferecemos-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.oferecemos-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-right: 15px;
  transition: var(--transition);
}

.oferecemos-item:hover .oferecemos-icon {
  transform: scale(1.2);
  color: var(--accent-color);
}

.oferecemos-text {
  font-size: 1rem;
  color: var(--text-color);
}

/* Estilos para a seção de Confiança */
.confianca-section {
  padding: 80px 0;
  text-align: center;
}

.confianca-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.confianca-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.confianca-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.confianca-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.confianca-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

.confianca-card:hover .confianca-icon {
  transform: scale(1.2);
  color: var(--accent-color);
}

.confianca-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.confianca-card p {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Estilos para a seção de Rede CAN */
.rede-can-section {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("rede-can-bg.jpg");
  background-size: cover;
  background-position: center;
}

.rede-can-features {
  margin-top: 40px;
}

.rede-can-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-30px);
}

.rede-can-feature.animated {
  opacity: 1;
  transform: translateX(0);
}

.rede-can-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.rede-can-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 20px;
  transition: var(--transition);
}

.rede-can-feature:hover .rede-can-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--accent-color);
}

.rede-can-text {
  flex: 1;
}

.rede-can-text h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.rede-can-text p {
  font-size: 1rem;
  color: var(--text-color);
}

/* Estilos para a seção de Sensor de Fadiga */
.sensor-fadiga-section {
  background-color: var(--light-color);
}

.sensor-fadiga-content {
  margin-bottom: 50px;
}

.sensor-fadiga-images {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.sensor-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 300px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-out);
}

.sensor-image.animated {
  opacity: 1;
  transform: scale(1);
}

.sensor-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sensor-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-out);
}

.sensor-image:hover img {
  transform: scale(1.05);
}

/* Estilos para a seção de Funcionamento */
.funcionamento-section {
  padding: 60px 0;
  background-color: white;
}

.funcionamento-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: var(--dark-color);
}

.funcionamento-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.funcionamento-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-30px);
}

.funcionamento-item.animated {
  opacity: 1;
  transform: translateX(0);
}

.funcionamento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.funcionamento-check {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 15px;
  transition: var(--transition);
}

.funcionamento-item:hover .funcionamento-check {
  transform: scale(1.2);
}

.funcionamento-text {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Estilos para a seção de Controle de Passageiros */
.controle-passageiros-section {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("passageiros-bg.jpg");
  background-size: cover;
  background-position: center;
}

/* Estilos para a seção de Sistema de Vídeo Veicular */
.video-veicular-section {
  background-color: var(--light-color);
}

/* Estilos para a seção de Câmera Corporal */
.camera-corporal-section {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("camera-bg.jpg");
  background-size: cover;
  background-position: center;
}

/* Botão de Solicitar Cotação */
.btn-cotacao {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 20px;
}

.btn-cotacao::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

.btn-cotacao:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cotacao:hover::before {
  left: 100%;
}

/* Ícones para as diferentes seções */
.icon-telemetria::before {
  content: "\f1b9"; /* Ícone de carro */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-gps::before {
  content: "\f3c5"; /* Ícone de localização */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-cerca::before {
  content: "\f5ee"; /* Ícone de cerca */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-bloqueio::before {
  content: "\f023"; /* Ícone de cadeado */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-hodometro::before {
  content: "\f696"; /* Ícone de velocímetro */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-alerta::before {
  content: "\f0f3"; /* Ícone de sino */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-horimetro::before {
  content: "\f017"; /* Ícone de relógio */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-velocidade::before {
  content: "\f135"; /* Ícone de foguete */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-engate::before {
  content: "\f0d1"; /* Ícone de caminhão */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-panico::before {
  content: "\f21e"; /* Ícone de alerta */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-sirene::before {
  content: "\f0a1"; /* Ícone de megafone */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-notificacao::before {
  content: "\f0f3"; /* Ícone de sino */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-bi::before {
  content: "\f080"; /* Ícone de gráfico */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-conducao::before {
  content: "\f5e4"; /* Ícone de volante */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-ociosidade::before {
  content: "\f252"; /* Ícone de relógio */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-confianca::before {
  content: "\f164"; /* Ícone de polegar para cima */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-qualidade::before {
  content: "\f005"; /* Ícone de estrela */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-tradicao::before {
  content: "\f19c"; /* Ícone de prédio */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-rede-can::before {
  content: "\f7c0"; /* Ícone de rede */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-sensor::before {
  content: "\f06e"; /* Ícone de olho */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-passageiros::before {
  content: "\f0c0"; /* Ícone de pessoas */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-video::before {
  content: "\f03d"; /* Ícone de vídeo */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-camera::before {
  content: "\f030"; /* Ícone de câmera */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* Responsividade para as novas seções */
@media (max-width: 992px) {
  .servico-container {
    flex-direction: column;
    gap: 40px;
  }

  .servico-container.reverse {
    flex-direction: column;
  }

  .servico-container.reverse .servico-content,
  .servico-container.reverse .servico-image {
    transform: translateX(0);
  }

  .servico-content,
  .servico-image {
    transform: translateX(0);
  }

  .sensor-fadiga-images {
    flex-direction: column;
    align-items: center;
  }

  .sensor-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .telemetria-cards {
    grid-template-columns: 1fr;
  }

  .oferecemos-grid {
    grid-template-columns: 1fr;
  }

  .confianca-cards {
    flex-direction: column;
    align-items: center;
  }

  .confianca-card {
    max-width: 100%;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button i {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .servico-title {
    font-size: 2rem;
  }

  .servico-subtitle {
    font-size: 1.1rem;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .funcionamento-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .funcionamento-check {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .btn-cotacao {
    width: 100%;
    text-align: center;
  }
}

/* Estilos para a seção de Serviços de Telemetria */
.servicos-telemetria {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.servicos-telemetria::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0) 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: 0;
}

.telemetria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.telemetria-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--text-color);
  border: 1px solid transparent;
}

.telemetria-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.telemetria-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 102, 204, 0.1);
}

.telemetria-card:hover::before {
  transform: scaleX(1);
}

.telemetria-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.telemetria-card:hover .telemetria-icon {
  transform: scale(1.1);
  color: var(--accent-color);
}

.telemetria-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.telemetria-card:hover h3 {
  color: var(--primary-color);
}

.telemetria-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.telemetria-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.telemetria-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.telemetria-card:hover .telemetria-link {
  color: var(--accent-color);
}

.telemetria-card:hover .telemetria-link i {
  transform: translateX(5px);
}

/* Responsividade para a seção de Telemetria */
@media (max-width: 992px) {
  .telemetria-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .telemetria-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 576px) {
  .telemetria-grid {
    grid-template-columns: 1fr;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #2b2b2b;
  color: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 14px;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  flex: 1;
}
.cookie-banner a {
  color: #4fc3f7;
  text-decoration: underline;
}
.cookie-banner button {
  background-color: #4fc3f7;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}
.cookie-banner button:hover {
  background-color: #039be5;
}

.rounded-icon {
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Adjust size as needed */
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Make sure all icons (both font awesome and images) have the same dimensions */
.telemetria-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.telemetria-icon i {
  font-size: 30px; /* Adjust icon size to match image proportions */
}

.larger-icon {
  width: 70px !important;  /* Tamanho personalizado */
  height: 70px !important;
}
/* Estilos específicos para a página de Telemetria */
.hero-telemetria {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/telemetria-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  margin-top: 80px;
}

.hero-telemetria h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero-telemetria .lead {
  font-size: 1.3rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.telemetria-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.telemetria-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.telemetria-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.telemetria-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.telemetria-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.telemetria-card:hover .telemetria-icon {
  transform: scale(1.2);
  color: var(--accent-color);
}

.telemetria-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.telemetria-card p {
  color: var(--text-color);
  font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-telemetria {
      padding: 120px 0 80px;
  }
  
  .hero-telemetria h1 {
      font-size: 2.2rem;
  }
  
  .hero-telemetria .lead {
      font-size: 1.1rem;
  }
  
  .telemetria-cards {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .menu {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      height: calc(100vh - 80px);
      background-color: white;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 30px 20px;
      transition: all 0.4s ease;
      transform: translateX(-100%);
      z-index: 998;
      overflow-y: auto;
  }

  .menu.active {
      transform: translateX(0);
  }

  .menu li {
      margin: 0 0 25px 0;
      width: 100%;
      text-align: center;
  }

  .menu a {
      display: block;
      padding: 12px 0;
      font-size: 1.1rem;
  }

  .menu-toggle {
      display: block;
      z-index: 999;
  }
}

