/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #07030f;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}


/* =========================================
   VARIÁVEIS
========================================= */

:root {
  --bg: #07030f;
  --bg-soft: #0f0819;

  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);

  --border: rgba(255, 255, 255, 0.10);

  --text: #ffffff;
  --muted: #c7bdd8;
  --muted-2: #9b8fb1;

  --primary: #ff0f8b;
  --primary-2: #a855f7;
  --accent: #ff4fd8;

  --shadow:
    0 20px 70px rgba(0, 0, 0, 0.35);

  --container: 1180px;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
}


/* =========================================
   BASE
========================================= */

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.01),
      rgba(255,255,255,0.02)
    );
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.04em;
}

p {
  color: var(--muted);
}

.center {
  text-align: center;
}

.section-header {
  max-width: 850px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-top: 18px;
}

.section-header p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.8;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 16px;

  border-radius: 999px;

  border:
    1px solid
    rgba(255, 15, 139, 0.35);

  background:
    rgba(255, 15, 139, 0.08);

  color: #ff6bc1;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.05em;

  text-transform: uppercase;
}


/* =========================================
   GLASS EFFECT
========================================= */

.glass {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.03)
    );

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border:
    1px solid var(--border);

  box-shadow: var(--shadow);
}


/* =========================================
   FUNDO
========================================= */

.bg-orb {
  position: fixed;

  border-radius: 50%;

  filter: blur(70px);

  z-index: 0;

  pointer-events: none;
}

.orb-1 {
  width: 380px;
  height: 380px;

  top: 80px;
  left: -80px;

  background:
    rgba(168, 85, 247, 0.22);
}

.orb-2 {
  width: 440px;
  height: 440px;

  top: 120px;
  right: -120px;

  background:
    rgba(255, 15, 139, 0.22);
}

.bg-grid {
  position: fixed;
  inset: 0;

  z-index: 0;

  pointer-events: none;

  opacity: 0.10;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.05) 1px,
      transparent 1px
    );

  background-size:
    40px 40px;

  mask-image:
    radial-gradient(
      circle at center,
      black 25%,
      transparent 90%
    );
}


/* =========================================
   BOTÕES
========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;

  padding:
    0 26px;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    background 0.25s ease;
}

.btn:hover {
  transform:
    translateY(-3px);
}

.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
    );

  color: #fff;

  box-shadow:
    0 12px 35px
    rgba(255, 15, 139, 0.28);
}

.btn-primary:hover {
  filter:
    brightness(1.08);
}

.btn-outline {
  border:
    1px solid
    rgba(255,255,255,0.18);

  color: #fff;

  background:
    rgba(255,255,255,0.02);
}

.btn-header {
  min-height: 46px;

  padding:
    0 20px;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
    );

  color: #fff;

  box-shadow:
    0 12px 30px
    rgba(255, 15, 139, 0.25);
}


/* =========================================
   HEADER
========================================= */

.header {
  position: sticky;
  top: 0;

  z-index: 999;

  background:
    rgba(7, 3, 15, 0.75);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom:
    1px solid
    rgba(255,255,255,0.06);
}

.header-content {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;

  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-2)
    );

  box-shadow:
    0 10px 24px
    rgba(255, 15, 139, 0.22);
}

.logo-text strong {
  display: block;

  font-size: 17px;

  letter-spacing: -0.02em;
}

.logo-text small {
  display: block;

  color: var(--muted-2);

  font-size: 11px;
}

.nav {
  display: flex;
  gap: 28px;

  align-items: center;
}

.nav a {
  color: #efe8ff;

  font-size: 15px;
  font-weight: 600;

  transition:
    color 0.25s ease;
}

.nav a:hover {
  color: #ff5ec1;
}

