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

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  background: #0d1117;
  font-family: Arial, Helvetica, sans-serif;
  padding: 6px;
  color: #3f3f3f;
}

h1,
h2 {
  font-family: "Bebas Neue", Arial, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 400;
}

p {
  line-height: 1.45;
}

.hero {
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  overflow: hidden;
}


.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1053px;
  min-height: 620px;
  background:
    linear-gradient(
      to right,
      rgba(239, 239, 241, 0.98) 0%,
      rgba(239, 239, 241, 0.96) 34%,
      rgba(239, 239, 241, 0.72) 52%,
      rgba(239, 239, 241, 0.22) 70%,
      rgba(239, 239, 241, 0.08) 100%
    ),
    url("./imagens/fundo2.png") no-repeat center right / cover;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 38% 22%, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 57% 55%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 28%);
  pointer-events: none;
  z-index: 0;
}

/* circuitos */
.circuit {
  position: absolute;
  left: 0;
  width: 430px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
}

.circuit-top {
  top: 0;
  height: 260px;
  background:
    url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='430' height='260' viewBox='0 0 430 260'>\
<g fill='none' stroke='%23d8cae6' stroke-width='2'>\
<path d='M0 30 H35 L75 70 V125'/>\
<path d='M0 65 H38 L78 105'/>\
<path d='M0 110 H100 L140 150 V225'/>\
</g>\
<g fill='%23d8cae6'>\
<circle cx='75' cy='70' r='8'/>\
<circle cx='40' cy='110' r='8'/>\
<circle cx='105' cy='102' r='8'/>\
</g>\
</svg>") no-repeat left top / contain;
}

.circuit-bottom {
  bottom: 0;
  height: 270px;
  background:
    url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='430' height='270' viewBox='0 0 430 270'>\
<g fill='none' stroke='%23d8cae6' stroke-width='2'>\
<path d='M0 130 H60 L95 165 V270'/>\
<path d='M0 175 H120 L175 120 V40'/>\
<path d='M0 220 H150 L190 255 H220 L245 230 V145'/>\
<path d='M240 270 V165 L205 130'/>\
<path d='M315 270 V95'/>\
<path d='M385 270 V150'/>\
</g>\
<g fill='%23d8cae6'>\
<circle cx='214' cy='220' r='10'/>\
<circle cx='315' cy='126' r='9'/>\
<circle cx='315' cy='180' r='9'/>\
<circle cx='385' cy='230' r='10'/>\
</g>\
</svg>") no-repeat left bottom / contain;
}

/* bloco esquerdo */
.left-content {
  position: absolute;
  left: 58px;
  top: 56px;
  color: #0b57b7;
  width: 430px;
  z-index: 3;
}

.left-content h1 {
  font-size: 54px;
  line-height: 0.98;
  color: #0057bf;
  margin-bottom: 24px;
}

.logo {
  width: 140px;
  height: auto;
  margin-bottom: 96px;
}

/* título */
.left-content {
  left: 58px;
  top: 56px;
  width: 430px;
}

/* botão */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 41px;
  background: #0057bf;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #004aa1;
}


.panel-overview,
.features,
.clients {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background: #efefef;
  overflow: hidden;
}

.panel-overview::before,
.features::before,
.clients::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at -10% 20%, transparent 0 28%, rgba(126, 211, 212, 0.22) 28.3%, transparent 28.8%) 0 0 / 240px 240px,
    radial-gradient(circle at 120% 60%, transparent 0 26%, rgba(126, 211, 212, 0.18) 26.3%, transparent 26.8%) 0 0 / 300px 300px;
  opacity: 0.9;
  pointer-events: none;
}

.panel-shell,
.features-shell,
.clients-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1053px;
}

.panel-shell {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.05fr);
  gap: 36px;
  align-items: center;
  padding: 46px 40px 40px;
}

.panel-graphic img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.panel-copy {
  color: #4d4d4d;
}

.panel-copy h2,
.features h2,
.clients h2,
.contact-copy h2 {
  color: #0057bf;
  font-size: 50px;
  line-height: 0.95;
  margin-bottom: 18px;
}

.panel-copy p {
  font-size: 16px;
  margin-bottom: 18px;
}

.panel-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 28px;
  align-items: center;
}

.panel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: #0057bf;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex: 1 1 0;
}

.panel-btn-light {
  background: #e5e5e5;
  color: #4a4a4a;
}

.features-shell {
  padding: 8px 26px 64px;
}

.features h2 {
  text-align: center;
  margin-bottom: 10px;
}

