/* =========================================================
   EMINHO TECH
   STYLE.CSS
   Desenvolvimento Web Profissional
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 9000px;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #070914;
  color: #f4f6ff;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

::selection {
  background: #7c3aed;
  color: #ffffff;
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080a13;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #5b21b6,
    #2563eb
  );

  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7c3aed;
}


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {

  --bg-primary: #070914;
  --bg-secondary: #0c1020;
  --bg-card: rgba(15, 20, 38, 0.88);

  --purple: #7c3aed;
  --purple-light: #9f67ff;

  --blue: #2563eb;
  --blue-light: #4f7dff;

  --cyan: #38bdf8;

  --white: #ffffff;

  --text-primary: #f5f7ff;
  --text-secondary: #aeb6cc;
  --text-muted: #747d97;

  --border: rgba(255, 255, 255, 0.08);

  --gradient: linear-gradient(
    135deg,
    #7c3aed 0%,
    #2563eb 55%,
    #38bdf8 100%
  );

  --gradient-purple: linear-gradient(
    135deg,
    #5b21b6,
    #8b5cf6
  );

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.38);

  --container: 1220px;
}


/* =========================================================
   ELEMENTOS GERAIS
========================================================= */

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

.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-header h2,
.business-content h2,
.contact-info h2,
.faq-intro h2,
.cta-container h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin: 18px 0;
}

.section-header p,
.business-content > p,
.contact-info > p,
.faq-intro > p,
.cta-container > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 7px 14px;

  border: 1px solid rgba(124, 58, 237, 0.38);
  border-radius: 999px;

  background: rgba(124, 58, 237, 0.08);

  color: #ad8cff;

  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.4px;
  font-size: 0.72rem;
}

.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;

  background: #8b5cf6;
  border-radius: 50%;

  box-shadow: 0 0 12px #8b5cf6;
}


/* =========================================================
   SKIP LINK
========================================================= */

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;

  padding: 12px 20px;

  background: var(--purple);
  color: white;

  z-index: 99999;

  border-radius: 8px;
}

.skip-link:focus {
  top: 20px;
}


/* =========================================================
   BOTÕES
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;
  padding: 13px 24px;

  border-radius: 12px;

  font-weight: 700;
  font-size: 0.94rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--gradient);
  color: #ffffff;

  box-shadow:
    0 12px 34px rgba(92, 55, 255, 0.32);
}

.btn-primary:hover {
  box-shadow:
    0 18px 44px rgba(92, 55, 255, 0.46);
}

.btn-secondary {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-large {
  min-height: 56px;
  padding: 16px 30px;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
  min-height: 35px;

  display: flex;
  align-items: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  background: #050711;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  font-size: 0.76rem;
}

.top-bar p {
  color: #9098ac;
}

.top-bar a {
  color: #a985ff;
  font-weight: 700;
}

.top-bar a:hover {
  color: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.header {
  position: sticky;
  top: 0;

  z-index: 999;

  min-height: 74px;

  display: flex;
  align-items: center;

  background: rgba(7, 9, 20, 0.82);

  border-bottom: 1px solid rgba(255, 255, 255, 0.065);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-container {
  min-height: 74px;

  display: flex;
  align-items: center;

  gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
  display: inline-flex;
  align-items: center;

  font-family: "Montserrat", sans-serif;

  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.8px;

  white-space: nowrap;
}

.logo-eminho {
  color: #ffffff;
}

.logo-tech {
  margin-left: 5px;

  font-size: inherit;

  color: #8b5cf6;

  text-shadow: 0 0 28px rgba(139, 92, 246, 0.45);
}


/* =========================================================
   MENU DESKTOP
========================================================= */

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;

  margin-left: auto;
}

.nav-desktop a {
  position: relative;

  color: #b0b6c9;

  font-size: 0.88rem;
  font-weight: 500;

  transition: color 0.2s ease;
}

.nav-desktop a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--gradient);

  border-radius: 10px;

  transition: width 0.25s ease;
}

.nav-desktop a:hover {
  color: #ffffff;
}

.nav-desktop a:hover::after {
  width: 100%;
}

.btn-header {
  min-height: 44px;
  padding: 10px 17px;

  background: rgba(124, 58, 237, 0.13);

  border: 1px solid rgba(139, 92, 246, 0.38);

  color: #c8b5ff;

  font-size: 0.81rem;
}

