@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,300,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Brand Colors */
  --azul-petroleo: #0F274D;
  --roxo-eletrico: #7B4CFF;
  --roxo-profundo: #4926A1;
  --cinza-grafite: #1E1E1E;
  --branco-gelo: #F3F5F8;

  /* Semantic Mappings */
  --primary-color: var(--roxo-eletrico);
  --secondary-color: var(--roxo-profundo);
  --tertiary-color: #E2D9F3;
  /* Light purple derived for backgrounds */
  --white-color: #ffffff;
  --dark-color: var(--cinza-grafite);
  --light-gray: var(--branco-gelo);
  --medium-gray: #e0e0e0;

  --sidebar-width: 260px;
  --sidebar-collapsed-width: 70px;
  --sidebar-mobile-width: 200px;
  --topbar-height: 60px;
  --transition-speed: 0.3s;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-color);
  background: var(--white-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.btn,
.nav,
.menu a {
  font-family: 'Satoshi', sans-serif;
}

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--topbar-height);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--medium-gray);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  gap: .6rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: .2px
}

.brand img {
  /*width: 34px;*/
  height: 34px
}

.menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.menu a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

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

/* Dropdown */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropbtn {
  background: none;
  border: none;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: var(--dark-color);
  padding: 0.5rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* Arrow icon placeholder */
.dropbtn::after {
  content: '▼';
  font-size: 0.6em;
  opacity: 0.6;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--medium-gray);
  border-radius: 12px;
  padding: 8px;
  z-index: 100;
  flex-direction: column;
}

.dropdown-content a {
  color: var(--dark-color);
  padding: 10px 12px;
  text-decoration: none;
  display: block;
  font-family: 'Inter', sans-serif;
  /* Content in Inter */
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: var(--branco-gelo);
  color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.hamb {
  display: none;
  background: none;
  border: 0;
  cursor: pointer
}

.hamb span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 5px 0
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-speed) ease
}

.btn.btn-primary {
  background: var(--primary-color);
  color: var(--white-color) !important;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  background: var(--white-color);
  color: var(--primary-color) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(153, 86, 152, .25);
}


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

.btn.btn-outline:hover {
  background: var(--tertiary-color)
}

/* HERO */
.hero {
  background: linear-gradient(180deg, var(--tertiary-color), var(--branco-gelo));
  padding: calc(var(--topbar-height) - 2rem) 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1.4fr;
  gap: 2rem;
  align-items: center
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw + 1rem, 3.2rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

.hero .accent {
  color: var(--primary-color);
  font-size: 1.5em;
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero .accent.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.hero p {
  margin: 0 0 1rem;
  font-size: 1.08rem
}

.ctas {
  display: flex;
  gap: .8rem;
  margin-top: 1rem
}

.trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  color: #666;
  font-size: .95rem
}

.card {
  background: white;
  border: 1px solid var(--medium-gray);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .06)
}

.mock.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem
}

.kpi {
  background: var(--light-gray);
  padding: .8rem;
  border-radius: 10px;
  text-align: center
}

.kpi-label {
  display: block;
  color: #666;
  font-size: .82rem
}

.kpi-value {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1.2rem
}

.spark {
  height: 64px;
  margin-top: 1rem;
  background: linear-gradient(90deg, rgba(153, 86, 152, .18), rgba(153, 86, 152, .06));
  border-radius: 10px
}

.muted {
  color: #777;
  font-size: .85rem;
  margin: .4rem 0 0
}

/* LOGOS */
.logos {
  padding: 2.6rem 0
}

.logos-lead {
  text-align: center;
  color: #666;
  margin: 0 0 1rem
}

.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .6rem
}

.logo-pill {
  border: 1px solid var(--medium-gray);
  background: white;
  border-radius: 999px;
  padding: .6rem .8rem;
  text-align: center;
  font-weight: 700
}

/* BENEFITS */
.benefits {
  padding: 3.6rem 0
}

.benefits .sub {
  color: #666;
  text-align: center;
  margin: 0 0 2rem
}

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

.rise {
  box-shadow: 0 14px 40px rgba(153, 86, 152, .08)
}

