  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", Arial, sans-serif;
  }

  html {
    scroll-behavior: smooth;
  }
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
}
  body {
    background: #f5f5f5;
    color: #111;
    overflow: hidden;
  }

  body.loaded {
    overflow: auto;
  }

  header {
    width: 100%;
    height: 80px;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }

  .logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .logo h1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #111;
  }

  nav ul {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
  }

  nav a {
    color: #111;
    text-decoration: none;
  }

  .arrow-btn {
    background: transparent;
    border: none;
    color: #111;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }

  .auth {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .auth a {
    color: #111;
    text-decoration: none;
  }

  .auth .false-login {
    border-radius: 5px;
    padding: 10px;
    border: solid 1px rgb(36, 36, 36);
  }

  .auth .true-login {
    background-color: rgb(36, 36, 36);
    color: white;
    border-radius: 5px;
    padding: 10px;
  }
  .mobile-menu-btn {
    display: none;
  }
.dropdown-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  z-index: 50;
  transition: .3s ease;
}

.dropdown-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  position: relative;
}

.arrow-btn {
  border: 0;
  background: transparent;
  color: #111;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow {
  display: flex;
  transition: .3s ease;
}

.arrow.rotate {
  transform: rotate(180deg);
}

.mega-card {
  position: absolute;
  top: 55px;
  left: 0;
  width: 520px;
  background: #fff;
  border-radius: 4px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  z-index: 100;
  transition: .3s ease;
}

.mega-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-option {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #111;
  transition: .3s ease;
}

.mega-option:hover {
  background: #f3f4f6;
}

.mega-option i {
  font-size: 24px;
  color: #4f46e5;
}

.mega-option strong {
  font-size: 15px;
}

.mega-option p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #666;
}

@media (max-width: 768px) {
  .mega-card {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 90px;
    width: auto;
    grid-template-columns: 1fr;
  }
}
  .mobile-nav {
    display: none;
  }

  @media (max-width: 768px) {
    .mobile-menu-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      top: 18px;
      right: 18px;
      z-index: 1001;
      width: 46px;
      height: 46px;
      border: none;
      border-radius: 14px;
      background: #ffffff;
      color: #111827;
      font-size: 28px;
      cursor: pointer;
    }

    .mobile-menu-btn i {
      transition: transform 0.3s ease;
    }

    .mobile-menu-btn.active i {
      transform: rotate(90deg);
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: fixed;
      top: 76px;
      right: 0px;
      height: 100vh;
      z-index: 1000;
      width: 230px;
      padding: 28px;
      background: #ffffff;

      opacity: 0;
      pointer-events: none;
      transform: translateX(120%);
      transition: 0.35s ease;
    }
    .mobile-nav.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(0);
    }
    .mobile-nav a {
      text-decoration: none;
      color: #111827;
      font-weight: 600;
      padding: 12px 14px;
      border-radius: 12px;
      transition: 0.25s ease;
    }

    .mobile-nav a:hover {
      background: #f1f5f9;
      transform: translateX(-6px);
    }
  }
  .chat-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: transparent;
  padding: 5px;
  cursor: pointer;
  z-index: 9999;
}