.menu-toggle {
  display: none;

  border: 0;

  background: transparent;

  color: #fff;

  font-size: 28px;

  cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
  padding:
    90px 0 80px;

  min-height:
    calc(100vh - 82px);

  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding:
    10px 16px;

  border:
    1px solid
    rgba(255, 15, 139, 0.35);

  background:
    rgba(255, 15, 139, 0.07);

  border-radius: 999px;

  color: #ff66bf;

  font-weight: 800;

  font-size: 12px;

  letter-spacing: 0.04em;
}

.tag-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #ff0f8b;

  box-shadow:
    0 0 16px #ff0f8b;
}

.hero-copy h1 {
  margin-top: 26px;

  font-size:
    clamp(46px, 6vw, 80px);

  letter-spacing: -0.06em;

  max-width: 680px;
}

.hero-copy h1 span {
  display: block;

  background:
    linear-gradient(
      135deg,
      #ff0f8b,
      #ff74d0 40%,
      #c06cff 100%
    );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.hero-text {
  margin-top: 24px;

  font-size: 18px;

  line-height: 1.8;

  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 34px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;

  gap: 16px;

  margin-top: 28px;

  color: #dcd0ef;

  font-size: 13px;

  font-weight: 600;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
  position: relative;

  min-height: 560px;

  display: flex;

  align-items: center;
  justify-content: center;
}

.laptop-mockup {
  width: 100%;
  max-width: 620px;

  border-radius: 28px;

  padding: 14px;

  transform:
    perspective(1200px)
    rotateY(-10deg)
    rotateX(3deg);
}

.mock-topbar {
  height: 34px;

  display: flex;
  align-items: center;

  gap: 7px;

  padding:
    0 12px;
}

.mock-topbar span {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.30);
}

.mock-screen {
  border-radius: 20px;

  overflow: hidden;

  padding: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(19, 10, 34, 0.96),
      rgba(30, 15, 55, 0.94)
    );

  border:
    1px solid
    rgba(255,255,255,0.06);

  min-height: 360px;
}

.mock-site-header {
  display: flex;

  justify-content: space-between;
  align-items: center;
}

.mock-brand {
  width: 110px;
  height: 12px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #ff0f8b,
      #a855f7
    );
}

.mock-nav {
  width: 180px;
  height: 8px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.18);
}

.mock-site-hero {
  margin-top: 34px;

  display: grid;

  grid-template-columns:
    1.05fr 0.95fr;

  gap: 24px;

  align-items: center;
}

.mock-pill {
  width: 85px;
  height: 10px;

  border-radius: 999px;

  background:
    rgba(255, 15, 139, 0.35);
}

.mock-line {
  display: block;

  border-radius: 10px;

  margin-top: 12px;

  background:
    rgba(255,255,255,0.9);
}

.mock-line.xl {
  width: 100%;
  height: 18px;
}

.mock-line.lg {
  width: 82%;
  height: 18px;
}

.mock-line.md {
  width: 92%;
  height: 7px;

  background:
    rgba(255,255,255,0.22);

  margin-top: 22px;
}

.mock-line.sm {
  width: 68%;
  height: 7px;

  background:
    rgba(255,255,255,0.22);
}

.mock-btn {
  width: 110px;
  height: 34px;

  margin-top: 22px;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
    );
}

.mock-image {
  height: 230px;

  border-radius: 22px;

  background:
    radial-gradient(
      circle at top right,
      rgba(255,255,255,0.22),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #15091f,
      #43145a,
      #6a1b8d,
      #ff0f8b
    );

  box-shadow:
    inset
    0 0 0 1px
    rgba(255,255,255,0.08);
}


/* =========================================
   PHONE MOCKUP
========================================= */

.phone-mockup {
  position: absolute;

  width: 170px;

  right: -10px;
  bottom: 0;

  border-radius: 30px;

  padding: 10px;

  transform:
    rotate(6deg);
}

.phone-notch {
  width: 58px;
  height: 6px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.24);

  margin:
    6px auto 12px;
}

