/* =========================================================
   PALETA DE CORES
   ========================================================= */

:root {
  --primary: #58bcb2;
  --secondary: #00ffee8e;
  --valor-atual-amarelo: #d4b24c;
  --background-dark: #20262e;
  --white: #ffffff;
  --black: #000000;
  --text-dark: #494c4e;
  --text-light: #474849;
  --bg-light: #f8f9fa;
  --background-clip: #3a434d;
  --container-max: 1920px;
  --container-wide: 1400px;
}

/* ============================
   FONTES SANSATION
   ============================ */
@font-face {
  font-family: 'Sansation';
  src: url('/static/fonts/Sansation-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Sansation';
  src: url('/static/fonts/Sansation-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Sansation';
  src: url('/static/fonts/Sansation-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* =========================================================
   GLOBAL
   ========================================================= */
body {
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  background-color: var(--white);
  font-family: 'Sansation', sans-serif !important;    /* Fonte padrão global */
  line-height: 1.6;
  /* evita overflow horizontal causado por elementos full-bleed e estabiliza o scrollbar */
  overflow-x: hidden;
  overflow-y: scroll;
}

a {
  text-decoration: none;
  transition: 0.2s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
    FULL BLEED SECTIONS
   ========================= */
/* .full-bleed — seção largura total, full-bleed */
/* Use on sections that should stretch full width: .full-bleed */
.full-bleed {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}

/* Conteúdo SEMPRE alinhado no mesmo grid */
.full-bleed > .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Contêiner mestre: usado por todas as páginas para alinhamento consistente */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
} 

/* =========================================================
   ANIMATIONS & REVEAL
   ========================================================= */
   .reveal {
    opacity: 0;
    animation: revealAnimation 0.8s ease forwards;
  }
  
  .reveal:nth-child(1) {
    animation-delay: 0.1s;
  }
  .reveal:nth-child(2) {
    animation-delay: 0.2s;
  }
  .reveal:nth-child(3) {
    animation-delay: 0.3s;
  }
  .reveal:nth-child(4) {
    animation-delay: 0.4s;
  }
  .reveal:nth-child(5) {
    animation-delay: 0.5s;
  }
  .reveal:nth-child(6) {
    animation-delay: 0.6s;
  }
  
  @keyframes revealAnimation {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/* =========================
   HERO
========================= */

/* Hero principal da home (mantém referência direta para compatibilidade) */
.home-hero {
  color: #fff;
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 15rem 6rem;
  border-radius: 18px;
  overflow: hidden;
  background: none;
}

/* Imagem de fundo com parallax no hover */
.home-hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: url('/static/img/hero/hero-home.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(0);
  transition: transform 1.2s ease-out;
  z-index: 0;
}

/* Overlay: gradiente horizontal — escuro à esquerda, transparente à direita */
/* No hover, o overlay recua para a esquerda revelando a imagem da direita até o centro */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.65) 35%,
    rgba(0, 0, 0, 0.20) 60%,
    rgba(0, 0, 0, 0.00) 100%
  );
  transition: background 1s ease-out;
  z-index: 1;
}


/* =========================================================
   HERO PADRÃO (home, about, services, fleetflow, drivers)
   - regra centralizada só para as sections de hero
   - controla principalmente tamanho/altura e comportamento da imagem
   ========================================================= */

/* Layout base do hero em todas as páginas */
.full-bleed.home-hero,
.full-bleed.about-hero,
.full-bleed.services-hero,
.full-bleed.fleetflow-hero,
.full-bleed.drivers-hero {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: none;
  padding: 15rem 6rem;
  min-height: clamp(380px, 60vh, 580px);
}

/* Imagens de fundo dos heros — usam os backgrounds já definidos em cada page */
.full-bleed.home-hero::after,
.full-bleed.about-hero::after,
.full-bleed.services-hero::after,
.full-bleed.fleetflow-hero::after,
.full-bleed.drivers-hero::after {
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay padrão (gradiente escuro → transparente) para todos os heros */
.full-bleed.home-hero::before,
.full-bleed.about-hero::before,
.full-bleed.services-hero::before,
.full-bleed.fleetflow-hero::before,
.full-bleed.drivers-hero::before {
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.65) 35%,
    rgba(0, 0, 0, 0.20) 60%,
    rgba(0, 0, 0, 0.00) 100%
  );
}

/* Conteúdo sempre acima das camadas de imagem/overlay */
.full-bleed.home-hero > *,
.full-bleed.about-hero > *,
.full-bleed.services-hero > *,
.full-bleed.fleetflow-hero > *,
.full-bleed.drivers-hero > * {
  position: relative;
  z-index: 5;
}

/* Tipografia e bloco de texto unificados dos títulos dos heros */
.home-hero-content,
.about-hero-content,
.services-hero-content,
.fleetflow-hero-content,
.drivers-hero-content {
  text-align: left;
  max-width: 500px;
}

.home-hero-title,
.about-hero-title,
.services-hero-title,
.fleetflow-hero-title,
.drivers-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: left;
}