.btn-header:hover {
  background: var(--purple);
  color: white;

  border-color: var(--purple);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {
  display: none;

  margin-left: auto;

  width: 43px;
  height: 43px;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
}

.menu-toggle span {
  display: block;

  width: 20px;
  height: 2px;

  background: white;

  border-radius: 10px;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;

  flex-direction: column;

  padding: 10px 4% 22px;

  background: rgba(7, 9, 20, 0.98);

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 15px 5px;

  color: #c5cada;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a:hover {
  color: #9f67ff;
}


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

.hero {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  padding: 95px 0 115px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(37, 99, 235, 0.15),
      transparent 32%
    ),
    radial-gradient(
      circle at 15% 30%,
      rgba(124, 58, 237, 0.14),
      transparent 35%
    ),
    #070914;
}

.hero-background {
  position: absolute;
  inset: 0;

  opacity: 0.21;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 45px 45px;

  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 95%
  );
}

.hero-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(100px);

  pointer-events: none;
}

.hero-glow-1 {
  width: 380px;
  height: 380px;

  left: -150px;
  bottom: 0;

  background: rgba(124, 58, 237, 0.18);
}

.hero-glow-2 {
  width: 450px;
  height: 450px;

  right: -180px;
  top: 40px;

  background: rgba(37, 99, 235, 0.16);
}

.hero-container {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 13px;

  border-radius: 999px;

  border: 1px solid rgba(139, 92, 246, 0.3);

  background: rgba(124, 58, 237, 0.07);

  color: #c0acff;

  font-size: 0.79rem;
  font-weight: 600;

  margin-bottom: 25px;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #42df9b;

  box-shadow: 0 0 12px #42df9b;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;

  font-size: clamp(2.9rem, 5vw, 5.1rem);

  line-height: 1.02;

  letter-spacing: -3px;

  font-weight: 800;

  color: #ffffff;
}

.hero h1 span {
  display: inline;

  color: transparent;

  background: linear-gradient(
    90deg,
    #9c6cff,
    #5e83ff,
    #43c6ff
  );

  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 630px;

  margin-top: 24px;

  color: #aeb6ca;

  font-size: 1.1rem;
  line-height: 1.78;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;

  margin-top: 34px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;

  margin-top: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #b7bed1;

  font-size: 0.82rem;
}

.check {
  color: #43d7a3;
  font-weight: 800;
}


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

.hero-visual {
  position: relative;

  min-height: 500px;

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

.browser-mockup {
  position: relative;

  width: 100%;
  max-width: 600px;

  border-radius: 18px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.13);

  background: #0e1324;

  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.58),
    0 0 80px rgba(78, 69, 255, 0.08);

  transform: perspective(1200px)
  rotateY(-5deg)
  rotateX(2deg);
}

.browser-header {
  height: 47px;

  display: flex;
  align-items: center;

  padding: 0 14px;

  background: #151a29;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.browser-buttons {
  display: flex;
  gap: 6px;
}

.browser-buttons span {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #454c60;
}

.browser-buttons span:nth-child(1) {
  background: #f55b67;
}

.browser-buttons span:nth-child(2) {
  background: #f3bd49;
}

.browser-buttons span:nth-child(3) {
  background: #48c66c;
}

.browser-address {
  margin: 0 auto;

  min-width: 215px;

  padding: 6px 15px;

  border-radius: 7px;

  background: #0d1120;

  color: #707a93;

  font-size: 0.63rem;

  text-align: center;
}

.security-icon {
  color: #48c66c;
}

.browser-content {
  min-height: 370px;

  padding: 20px;

  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(72, 107, 255, 0.2),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #0a0e1c,
      #10152b
    );
}

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

.mock-logo {
  color: white;

  font-size: 0.62rem;
  font-weight: 800;

  letter-spacing: 1px;
}

.mock-links {
  display: flex;
  gap: 10px;
}

.mock-links span {
  display: block;

  width: 28px;
  height: 4px;

  border-radius: 10px;

  background: #3a4259;
}

.mock-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  align-items: center;

  gap: 30px;

  min-height: 220px;
}

.mock-small-line {
  width: 80px;
  height: 5px;

  margin-bottom: 14px;

  border-radius: 20px;

  background: #7252e7;
}