.outline {
  border: 1px solid var(--medium-gray)
}

/* PRODUCT */
.product {
  padding: 3.6rem 0
}

.product.alt {
  background: var(--light-gray)
}

.icon {
  font-size: 1.6rem
}

.integrations {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem
}

.pill {
  border: 1px dashed var(--medium-gray);
  border-radius: 999px;
  padding: .4rem .8rem;
  background: white;
  font-weight: 700
}

/* FAQ */
.faq {
  padding: 3.6rem 0
}

.faq-items details {
  background: white;
  border: 1px solid var(--medium-gray);
  border-radius: 12px;
  padding: .9rem 1rem;
  margin-bottom: .6rem
}

.faq-items summary {
  cursor: pointer;
  font-weight: 800
}

/* CTA */
.cta {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 3rem 0
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem
}

.cta-form input {
  padding: .9rem 1rem;
  border-radius: 12px;
  border: none
}

.cta-form .btn {
  grid-column: span 2
}

.form-status {
  min-height: 20px
}

/* FOOTER */
.footer {
  background: var(--azul-petroleo);
  color: var(--branco-gelo);
  padding: 2rem 0
}

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

.foot-brand {
  display: flex;
  gap: .6rem;
  align-items: center
}

.foot-brand img {
  width: 40px;
  height: 30px
}

.foot-nav a {
  color: var(--branco-gelo);
  text-decoration: none;
  margin-right: .8rem;
  opacity: 0.8;
}

.foot-nav a:hover {
  color: var(--roxo-eletrico);
  opacity: 1;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  transition: transform .2s ease;
  animation: vibrate 2s infinite ease-in-out;
}

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

  5% {
    transform: scale(1.1) rotate(5deg);
  }

  10% {
    transform: scale(1.1) rotate(-5deg);
  }

  15% {
    transform: scale(1.1) rotate(5deg);
  }

  20% {
    transform: scale(1.1) rotate(-5deg);
  }

  25% {
    transform: scale(1);
  }

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

.whatsapp:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}



/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: all .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* HEADINGS */
h2 {
  font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem);
  margin: 0 0 .6rem;
  text-align: center
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .ctas {
    justify-content: center;
  }

  .trust {
    justify-content: center;
  }

  .carousel-container {
    aspect-ratio: 16/10;
    max-width: 500px;
    margin: 0 auto;
  }

  .menu {
    position: fixed;
    right: 0;
    top: var(--topbar-height);
    height: calc(100vh - var(--topbar-height));
    width: 76vw;
    max-width: 320px;
    background: white;
    border-left: 1px solid var(--medium-gray);
    transform: translateX(100%);
    transition: transform var(--transition-speed) ease;
    display: grid;
    align-content: start;
    padding: 1rem
  }

  .menu.open {
    transform: translateX(0)
  }

  .hamb {
    display: block
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .logos-row {
    grid-template-columns: repeat(3, 1fr)
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .cta-inner {
    grid-template-columns: 1fr
  }

  .cta-form {
    grid-template-columns: 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 2rem 0;
  }

  .section-teaser {
    margin-top: 1rem;
  }

  .logos {
    padding: 1.5rem 0;
  }
}

.logos-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-track {
  display: flex;
  gap: 2rem;
  animation: scroll 20s linear infinite;
}

.logos-track img {
  max-height: 60px;
  object-fit: contain;
  background: white;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--medium-gray);
}

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

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

.integrations img[alt="SAP"] {
  width: 60px;
  /* tamanho só para o SAP */
  height: auto;
}

.integrations img[alt="totvus"] {
  width: 90px;
  /* tamanho só para o Totvus */
  height: auto;
}

.integrations img[alt="PowerBi"] {
  width: 60px;
  /* tamanho só para o Totvus */
  height: auto;
}

.nav .brand span {
  color: var(--azul-petroleo);
  font-weight: 800;
  font-size: 30px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--branco-gelo);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

@media (min-width: 981px) {
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.4fr;
    /* Increased image column */
    gap: 2rem;
    align-items: center
  }
}

/* ... existing code ... */