.home-hero-accent,
.about-hero-accent,
.services-hero-accent,
.fleetflow-hero-accent,
.drivers-hero-accent {
  width: 250px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  margin-top: 0.5rem;
}


/* =========================
  HERO COM VÍDEO
  ========================= */
.video-hero {
  position: relative;
  padding: 3rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;

  border-left: 6px solid var(--primary);
  padding-left: 22px;

  background: rgba(0,0,0,0.03);
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 6px;
}

.hero-media {
  position: relative;
  width: 480px;
  height: 400px;

  overflow: hidden;
  border-radius: 22px;

  box-shadow: 
  0 35px 80px rgba(0,0,0,0.20),
  0 10px 25px rgba(0,0,0,0.10);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.45)
  );
}

/* =========================
   DIFERENCIAIS
========================= */
.home-metodology {
  position: relative;
  padding: 75px 1.5rem;
  background: var(--background-clip);
  overflow: hidden;
}

.metodology-title {
  text-align: center;
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
}

.metodology-intro {
  margin: 0 auto 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 16px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metodology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.metodology-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  background-image: url("/static/img/hero/desempenho.png");
  background-size: cover;
  background-position: center;
}

.metodology-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 31, 47, 0.7),
    rgba(0, 179, 164, 0.3)
  );
  z-index: 1;
}

.highlight-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}

.highlight-content p {
  max-width: 500px;
  margin: 0;
}

.highlight-content strong {
  color: #00e0c6;
  font-weight: 700;
}

.metodology-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metodology-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.metodology-list li {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.metodology-list li:hover {
  transform: translateX(10px);
  border-color: rgba(0, 224, 198, 0.4);
  box-shadow: 0 15px 40px rgba(0, 179, 164, 0.1);
}

.metodology-list .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 68, 60, 0.15);
  transition: all 0.3s ease;
}

.metodology-list li:hover .feature-icon {
  background: rgba(0, 110, 98, 0.507);
  transform: scale(1.1);
}

.metodology-list .feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metodology-list .feature-text {
  flex: 1;
}

.metodology-list .feature-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.metodology-list .feature-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffffff;
}

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.differentials-highlight {
  background: #0e1f2f;
  color: #fff;
  border-radius: 24px;
  padding: 3.5rem;

  display: flex;
  align-items: center;

  font-size: 1.5rem;
  line-height: 1.4;

  border-right: 4px solid #00e0c6;
}

.differentials-highlight.has-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;

  background-image: url("/static/img/hero/desempenho.png");
  background-size: cover;
  background-position: center;
}

.differentials-highlight.has-image::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(14, 31, 47, 0.767),
    rgba(14, 31, 47, 0.767)
  );

  z-index: 1;
}

.highlight-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding: 4rem;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4;
}

.differentials-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.differentials-features li {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;

  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);

  transition: transform .3s ease, background .3s ease;
}

.differentials-features li:hover {
  transform: translateX(6px);
  background: rgba(0, 224, 198, 0.08);
}

.metodology-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.metodology-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metodology-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
}