.mock-title-line {
  width: 100%;
  height: 16px;

  margin-bottom: 8px;

  border-radius: 5px;

  background: #e5e9f4;
}

.mock-title-line.short {
  width: 75%;
}

.mock-description-line {
  width: 90%;
  height: 5px;

  margin-top: 17px;

  border-radius: 20px;

  background: #626b82;
}

.mock-description-line.short {
  width: 65%;
  margin-top: 7px;
}

.mock-button {
  width: 85px;
  height: 28px;

  margin-top: 20px;

  border-radius: 7px;

  background: var(--gradient);
}

.mock-image {
  position: relative;

  height: 145px;

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

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(124, 58, 237, 0.25),
      rgba(37, 99, 235, 0.12)
    );

  border: 1px solid rgba(139, 92, 246, 0.23);

  overflow: hidden;
}

.mock-image span {
  position: relative;
  z-index: 2;

  font-size: 2.4rem;
  font-weight: 700;

  color: #9471ff;

  text-shadow: 0 0 30px #7650ff;
}

.mock-image-glow {
  position: absolute;

  width: 100px;
  height: 100px;

  background: #643ee5;

  filter: blur(60px);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-top: 18px;
}

.mock-cards div {
  height: 60px;

  border-radius: 9px;

  background: rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(255, 255, 255, 0.055);
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
  position: absolute;
  z-index: 10;

  min-width: 185px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 13px 15px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  border-radius: 13px;

  background: rgba(13, 18, 34, 0.88);

  backdrop-filter: blur(14px);

  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;

  font-size: 0.73rem;
}

.floating-card small {
  display: block;

  margin-top: 2px;

  color: #7f899f;

  font-size: 0.6rem;
}

.floating-icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background: rgba(124, 58, 237, 0.15);
}

.floating-card-speed {
  left: -30px;
  bottom: 72px;

  animation: float-card 4s ease-in-out infinite;
}

.floating-card-mobile {
  right: -25px;
  top: 90px;

  animation: float-card 5s ease-in-out infinite reverse;
}

@keyframes float-card {

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

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


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
  position: relative;
  z-index: 5;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  background: #090c18;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  min-height: 125px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;

  padding: 25px;

  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  min-width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: rgba(124, 58, 237, 0.09);

  color: #9874ff;

  font-size: 1.25rem;
}

.trust-item strong {
  display: block;

  font-size: 0.84rem;
}

.trust-item p {
  margin-top: 3px;

  color: #7e869c;

  font-size: 0.72rem;
}


/* =========================================================
   SERVIÇOS
========================================================= */

.services {
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(85, 70, 255, 0.07),
      transparent 28%
    ),
    #070914;
}

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

  gap: 22px;
}

.service-card {
  position: relative;

  min-height: 480px;

  padding: 32px;

  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, 0.075);

  background: linear-gradient(
    145deg,
    rgba(18, 23, 42, 0.86),
    rgba(9, 13, 27, 0.88)
  );

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card::before {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  top: -100px;
  right: -100px;

  background: rgba(124, 58, 237, 0.17);

  filter: blur(55px);
}

.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(139, 92, 246, 0.32);

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.25);
}

.service-card.featured {
  border-color: rgba(139, 92, 246, 0.4);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 50px rgba(60, 34, 155, 0.13);
}

.service-badge {
  position: absolute;

  top: 16px;
  right: 16px;

  padding: 5px 9px;

  border-radius: 999px;

  background: rgba(124, 58, 237, 0.16);

  border: 1px solid rgba(139, 92, 246, 0.27);

  color: #bc9eff;

  font-size: 0.63rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin-bottom: 23px;

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.22),
    rgba(37, 99, 235, 0.15)
  );

  border: 1px solid rgba(139, 92, 246, 0.2);

  font-size: 1.35rem;
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;

  font-size: 1.28rem;
}

.service-card > p {
  margin-top: 13px;

  color: var(--text-secondary);

  font-size: 0.9rem;
}

.service-card ul {
  display: grid;
  gap: 10px;

  margin-top: 25px;
  margin-bottom: 29px;
}

.service-card li {
  color: #9fa7bb;

  font-size: 0.8rem;
}

.service-card li::first-letter {
  color: #58e1ab;
}