.chat-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.chat-window {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 390px;
  height: 625px;
  background: #fff;
  border-radius: 16px;
  z-index: 10000;
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.chat-window.active {
  display: flex;
}

.chat-header {
  height: 72px;
  background: #29a047;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-profile img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.chat-profile h3 {
  font-size: 16px;
  margin: 0;
}

.chat-profile span {
  font-size: 13px;
  font-weight: 600;
}

.chat-header button {
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.chat-body {
  flex: 1;
  padding: 38px 24px 18px;
  overflow-y: auto;
  background: #fff;
}

.message-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.message-row img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 8px;
}

.message-bubble {
  max-width: 285px;
  background: #f1f7ff;
  padding: 14px 16px;
  border-radius: 8px;
  color: #18315c;
  font-size: 14px;
  line-height: 1.5;
}

.user-message {
  justify-content: flex-end;
}

.user-message .message-bubble {
  background: #29a047;
  color: #fff;
}

.typing {
  display: flex;
  gap: 4px;
  padding-left: 40px;
  margin-bottom: 14px;
  color: #7c8aa5;
  font-size: 13px;
  font-weight: 600;
}

.typing::after {
  content: "";
  width: 22px;
  animation: typingText 1s infinite;
}

@keyframes typingText {
  0% { content: "."; }
  33% { content: ".."; }
  66% { content: "..."; }
  100% { content: "."; }
}

.chat-menu {
  padding: 14px;
  border-top: 1px solid #eef2f7;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chat-menu button {
  border: 1px solid #dbeafe;
  background: #f8fbff;
  color: #1d4ed8;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.chat-menu button:hover {
  background: #eff6ff;
}

@media (max-width: 520px) {
  .chat-window {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    height: 620px;
  }

  .chat-float {
    right: 18px;
    bottom: 18px;
  }
}
  .cookie-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999999;
    width: 100%;
    background: #fff;
    border-top: 1px solid #1f8b69;
    padding: 20px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: 0.35s ease;
  }

  .cookie-bar.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .cookie-bar p {
    margin: 0;
    font-size: 14px;
    color: #111827;
    line-height: 1.6;
  }

  .cookie-bar a {
    color: #1f8b69;
    font-weight: 800;
    text-decoration: none;
  }

  .cookie-bar button {
    min-width: 165px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid #2cb487;
    background: #fff;
    color: #2cb487;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .cookie-bar button:hover {
    background: #2cb487;
    color: #fff;
  }

  @media (max-width: 768px) {
    .cookie-bar {
      padding: 18px 20px;
      flex-direction: column;
      align-items: flex-start;
    }

    .cookie-bar button {
      width: 100%;
    }
  }
  /* LOADING */

  .loading-screen {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.8s ease,
      visibility 0.8s ease;
  }

  .loading-screen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .loader-content {
    position: relative;
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .loader-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    z-index: 2;
  }

  .loader-ring {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: conic-gradient(#47d7a8, #3ccb9b, #2cb487, transparent 70%);
    -webkit-mask: radial-gradient(
      farthest-side,
      transparent calc(100% - 4px),
      white calc(100% - 4px)
    );
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    100% {
      transform: rotate(360deg);
    }
  }
  .maintenance-screen {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background:
      radial-gradient(
        circle at top left,
        rgba(44, 180, 135, 0.18),
        transparent 30%
      ),
      radial-gradient(
        circle at bottom right,
        rgba(44, 180, 135, 0.12),
        transparent 35%
      ),
      #f4f4f5;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999999;

    padding: 20px;
  }

  .maintenance-content {
    width: 100%;
    max-width: 520px;

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 32px;

    padding: 55px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  }

  .maintenance-logo {
    width: 95px;
    height: 95px;

    object-fit: contain;

    margin-bottom: 28px;

    animation: maintenanceFloat 3s ease-in-out infinite;
  }

  @keyframes maintenanceFloat {
    0% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-8px);
    }

    100% {
      transform: translateY(0px);
    }
  }

  .maintenance-content h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);

    line-height: 1.1;

    font-weight: 800;

    color: #111827;

    margin-bottom: 16px;

    letter-spacing: -1px;
  }

  .maintenance-content p {
    font-size: 1.08rem;

    line-height: 1.7;

    color: #4b5563;

    max-width: 420px;

    margin-bottom: 35px;
  }

  .maintenance-contact {
    width: 100%;

    border-radius: 18px;

    padding: 18px;

    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .maintenance-contact span {
    color: #4b5563;

    font-size: 0.95rem;
  }

  .maintenance-contact a {
    color: #2cb487;

    text-decoration: none;

    font-size: 1rem;
    font-weight: 700;

    transition: 0.3s ease;
  }

  .maintenance-contact a:hover {
    opacity: 0.7;
  }

  @media (max-width: 700px) {
    .maintenance-content {
      padding: 45px 24px;
      border-radius: 24px;
    }

    .maintenance-logo {
      width: 80px;
      height: 80px;
    }

    .maintenance-content p {
      font-size: 1rem;
    }
  }
  /* HERO */

.hero {
  width: 100%;
  min-height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 5% 80px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0)),
    url("/website/image/crm.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(0, 255, 170, 0.22), transparent 28%),
    radial-gradient(circle at 85% 60%, rgba(0, 255, 170, 0.18), transparent 30%);
  z-index: -1;
  animation: heroGlow 5s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    linear-gradient(120deg, transparent 30%, rgba(0, 255, 170, 0.12), transparent 70%);
  transform: translateX(-100%);
  animation: heroLight 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes heroZoom {
  from {
    background-size: 100%;
  }

  to {
    background-size: 108%;
  }
}

@keyframes heroGlow {
  from {
    opacity: 0.45;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes heroLight {
  0% {
    transform: translateX(-100%) rotate(0deg);
  }

  55%,
  100% {
    transform: translateX(100%) rotate(0deg);
  }
}

  /* MOBILE */
  @media (max-width: 768px) {
    .hero {
      min-height: 100svh;
      padding: 90px 24px 60px;

      background:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.0)),
        url("/website/image/bs_mobile.png");

      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;

      align-items: flex-start;
      justify-content: center;
    }
  }
  .text-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .title h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: transparent;
    letter-spacing: -3px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(40px);
  }

  .title p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: transparent;
    max-width: 600px;
    opacity: 0;
    transform: translateY(40px);
  }

  .hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(40px);
  }

  body.loaded .title h1 {
    animation: textEnter 0.9s ease forwards;
  }

  body.loaded .title p {
    animation: textEnter 0.9s ease forwards;
    animation-delay: 0.25s;
  }

  body.loaded .hero-buttons {
    animation: textEnter 0.9s ease forwards;
    animation-delay: 0.45s;
  }

  @keyframes textEnter {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .btn-primary {
    padding: 15px 28px;
    border-radius: 14px;
    background: transparent;
    color: transparent;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
  }

  /* SERVIÇOS */

  .sobre {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    z-index: 5;
    padding: 120px 7%;
    display: flex;
    align-items: center;
    text-align: center;
    box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.18);
  }

  .services-content {
    width: 100%;
  }

  .section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 10px;
    background: #2cb48798;
    color: #111827;
    font-weight: 700;
    margin-bottom: 18px;
  }

  .services-content h2 {
    font-size: clamp(2rem, 5vw, 4.2rem);
    max-width: 850px;
    margin: 0 auto 18px;
    color: #050505;
    text-align: center;
  }

  .services-content > p {
    max-width: 720px;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto 45px;
    text-align: center;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .service-card {
    background-image: url("/website/image/backgroundcard.png");
    background-size: cover;
    background-position: center;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    padding: 30px;
    transition:
      transform 0.4s ease,
      box-shadow 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  }

  .service-card i {
    font-size: 2rem;
    color: #ffffff;
  }

  .service-card h3 {
    margin: 18px 0 10px;
    color: #ffffff;
  }

  .service-card p {
    color: #ffffff;
    line-height: 1.6;
  }

  /* FAIXA DE LOGOS */

  .stack-section {
    width: 100%;
    padding: 10px 0;
    background-color: white;
    overflow: hidden;
    position: relative;
    z-index: 10;
  }

  .stack-track {
    display: flex;
    align-items: center;
    gap: 26px;
    width: max-content;
    animation: off 30s linear infinite; /*Para ativar a animação troque o off pelo infiniteScroll */
  }

  .stack-item {
    width: 220px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    flex-shrink: 0;
    transition: 0.35s ease;
  }

  .stack-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.35s ease;
  }

  .stack-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }

  @keyframes infiniteScroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* RESPONSIVO */

  @media (max-width: 1100px) {
    header {
      padding: 0 5%;
    }

    nav {
      display: none;
    }

    .hero {
      text-align: center;
    }

    .text-left {
      align-items: center;
    }

    .title h1 {
      font-size: 52px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 700px) {
    .auth {
      display: none;
    }

    .logo h1 {
      font-size: 20px;
    }

    .hero {
      padding-top: 140px;
    }

    .title h1 {
      font-size: 38px;
      letter-spacing: -1px;
    }

    .title p {
      font-size: 16px;
    }

    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }

    .btn-primary,
    .btn-secondary {
      width: 100%;
      text-align: center;
    }

    .sobre {
      padding: 90px 5%;
      align-items: flex-start;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .stack-item {
      width: 170px;
      height: 95px;
      padding: 20px;
    }

    .stack-track {
      gap: 18px;
    }
  }
  /* =========================================
    TECH MARQUEE
  ========================================= */

  .tech-marquee-section {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    z-index: 10;
    padding: 18px 0;
  }

  .tech-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .tech-marquee-track {
    display: flex;
    align-items: center;
    gap: 90px;
    width: max-content;
  }

  .tech-marquee.left .tech-marquee-track {
    animation: techLeft 38s linear infinite;
  }

  .tech-marquee.right .tech-marquee-track {
    animation: techRight 38s linear infinite;
  }

  .tech-logo {
    width: 140px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
  }

  .tech-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.65;

    transition:
      filter 0.35s ease,
      opacity 0.35s ease,
      transform 0.35s ease;
  }

  .tech-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06) translateY(-3px);
  }

  /* =========================================
    ANIMAÇÕES
  ========================================= */

  @keyframes techLeft {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @keyframes techRight {
    from {
      transform: translateX(-50%);
    }

    to {
      transform: translateX(0);
    }
  }

  /* =========================================
    RESPONSIVO
  ========================================= */

  @media (max-width: 900px) {
    .tech-marquee-track {
      gap: 50px;
    }

    .tech-logo {
      width: 95px;
      height: 50px;
    }
  }

  @media (max-width: 600px) {
    .tech-marquee-section {
      padding: 12px 0;
    }

    .tech-marquee-track {
      gap: 35px;
    }

    .tech-logo {
      width: 78px;
      height: 40px;
    }
  } 
  /* =========================================
    BANNER SLIDER
  ========================================= */

  .banner-slider-section {
    width: 100%;
    padding: 90px 5%;
    background: #ffffff;
    position: relative;
    z-index: 10;
  }

  .banner-slider {
    width: 100%;
    max-width: 1500px;
    height: 620px;

    margin: 0 auto;

    position: relative;

    overflow: hidden;

    border-radius: 36px;
  }

  .banner-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition: 0.8s ease;
  }

  .banner-slide.active {
    opacity: 1;
    visibility: visible;
  }

  .banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .banner-overlay {
    inset: 0;
  }

  .banner-content {
    position: absolute;
    top: 50%;
    left: 7%;

    transform: translateY(-50%);

    max-width: 620px;

    z-index: 2;
  }

  .banner-content span {
    display: inline-block;

    padding: 8px 16px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 0.92rem;
    font-weight: 700;

    margin-bottom: 24px;
  }

  .banner-content h2 {
    font-size: clamp(2.8rem, 6vw, 5rem);

    line-height: 1.05;

    font-weight: 800;

    color: #ffffff;

    letter-spacing: -3px;

    margin-bottom: 24px;
  }

  .banner-content p {
    font-size: 1.15rem;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 34px;
  }

  .banner-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 28px;

    border-radius: 14px;

    background: #2cb487;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s ease;
  }



  /* =========================================
    RESPONSIVO
  ========================================= */

  @media (max-width: 900px) {
    .banner-slider {
      height: 540px;
    }

    .banner-content {
      left: 24px;
      right: 24px;
      max-width: 100%;
    }

    .banner-content h2 {
      letter-spacing: -1.5px;
    }
  }

  @media (max-width: 600px) {
    .banner-slider-section {
      padding: 60px 5%;
    }

    .banner-slider {
      height: 500px;
      border-radius: 24px;
    }

    .banner-content p {
      font-size: 1rem;
    }

    .banner-content a {
      width: 100%;
    }
  }
  .linkytech-bs-section {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    z-index: 10;
    padding: 0 10%;
    display: flex;
    align-items: center;
    margin: 0;
  }

  .linkytech-bs-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
  }

  .linkytech-bs-preview {
    width: 100%;
  }

  .linkytech-bs-bg {
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px;
    overflow: hidden;
  }

  .linkytech-bs-bg img {
    width: 100%;
    max-width: 720px;
    object-fit: contain;
  }

  .linkytech-bs-content {
    width: 100%;
  }

  .linkytech-bs-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 10px;
    background: #2cb48727;
    color: #111;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
  }

  .linkytech-bs-content h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 500;
    color: #111;
    max-width: 680px;
    margin-bottom: 24px;
    letter-spacing: -2px;
  }

  .linkytech-bs-content p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #111;
    max-width: 720px;
    margin-bottom: 42px;
  }

  .linkytech-bs-links {
    width: 100%;
    max-width: 720px;
  }

  .linkytech-bs-links a {
    width: 100%;
    padding: 22px 0;
    border-bottom: 1px solid #ddd;
    color: #111;
    text-decoration: none;
    font-size: 1.45rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
  }

  .linkytech-bs-links a:hover {
    padding-left: 12px;
    color: #1f8b69;
  }

  .linkytech-bs-links a i {
    font-size: 1.4rem;
  }
  .pricing-section {
    width: 100%;
    background: #f4f4f6;
    position: relative;
    z-index: 10;
    padding: 90px 5%;
  }

  .pricing-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .pricing-header h2 {
    max-width: 760px;
    margin: 0 auto 45px;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -3px;
    color: #1d1d1f;
  }

  .pricing-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
  }

  .pricing-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
    font-size: 1rem;
  }

  .pricing-benefits i {
    color: #555;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: end;
  }

  .price-card {
    min-height: 620px;
    background: #ffffff;
    border-radius: 5px;
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
  }

  .price-card.popular {
    border: 2px solid #3ccb9b;
    padding-top: 76px;
  }

  .price-card.recommended {
    border: 2px solid #e2e4ff;
    padding-top: 76px;
  }

  .card-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #3ccb9b;
    color: white;
    text-align: center;
    padding: 17px;
    font-weight: 800;
    font-size: 0.9rem;
  }

  .card-ribbon.light {
    background: #70e6be;
    color: #111;
  }

  .discount {
    align-self: flex-end;
    background: #d4fff0;
    color: #3ccb9b;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .price-card h3 {
    font-size: 1.35rem;
    color: #111;
    margin-bottom: 10px;
  }

  .plan-description {
    color: #111;
    line-height: 1.45;
    margin-bottom: 35px;
    min-height: 44px;
  }

  .old-price {
    color: #777;
    text-decoration: line-through;
    margin-bottom: 6px;
  }

  .price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
  }

  .price span {
    font-size: 1rem;
    font-weight: 500;
  }

  .free-months {
    margin-top: 6px;
    color: #111;
    font-size: 1rem;
  }

  .price-btn {
    width: 100%;
    margin-top: 34px;
    padding: 17px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s ease;
  }

  .price-btn.outline {
    color: #252525;
    border: 1px solid #3ccb9b;
    background: transparent;
  }

  .price-btn.filled {
    color: white;
    background: #66e0b7;
    border: 1px solid #3ccb9b;
  }

  .price-btn:hover {
    transform: translateY(-3px);
  }

  .price-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
  }

  .price-card ul {
    list-style: none;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #111;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .price-card li i {
    color: #555;
    margin-top: 2px;
  }

  @media (max-width: 1200px) {
    .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .price-card {
      min-height: auto;
    }
  }

  @media (max-width: 700px) {
    .pricing-section {
      padding: 70px 5%;
    }

    .pricing-header {
      margin-bottom: 45px;
    }

    .pricing-header h2 {
      letter-spacing: -1.5px;
    }

    .pricing-benefits {
      gap: 16px;
      flex-direction: column;
    }

    .pricing-grid {
      grid-template-columns: 1fr;
    }

    .price-card {
      padding: 30px 24px;
    }

    .price-card.popular,
    .price-card.recommended {
      padding-top: 76px;
    }
  }
  .performance-section {
    width: 100%;
    background: #f7f7f8;
    position: relative;
    z-index: 10;
    padding: 90px 5% 60px;
  }

  .performance-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .performance-header {
    text-align: center;
    margin-bottom: 55px;
  }

  .performance-header h2 {
    max-width: 1100px;
    margin: 0 auto 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    color: #101949;
    letter-spacing: -1.5px;
  }

  .performance-header p {
    font-size: 1.15rem;
    color: #111;
    letter-spacing: 0.2px;
  }

  .performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .performance-card {
    min-height: 330px;
    background: transparent;
    border-radius: 28px;
    padding: 34px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .performance-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    color: #3ccb9b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 22px;
  }

  .performance-card h3 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1;
    font-weight: 800;
    color: #3ccb9b;
    margin-bottom: 16px;
    letter-spacing: -2px;
  }

  .performance-card p {
    font-size: 1.08rem;
    line-height: 1.45;
    color: #111;
    max-width: 230px;
  }

  .performance-note {
    max-width: 1250px;
    margin: 42px auto 0;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #111;
  }

  @media (max-width: 1100px) {
    .performance-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .performance-card p {
      max-width: 340px;
    }
  }

  @media (max-width: 700px) {
    .performance-section {
      padding: 70px 5% 45px;
    }

    .performance-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .performance-card {
      min-height: auto;
      padding: 34px 24px;
    }

    .performance-header h2 {
      letter-spacing: -1px;
    }
  }
  /* CORREÇÃO DE ESPAÇAMENTO ENTRE SECTIONS */

  section {
    margin: 0;
  }

  .sobre,
  .stack-section,
  .linkytech-bs-section,
  .info {
    margin-top: 0;
    margin-bottom: 0;
  }

  .stack-section {
    padding: 0;
  }

  .connect-cloud-section {
    width: 100%;
    background: #ffffff;
    padding: 90px 5%;
    position: relative;
        border-radius: 36px 36px 0 0;
    z-index: 10;
  }

  .connect-cloud-container {
    max-width: 1450px;
    margin: 0 auto;
  }

  .connect-cloud-header {
    text-align: center;
    margin-bottom: 75px;
  }

  .connect-cloud-header h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.12;
    font-weight: 800;
    color: #050505;
    margin-bottom: 34px;
  }

  .connect-cloud-header p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #111;
    max-width: 1280px;
    margin: 0 auto;
  }

  .connect-cloud-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }

  .connect-cloud-text h3 {
    max-width: 650px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    color: #050505;
    margin-bottom: 42px;
  }

  .connect-cloud-text p {
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #111;
    margin-bottom: 32px;
  }

  .connect-cloud-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
  }

  .connect-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 305px;
    height: 48px;
    border-radius: 7px;
    background: #3ccb9b;
    color: white;
    text-decoration: none;
    font-weight: 600;
  }

  .connect-btn-link {
    color: #111;
    text-decoration: none;
    font-weight: 500;
  }

  .connect-btn-link i {
    color: #3ccb9b;
    margin-left: 18px;
  }

  .connect-cloud-related strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 28px;
  }

  .connect-cloud-related div {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
  }

  .connect-cloud-related a {
    color: #111;
    text-decoration: underline;
    font-size: 0.98rem;
  }

  .connect-cloud-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .connect-orb {
    width: 410px;
    height: 410px;
    border-radius: 50%;
    position: relative;
    background: transparent;
    border: 1px dashed transparent;
    overflow: visible;
  }

  .orb-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image:
      linear-gradient(35deg, transparent 48%, #3ccb9b 49%, transparent 51%),
      linear-gradient(145deg, transparent 48%, #3ccb9b 49%, transparent 51%),
      linear-gradient(90deg, transparent 48%, #3ccb9b 49%, transparent 51%);
    background-size: 72px 72px;
    opacity: 0.8;
  }

  .cloud-main {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    color: #3ccb9b;
    font-size: 150px;
    z-index: 2;
  }

  .cloud-small {
    position: absolute;
    right: 38px;
    top: 42px;
    color: #3ccb9b;
    font-size: 88px;
    z-index: 2;
  }

  .connect-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    border: 4px solid #3ccb9b;
    border-radius: 50%;
    background: transparent;
    color: #3ccb9b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    z-index: 3;
  }

  .icon-user {
    top: 0;
    left: 60px;
  }

  .icon-building {
    left: -48px;
    top: 150px;
    border-radius: 0;
    width: 70px;
    height: 88px;
    background: #3ccb9b;
  }

  .icon-globe {
    right: -52px;
    top: 150px;
    width: 88px;
    height: 88px;
    font-size: 44px;
  }

  .icon-home {
    left: 45px;
    bottom: 16px;
  }

  .icon-box {
    right: 34px;
    bottom: 16px;
    border-radius: 0;
    width: 76px;
    height: 52px;
    background: #fff;
  }

  @media (max-width: 1000px) {
    .connect-cloud-content {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .connect-cloud-text h3,
    .connect-cloud-text p {
      margin-left: auto;
      margin-right: auto;
    }

    .connect-cloud-actions {
      justify-content: center;
    }

    .connect-cloud-related div {
      justify-content: center;
    }
  }

  @media (max-width: 600px) {
    .connect-cloud-section {
      padding: 65px 5%;
    }

    .connect-cloud-header {
      margin-bottom: 50px;
    }

    .connect-cloud-actions {
      flex-direction: column;
      gap: 18px;
    }

    .connect-btn-primary {
      width: 100%;
      min-width: 0;
    }

    .connect-orb {
      width: 270px;
      height: 270px;
    }

    .cloud-main {
      font-size: 105px;
    }

    .cloud-small {
      font-size: 60px;
      right: 22px;
      top: 24px;
    }

    .connect-icon {
      width: 44px;
      height: 44px;
      font-size: 18px;
      border-width: 3px;
    }

    .icon-building {
      width: 52px;
      height: 66px;
      left: -28px;
      top: 105px;
    }

    .icon-globe {
      width: 62px;
      height: 62px;
      right: -30px;
      top: 105px;
      font-size: 30px;
    }

    .icon-box {
      width: 58px;
      height: 42px;
    }
  }
  /* RESPONSIVO */

  @media (max-width: 1100px) {
    .linkytech-bs-section {
      padding: 80px 5%;
    }

    .linkytech-bs-container {
      grid-template-columns: 1fr;
      gap: 55px;
    }

    .linkytech-bs-content {
      text-align: center;
    }

    .linkytech-bs-content h2,
    .linkytech-bs-content p,
    .linkytech-bs-links {
      margin-left: auto;
      margin-right: auto;
    }

    .linkytech-bs-bg {
      min-height: 460px;
    }
  }

  @media (max-width: 700px) {
    .linkytech-bs-section {
      padding: 70px 5%;
    }

    .linkytech-bs-bg {
      min-height: 330px;
      padding: 28px;
    }

    .linkytech-bs-content h2 {
      letter-spacing: -1px;
    }

    .linkytech-bs-links a {
      font-size: 1.1rem;
      padding: 18px 0;
    }
  }
  .ai-features {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 10;
    padding: 90px 5%;
  }

  .ai-features-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
  }

  .ai-feature-card {
    text-align: center;
  }

  .ai-feature-icon {
    width: 42px;
    height: 42px;

    margin: 0 auto 34px;

    border-radius: 9px;

    background: #3ccb9b;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.35rem;
  }

  .ai-feature-card h3 {
    font-size: 1.65rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 18px;
  }

  .ai-feature-card p {
    max-width: 430px;
    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.55;
    color: #111;
  }

  @media (max-width: 900px) {
    .ai-features-container {
      grid-template-columns: 1fr;
      gap: 55px;
    }

    .ai-feature-card p {
      max-width: 620px;
    }
  }
  /* CORREÇÃO GERAL */
  body {
    margin: 0;
    overflow-x: hidden;
  }

  .ai-features {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 80px 60px;
    margin-bottom: 0;
  }

  .hero,
  .sobre,
  .stack-section,
  .linkytech-bs-section,
  .pricing-section,
  .performance-section,
  .ai-features {
    width: 100%;
    clear: both;
  }
  .host-footer {
    position: relative;
    z-index: 50;
    clear: both;
    width: 100%;
    background: #f4f5f7;
    padding: 38px 62px 26px;
    font-family: "DM Sans", Arial, sans-serif;
    color: #111;
  }

  .host-footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 58px;
  }

  .host-footer-col h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
  }

  .host-footer-col a {
    display: block;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .host-footer-col a:hover {
    text-decoration: underline;
  }

  .host-footer-middle {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .host-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
  }

  .host-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
  }

  .host-logo strong {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .payment-methods img {
    width: 58px;
    height: 38px;
    object-fit: contain;
    border-radius: 6px;
    padding: 6px;
  }


  .payment-methods a {
    color: #2cb487;
    font-weight: 800;
    text-decoration: none;
    margin-left: 5px;
  }

  .host-social-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 28px;
  }

  .host-social {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .host-social a {
    color: #2b2d33;
    font-size: 21px;
    text-decoration: none;
  }

  .host-footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .host-footer-links a {
    color: #111;
    text-decoration: none;
    font-size: 14px;
  }
  .host-footer-bottom {
    margin-top: 48px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    gap: 12px;
  }

  .host-footer-bottom p {
    font-size: 14px;
    color: #111;
  }

  @media (max-width: 1100px) {
    .host-footer-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .host-footer-middle {
      flex-direction: column;
    }

    .host-social-area {
      align-items: flex-start;
    }
  }

  @media (max-width: 700px) {
    .host-footer {
      padding: 34px 24px 24px;
    }

    .host-footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 34px 24px;
    }

    .host-footer-bottom {
      flex-direction: column;
    }

    .host-footer-links {
      flex-wrap: wrap;
      gap: 14px;
    }
  }

  @media (max-width: 480px) {
    .host-footer-grid {
      grid-template-columns: 1fr;
    }
  }.reviews-section {
  width: 100%;
  padding: 90px 5%;
  background: #f4f4f5;
  position: relative;
  z-index: 10;
}
.review-image {
  width: 42px;
  height: 42px;

  border-radius: 10px;

  object-fit: cover;

  display: block;
}

/* VARIAÇÃO MAIOR */

.review-image.large {
  width: 48px;
  height: 48px;
}
.reviews-grid {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  min-height: 380px;

  background: #ffffff;

  border-radius: 18px;

  padding: 36px 34px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.review-icon {
  width: 42px;
  height: 42px;

  border-radius: 10px;

  background: #120f2f;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

.review-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #4338ca);
}

.review-icon.green {
  background: #b8ff00;
  color: #111111;
}

.review-text {
  color: #070b1a;

  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;

  margin: 28px 0 22px;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: auto;
}

.review-tags span {
  background: #f2f2f4;
  color: #070b1a;

  padding: 8px 14px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 55px;
}

.review-user img {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  object-fit: cover;
}

.review-user h3 {
  font-size: 18px;
  font-weight: 600;

  color: #070b1a;

  margin: 0 0 4px;
}

.review-user p {
  font-size: 15px;

  color: #6b7280;

  margin: 0;
}

/* TABLET */

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .reviews-section {
    padding: 60px 18px;
  }

  .review-card {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .review-text {
    font-size: 18px;
    line-height: 1.5;
  }

  .review-user {
    margin-top: 40px;
  }
}