.metodology-text p {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  opacity: 0.8;
  color: #ffffff;
}



/* =========================================================
   DIFERENCIAL FLEET BLOCK
========================================================= */
.diferential-card {
  transition: transform 0.65s cubic-bezier(.22,.61,.36,1);
}

.diferential-panorama.dragging .diferential-card {
  transition: none;
}

.diferential-panorama {
  display: flex;
  justify-content: center;
  align-items: center;
}

.diferential-cards-track {
  width: 100%;
  max-width: 420px; 
  margin: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  background: #000;
}

.diferential-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.diferential-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.diferential-section {
  padding: 5rem 1rem;
  background: #f4f6f8;
}

.diferential-container {
  grid-template-columns: 1fr 1fr;
  margin: auto;
  background: var(--white);
  border-radius: 26px;
  padding: 3rem;
  display: grid;
  gap: 3rem;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

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


.diferential-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}


.diferential-desc.show {
  opacity: 1;
  transform: translateX(0);
}

.highlight-primary {
  color: var(--primary);
  font-weight: 700;
}


/* =========================
   COVERFLOW FEATURES
========================= */

.features-coverflow {
  display: flex;
  justify-content: center;
}

.coverflow-container {
  position: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10rem;
}

.coverflow-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-title {
  text-align: center;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.coverflow-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.coverflow-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.coverflow-arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
}

.coverflow-arrow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.coverflow-arrow:active {
  transform: scale(0.95);
}

.coverflow-track {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-coverflow {
  background: var(--primary);
  color: #fff;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid transparent;
}

.btn-coverflow:hover {
  background-color: #fff;
  color: var(--primary);
  border-color: var(--primary);
}


.coverflow-card {
  position: absolute;
  width: 440px;
  height: 280px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), #06121f);
  transition: all 0.45s ease;
  opacity: 0.4;
  transform: scale(0.85);
  z-index: 1;
  cursor: grab;
}

.coverflow-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 5;
}

.coverflow-card.prev {
  transform: translateX(-200px) scale(0.85);
  opacity: 0.6;
  z-index: 3;
}

.coverflow-card.next {
  transform: translateX(200px) scale(0.85);
  opacity: 0.6;
  z-index: 3;
}

.card-overlay h4{
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-overlay p{
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.card-overlay {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.35)
  );
  color: #fff;
  border-radius: 22px;
}

.coverflow-card::after {
  display: none;
}


/* =========================
(CARDS)
========================= */
.home-advantages {
  background: #ffffff;
  padding: 3rem;
  padding-bottom: 4rem;
}

.advantages-header {
  text-align: center;
  margin-bottom: 3rem;
}

.advantages-header h2 {
  font-size: clamp(2.2rem, 4vw, 2rem);
  font-weight: 700;
  padding-top: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #0e1f2f, #00b3a4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.advantage-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  transition: 
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

.advantage-card:hover {
  transform: translateY(-6px);
  background-color: var(--primary);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.advantage-card:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.05)
  );
  pointer-events: none;
}

.advantage-card:hover p {
  color: #fff;
}

.advantage-card p {
  font-size: 1.15rem;
  color: #333;
  margin-right: 1.5rem;
}

.advantage-icon {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(0, 179, 164, 0.08);

  transition: all .4s ease;
}

/* SVG estilo */
.advantage-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all .4s ease;
}

.advantage-card:hover .advantage-icon {
  background: rgba(255,255,255,0.15);
  transform: rotate(-8deg) scale(1.1);
}

.advantage-card:hover .advantage-icon svg {
  stroke: #fff;
}


/* =========================
   CARROSSEL DE CLIENTES -PARTNERS
   ========================= */

.partners-title {
  position: relative;
  display: block; width: fit-content;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.partners-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #00b3a4, #00e0c6);
  border-radius: 4px;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.9s cubic-bezier(.2,.8,.2,1);
}


.partners-section {
  padding-top: 3.5rem; 
  padding-bottom: 3rem;
  background: #444e5a;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.partners-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 10px;
  padding-top: 0.1rem;
  margin: 1.8rem auto;

  width: 100%;
  max-width: 1180px; 
}