.service-card > a {
  position: absolute;
  left: 32px;
  bottom: 30px;

  color: #9874ff;

  font-size: 0.85rem;
  font-weight: 700;
}

.service-card > a:hover {
  color: white;
}


/* =========================================================
   BUSINESS SECTION
========================================================= */

.business-section {
  background:
    linear-gradient(
      180deg,
      #080b17,
      #0b0e1b
    );

  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.business-container {
  display: grid;
  grid-template-columns: 1fr 0.85fr;

  align-items: center;

  gap: 80px;
}

.business-content > p {
  max-width: 650px;
}

.business-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 38px;
}

.business-list-item {
  display: flex;
  gap: 12px;

  padding: 18px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.018);
}

.business-list-item > span {
  color: #4bddac;

  font-weight: 800;
}

.business-list-item strong {
  font-size: 0.87rem;
}

.business-list-item p {
  margin-top: 5px;

  color: #7d8599;

  font-size: 0.73rem;
}

.business-visual {
  display: flex;
  justify-content: center;
}

.business-card {
  position: relative;

  max-width: 460px;

  padding: 45px;

  border-radius: 25px;

  border: 1px solid rgba(139, 92, 246, 0.25);

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(124, 58, 237, 0.2),
      transparent 35%
    ),
    #101426;

  box-shadow: var(--shadow);

  overflow: hidden;
}

.business-card::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  left: -100px;
  bottom: -140px;

  background: rgba(37, 99, 235, 0.25);

  filter: blur(70px);
}

.business-card-label {
  display: inline-block;

  color: #9e7cff;

  letter-spacing: 1.5px;

  font-weight: 700;

  font-size: 0.66rem;
}

.business-card h3 {
  position: relative;

  margin-top: 20px;

  font-family: "Montserrat", sans-serif;

  font-size: 2rem;
  line-height: 1.2;
}

.business-card p {
  position: relative;

  margin: 18px 0 28px;

  color: #a2a9bb;
}


/* =========================================================
   DIFERENCIAIS
========================================================= */

.advantages {
  background: #070914;
}

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

  gap: 18px;
}

.advantage-card {
  position: relative;

  min-height: 210px;

  padding: 30px;

  border-radius: 17px;

  border: 1px solid rgba(255, 255, 255, 0.065);

  background: rgba(255, 255, 255, 0.018);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

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

  background: rgba(255, 255, 255, 0.026);

  border-color: rgba(139, 92, 246, 0.25);
}

.advantage-number {
  display: inline-block;

  margin-bottom: 25px;

  color: #7858d8;

  font-family: "Montserrat", sans-serif;

  font-size: 0.76rem;
  font-weight: 700;
}

.advantage-card h3 {
  font-size: 1.03rem;

  margin-bottom: 10px;
}

.advantage-card p {
  color: #858da1;

  font-size: 0.81rem;
}


/* =========================================================
   TECNOLOGIAS
========================================================= */

.technologies {
  min-height: 95px;

  display: flex;
  align-items: center;

  background: #0d1120;

  border-top: 1px solid rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

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

  gap: 30px;
}

.technologies-content span {
  color: #7060b5;

  font-size: 0.7rem;

  letter-spacing: 1.6px;

  font-weight: 700;
}

.technologies-content strong {
  color: #7f879a;

  font-size: 0.77rem;

  transition: color 0.2s ease;
}

.technologies-content strong:hover {
  color: white;
}


/* =========================================================
   PROCESSO
========================================================= */

.process {
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(124, 58, 237, 0.06),
      transparent 35%
    ),
    #070914;
}

.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;

  gap: 8px;
}

.process-card {
  width: 190px;

  text-align: center;
}

.process-number {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin: 0 auto 18px;

  border-radius: 50%;

  border: 1px solid rgba(139, 92, 246, 0.35);

  background: rgba(124, 58, 237, 0.1);

  color: #a989ff;

  font-weight: 700;
  font-size: 0.77rem;

  box-shadow: 0 0 25px rgba(124, 58, 237, 0.08);
}

.process-card h3 {
  font-size: 0.96rem;

  margin-bottom: 8px;
}

.process-card p {
  color: #7f8799;

  font-size: 0.75rem;
}

.process-line {
  width: 65px;
  height: 1px;

  margin-top: 24px;

  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0.4),
    rgba(37, 99, 235, 0.25)
  );
}


