/* Estilos gerais */
:root {
  --primary-color: #00B2CB; /* Azul turquesa */
  --secondary-color: #FFD100; /* Amarelo */
  --dark-color: #1A2B3C;
  --dark-blue: #0A3B6C; /* Azul escuro para área do cliente */
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --white-color: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-primary:hover {
  background-color: #0095a8;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: #e6bc00;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.text-center {
  text-align: center;
}

/* Header e Navegação */
.top-bar {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 20px;
}

.top-bar-links {
  display: flex;
  gap: 20px;
}

.top-bar-links a:hover {
  color: var(--secondary-color);
}

.header {
  background-color: #e9e9e9; /* Cor cinza claro como na referência */
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: stretch;
  padding: 0;
}

.logo-container {
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

.logo {
  max-width: 200px;
}

.menu-container {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}

.menu-item {
  padding: 0 15px;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--dark-color);
  height: 100%;
  position: relative;
}

.menu-item:hover {
  color: var(--primary-color);
}

.menu-item.active {
  color: var(--primary-color);
}

.menu-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}

.menu-item.cliente {
  background-color: var(--dark-blue);
  color: var(--white-color);
  font-weight: 700;
  padding: 0 20px;
}

.menu-item.cliente:hover {
  background-color: #072d54;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 15px;
  align-items: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg-new.png');
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  padding: 150px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Rastreamento */
.tracking-section {
  background-color: var(--secondary-color);
  padding: 40px 0;
}

.tracking-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.tracking-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.tracking-form {
  display: flex;
  gap: 10px;
}

.tracking-input {
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  min-width: 300px;
}

/* Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-content p {
  color: var(--gray-color);
  margin-bottom: 20px;
}

/* Diferenciais */
.features-section {
  background-color: var(--light-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--gray-color);
}

/* Certificações */
.certifications-section {
  background-color: var(--white-color);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.certification-card {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.certification-logo {
  max-width: 150px;
  margin: 0 auto 20px;
}

.certification-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.certification-card p {
  color: var(--gray-color);
}

/* Métricas */
.metrics-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/metrics-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white-color);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.metric-label {
  font-size: 1.2rem;
}

/* Contato */
.contact-section {
  background-color: var(--light-color);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--gray-color);
}

.contact-form {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
  color: #aaa;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: #aaa;
}

.footer-contact i {
  color: var(--primary-color);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
}

/* Whatsapp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: var(--white-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .tracking-container {
    flex-direction: column;
    text-align: center;
  }
  
  .tracking-form {
    width: 100%;
  }
  
  .tracking-input {
    min-width: auto;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  
  .menu-container {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--white-color);
    flex-direction: column;
    padding: 40px 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  
  .menu-container.active {
    left: 0;
  }
  
  .menu-item {
    padding: 15px 0;
  }
  
  .menu-item.cliente {
    margin: 10px 0;
    text-align: center;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }
  
  .top-bar-contact, .top-bar-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .tracking-form {
    flex-direction: column;
  }
  
  .metric-value {
    font-size: 2.5rem;
  }
  
  .metric-label {
    font-size: 1rem;
  }
}


/* Partners Section */
.partners-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.partners-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc(200% + 40px);
}

.partner-item {
    flex: 0 0 250px;
    margin: 0 20px;
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo img {
    filter: grayscale(0%);
}

.partner-placeholder {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #0A3B6C 0%, #00B2CB 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
}

.partner-item h3 {
    color: #0A3B6C;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animação ao hover */
.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive Design para Partners */
@media (max-width: 768px) {
    .partner-item {
        flex: 0 0 200px;
        margin: 0 15px;
        padding: 20px 15px;
    }
    
    .partner-logo {
        height: 60px;
        margin-bottom: 15px;
    }
    
    .partner-placeholder {
        height: 60px;
        font-size: 1rem;
    }
    
    .partner-item h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partner-item {
        flex: 0 0 180px;
        margin: 0 10px;
        padding: 15px 10px;
    }
    
    .partner-logo {
        height: 50px;
        margin-bottom: 10px;
    }
    
    .partner-placeholder {
        height: 50px;
        font-size: 0.9rem;
    }
    
    .partner-item h3 {
        font-size: 0.9rem;
    }
}