.shadowed-carousel {
  position: relative;
  padding: 1rem; 
  padding-top: 1rem;
  overflow:var(--white); 
  box-shadow: 0 12px 12px rgba(0,0,0,0.06);
  background: transparent;
}

.partners-wrap {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.partners-track {
  display: flex;
  width: fit-content;
}

.partners-track.scroll {
  animation: partners-scroll 35s linear infinite;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.03);
}

.partners-track.pause {
  animation-play-state: paused;
}

.partners-group {
  display: flex;
  align-items: center;
  gap: 2.5rem; 
  padding-right: 2rem;
}

.partner {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.partner img {
  max-height: 100px;
  max-width: 120px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.partner img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.partners-wrap:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* CTA MODERNIZE SUA FROTA */
.cta-modernize {
  background: linear-gradient(90deg, rgba(88,188,178,0.06), rgba(246,166,35,0.03));
  padding: 2.2rem 1rem; 
  margin-top: 2rem; 
  border-top: none; 
  border-bottom: none;
}

.cta-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin: 0.6rem 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: space-between;
}

.cta-modernize .container > div:first-child {
  display: flex;
  flex-direction: column;
  align-items:center;
  text-align: center;
  gap:0.6rem; 
}
.cta-modernize h3 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  animation: cta-slide-in 700ms cubic-bezier(.2,.8,.2,1) both;
  animation-play-state: paused;
}
.cta-modernize p { 
  font-size: 1.2rem;
  line-height: 1.6;
  margin:0 0 1rem 0; 
  opacity:0; 
  transform: translateX(-18px); 
  animation: cta-desc-in 800ms 200ms cubic-bezier(.2,.8,.2,1) both; 
  animation-play-state: paused; 
}

.cta-modernize.is-revealed h3,.cta-modernize.is-revealed p { 
  animation-play-state: running; 
}