/* =========================================================
   PROJETOS
========================================================= */

.projects {
  background: #090c18;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.project-card {
  border-radius: 18px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.065);

  background: #101426;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-7px);

  border-color: rgba(139, 92, 246, 0.28);
}

.project-preview {
  height: 190px;

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

  position: relative;

  overflow: hidden;
}

.project-preview::before {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  border-radius: 50%;

  filter: blur(70px);
}

.project-preview span {
  position: relative;
  z-index: 2;

  font-family: "Montserrat", sans-serif;

  font-weight: 800;
  letter-spacing: 1px;
}

.project-business {
  background: linear-gradient(
    145deg,
    #10152b,
    #141b39
  );
}

.project-business::before {
  background: #6e43ff;
}

.project-landing {
  background: linear-gradient(
    145deg,
    #0f1526,
    #101b2e
  );
}

.project-landing::before {
  background: #2563eb;
}

.project-store {
  background: linear-gradient(
    145deg,
    #11152a,
    #16132c
  );
}

.project-store::before {
  background: #9741e8;
}

.project-custom {
  background: linear-gradient(
    145deg,
    #0e1525,
    #111a2f
  );
}

.project-custom::before {
  background: #38bdf8;
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 0.95rem;
}

.project-info p {
  margin-top: 8px;

  color: #7e879b;

  font-size: 0.75rem;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
  position: relative;

  padding: 105px 0;

  text-align: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #0d1023,
      #0e1229
    );
}

.cta-section::before,
.cta-section::after {
  content: "";

  position: absolute;

  width: 330px;
  height: 330px;

  border-radius: 50%;

  filter: blur(120px);
}

.cta-section::before {
  left: -120px;
  bottom: -100px;

  background: rgba(124, 58, 237, 0.25);
}

.cta-section::after {
  right: -120px;
  top: -100px;

  background: rgba(37, 99, 235, 0.18);
}

.cta-container {
  position: relative;
  z-index: 5;

  max-width: 850px;
}

.cta-container p {
  max-width: 620px;

  margin: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 35px;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
  background: #070914;
}

.faq-container {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;

  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: 130px;

  align-self: start;
}

.faq-whatsapp {
  display: inline-block;

  margin-top: 25px;

  color: #9d7cff;

  font-size: 0.83rem;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.07);

  border-radius: 13px;

  background: rgba(255, 255, 255, 0.018);

  overflow: hidden;

  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(139, 92, 246, 0.25);
}

.faq-item summary {
  position: relative;

  padding: 20px 55px 20px 22px;

  cursor: pointer;

  list-style: none;

  font-size: 0.88rem;
  font-weight: 600;

  color: #e7e9f1;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";

  position: absolute;

  right: 21px;
  top: 50%;

  transform: translateY(-50%);

  width: 25px;
  height: 25px;

  display: grid;
  place-items: center;

  border-radius: 7px;

  background: rgba(124, 58, 237, 0.1);

  color: #a883ff;

  font-size: 1rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 22px;

  color: #8991a4;

  font-size: 0.79rem;
}


/* =========================================================
   CONTATO
========================================================= */

.contact {
  position: relative;

  background:
    radial-gradient(
      circle at 70% 40%,
      rgba(124, 58, 237, 0.08),
      transparent 30%
    ),
    #090c18;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  gap: 70px;

  align-items: start;
}

.contact-info {
  position: sticky;
  top: 125px;
}

.contact-methods {
  display: grid;
  gap: 12px;

  margin-top: 35px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 17px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.065);

  background: rgba(255, 255, 255, 0.018);

  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.contact-method:hover {
  transform: translateX(4px);

  border-color: rgba(139, 92, 246, 0.26);
}

.contact-method-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: rgba(124, 58, 237, 0.11);

  color: #9f7cff;
}

.contact-method small {
  display: block;

  color: #747d93;

  font-size: 0.65rem;
}

.contact-method strong {
  display: block;

  margin-top: 2px;

  color: white;

  font-size: 0.8rem;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 25px;

  color: #717a90;

  font-size: 0.72rem;
}

.contact-note span {
  color: #49d79e;

  font-size: 0.5rem;

  text-shadow: 0 0 8px #49d79e;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.contact-form-wrapper {
  border-radius: 23px;

  border: 1px solid rgba(255, 255, 255, 0.075);

  background:
    linear-gradient(
      145deg,
      rgba(16, 20, 39, 0.95),
      rgba(11, 14, 28, 0.95)
    );

  box-shadow: var(--shadow);

  overflow: hidden;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 19px;

  padding: 38px;
}