/* CAROUSEL */
.carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 20/16;
  /* Use modern aspect-ratio */
  padding-bottom: 0;
  overflow: hidden;
  border-radius: 16px;
  /*box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);*/
  background: transparent;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Show full image */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 1.5rem;
  border-radius: 16px;
  width: 92%;
  max-width: 500px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: slideIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

.close-modal {
  color: #aaa;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--dark-color);
  text-decoration: none;
}

.modal h2 {
  margin-top: 0;
  color: var(--azul-petroleo);
}

.modal p {
  color: #666;
  margin-bottom: 1.5rem;
}

.modal-form .form-group {
  margin-bottom: 1rem;
}

.modal-form input,
.modal-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.modal-form input:focus,
.modal-form select:focus {
  border-color: var(--primary-color);
}

.full-width {
  width: 100%;
  margin-top: 0.5rem;
}

/* INDUSTRY CAROUSEL */
.industry-carousel-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.industry-track-container {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.industry-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll 40s linear infinite;
  padding: 1rem 0.5rem;
}

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

.industry-card {
  min-width: 260px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid var(--medium-gray);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

@media (max-width: 600px) {
  .industry-track-container {
    overflow: visible;
  }

  .industry-track {
    animation: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    width: 100%;
    padding: 1rem 0;
  }

  .industry-card {
    min-width: 0;
    width: 100%;
    border-radius: 12px;
  }

  .industry-card img {
    height: 100px;
  }

  .industry-card h4 {
    padding: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.2;
  }
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.industry-card h4 {
  padding: 1rem;
  margin: 0;
  text-align: center;
  color: var(--azul-petroleo);
  font-size: 1.1rem;
  font-weight: 700;
  border-top: 1px solid #eee;
}

.carousel-btn {
  background: var(--white-color);
  border: 1px solid var(--medium-gray);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  z-index: 10;
  flex-shrink: 0;
}

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

/* BENEFITS REVAMP */
.benefits h2 {
  max-width: 800px;
  margin: 0 auto 1rem;
}

.result-card {
  text-align: left;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  min-height: 480px;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pain-statement {
  color: var(--azul-petroleo);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.solution-link {
  margin-top: auto;
  background: var(--branco-gelo);
  margin: 0 -1.5rem -1.5rem;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid #eee;
}

.solution-link .connector {
  display: block;
  font-weight: 700;
  color: var(--roxo-profundo);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.solution-link p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dark-color);
}

/* PREMIUM BENEFITS REDESIGN */
.premium-design {
  padding: 8rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--branco-gelo) 100%);
  overflow: hidden;
}

.section-header.reveal {
  text-align: center;
  margin-bottom: 5rem;
}

.badge-branded {
  display: inline-block;
  padding: 6px 16px;
  background: var(--tertiary-color);
  color: var(--roxo-profundo);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.sub-premium {
  font-size: 1.25rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.transformation-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.t-row {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t-row:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

.t-col {
  padding: 1rem;
}

.t-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.t-tag.success {
  color: var(--roxo-eletrico);
}

.t-col h3 {
  margin: 0 0 0.5rem;
  color: var(--azul-petroleo);
  font-size: 1.3rem;
}

.t-col p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
}

.t-col.solution h3 {
  color: var(--roxo-eletrico);
}

.t-col.solution p {
  color: var(--dark-color);
}

.bridge {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bridge-icon {
  width: 50px;
  height: 50px;
  background: var(--branco-gelo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bridge::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: dashed #ddd;
  /* fallback */
  background: repeating-linear-gradient(0deg, #ddd, #ddd 5px, transparent 5px, transparent 10px);
  z-index: 1;
}

@media (max-width: 768px) {
  .premium-design {
    padding: 5rem 0;
  }

  .section-header.reveal {
    margin-bottom: 3rem;
  }

  .sub-premium {
    font-size: 1.1rem;
  }

  .t-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .t-col.pain,
  .t-col.solution {
    padding: 0;
  }

  .bridge {
    display: none;
  }

  .t-divider-mobile {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--tertiary-color);
    margin: 0.5rem auto;
    border-radius: 2px;
  }
}


/* PRODUCT REVAMP */
.product-card {
  padding: 2rem;
  text-align: left;
  border: 1px solid var(--medium-gray);
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 450px;
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--tertiary-color);
  color: var(--roxo-profundo);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: max-content;
}

.product-card h3 {
  color: var(--azul-petroleo);
  margin: 0;
  font-size: 1.4rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  flex-grow: 1;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 1rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.integrations {
  justify-content: center;
  gap: 2rem;
}

.integrations .pill {
  padding: 1rem 2rem;
  border: 1px solid #eee;
  background: white;
  transition: all 0.3s ease;
}

.integrations .pill:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* SECTION TEASERS */
.section-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  text-decoration: none;
  color: #888;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s ease;
  animation: miniBounce 2s infinite;
  text-transform: uppercase;
  letter-spacing: 1px;
  grid-column: 1 / -1;
  width: 100%;
}

.section-teaser:hover {
  color: var(--primary-color);
}

.section-teaser .arrow {
  font-size: 1.2rem;
}

@keyframes miniBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(6px);
  }

  60% {
    transform: translateY(3px);
  }
}

/* PCM HORIZONTAL CLEAN FLOW */
.pcm-horizontal-section {
  padding: 6rem 0;
  background: var(--branco-gelo);
  overflow-x: auto;
}

.pcm-horizontal-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 10rem auto 0;
  padding: 4rem 1rem;
}

.pcm-horizontal-line {
  position: absolute;
  top: 62px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--medium-gray);
  z-index: 1;
}