.phone-screen {
  border-radius: 24px;

  padding:
    16px 14px;

  background:
    linear-gradient(
      145deg,
      rgba(19,10,34,0.96),
      rgba(30,15,55,0.94)
    );

  min-height: 310px;
}

.phone-brand {
  width: 60px;
  height: 8px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      #ff0f8b,
      #a855f7
    );
}

.phone-line {
  border-radius: 10px;

  margin-top: 12px;

  background:
    rgba(255,255,255,0.88);
}

.phone-line.lg {
  width: 100%;
  height: 10px;

  margin-top: 22px;
}

.phone-line.md {
  width: 76%;
  height: 10px;
}

.phone-line.sm {
  width: 82%;
  height: 6px;

  background:
    rgba(255,255,255,0.22);

  margin-top: 16px;
}

.phone-btn {
  width: 85px;
  height: 28px;

  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--accent)
    );

  margin-top: 18px;
}

.phone-image {
  height: 120px;

  border-radius: 18px;

  margin-top: 18px;

  background:
    radial-gradient(
      circle at top right,
      rgba(255,255,255,0.2),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #1d0c28,
      #5f177b,
      #ff0f8b
    );
}


/* =========================================
   STATS CARDS
========================================= */

.stats-card {
  position: absolute;

  padding:
    16px 18px;

  border-radius: 18px;

  background:
    rgba(255,255,255,0.08);

  backdrop-filter:
    blur(18px);

  border:
    1px solid
    rgba(255,255,255,0.12);

  box-shadow:
    var(--shadow);
}

.stats-card strong {
  display: block;

  font-size: 24px;

  font-weight: 900;

  color: #fff;
}

.stats-card span {
  display: block;

  margin-top: 4px;

  color: #d7caea;

  font-size: 12px;

  line-height: 1.4;

  max-width: 150px;
}

.stats-left {
  left: -20px;
  bottom: 70px;
}

.stats-right {
  right: 30px;
  top: 30px;
}


/* =========================================
   SERVIÇOS
========================================= */

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}

.service-card {
  position: relative;

  padding:
    34px 28px;

  border-radius: 26px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform:
    translateY(-6px);

  border-color:
    rgba(255, 15, 139, 0.26);
}

.icon-box {
  width: 52px;
  height: 52px;

  border-radius: 16px;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(255,15,139,0.18),
      rgba(168,85,247,0.20)
    );

  border:
    1px solid
    rgba(255,255,255,0.10);

  color: #fff;

  font-weight: 900;
}

.service-card h3 {
  margin-top: 24px;

  font-size: 28px;

  letter-spacing: -0.03em;
}

.service-card p {
  margin-top: 18px;

  font-size: 15px;

  line-height: 1.8;
}

.service-card a {
  display: inline-block;

  margin-top: 26px;

  color: #ff69c1;

  font-weight: 700;
}

.featured {
  box-shadow:
    0 20px 70px rgba(255, 15, 139, 0.10),
    0 20px 70px rgba(168, 85, 247, 0.10);
}

.featured-badge {
  position: absolute;

  top: 22px;
  right: 22px;

  padding:
    7px 12px;

  border-radius: 999px;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.04em;

  text-transform: uppercase;

  background:
    rgba(255, 15, 139, 0.14);

  color: #ff74cb;

  border:
    1px solid
    rgba(255, 15, 139, 0.20);
}


/* =========================================
   PORTFÓLIO SHOWCASE
========================================= */

.portfolio-showcase {
  padding:
    110px 0;

  overflow: hidden;

  position: relative;
}

.showcase-header {
  width:
    min(900px, calc(100% - 40px));

  margin:
    0 auto 55px;

  text-align: center;
}

.showcase-header h2 {
  margin-top: 18px;

  font-size:
    clamp(34px, 4vw, 56px);

  letter-spacing: -0.04em;
}

.showcase-header p {
  max-width: 720px;

  margin:
    18px auto 0;

  color: var(--muted);

  font-size: 17px;

  line-height: 1.8;
}