.form-header {
  grid-column: 1 / -1;

  margin-bottom: 10px;
}

.form-header h3 {
  font-family: "Montserrat", sans-serif;

  font-size: 1.3rem;
}

.form-header p {
  color: #7e879c;

  font-size: 0.77rem;

  margin-top: 5px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;

  color: #c4cad7;

  font-size: 0.75rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  outline: none;

  border: 1px solid rgba(255, 255, 255, 0.085);

  border-radius: 10px;

  background: rgba(3, 6, 16, 0.6);

  color: #ffffff;

  padding: 13px 14px;

  font-size: 0.8rem;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-group input {
  min-height: 48px;
}

.form-group select {
  min-height: 48px;

  cursor: pointer;
}

.form-group textarea {
  min-height: 125px;

  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4f586d;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7352e4;

  background: rgba(6, 9, 20, 0.8);

  box-shadow:
    0 0 0 3px rgba(124, 58, 237, 0.09);
}

.form-group select option {
  background: #101426;

  color: white;
}

.form-error {
  min-height: 17px;

  margin-top: 4px;

  color: #ff6d79;

  font-size: 0.66rem;
}

.checkbox-group {
  grid-column: 1 / -1;

  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: #7f879a;

  font-size: 0.7rem;

  cursor: pointer;
}

.checkbox-group input {
  width: 16px;
  height: 16px;

  margin-top: 2px;

  accent-color: #7c3aed;
}

.form-submit {
  grid-column: 1 / -1;

  width: 100%;

  border: 0;
}

.form-security {
  grid-column: 1 / -1;

  text-align: center;

  color: #646c80;

  font-size: 0.65rem;
}


/* =========================================================
   CAMPOS COM ERRO
========================================================= */

.input-error {
  border-color: #ff5867 !important;

  box-shadow:
    0 0 0 3px rgba(255, 88, 103, 0.08) !important;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 75px 0 25px;

  background: #050710;

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 55px;
}

.footer-brand p {
  max-width: 340px;

  margin-top: 18px;

  color: #757e92;

  font-size: 0.78rem;
}

.footer-whatsapp {
  display: inline-block;

  margin-top: 20px;

  color: #9875ff;

  font-size: 0.79rem;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 8px;

  color: #ffffff;

  font-size: 0.8rem;
}

.footer-column a {
  color: #737d91;

  font-size: 0.74rem;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover {
  color: #a887ff;

  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 55px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.055);

  color: #545d72;

  font-size: 0.67rem;
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-floating {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 998;

  display: flex;
  align-items: center;
  gap: 9px;

  min-height: 51px;

  padding: 10px 17px 10px 10px;

  border-radius: 999px;

  background: #25d366;

  color: white;

  box-shadow:
    0 12px 35px rgba(37, 211, 102, 0.28);

  font-weight: 700;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-floating:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 45px rgba(37, 211, 102, 0.38);
}

.whatsapp-icon {
  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-text {
  font-size: 0.76rem;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
  position: fixed;

  left: 50%;
  bottom: -120px;

  transform: translateX(-50%);

  z-index: 9999;

  min-width: 330px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 15px 18px;

  border-radius: 13px;

  background: #12182a;

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4);

  transition: bottom 0.4s ease;
}

.toast.show {
  bottom: 30px;
}

.toast-icon {
  width: 35px;
  height: 35px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(62, 216, 155, 0.1);

  color: #45dda4;
}

.toast strong {
  font-size: 0.77rem;
}

.toast p {
  margin-top: 2px;

  color: #7f879a;

  font-size: 0.67rem;
}


/* =========================================================
   ANIMAÇÕES
========================================================= */

@keyframes fade-up {

  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

}

.hero-content {
  animation: fade-up 0.8s ease forwards;
}

.hero-visual {
  animation: fade-up 1s ease forwards;
}


/* =========================================================
   RESPONSIVO 1200PX
========================================================= */

@media (max-width: 1200px) {

  .nav-desktop {
    gap: 18px;
  }

  .nav-desktop a {
    font-size: 0.8rem;
  }

  .hero-container {
    gap: 45px;
  }

  .floating-card-speed {
    left: -10px;
  }

  .floating-card-mobile {
    right: -10px;
  }

}


/* =========================================================
   RESPONSIVO 1050PX
========================================================= */

@media (max-width: 1050px) {

  .nav-desktop,
  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;

    padding-top: 85px;
  }

  .hero-container {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .hero-content {
    max-width: 800px;

    margin: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-features {
    justify-content: center;
  }

  .hero-visual {
    width: 90%;

    max-width: 680px;

    margin: 0 auto;
  }

  .browser-mockup {
    transform: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .business-content {
    text-align: center;
  }

  .business-content > p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

    gap: 30px;
  }

  .process-card {
    width: auto;
  }

  .process-line {
    display: none;
  }

  .faq-container,
  .contact-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .faq-intro,
  .contact-info {
    position: static;

    text-align: center;
  }

  .contact-methods {
    max-width: 600px;

    margin-left: auto;
    margin-right: auto;
  }

  .contact-note {
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 40px;
  }

}


/* =========================================================
   RESPONSIVO 768PX
========================================================= */

@media (max-width: 768px) {

  .section {
    padding: 80px 0;
  }

  .top-bar {
    display: none;
  }

  .header {
    min-height: 68px;
  }

  .header-container {
    min-height: 68px;
  }

  .logo {
    font-size: 1.18rem;
  }

  .hero {
    padding: 70px 0 80px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);

    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 0.98rem;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;

    align-items: center;

    gap: 10px;
  }

  .hero-visual {
    min-height: auto;

    width: 100%;

    margin-top: 15px;
  }

  .floating-card {
    display: none;
  }

  .browser-content {
    min-height: 310px;
  }

  .browser-address {
    min-width: 170px;
  }

  .mock-hero {
    gap: 15px;
  }

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

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

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

  .service-card {
    min-height: 450px;
  }

  .business-list {
    grid-template-columns: 1fr;
  }

  .business-card {
    padding: 35px 28px;
  }

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

  .technologies {
    padding: 25px 0;
  }

  .technologies-content {
    justify-content: center;
    flex-wrap: wrap;
  }

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

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

  .project-preview {
    height: 220px;
  }

  .faq-container {
    gap: 35px;
  }

  .contact-form {
    grid-template-columns: 1fr;

    padding: 28px 20px;
  }

  .form-group,
  .form-header,
  .form-group-full,
  .checkbox-group,
  .form-submit,
  .form-security {
    grid-column: 1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }

}


/* =========================================================
   RESPONSIVO 520PX
========================================================= */

@media (max-width: 520px) {

  .container {
    width: 90%;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2,
  .business-content h2,
  .contact-info h2,
  .faq-intro h2,
  .cta-container h2 {
    font-size: 2rem;

    letter-spacing: -1.2px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-badge {
    font-size: 0.68rem;
  }

  .browser-header {
    height: 42px;
  }

  .browser-address {
    min-width: 130px;

    padding: 5px 8px;

    font-size: 0.54rem;
  }

  .browser-content {
    padding: 14px;
  }

  .mock-hero {
    grid-template-columns: 1fr;

    padding-top: 22px;
  }

  .mock-image {
    display: none;
  }

  .mock-cards div {
    height: 45px;
  }

  .service-card {
    padding: 27px 24px;
  }

  .service-card > a {
    left: 24px;
  }

  .business-card h3 {
    font-size: 1.55rem;
  }

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

  .project-preview {
    height: 180px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .contact-method {
    text-align: left;
  }

  .contact-form-wrapper {
    border-radius: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-column {
    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .whatsapp-floating {
    right: 15px;
    bottom: 15px;

    width: 54px;
    height: 54px;

    padding: 0;

    justify-content: center;
  }

  .whatsapp-icon {
    background: transparent;

    font-size: 1.1rem;
  }

  .whatsapp-text {
    display: none;
  }

  .toast {
    min-width: unset;

    width: calc(100% - 30px);
  }

}


/* =========================================================
   TELAS MUITO PEQUENAS
========================================================= */

@media (max-width: 380px) {

  .hero h1 {
    font-size: 2.3rem;
  }

  .btn {
    font-size: 0.84rem;
  }

  .service-card {
    min-height: 470px;
  }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

}