.pcm-horizontal-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 10px;
}

.pcm-h-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 90px;
  text-align: center;
  position: relative;
}

.h-item-preview {
  position: absolute;
  bottom: 110%;
  /* Posiciona acima do nodo */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 40vw;
  max-width: 400px;
  /* Limite opcional para telas muito grandes */
  background: white;
  padding: 6px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.1s;
  z-index: 100;
  pointer-events: none;
}

.h-item-preview img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.pcm-h-item:hover .h-item-preview {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.h-item-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white-color);
  border: 2px solid var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--azul-petroleo);
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 3;
}

.pcm-h-item:hover .h-item-node {
  transform: scale(1.2) translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(123, 76, 255, 0.4);
}

.h-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--azul-petroleo);
  margin-bottom: 2px;
  white-space: nowrap;
}

.h-item-text span {
  font-size: 0.7rem;
  color: #666;
  display: block;
  line-height: 1.1;
}

/* Colors for circle borders */
.h-item-node.pcm-yellow {
  border-color: #F9A825;
  box-shadow: 0 0 10px rgba(249, 168, 37, 0.2);
}

.h-item-node.pcm-gray {
  border-color: #9E9E9E;
  box-shadow: 0 0 10px rgba(158, 158, 158, 0.2);
}

.h-item-node.pcm-orange {
  border-color: #E65100;
  box-shadow: 0 0 10px rgba(230, 81, 0, 0.2);
}

.h-item-node.pcm-green {
  border-color: #2E7D32;
  box-shadow: 0 0 10px rgba(46, 125, 50, 0.2);
}

.h-item-node.pcm-blue {
  border-color: #1565C0;
  box-shadow: 0 0 10px rgba(21, 101, 192, 0.2);
}

.h-item-node.pcm-red {
  border-color: #C62828;
  box-shadow: 0 0 10px rgba(198, 40, 40, 0.2);
}

.h-item-node.pcm-dark {
  border-color: #37474F;
  box-shadow: 0 0 10px rgba(55, 71, 79, 0.2);
}