/* =========================================
   CARROSSEL
========================================= */

.showcase-carousel {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding:
    15px 0 25px;
}

.showcase-carousel::before,
.showcase-carousel::after {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  width: 100px;

  z-index: 10;

  pointer-events: none;
}

.showcase-carousel::before {
  left: 0;

  background:
    linear-gradient(
      to right,
      #07030f,
      transparent
    );
}

.showcase-carousel::after {
  right: 0;

  background:
    linear-gradient(
      to left,
      #07030f,
      transparent
    );
}

.showcase-track {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  width: max-content;

  animation:
    portfolioScroll
    50s
    linear
    infinite;

  will-change:
    transform;
}

.showcase-carousel:hover .showcase-track {
  animation-play-state:
    paused;
}


/* =========================================
   CARD DO PORTFÓLIO
========================================= */

.showcase-card {
  flex:
    0 0 330px;

  border-radius: 24px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.04);

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  box-shadow:
    0 20px 60px
    rgba(0, 0, 0, 0.28);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.showcase-card:hover {
  transform:
    translateY(-8px);

  border-color:
    rgba(255, 15, 139, 0.40);

  box-shadow:
    0 25px 70px
    rgba(255, 15, 139, 0.12);
}

.showcase-image {
  width: 100%;

  height: 650px;

  overflow: hidden;

  background:
    #12081d;
}

.showcase-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    top center;

  transition:
    transform 0.4s ease;
}

.showcase-card:hover .showcase-image img {
  transform:
    scale(1.025);
}


/* =========================================
   ANIMAÇÃO PORTFÓLIO
========================================= */

@keyframes portfolioScroll {
  from {
    transform:
      translateX(0);
  }

  to {
    transform:
      translateX(
        calc(-50% - 9px)
      );
  }
}

.showcase-footer {
  display: flex;

  justify-content: center;

  margin-top: 42px;
}


/* =========================================
   PROCESSO
========================================= */

.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 20px;
}

.process-card {
  padding:
    28px;

  border-radius: 24px;
}

.process-number {
  width: 50px;
  height: 50px;

  border-radius: 16px;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(255,15,139,0.20),
      rgba(168,85,247,0.25)
    );

  border:
    1px solid
    rgba(255,255,255,0.10);

  font-weight: 900;
}

.process-card h3 {
  margin-top: 24px;

  font-size: 24px;
}

.process-card p {
  margin-top: 14px;

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================
   CTA
========================================= */

.cta-box {
  padding:
    44px;

  border-radius: 32px;

  display: grid;

  grid-template-columns:
    1.1fr 0.9fr;

  gap: 40px;

  align-items: center;

  background:
    radial-gradient(
      circle at top right,
      rgba(255, 15, 139, 0.14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255,255,255,0.07),
      rgba(255,255,255,0.03)
    );
}

.cta-copy h2 {
  margin-top: 18px;

  max-width: 680px;
}

.cta-copy p {
  margin-top: 20px;

  max-width: 600px;

  font-size: 16px;

  line-height: 1.8;
}

.cta-actions {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 24px;
}

.cta-list {
  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 12px;
}

.cta-list li {
  color: #e4dbf0;

  position: relative;

  padding-left: 18px;
}

.cta-list li::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ff0f8b;

  position: absolute;

  left: 0;
  top: 9px;

  box-shadow:
    0 0 14px #ff0f8b;
}


/* =========================================
   FOOTER
========================================= */

.footer {
  padding:
    60px 0 30px;

  border-top:
    1px solid
    rgba(255,255,255,0.06);

  background:
    rgba(255,255,255,0.01);
}

.footer-content {
  display: grid;

  grid-template-columns:
    1.2fr 0.7fr 0.8fr;

  gap: 30px;

  align-items: start;
}

.footer-brand p {
  margin-top: 18px;

  max-width: 420px;

  font-size: 14px;

  line-height: 1.8;
}

