<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Paleta de cores da Infratrack */
:root {
  --primary-color: #e63946;
  /* Vermelho */
  --secondary-color: #2a9d8f;
  /* Verde */
  --dark-color: #333333;
  /* Cinza escuro */
  --light-color: #f8f9fa;
  /* Cinza claro */
  --white-color: #ffffff;
  --accent-color: #457b9d;
  /* Azul */
  --gradient-primary: linear-gradient(135deg, #e63946 0%, #d62828 100%);
  --gradient-secondary: linear-gradient(135deg, #2a9d8f 0%, #1d7874 100%);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

/* Reset e estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--secondary-color);
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
  color: var(--white-color);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white-color);
  box-shadow: var(--box-shadow);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3);
  color: var(--white-color);
}

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

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

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

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

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* AnimaÃ§Ãµes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.animate {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.fade-in {
  animation-name: fadeIn;
}

.slide-left {
  animation-name: slideInLeft;
}

.slide-right {
  animation-name: slideInRight;
}

.pulse {
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

/* Navbar */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  /* Fundo branco com leve transparÃªncia */
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  /* Sombra mais sutil */
}

.navbar-brand {
  font-family: var(--font-primary);
}

.nav-link {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--infratrack-gray-dark) !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--infratrack-red) !important;
}

/* Pop-up de SaÃ­da */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.exit-popup.active {
  display: flex;
}

.popup-content {
  border-radius: 8px;
  padding: 40px;
  max-width: 650px;
  width: 100%;
  position: relative;
  animation: popupFadeIn 0.3s ease;
}

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

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 44px;
  cursor: pointer;
  color: #811b1b;
  transition: all 0.3s ease;
}

.popup-close:hover {
  color: #D32F2F;
}

/* Hero Section */
.hero {
  padding: 100px 0 100px;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%), url('assets/hero-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 0 0 50%;
  animation: fadeIn 1s ease-out;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-text h1 span {
  color: var(--primary-color);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

.hero-image {
  flex: 0 0 45%;
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.hero-stats {
  display: flex;
  margin-top: 30px;
}

.stat-item {
  margin-right: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.empresas .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.empresas .item img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.empresas .item img:hover {
  filter: grayscale(0%);
}

.client-logo img {
  max-height: 48px;
  /* Garante que os logos nÃ£o fiquem muito grandes */
  width: auto;
  transition: opacity 0.3s ease;
}

.hover-opacity-100:hover {
  opacity: 1 !important;
}

/* Problemas e SoluÃ§Ãµes */
.problems {
  background-color: var(--light-color);
}

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

.problem-card {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.problem-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.problem-card p {
  color: #666;
  margin-bottom: 0;
}

/* BenefÃ­cios */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.benefit-card p {
  color: #666;
  margin-bottom: 0;
}

/* DemonstraÃ§Ã£o Visual */
.demo {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.demo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-text {
  flex: 0 0 45%;
}

.demo-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.demo-text p {
  margin-bottom: 30px;
}

.demo-image {
  flex: 0 0 50%;
  position: relative;
}

.demo-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.demo-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.demo-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* MÃ©tricas e Resultados */
.metrics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.metric-item {
  text-align: center;
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.metric-item:hover {
  transform: translateY(-10px);
}

.metric-item h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.metric-item p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Depoimentos */
.testimonials {
  background-color: var(--light-color);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-item {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin: 10px;
}

.testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: #666;
  margin-bottom: 0;
}

.clients-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.client-logo {
  flex: 0 0 calc(16.666% - 20px);
  margin: 10px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.client-logo img {
  width: 100%;
}

/* IntegraÃ§Ã£o CRM */
.integration {
  position: relative;
  overflow: hidden;
}

.integration-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.integration-text {
  flex: 0 0 45%;
}

.integration-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.integration-text p {
  margin-bottom: 30px;
}

.integration-image {
  flex: 0 0 50%;
  position: relative;
}

.integration-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* Comparativo */
.comparison {
  background-color: var(--light-color);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table .check {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.comparison-table .times {
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  padding: 20px;
  background-color: var(--white-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-question i {
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

/* CTA Final */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #d62828 100%);
  color: var(--white-color);
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


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

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

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--white-color);
}

.footer-column p {
  margin-bottom: 10px;
  color: #aaa;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: #aaa;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--white-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #aaa;
  margin-bottom: 0;
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white-color);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

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

.whatsapp-float i {
  font-size: 2rem;
}

.hover-scale:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0.8rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero {
    padding: 60px 0 80px;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-text,
  .hero-image {
    flex: 0 0 100%;
  }

  .hero-text {
    margin-bottom: 50px;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .demo-content,
  .integration-content {
    flex-direction: column;
  }

  .demo-text,
  .demo-image,
  .integration-text,
  .integration-image {
    flex: 0 0 100%;
  }

  .demo-text,
  .integration-text {
    margin-bottom: 50px;
    text-align: center;
  }

  .client-logo {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }



  .mobile-toggle {
    display: block;
  }

  .client-logo {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .stat-item {
    margin-right: 20px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .client-logo {
    flex: 0 0 calc(100% - 20px);
  }
}</pre></body></html>