/* Responsividade Mobile */
@media (max-width: 980px) {
  .pcm-horizontal-items {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .pcm-horizontal-line {
    top: 4rem;
    bottom: 4rem;
    left: 22px;
    width: 2px;
    height: auto;
    right: auto;
  }

  .pcm-h-item {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
  }

  .h-item-node {
    margin-bottom: 0;
  }

  .h-item-preview {
    width: 90vw;
    bottom: 50px;
    left: 100px;
    transform: translateY(10px);
  }

  .pcm-h-item:hover .h-item-preview {
    transform: translateY(0);
  }
}

/* FEATURE SPLIT (CROSS LAYOUT) */
.feature-split {
  padding: 6rem 0;
}

.feature-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-split-row:last-child {
  margin-bottom: 0;
}

.feature-split-row.reverse {
  direction: rtl;
}

.feature-split-row.reverse .feature-content {
  direction: ltr;
}

.feature-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/10;
  /* Mantém o container estável */
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-image img.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.feature-image:hover img.img-default {
  opacity: 0;
}

.feature-image:hover img.img-hover {
  opacity: 1;
  transform: scale(1.05);
}

.feature-content h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.feature-content p {
  margin-bottom: 2rem;
  color: #555;
}

@media (max-width: 768px) {

  .feature-split-row,
  .feature-split-row.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
}

/* MONITORAMENTO SOB MEDIDA */
.product-scope {
  padding: 6rem 0;
}

.integration-logic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.logic-card {
  background: var(--white-color);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--medium-gray);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.logic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(123, 76, 255, 0.1);
  border-color: var(--primary-color);
}

.logic-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.logic-text h3 {
  text-align: left;
  margin-bottom: 0.5rem;
  color: var(--azul-petroleo);
}

.logic-text p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.scope-item {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.scope-item:hover {
  background: var(--white-color);
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.scope-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.scope-item h4 {
  margin-bottom: 0.5rem;
  color: var(--azul-petroleo);
}

.scope-item span {
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 980px) {

  .integration-logic,
  .scope-grid {
    grid-template-columns: 1fr;
  }
}

/* GENERIC CAROUSEL STYLES */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-carousel,
.scope-carousel {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-commercial,
.scope-item {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--white-color);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--medium-gray);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card-commercial:hover,
.scope-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(123, 76, 255, 0.1);
}

.scope-img-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f8f9fa;
  /* Lighter background for images */
  border-radius: 12px;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Better for product images with specific aspect ratios */
  transition: transform 0.3s ease;
}

.img-placeholder:has(img)::after {
  display: none;
}

.img-placeholder::after {
  content: 'IMAGEM EM BREVE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: #999;
  z-index: 1;
}

/* Icon scaling refinements */
.scope-icon img,
.logic-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scope-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logic-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control {
  background: var(--white-color);
  border: 1px solid var(--medium-gray);
  color: var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}

.carousel-control:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--medium-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 1024px) {

  .feature-card-commercial,
  .scope-item {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {

  .feature-card-commercial,
  .scope-item {
    flex: 0 0 100%;
  }

  .carousel-control {
    display: none;
  }
}

/* HERO PRODUCT REFINEMENTS */
.hero-product {
  padding: calc(var(--topbar-height) + 4rem) 0 6rem;
  background: linear-gradient(135deg, #fff 0%, var(--branco-gelo) 100%);
  overflow: hidden;
}

.badge-branded {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--tertiary-color);
  color: var(--roxo-eletrico);
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero-image-featured {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease;
}

.hero-product:hover .hero-image-featured {
  transform: translateY(-10px) rotate(-1deg);
}

@media (max-width: 768px) {
  .hero-product {
    padding: calc(var(--topbar-height) + 2rem) 0 4rem;
  }
}

/* RESULTS & CTA */
.results-commercial {
  padding: 6rem 0;
  background: var(--white-color);
  text-align: center;
}

.results-commercial.alt {
  background: var(--branco-gelo);
}

.results-grid {
  max-width: 800px;
  margin: 0 auto;
}

.results-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.results-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  display: inline-block;
}

.results-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  position: relative;
  padding-left: 1.5rem;
}

.results-list li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.results-visual {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.floating-img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  /*box-shadow: 0 20px 40px rgba(0,0,0,0.1);*/
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

.final-cta {
  padding: 8rem 0;
  text-align: center;
  background: var(--white-color);
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--white-color) 0%, var(--branco-gelo) 100%);
  border-radius: 32px;
  border: 1px solid var(--medium-gray);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-box p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.mt-3 {
  margin-top: 1rem;
}