.cta-modernize .btn-cta {
  background: linear-gradient(90deg,#00b3a4,#3a434d);
  color: #fff;
  padding: .75rem 1.4rem;
  font-weight: 600;
  border: 2px solid transparent;      
  background-clip: padding-box;    
  border-radius: 8px;
  transition: all .30s ease;
  white-space: nowrap;
}

.cta-modernize .btn-cta:hover {
  background: #fff;               
  color: #00b3a4;
  border-color: #00b3a4;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11,95,165,0.14);
}
@keyframes cta-slide-in { from { 
  transform: translateY(16px); 
  opacity:0; } to { 
    transform: translateY(0); 
    opacity:1; } }

@keyframes cta-desc-in { from { 
  transform: translateX(-18px); 
  opacity:0; } to { 
    transform: translateX(0); 
    opacity:1; } }

.cta-underline {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg,#00b3a4,#3a434d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;          
  width: 100%;
  height: 8px;    
  background: linear-gradient(90deg, #00b3a4, #3a434d);
  border-radius: 3px;
  transform: scaleX(0);       
  transform-origin: left;
  transition: transform 1.9s cubic-bezier(.2,.8,.2,1);
}

.cta-modernize.is-revealed .cta-underline::after {
  transform: scaleX(1);
}

/* =========================================================
   RESPONSIVIDADE — <580px e >=1920px
   ========================================================= */

@media (max-width: 580px) {

  .about-metodology {
    padding: 40px 0.75rem;
  }

  .home-metodology {
  padding: 1rem;
}

  .metodology-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .metodology-visual {
    min-height: 220px;
    order: -1;
  }

  .metodology-intro {
    padding: 1rem;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .highlight-content {
    padding: 1.4rem;
    font-size: 0.95rem;
  }

  .metodology-text strong {
    font-size: 1rem;
  }

  .metodology-text p {
    font-size: 0.9rem;
  }

  .metodology-list li {
    padding: 0.8rem;
    gap: 0.6rem;
  }

  .metodology-list .feature-icon {
    width: 35px;
    height: 35px;
  }

  .metodology-list .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .metodology-list .feature-text strong {
    font-size: 0.9rem;
  }

  .metodology-list .feature-text p {
    font-size: 0.9rem;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .differentials-highlight {
    padding: 2.4rem 1.6rem;
  }

  .diferential-section {
    padding: 3.5rem 1rem;
  }

  .diferential-container {
    grid-template-columns: 1fr;
    padding: 1.8rem 1.5rem;
    gap: 1.8rem;
  }

  .diferential-text {
    align-self: stretch;
    text-align: center;
  }

  .diferential-title {
    font-size: 1.5rem;
  }

  .diferential-panorama {
    max-width: 100%;
  }

  .features-coverflow {
    padding-inline: 1rem;
  }

  .coverflow-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    height: 340px;
    padding: 0.5rem;
    overflow: visible;
  }

  .coverflow-header {
    align-items: center;
    text-align: center;
    margin-bottom: 0.25rem;
  }

  .features-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }

  .coverflow-nav {
    display: none;
  }

  .coverflow-track {
    height: 250px;
    max-width: 100%;
    overflow: visible;
  }

  .coverflow-card {
    width: 230px;
    height: 230px;
    border-radius: 16px;
  }

  .coverflow-card.prev {
    transform: translateX(-110px) scale(0.86);
    opacity: 0.5;
    filter: blur(0.5px);
  }

  .coverflow-card.next {
    transform: translateX(110px) scale(0.86);
    opacity: 0.5;
    filter: blur(0.5px);
  }

  .card-overlay {
    padding: 1.1rem;
  }

  .card-overlay h4 {
    font-size: 0.95rem;
    font-weight: 600;
  }

  .card-overlay p {
    font-size: 0.9rem;
  }
  .coverflow-dots {
    margin-top: 10px;
    gap: 6px;
  }

  .home-advantages {
    padding: 2rem 1rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantages-header h2 {
    font-size: 1.5rem;
    padding: none;
  }

  .advantage-card {
    padding-top: 3rem;
  }

  .advantage-card p {
    font-size: 0.9rem;
  }

  .partners-section {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .partners-title {
    font-size: 1.5rem;
  }

  .partners-title::after {
    display: none;
  }

  .partners-card {
    padding: none;
    margin: none;
    border-radius: 12px;
  }

  .partner {
    min-width: 100px;
  }

  .partner img {
    max-height: 80px;
    max-width: 90px;
  }

  .partners-group {
    gap: 1.5rem;
    padding-right: 1rem;
  }

  .partners-wrap {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 15%,
      black 85%,
      transparent
    );
  }

  /* CTA Modernize */
  .cta-modernize {
    padding: 1.5rem 1rem;
    margin-top: 1rem;
  }

  .cta-modernize h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .cta-underline::after {
    height: 5px;
  }

  .cta-modernize p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .cta-modernize .btn-cta {
    padding: 0.65rem 1.1rem;
    font-size: 1rem;
  }

  .cta-card {
    padding: 0.8rem;
    margin: 0.5rem 0;
    border-radius: 10px;
    gap: 0.8rem;
    flex-direction: column;
    justify-content: center;
  }

  .full-bleed.home-hero,
  .full-bleed.about-hero,
  .full-bleed.services-hero,
  .full-bleed.fleetflow-hero,
  .full-bleed.drivers-hero {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 8rem 1.5rem;
    min-height: clamp(260px, 55vh, 420px);
  }

  .home-hero-title,
  .about-hero-title,
  .services-hero-title,
  .fleetflow-hero-title,
  .drivers-hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-align: center;
  }

  .full-bleed.home-hero::after,
  .full-bleed.about-hero::after,
  .full-bleed.services-hero::after,
  .full-bleed.fleetflow-hero::after,
  .full-bleed.drivers-hero::after {
    inset: 0;
  }

  .full-bleed.home-hero::before,
  .full-bleed.about-hero::before,
  .full-bleed.services-hero::before,
  .full-bleed.fleetflow-hero::before,
  .full-bleed.drivers-hero::before {
    inset: 0;
    background: radial-gradient(
      circle at center,
      rgba(0,0,0,0.75) 0%,
      rgba(0,0,0,0.45) 40%,
      rgba(0,0,0,0.15) 70%,
      rgba(0,0,0,0) 100%
    );
  }

  .video-hero {
    padding: 2.5rem 0;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-content {
    order: 1;
    text-align: left;
  }

  .hero-content p {
    font-size: 1rem;
    padding-left: 16px;
  }

  .hero-media {
    order: 2;
    width: 100%;
    max-width: 100%;
    height: 220px;
    margin: 0 auto;
    border-radius: 18px;
  }

  .hero-media video {
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 1920px) {
  :root {
    --container-max: 1920px;
  }

  body {
    font-size: 1.15rem;
    line-height: 1.7;
  }

  .full-bleed.home-hero,
  .full-bleed.about-hero,
  .full-bleed.services-hero,
  .full-bleed.fleetflow-hero,
  .full-bleed.drivers-hero {
    padding: 14rem 8rem;
    min-height: 760px;
  }

  .home-hero-content,
  .about-hero-content,
  .services-hero-content,
  .fleetflow-hero-content,
  .drivers-hero-content {
    text-align: left;
  }

  .home-hero-title,
  .about-hero-title,
  .services-hero-title,
  .fleetflow-hero-title,
  .drivers-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: left;
  }

  .home-hero-accent,
  .about-hero-accent,
  .services-hero-accent,
  .fleetflow-hero-accent,
  .drivers-hero-accent {
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
    margin-top: 0.5rem;
  }

  .hero-inner {
    padding-left: 4rem !important;
    padding-right: 12rem !important;
  }

  .story-card {
    width: 560px;
    height: 620px;
    border-radius: 28px;
  }

  .story-card.active {
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
  }

  .story-card.next {
    transform: translate(calc(-50% + 140px), -50%) scale(0.95);
  }

  .coverflow-container {
    height: 580px;
    gap: 20rem;
    max-width: 1500px;
    }

  .features-title {
    font-size: 2.5rem;
  }
  .coverflow-track {
    max-width: 1100px;
    height: 430px;
  }

  .coverflow-card {
    width: 560px;
    height: 500px;
  }

  .card-overlay {
    padding: 18px 20px;
  }

  .btn-coverflow {
    padding: 12px 32px;
    font-size: 1.05rem;
  }

  .about-differentials {
    padding: clamp(3rem, 5vw, 6rem) 2rem;
  }

  .differentials-grid {
    gap: 4rem;
  }

  .metodology-intro {
    font-size: 1.1rem;
  }

  .highlight-content {
    font-size: 1.4rem;
  }

  .partners-section {
    padding-top: 4.2rem;
    padding-bottom: 3.8rem;
  }

  .partners-title {
    font-size: 2.3rem;
  }

  .partners-card {
    max-width: 1520px;
    padding: 1.3rem 2rem 1.6rem;
  }

  .partners-group {
    gap: 3rem;
    padding-right: 2.5rem;
  }

  .partner {
    min-width: 180px;
  }

  .partner img {
    max-height: 110px;
    max-width: 140px;
  }

  .video-hero {
    padding: 5rem 0;
  }

  .hero-inner {
    grid-template-columns: 0.9fr 1.1fr;
    column-gap: 3.5rem;
    align-items: center;
  }

  .hero-media {
    width: 700px;
    height: 480px;
  }

  .diferential-section {
    padding-top: 5rem;
  }

  .diferential-container {
    max-width: 1920px;
    margin-inline: auto;
  }

  .cta-modernize {
    padding: 2.6rem 2rem;
    margin-top: 2.4rem;
  }

  .cta-modernize h3 {
    font-size: 3rem;
  }

  .cta-modernize p {
    font-size: 1.3rem;
  }

  .cta-card {
    padding: 1.8rem 2rem;
    gap: 2rem;
  }

  .cta-modernize .btn-cta {
    padding: 0.9rem 1.8rem;
    font-size: 1.05rem;
  }
}