.footer-links {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.footer-links a {
  color: #e7ddf5;

  font-size: 14px;
}

.footer-copy p {
  color: #fff;

  font-size: 14px;

  font-weight: 700;
}

.footer-copy span {
  display: block;

  margin-top: 8px;

  color: var(--muted-2);

  font-size: 13px;
}


/* =========================================
   WHATSAPP FLUTUANTE
========================================= */

.floating-whatsapp {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #25d366,
      #12b552
    );

  color: #fff;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 24px;

  z-index: 999;

  box-shadow:
    0 16px 35px
    rgba(37, 211, 102, 0.35);

  transition:
    transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform:
    translateY(-4px)
    scale(1.04);
}


/* =========================================
   RESPONSIVO - TABLET
========================================= */

@media (max-width: 1080px) {

  .nav,
  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.active {
    position: absolute;

    top: 82px;
    left: 20px;
    right: 20px;

    display: flex;

    flex-direction: column;

    gap: 18px;

    padding: 22px;

    border-radius: 20px;

    background:
      rgba(19, 12, 29, 0.98);

    border:
      1px solid
      rgba(255,255,255,0.08);

    box-shadow:
      var(--shadow);
  }

  .hero-grid,
  .cta-box,
  .footer-content {
    grid-template-columns:
      1fr;
  }

  .services-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column:
      span 2;
  }

  .process-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .hero-visual {
    max-width: 720px;

    margin:
      0 auto;

    width: 100%;
  }
}


/* =========================================
   RESPONSIVO - CARROSSEL
========================================= */

@media (max-width: 900px) {

  .showcase-card {
    flex-basis: 280px;
  }

  .showcase-image {
    height: 540px;
  }

  .showcase-carousel::before,
  .showcase-carousel::after {
    width: 60px;
  }
}


/* =========================================
   RESPONSIVO - CELULAR
========================================= */

@media (max-width: 760px) {

  .container {
    width:
      min(
        var(--container),
        calc(100% - 28px)
      );
  }

  .section {
    padding:
      80px 0;
  }

  .hero {
    padding:
      60px 0 50px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-copy h1 {
    font-size:
      clamp(40px, 11vw, 60px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-features {
    display: grid;

    grid-template-columns:
      1fr 1fr;
  }

  .laptop-mockup {
    transform: none;
  }

  .phone-mockup {
    width: 138px;

    right: 0;

    bottom: -10px;
  }

  .stats-left,
  .stats-right {
    position: static;

    margin-top: 16px;
  }

  .hero-visual {
    min-height: auto;

    display: block;
  }

  .services-grid,
  .process-grid {
    grid-template-columns:
      1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: auto;
  }

  .mock-site-hero {
    grid-template-columns:
      1fr;
  }

  .cta-box {
    padding:
      30px 22px;
  }
}


/* =========================================
   RESPONSIVO - MOBILE
========================================= */

@media (max-width: 520px) {

  .portfolio-showcase {
    padding:
      80px 0;
  }

  .showcase-header {
    width:
      calc(100% - 28px);

    margin-bottom:
      40px;
  }

  .showcase-header p {
    font-size: 15px;
  }

  .showcase-card {
    flex-basis: 250px;

    border-radius: 20px;
  }

  .showcase-image {
    height: 460px;
  }

  .showcase-track {
    gap: 14px;

    animation-duration:
      38s;
  }

  .showcase-carousel::before,
  .showcase-carousel::after {
    width: 30px;
  }
}


/* =========================================
   RESPONSIVO - MOBILE PEQUENO
========================================= */

@media (max-width: 480px) {

  .header-content {
    min-height: 72px;
  }

  .nav.active {
    top: 72px;
  }

  .logo-text small {
    display: none;
  }

  .hero-features {
    grid-template-columns:
      1fr;
  }

  .phone-mockup {
    display: none;
  }

  .service-card,
  .process-card {
    padding: 24px;
  }

  .footer-content {
    gap: 24px;
  }
}