.features-subtitle {
  text-align: center;
  color: #0057bf;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 22px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 22px 18px 18px;
  box-shadow: 0 12px 28px rgba(36, 82, 150, 0.10);
  min-height: 250px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(0, 87, 191, 0.06);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(36, 82, 150, 0.16);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0057bf 0%, #1d8fe3 100%);
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(29, 143, 227, 0.22);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card h3 {
  color: #0057bf;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
  min-height: 44px;
}

.feature-card ul {
  padding-left: 18px;
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.clients-shell {
  padding: 40px 26px 0;
}

.clients h2 {
  text-align: center;
}

.clients-subtitle {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
  color: #0057bf;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.35;
}

.clients-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.clients-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.clients-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.client-item {
  min-width: calc((100% - 36px) / 3);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 10px 24px rgba(36, 82, 150, 0.08);
  border: 1px solid rgba(0, 87, 191, 0.06);
  flex: 0 0 calc((100% - 36px) / 3);
}

.client-item img {
  width: 100%;
  max-width: 170px;
  max-height: 64px;
  object-fit: contain;
  display: block;
}

.client-item span {
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057bf 0%, #1d8fe3 100%);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(29, 143, 227, 0.22);
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex: 0 0 auto;
}

.carousel-btn:hover {
  transform: scale(1.06);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.client-item {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.client-item img {
  width: 100%;
  max-width: 160px;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

.client-item span {
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 700;
}


.contact-cta {
  display: grid;
  grid-template-columns: minmax(360px, 1fr);
  align-items: stretch;

  background:
    linear-gradient(
      to right,
      rgba(239,239,239,0.92) 0%,
      rgba(239,239,239,0.85) 25%,
      rgba(239,239,239,0.55) 45%,
      rgba(239,239,239,0.20) 65%,
      rgba(239,239,239,0.05) 80%,
      rgba(239,239,239,0) 100%
    ),
    url("./imagens/end.png") no-repeat center right / cover;
}


.contact-copy {
  padding: 70px 32px 70px 46px;
  max-width: 600px;
}

.contact-copy h2 {
  font-size: 58px;
  margin-bottom: 46px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

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

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057bf 0%, #1d8fe3 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(29, 143, 227, 0.20);
  flex: 0 0 auto;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h3 {
  color: #0057bf;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.contact-item p {
  color: #0057bf;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
}


.feature-card a {
  color: #1d8fe3;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.feature-card a::after {
  content: " \2192";
}


@media (max-width: 980px) {
  body {
    padding: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 780px;
  }

  .left-content {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    padding: 36px 24px 0 24px;
  }

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 95px;
}

  .left-content h1 {
    font-size: 26px;
    max-width: 100%;
    margin-bottom: 28px;
  }


  .image-fade {
    left: -70px;
    top: -10px;
    width: 160px;
    height: 410px;
  }

  .circuit-top,
  .circuit-bottom {
    width: 340px;
  }

  .panel-shell {
    grid-template-columns: 1fr;
    padding: 48px 24px 42px;
  }

  .panel-graphic img {
    max-width: 560px;
    margin: 0 auto;
  }

  .panel-copy h2,
  .features h2,
  .clients h2,
  .contact-copy h2 {
    font-size: 42px;
  }

  .panel-copy p {
    font-size: 17px;
  }

  .features-shell {
    padding: 6px 24px 54px;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-cta {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding: 48px 24px 34px;
  }

  .contact-visual {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  .hero-inner {
    min-height: 700px;
  }

  .left-content h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  .btn {
    width: 138px;
    height: 40px;
    font-size: 14px;
  }


  .circuit-top,
  .circuit-bottom {
    width: 260px;
    opacity: 0.7;
  }

  .panel-shell {
    padding: 36px 18px 34px;
    gap: 18px;
  }

  .panel-copy h2,
  .features h2,
  .clients h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .panel-copy p {
    font-size: 16px;
  }

  .panel-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .panel-btn {
    width: 100%;
    flex: 1 1 100%;
  }

  .features-shell {
    padding: 16px 40px 64px;
  }

  .features-subtitle {
    font-size: 20px;
    line-height: 1.15;
  }

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

  .clients-shell {
    padding: 34px 18px 0;
  }

  .clients-subtitle {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
  }

  .client-item {
    min-height: auto;
    padding: 12px 0;
  }

  .contact-copy {
    padding: 34px 18px 28px;
  }

  .contact-copy h2 {
    margin-bottom: 28px;
  }

  .contact-list {
    gap: 22px;
  }

  .contact-item h3 {
    font-size: 24px;
  }

  .contact-item p {
    font-size: 17px;
  }

  .contact-visual {
    min-height: 240px;
  }
}

.floating-social {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 56px;
  height: 56px;
  padding: 0 5px 0 15px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.floating-btn svg {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-btn svg path {
  transform-origin: center;
}

.floating-btn span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.25s ease, opacity 0.25s ease;
  font-size: 14px;
  font-weight: 700;
}

.floating-btn:hover {
  transform: translateX(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.floating-btn:hover span {
  max-width: 140px;
  opacity: 1;
}

.floating-btn.instagram {
  background: linear-gradient(135deg, #833ab4 0%, #e1306c 55%, #f77737 100%);
}

.floating-btn.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0f5dc9 100%);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #179c4b 100%);
}

@media (max-width: 980px) {
  .floating-social {
    right: 12px;
    gap: 10px;
  }

  .floating-btn {
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-btn span {
    display: none;
  }

  .floating-btn:hover {
    transform: scale(1.06);
  }
}

@media (max-width: 600px) {
  .floating-social {
    right: 10px;
    bottom: 16px;
    top: auto;
    transform: none;
  }

  .floating-btn {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }
}

.iframe-container{
  width:100%;
  max-width:1200px;
  margin:auto;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.iframe-container iframe{
  width:100%;
  height:700px;
  border:none;
}
