/* =========================================================
   SECTIONS
========================================================= */

.section,
.page-title {
  padding: 90px 0 30px;
}

.page-title {
  text-align: center;
  max-width: 820px;
  margin: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

/* =========================================================
   GRIDS
========================================================= */

.feature-grid,
.services-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 80px;
}

/* =========================================================
   FEATURE / SERVICE / PROJECT CARDS
========================================================= */

.feature-card,
.service-card,
.project-card {
  padding: 1.45rem;
  transition: var(--transition);
}

.feature-card:hover,
.service-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 140, 255, 0.45);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  background: rgba(79, 140, 255, 0.14);
  border-radius: 14px;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.feature-card p,
.service-card p,
.project-card p {
  color: var(--muted);
}

/* =========================================================
   TAGS
========================================================= */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
  list-style: none;
}

.tags li,
.tags span {
  padding: 0.35rem 0.6rem;
  color: var(--primary-2);
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(57, 230, 195, 0.08);
  border: 1px solid rgba(57, 230, 195, 0.18);
  border-radius: 999px;
}

/* =========================================================
   PROJECTS
========================================================= */

.project-label {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--primary-2);
  font-size: 0.76rem;
  font-weight: 900;
}

.project-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.3rem;
  color: #7dd3fc;
  font-weight: 800;
  transition: 0.3s ease;
}

.project-card a:hover {
  transform: translateX(5px);
}

/* =========================================================
   ABOUT / CONTACT LAYOUT
========================================================= */

.about-grid,
.contact-grid {
  min-height: calc(100vh - 76px);
  padding: 90px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 3rem;
}

/* =========================================================
   ABOUT LOGO CARD
========================================================= */

.about-card {
  
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: rgba(8, 15, 35, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 45px rgba(0, 174, 255, 0.18),
    inset 0 0 35px rgba(0, 174, 255, 0.08);
}

.about-logo {
  object-fit: cover;
  transform: scale(1.2);
  filter:
    drop-shadow(0 0 25px rgba(0, 174, 255, 0.6))
    drop-shadow(0 0 70px rgba(0, 174, 255, 0.25));
}

/* =========================================================
   STATS PREMIUM
========================================================= */

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-top:2rem;
}

.stats-grid div{
  padding:1.1rem;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  border:1px solid rgba(168,85,247,0.12);

  border-radius:20px;

  transition:0.3s ease;
}

.stats-grid div:hover{
  transform:translateY(-4px);

  border-color:rgba(168,85,247,0.24);
}

.stats-grid strong,
.stats-grid span{
  display:block;
}

.stats-grid strong{
  color:#c084fc;

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

  letter-spacing:0.08em;
  text-transform:uppercase;
}

.stats-grid span{
  margin-top:0.45rem;

  color:#ffffff;

  line-height:1.5;
}

@media(max-width:900px){

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

}

/* =========================================================
   CONTACT
========================================================= */

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--text);
  font: inherit;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 140, 255, 0.12);
}

.form-status {
  min-height: 22px;
  color: var(--primary-2);
  font-weight: 700;
}

/* =========================================================
   PLANS PREMIUM
========================================================= */

.plans-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:40px;
}

.plan-card{
  position:relative;
  overflow:hidden;

  display:flex;
  flex-direction:column;

  padding:34px 28px;

  border-radius:30px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.055),
      rgba(255,255,255,0.025)
    );

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

  box-shadow:
    0 18px 50px rgba(0,0,0,0.28);

  transition:0.35s ease;
}

.plan-card::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at top right,
      rgba(168,85,247,0.14),
      transparent 45%
    );

  opacity:0;
  transition:0.35s ease;
}

.plan-card:hover{
  transform:translateY(-8px);
  border-color:rgba(168,85,247,0.24);

  box-shadow:
    0 28px 70px rgba(0,0,0,0.38);
}

.plan-card:hover::before{
  opacity:1;
}

.plan-featured{
  border-color:rgba(168,85,247,0.35);

  background:
    linear-gradient(
      135deg,
      rgba(168,85,247,0.13),
      rgba(255,255,255,0.035)
    );

  transform:translateY(-12px);
}

.plan-featured::after{
  content:"⭐ Mais Procurado";

  position:absolute;
  top:18px;
  right:18px;

  padding:7px 12px;

  border-radius:999px;

  color:#fff;
  font-size:0.72rem;
  font-weight:800;
  letter-spacing:0.04em;

  background:
    linear-gradient(
      135deg,
      #a855f7,
      #7c3aed
    );

  box-shadow:
    0 10px 25px rgba(168,85,247,0.32);
}

.plan-premium{
  border-color:rgba(79,140,255,0.28);

  background:
    radial-gradient(
      circle at top right,
      rgba(79,140,255,0.15),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.024)
    );
}

.plan-premium:hover{
  border-color:rgba(79,140,255,0.42);
}

.plan-premium-badge{
  display:inline-flex;
  width:fit-content;

  margin-bottom:14px;
  padding:8px 12px;

  border-radius:999px;

  color:#ffffff;
  font-size:0.72rem;
  font-weight:900;
  letter-spacing:0.04em;

  background:
    linear-gradient(
      135deg,
      #4f8cff,
      #7c3aed
    );

  box-shadow:
    0 12px 30px rgba(79,140,255,0.24);
}

.plan-premium .plan-label{
  color:#bfdbfe;
  background:rgba(79,140,255,0.10);
  border-color:rgba(79,140,255,0.20);
}

.plan-black{
  border:1px solid transparent;

  background:
    radial-gradient(
      circle at top right,
      rgba(245,196,107,0.14),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      rgba(255,255,255,0.06),
      rgba(7,10,18,0.28)
    ) padding-box,
    linear-gradient(
      135deg,
      rgba(245,196,107,0.72),
      rgba(168,85,247,0.20),
      rgba(245,196,107,0.22)
    ) border-box;
}

.plan-black:hover{
  border-color:rgba(245,196,107,0.42);
  box-shadow:
    0 28px 74px rgba(0,0,0,0.42),
    0 0 0 1px rgba(245,196,107,0.08);
}

.plan-black-badge{
  display:inline-flex;
  width:fit-content;

  margin-bottom:14px;
  padding:8px 12px;

  border-radius:999px;

  color:#201304;
  font-size:0.72rem;
  font-weight:900;
  letter-spacing:0.04em;

  background:
    linear-gradient(
      135deg,
      #fde68a,
      #f5c46b
    );

  box-shadow:
    0 12px 30px rgba(245,196,107,0.22);
}

.plan-black .plan-label{
  color:#f5c46b;
  background:rgba(245,196,107,0.10);
  border-color:rgba(245,196,107,0.20);
}

.plan-card > *{
  position:relative;
  z-index:2;
}

.plan-label{
  display:inline-flex;
  width:fit-content;

  margin-bottom:18px;
  padding:8px 12px;

  border-radius:999px;

  color:#d8b4fe;
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;

  background:rgba(168,85,247,0.10);
  border:1px solid rgba(168,85,247,0.20);
}

.plan-card h3{
  margin-bottom:14px;

  color:#ffffff;

  font-size:2.4rem;
  line-height:1;
}

.plan-card h3 small{
  display:block;

  margin-top:8px;

  color:#9ca3af;
  font-size:0.95rem;
  font-weight:500;
}

.plan-card p{
  color:#b8b8c7;
  line-height:1.7;

  margin-bottom:22px;
}

.plan-card ul{
  display:flex;
  flex-direction:column;
  gap:12px;

  margin:0 0 28px;
  padding:0;

  list-style:none;
}

.plan-card li{
  position:relative;

  padding-left:26px;

  color:#d1d5db;
  font-size:0.95rem;
}

.plan-card li::before{
  content:"✓";

  position:absolute;
  left:0;
  top:0;

  color:#c084fc;
  font-weight:900;
}

.plan-card li.plan-plus{
  padding-left:0;
  color:#d8b4fe;
  font-size:1.15rem;
  font-weight:900;
}

.plan-card li.plan-plus::before{
  content:"";
}

.plan-black li::before{
  color:#f5c46b;
}

.plan-black .consult-price{
  max-width:180px;
  font-size:2rem;
  line-height:0.98;
}

.plan-black-note{
  margin-top:auto;
  padding:16px;

  border:1px solid rgba(245,196,107,0.16);
  border-radius:18px;

  color:#f8fafc !important;
  font-size:0.88rem;
  line-height:1.65;

  background:rgba(245,196,107,0.07);
}

.plan-card .btn{
  margin-top:auto;
}

/* =========================================================
   INVESTIMENTO 2026 - SOLUCOES DIGITAIS
========================================================= */

.investment-hero-v2{
  min-height:calc(100vh - 76px);
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items:center;
  gap:56px;
  padding:90px 0 70px;
}

.investment-hero-v2 h1{
  max-width:780px;
  font-size:clamp(2.8rem, 6vw, 5.8rem);
  line-height:.94;
  letter-spacing:0;
}

.investment-hero-v2 p{
  max-width:680px;
  font-size:1.08rem;
  color:#cbd5e1;
}

.investment-hero-v2 .eyebrow,
.centered-heading .eyebrow{
  color:#d8b4fe;
}

.solution-window{
  min-height:390px;
}

.solution-screen{
  display:grid;
  gap:16px;
  padding:28px;
}

.solution-pill{
  width:fit-content;
  padding:8px 12px;
  border:1px solid rgba(57,230,195,.22);
  border-radius:999px;
  color:#67e8f9;
  background:rgba(57,230,195,.08);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
}

.solution-screen strong{
  color:#fff;
  font-size:clamp(2rem, 4vw, 3.4rem);
  line-height:.95;
}

.solution-screen small{
  color:#aeb8c9;
  font-size:1rem;
  line-height:1.6;
}

.solution-bars{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.solution-bars i{
  display:block;
  height:13px;
  border-radius:999px;
  background:linear-gradient(90deg, #8b5cf6, #38bdf8, rgba(255,255,255,.12));
}

.solution-bars i:nth-child(2){
  width:72%;
}

.solution-bars i:nth-child(3){
  width:48%;
}

.centered-heading{
  max-width:860px;
  margin:0 auto 36px;
  text-align:center;
}

.centered-heading h2{
  font-size:clamp(2.1rem, 4vw, 4rem);
  line-height:1;
  letter-spacing:0;
}

.centered-heading p{
  margin:14px auto 0;
  color:#aeb8c9;
}

.objective-section{
  padding:70px 0 40px;
}

.objective-grid,
.solution-grid-v2,
.maintenance-plan-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
}

.objective-card,
.solution-grid-v2 .solution-card,
.maintenance-plan{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:26px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(139,92,246,.16), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.024));
  box-shadow:0 18px 52px rgba(0,0,0,.28);
  transition:.28s ease;
}

.objective-card:hover,
.solution-grid-v2 .solution-card:hover,
.maintenance-plan:hover{
  transform:translateY(-6px);
  border-color:rgba(56,189,248,.32);
  box-shadow:0 26px 74px rgba(0,0,0,.38);
}

.objective-card span,
.maintenance-plan span{
  width:fit-content;
  margin-bottom:18px;
  padding:8px 12px;
  border-radius:999px;
  color:#c084fc;
  background:rgba(168,85,247,.11);
  border:1px solid rgba(168,85,247,.22);
  font-size:.76rem;
  font-weight:900;
  text-transform:uppercase;
}

.objective-card h3,
.solution-grid-v2 h3,
.maintenance-plan h3{
  color:#fff;
  font-size:1.45rem;
}

.objective-card p,
.maintenance-plan li,
.solution-grid-v2 li{
  color:#cbd5e1;
  line-height:1.65;
}

.objective-card a,
.solution-grid-v2 a{
  margin-top:auto;
  color:#7dd3fc;
  font-weight:900;
}

.investment-plans-v2{
  align-items:stretch;
}

.investment-plans-v2 .plan-card{
  min-height:100%;
}

.investment-plans-v2 .solution-badge{
  position:static;
  width:fit-content;
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg, #a855f7, #4f8cff);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.04em;
}

.investment-plans-v2 .plan-featured{
  transform:translateY(-10px);
  box-shadow:
    0 32px 88px rgba(0,0,0,.44),
    0 0 0 1px rgba(168,85,247,.22),
    0 0 70px rgba(139,92,246,.18);
}

.investment-plans-v2 .plan-featured::after{
  content:none;
}

.investment-plans-v2 .plan-tailored{
  border-color:rgba(56,189,248,.22);
  background:
    radial-gradient(circle at top right, rgba(56,189,248,.14), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
}

.investment-plans-v2 .consult-price{
  max-width:230px;
  font-size:2rem;
  line-height:1.05;
}

.solution-grid-v2{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.solution-grid-v2 ul,
.maintenance-plan ul{
  display:grid;
  gap:10px;
  margin:10px 0 24px;
  padding:0;
  list-style:none;
}

.solution-grid-v2 li,
.maintenance-plan li{
  position:relative;
  padding-left:22px;
}

.solution-grid-v2 li::before,
.maintenance-plan li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#a855f7;
  box-shadow:0 0 16px rgba(168,85,247,.55);
}

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

.featured-maintenance{
  border-color:rgba(168,85,247,.32);
  background:
    radial-gradient(circle at top right, rgba(168,85,247,.2), transparent 44%),
    linear-gradient(135deg, rgba(168,85,247,.1), rgba(255,255,255,.03));
}

.investment-note,
.investment-disclaimer{
  margin-top:22px;
  color:#cbd5e1;
  line-height:1.7;
}

.process-grid-v2{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:16px;
}

.process-grid-v2 article{
  padding:24px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:24px;
  background:rgba(255,255,255,.045);
}

.process-grid-v2 span{
  color:#67e8f9;
  font-weight:900;
}

.process-grid-v2 h3{
  color:#fff;
  margin-top:12px;
}

.process-grid-v2 p{
  color:#aeb8c9;
  line-height:1.65;
}

.value-panel-v2{
  box-shadow:
    0 28px 90px rgba(0,0,0,.35),
    inset 0 0 80px rgba(79,140,255,.06);
}

.value-panel-v2 .benefit-grid{
  margin-top:26px;
}

.plans-note{
  max-width:760px;

  margin:26px auto 0;

  color:#9ca3af;
  text-align:center;
  font-size:0.92rem;
  line-height:1.7;
}

@media(max-width:900px){

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

  .plan-featured{
    transform:none;
  }

}
/* =========================================================
   HOME REDESIGN - DOZEDEV COMERCIAL
========================================================= */

.home-redesign{
  overflow:hidden;
}

.home-redesign section{
  min-height:auto;
}

.home-redesign .eyebrow{
  display:inline-flex;
  width:fit-content;
  margin-bottom:18px;
  padding:8px 12px;
  border:1px solid rgba(168,85,247,.25);
  border-radius:999px;
  color:#d8b4fe;
  background:rgba(168,85,247,.1);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.home-hero{
  min-height:calc(100svh - 76px);
  max-height:calc(100svh - 76px);
  position:relative;
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items:center;
  gap:28px;
  padding:clamp(24px, 4vh, 44px) 0;
  isolation:isolate;
  overflow:visible;
}

.home-hero::before{
  content:"";
  position:absolute;
  top:-8%;
  bottom:-8%;
  left:50%;
  width:100vw;
  z-index:0;
  pointer-events:none;
  transform:translateX(-50%);
  background:
    linear-gradient(90deg, rgba(7,10,18,.72), rgba(7,10,18,.28) 48%, rgba(7,10,18,.62)),
    url("../../imagem/neon-laser.png") center / cover no-repeat;
  opacity:.48;
  filter:saturate(1.12);
}

.home-hero-copy h1,
.home-section-heading h2,
.value-statement h2{
  color:#fff;
  letter-spacing:0;
  line-height:.98;
}

.home-hero-copy{
  position:relative;
  z-index:2;
}

.home-hero-copy h1{
  max-width:100vh;
  font-size:clamp(2.35rem,4.0vw,4.05rem);
  line-height:1.03;
}

.home-hero-copy h1 span{
  color:transparent;
  background:linear-gradient(135deg,#d8b4fe,#8b5cf6,#38bdf8);
  -webkit-background-clip:text;
  background-clip:text;
}

.home-hero-copy p{
  max-width:590px;
  margin-top:14px;
  color:#cbd5e1;
  font-size:1rem;
  line-height:1.55;
}

.home-hero-actions,
.home-actions-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.home-hero-actions .btn{
  min-height:54px;
  padding:15px 24px;
}

.home-subtle-link{
  color:#aeb8c9;
  font-weight:800;
  border-bottom:1px solid rgba(168,85,247,.42);
  margin-left:2px;
}

.home-hero-visual{
  position:relative;
  z-index:1;
  height:clamp(300px,52svh,520px);
  min-height:0;
  transform:translateX(4%);
}

.home-hero-visual::before{
  content:none;
}

.home-image-frame{
  position:relative;
  overflow:visible;
  margin:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.home-image-frame img{
  width:120%;
  height:auto;
  max-height:120%;
  min-height:0;
  object-fit:contain;
  filter:
    drop-shadow(0 24px 58px rgba(0,0,0,.42))
    drop-shadow(0 0 24px rgba(139,92,246,.14));
}

.home-hero-visual.home-image-frame{
  display:block;
}

.hero-device{
  position:absolute;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg,rgba(18,21,34,.95),rgba(8,11,20,.95));
  box-shadow:0 36px 110px rgba(0,0,0,.55);
}

.desktop-device{
  inset:46px 0 auto auto;
  width:min(100%,620px);
  min-height:420px;
  border-radius:28px;
  overflow:hidden;
}

.device-bar{
  display:flex;
  gap:8px;
  padding:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.device-bar span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#8b5cf6;
}

.device-screen{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:22px;
  padding:28px;
}

.screen-sidebar{
  min-height:300px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(168,85,247,.24),rgba(56,189,248,.08));
}

.screen-main span,
.tab-panel span,
.ai-panel span{
  color:#67e8f9;
  font-size:.8rem;
  font-weight:900;
  text-transform:uppercase;
}

.screen-main strong{
  display:block;
  max-width:330px;
  margin:12px 0 22px;
  color:#fff;
  font-size:2.5rem;
  line-height:1;
}

.screen-main i{
  display:block;
  height:18px;
  margin-bottom:12px;
  border-radius:999px;
  background:linear-gradient(90deg,#8b5cf6,#38bdf8,rgba(255,255,255,.08));
}

.screen-main i:nth-of-type(2){width:72%}
.screen-main i:nth-of-type(3){width:48%}

.screen-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:28px;
}

.screen-metrics b{
  min-height:72px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.045);
}

.phone-device{
  right:32px;
  bottom:20px;
  width:188px;
  min-height:250px;
  padding:22px;
  border-radius:30px;
}

.phone-device span{
  display:block;
  width:52px;
  height:6px;
  margin:0 auto 38px;
  border-radius:999px;
  background:rgba(255,255,255,.2);
}

.phone-device strong{
  display:block;
  color:#fff;
  font-size:1.25rem;
}

.phone-device small{
  display:block;
  margin-top:12px;
  color:#aeb8c9;
}

.home-pillars,
.home-showcase,
.home-systems,
.home-ecosystem,
.home-ai,
.home-growth,
.home-value,
.home-process,
.home-investment{
  min-height:auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(60px,6.5vw,96px) 0;
}

.home-pillars{
  padding-bottom:clamp(44px,5vw,68px);
}

.home-showcase{
  min-height:auto;
  padding:0;
}

.home-systems{
  padding-top:clamp(44px,4.8vw,68px);
}

.home-section-heading{
  max-width:900px;
  margin-bottom:48px;
}

.home-section-heading.narrow{
  max-width:780px;
}

.home-section-heading h2,
.value-statement h2{
  font-size:clamp(2.3rem,3.5vw,5rem);
}

.home-section-heading p,
.value-statement p{
  max-width:760px;
  margin-top:18px;
  color:#aeb8c9;
  font-size:1.08rem;
}

.pillar-list{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border-top:1px solid rgba(255,255,255,.1);
  border-bottom:1px solid rgba(255,255,255,.1);
}

.pillar-list a{
  min-height:280px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:28px 24px;
  border-right:1px solid rgba(255,255,255,.08);
  transition:.28s ease;
}

.pillar-list a:last-child{
  border-right:0;
}

.pillar-list a:hover,
.pillar-list a:focus-visible{
  background:rgba(168,85,247,.1);
  outline:none;
}

.pillar-list span{
  color:#67e8f9;
  font-weight:900;
}

.pillar-list strong{
  color:#fff;
  font-size:clamp(1.5rem,2.4vw,2.25rem);
  line-height:1;
}

.pillar-list small{
  color:#aeb8c9;
  font-size:.98rem;
  line-height:1.6;
}

.showcase-row{
  min-height:auto;
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(380px,1.1fr);
  align-items:center;
  gap:64px;
  padding:clamp(42px,5vw,60px) 0;
  border-top:1px solid rgba(255,255,255,.08);
}

.showcase-row.reverse{
  grid-template-columns:minmax(380px,1.1fr) minmax(0,.9fr);
}

.showcase-row.reverse .showcase-copy{
  order:2;
}

.showcase-copy span{
  color:#c084fc;
  font-weight:900;
}

.showcase-copy h3{
  margin:14px 0;
  color:#fff;
  font-size:clamp(2rem,3.5vw,4.25rem);
  line-height:1;
}

.showcase-copy p{
  color:#cbd5e1;
  font-size:1.05rem;
}

.showcase-copy ul{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 18px;
  margin:26px 0;
  padding:0;
  list-style:none;
}

.showcase-copy li{
  color:#aeb8c9;
}

.showcase-copy li::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  margin-right:10px;
  border-radius:50%;
  background:#8b5cf6;
}

.mockup{
  min-height:420px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:30px;
  background:
    radial-gradient(circle at top right,rgba(168,85,247,.22),transparent 42%),
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  box-shadow:0 28px 90px rgba(0,0,0,.42);
}

.showcase-image{
  min-height:clamp(360px,44svh,500px);
}

.image-focus-left img{
  object-position:left center;
}

.image-focus-right img{
  object-position:right center;
}

.landing-mockup,
.shop-mockup{
  display:grid;
  align-content:center;
  gap:18px;
  padding:38px;
}

.landing-mockup span{
  width:62%;
  height:18px;
  border-radius:999px;
  background:#38bdf8;
}

.landing-mockup strong,
.shop-mockup strong{
  color:#fff;
  font-size:clamp(2rem,4vw,3.7rem);
  line-height:1;
}

.landing-mockup i,
.shop-mockup i{
  display:block;
  height:14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
}

.landing-mockup i:nth-of-type(1){width:80%}
.landing-mockup i:nth-of-type(2){width:56%}

.landing-mockup button{
  width:fit-content;
  margin-top:14px;
  padding:14px 20px;
  color:#fff;
  font:inherit;
  font-weight:900;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#a855f7,#4f8cff);
}

.institution-mockup{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:38px;
}

.institution-mockup div{
  position:absolute;
  top:44px;
  right:42px;
  width:150px;
  height:230px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  background:linear-gradient(180deg,rgba(56,189,248,.22),rgba(168,85,247,.18));
}

.institution-mockup strong{
  max-width:480px;
  color:#fff;
  font-size:clamp(2rem,4vw,4rem);
  line-height:1;
}

.institution-mockup small{
  margin-top:18px;
  color:#67e8f9;
  font-weight:900;
}

.shop-mockup span{
  color:#67e8f9;
  font-weight:900;
}

.shop-mockup i:nth-of-type(1){width:92%}
.shop-mockup i:nth-of-type(2){width:72%}
.shop-mockup i:nth-of-type(3){width:52%}

.product-console,
.ai-demo{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) 280px minmax(0,.85fr);
  gap:28px;
  padding:28px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
}

.product-console{
  position:relative;
  overflow:hidden;
  grid-template-columns:minmax(420px,1.18fr) minmax(320px,.72fr);
  grid-template-areas:
    "visual panel"
    "tabs panel";
  align-items:center;
  min-height:500px;
  padding:34px;
  border-color:rgba(148,163,184,.14);
  background:rgba(6,10,20,.74);
}

.product-console::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(5,8,18,.72),rgba(5,8,18,.22) 48%,rgba(5,8,18,.78)),
    url("../../imagem/neon-gest.jpg") center / cover no-repeat;
  opacity:.62;
  filter:saturate(1.12);
}

.product-console > *{
  position:relative;
  z-index:1;
}

.ai-demo{
  position:relative;
  overflow:hidden;
  grid-template-columns:minmax(420px,1.18fr) minmax(320px,.72fr);
  grid-template-areas:
    "visual panel"
    "tabs panel";
  align-items:center;
  min-height:500px;
  padding:34px;
  border-color:rgba(148,163,184,.14);
  background:rgba(6,10,20,.74);
}

.ai-demo::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(5,8,18,.72),rgba(5,8,18,.22) 48%,rgba(5,8,18,.78)),
    url("../../imagem/neon-gest.jpg") center / cover no-repeat;
  opacity:.62;
  filter:saturate(1.12);
}

.ai-demo > *{
  position:relative;
  z-index:1;
}

.console-image{
  min-height:460px;
}

.product-console .console-image{
  grid-area:visual;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-console .console-image img{
  max-height:390px;
  object-fit:contain;
}

.ai-demo .console-image{
  grid-area:visual;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ai-demo .console-image img{
  max-height:390px;
  object-fit:contain;
}

.tab-list{
  display:grid;
  align-content:start;
  gap:10px;
}

.product-console .tab-list{
  grid-area:tabs;
  grid-template-columns:minmax(210px,1.25fr) minmax(110px,.7fr) minmax(110px,.7fr) minmax(150px,.85fr);
  align-content:start;
  align-self:start;
  gap:12px;
  margin-top:-18px;
}

.product-console .tab-list button{
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  font-size:.96rem;
  line-height:1.15;
  text-align:center;
}

.ai-demo .tab-list{
  grid-area:tabs;
  grid-template-columns:minmax(130px,.8fr) minmax(150px,.95fr) minmax(170px,1.05fr) minmax(220px,1.25fr);
  align-content:start;
  align-self:start;
  gap:12px;
  margin-top:-18px;
}

.ai-demo .tab-list button{
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  font-size:.96rem;
  line-height:1.15;
  text-align:center;
}

.tab-list button{
  min-height:54px;
  padding:14px 16px;
  color:#cbd5e1;
  font:inherit;
  font-weight:800;
  text-align:left;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(255,255,255,.045);
  cursor:pointer;
  transition:.25s ease;
}

.tab-list button[aria-selected="true"],
.tab-list button:hover,
.tab-list button:focus-visible{
  color:#fff;
  border-color:rgba(168,85,247,.38);
  background:rgba(168,85,247,.16);
  outline:none;
}

.tab-panel,
.ai-panel{
  min-height:360px;
  padding:38px;
  border-radius:24px;
  background:
    radial-gradient(circle at top right,rgba(56,189,248,.18),transparent 40%),
    rgba(6,10,20,.74);
}

.product-console .tab-panel{
  grid-area:panel;
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:42px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:rgba(5,9,18,.82);
  box-shadow:0 26px 70px rgba(0,0,0,.28);
}

.ai-demo .ai-panel{
  grid-area:panel;
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:42px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:rgba(5,9,18,.82);
  box-shadow:0 26px 70px rgba(0,0,0,.28);
}

.tab-panel h3,
.ai-panel h3{
  margin:10px 0 14px;
  color:#fff;
  font-size:clamp(2rem,4vw,4.2rem);
  line-height:1;
}

.product-console .tab-panel h3{
  max-width:360px;
  font-size:clamp(2.45rem,3.6vw,4.05rem);
  line-height:1.04;
  overflow-wrap:normal;
}

.tab-panel p,
.ai-panel p{
  max-width:720px;
  color:#cbd5e1;
  font-size:1.08rem;
}

.product-console .tab-panel p{
  max-width:340px;
  font-size:1.12rem;
  line-height:1.55;
}

.console-bars{
  display:grid;
  gap:14px;
  margin-top:46px;
}

.product-console .console-bars{
  max-width:300px;
  margin-top:42px;
}

.console-bars i{
  height:18px;
  border-radius:999px;
  background:linear-gradient(90deg,#8b5cf6,#38bdf8,rgba(255,255,255,.08));
}

.console-bars i:nth-child(2){width:72%}
.console-bars i:nth-child(3){width:48%}

.ecosystem-strip{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
  border-radius:28px;
  background:rgba(255,255,255,.09);
}

.ecosystem-strip a{
  min-height:230px;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:26px;
  background:#0b0f1b;
}

.ecosystem-strip strong{
  color:#fff;
  font-size:1.5rem;
}

.ecosystem-strip span{
  color:#67e8f9;
  font-weight:900;
}

.ecosystem-strip small{
  color:#aeb8c9;
  line-height:1.55;
}

.ecosystem-strip em{
  width:fit-content;
  margin-top:auto;
  padding:7px 10px;
  border-radius:999px;
  color:#d8b4fe;
  background:rgba(168,85,247,.12);
  font-size:.78rem;
  font-style:normal;
  font-weight:900;
}

.ai-panel{
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
}

.chat-lines{
  display:grid;
  align-content:center;
  gap:14px;
}

.chat-lines span{
  padding:14px 16px;
  color:#dbeafe;
  border-radius:18px;
  background:rgba(255,255,255,.08);
}

.chat-lines span:nth-child(2){
  color:#fff;
  background:linear-gradient(135deg,rgba(168,85,247,.35),rgba(56,189,248,.18));
}

.growth-line,
.process-line{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  margin:34px 0;
  border-top:1px solid rgba(255,255,255,.13);
}

.process-line{
  grid-template-columns:repeat(7,minmax(0,1fr));
}

.growth-line span,
.process-line span{
  min-height:140px;
  padding:20px 18px;
  color:#fff;
  font-weight:900;
  border-right:1px solid rgba(255,255,255,.08);
}

.growth-line span:last-child,
.process-line span:last-child{
  border-right:0;
}

.growth-line b,
.process-line b{
  display:block;
  margin-bottom:32px;
  color:#67e8f9;
  font-size:.9rem;
}

.growth-detail{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
  margin-bottom:28px;
}

.growth-image{
  min-height:min(48svh,520px);
  margin:28px 0;
}

.growth-detail strong{
  color:#fff;
}

.growth-detail p{
  margin-top:8px;
  color:#aeb8c9;
  line-height:1.55;
}

.home-value{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr);
  align-items:center;
  gap:56px;
}

.value-words{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.value-words span{
  padding:13px 16px;
  color:#dbeafe;
  border:1px solid rgba(255,255,255,.09);
  border-radius:999px;
  background:rgba(255,255,255,.045);
}

.investment-summary{
  border-top:1px solid rgba(255,255,255,.1);
}

.investment-summary div{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:24px;
  padding:26px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.investment-summary span{
  color:#cbd5e1;
  font-size:1.1rem;
}

.investment-summary strong{
  color:#fff;
  font-size:clamp(1.7rem,3vw,3rem);
  line-height:1;
  text-align:right;
}

.summary-note{
  max-width:760px;
  margin:22px 0 28px;
  color:#aeb8c9;
}

.home-final-cta{
  margin-top:60px;
}

.home-final-cta .final-cta-content{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:430px;
  padding:clamp(54px,8vw,86px) clamp(24px,6vw,90px);
  text-align:center;
  border-color:rgba(168,85,247,.26);
  background:
    linear-gradient(135deg,rgba(6,10,20,.86),rgba(12,16,30,.64)),
    url("../../imagem/neon-laser.png") center / cover no-repeat;
  box-shadow:
    0 30px 90px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.home-final-cta .final-cta-content::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 0%,rgba(168,85,247,.22),transparent 34%),
    linear-gradient(90deg,rgba(5,8,18,.78),rgba(5,8,18,.42),rgba(5,8,18,.78));
  pointer-events:none;
}

.home-final-cta .final-cta-content > div{
  max-width:840px;
}

.home-final-cta h2{
  margin:18px auto;
  font-size:clamp(2.35rem,5vw,4.8rem);
  letter-spacing:0;
}

.home-final-cta p{
  max-width:700px;
  margin:0 auto 32px;
  color:#dbeafe;
}

/* =========================================================
   SERVICOS REDESIGN
========================================================= */

.services-redesign > .page-hero,
.services-redesign > .services-grid,
.services-redesign > .final-cta:not(.services-final-cta){
  display:none;
}

.services-hero{
  min-height:calc(100svh - 76px);
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr);
  align-items:center;
  gap:38px;
  padding:clamp(42px,7vw,92px) 0;
}

.services-hero-copy h1,
.services-heading h2,
.services-showcase-copy h2,
.services-process h2{
  color:#fff;
  font-size:clamp(2.45rem,3vw,5rem);
  line-height:1;
  letter-spacing:0;
}

.services-hero-copy p,
.services-heading p,
.services-showcase-copy p{
  max-width:680px;
  margin-top:18px;
  color:#cbd5e1;
  font-size:1.08rem;
  line-height:1.65;
}

.services-hero-media,
.services-system-media{
  position:relative;
  margin:0;
  overflow:visible;
}

.services-hero-media::before,
.services-system-media::before{
  content:"";
  position:absolute;
  inset:10% -8%;
  z-index:0;
  border-radius:34px;
  background:
    radial-gradient(circle at 38% 45%,rgba(168,85,247,.28),transparent 36%),
    radial-gradient(circle at 74% 58%,rgba(56,189,248,.22),transparent 34%);
  filter:blur(24px);
}

.services-hero-media img,
.services-system-media img{
  position:relative;
  z-index:1;
  width:100%;
  height:auto;
  max-height:620px;
  object-fit:contain;
  filter:
    drop-shadow(0 28px 70px rgba(0,0,0,.46))
    drop-shadow(0 0 24px rgba(139,92,246,.16));
}

.services-brand-strip{
  min-height:112px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:18px 28px;
  border:1px solid rgba(168,85,247,.18);
  border-radius:28px;
  background:
    linear-gradient(90deg,rgba(6,10,20,.78),rgba(18,23,40,.52),rgba(6,10,20,.78)),
    url("../../imagem/neon-laser.png") center / cover no-repeat;
  box-shadow:0 24px 70px rgba(0,0,0,.3);
}

.services-brand-strip img{
  width:86px;
  height:86px;
  object-fit:contain;
  filter:drop-shadow(0 0 18px rgba(168,85,247,.36));
  border-radius:18px;
}

.services-brand-strip span{
  color:#e5e7eb;
  font-size:.92rem;
  font-weight:900;
  text-transform:uppercase;
}

.services-section,
.services-showcase,
.services-process{
  padding:clamp(76px,9vw,118px) 0;
}

.services-heading{
  max-width:880px;
  margin-bottom:42px;
}

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

.services-featured article{
  position:relative;
  overflow:hidden;
  min-height:360px;
  display:flex;
  flex-direction:column;
  padding:30px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:28px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.022));
  box-shadow:0 22px 64px rgba(0,0,0,.28);
}

.services-featured article::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right,rgba(168,85,247,.18),transparent 42%);
  pointer-events:none;
}

.services-featured article > *{
  position:relative;
  z-index:1;
}

.services-featured article > span,
.services-process li span{
  color:#67e8f9;
  font-weight:900;
}

.services-featured h3{
  margin:28px 0 16px;
  color:#fff;
  font-size:clamp(1.75rem,2.7vw,2.7rem);
  line-height:1;
}

.services-featured p{
  color:#cbd5e1;
  line-height:1.65;
}

.services-featured ul{
  display:grid;
  gap:10px;
  margin:auto 0 0;
  padding:24px 0 0;
  list-style:none;
}

.services-featured li{
  color:#aeb8c9;
}

.services-featured li::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  margin-right:10px;
  border-radius:50%;
  background:#8b5cf6;
}

.services-showcase{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(420px,1.15fr);
  align-items:center;
  gap:46px;
}

.services-mini-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.services-mini-list span{
  padding:11px 14px;
  color:#dbeafe;
  font-weight:800;
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  background:rgba(255,255,255,.045);
}

.services-process{
  display:grid;
  grid-template-columns:minmax(260px,.55fr) minmax(0,1fr);
  gap:34px;
  align-items:center;
}

.services-process img{
  width:112px;
  height:112px;
  object-fit:contain;
  margin-bottom:22px;
  filter:drop-shadow(0 0 24px rgba(168,85,247,.36));
  border-radius:18px;
}

.services-process ol{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}

.services-process li{
  min-height:230px;
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:24px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:24px;
  background:rgba(255,255,255,.045);
}

.services-process strong{
  color:#fff;
  font-size:1.2rem;
}

.services-process small{
  color:#aeb8c9;
  line-height:1.55;
}

.services-final-cta .final-cta-content{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:420px;
  text-align:center;
  background:
    linear-gradient(135deg,rgba(6,10,20,.88),rgba(12,16,30,.58)),
    url("../../imagem/neon-laser.png") center / cover no-repeat;
}

@media (prefers-reduced-motion: reduce){
  .home-redesign *,
  .home-redesign *::before,
  .home-redesign *::after{
    scroll-behavior:auto;
    transition:none !important;
    animation:none !important;
  }
}

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

.footer{
  position:relative;

  margin-top:120px;
  padding:70px 0 24px;

  color:var(--muted);

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

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.015),
      rgba(255,255,255,0.02)
    );
}

.footer-content{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:50px;
}

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

  margin-top:18px;

  color:#a1a1b5;
  line-height:1.8;
}

.footer-logo-img{
  width:150px;
  object-fit:contain;

  filter:
    drop-shadow(0 10px 30px rgba(0,0,0,0.35));
}

.footer-column{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-column h4{
  margin-bottom:18px;

  color:#ffffff;
  font-size:1rem;
}

.footer-column a{
  color:#9ca3af;
  text-decoration:none;

  transition:0.3s ease;
}

.footer-column a:hover{
  color:#d8b4fe;
  transform:translateX(4px);
}

.footer-socials{
  display:flex;
  gap:12px;

  margin-top:24px;
}

.footer-socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 16px;

  border-radius:999px;

  color:#d1d5db;
  text-decoration:none;
  font-size:0.88rem;

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

  transition:0.3s ease;
}

.footer-socials a:hover{
  background:rgba(168,85,247,0.10);
  border-color:rgba(168,85,247,0.20);

  color:#ffffff;
}

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

  margin-top:42px;
  padding-top:22px;

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

  color:#7c8493;
  font-size:0.88rem;
}

.footer-legal{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.footer-legal a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:34px;
  padding:7px 13px;

  color:#cbd5e1;
  text-decoration:none;

  border:1px solid rgba(148,163,184,0.16);
  border-radius:999px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.055),
      rgba(255,255,255,0.02)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06);

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

.footer-legal a:hover,
.footer-legal a:focus-visible{
  color:#ffffff;

  border-color:rgba(192,132,252,0.42);

  background:
    linear-gradient(
      135deg,
      rgba(168,85,247,0.20),
      rgba(79,140,255,0.08)
    );

  box-shadow:
    0 10px 26px rgba(168,85,247,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);

  transform:translateY(-2px);
  outline:none;
}

.footer-legal span{
  color:rgba(148,163,184,0.36);
  font-size:0.78rem;
}

/* =========================================================
   INVESTIMENTO
========================================================= */

.investment-hero{
  position:relative;
  min-height:calc(100vh - 76px);
  display:grid;
  grid-template-columns:1fr 0.9fr;
  align-items:center;
  gap:56px;
  padding:80px 0;
}

.investment-hero::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  right:-140px;
  top:60px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(168,85,247,0.16), transparent 68%);
  filter:blur(18px);
  pointer-events:none;
}

.investment-hero-content h1{
  max-width:760px;
  margin:18px 0 22px;
  color:#ffffff;
  font-size:clamp(2.8rem,6vw,5.3rem);
  line-height:0.96;
  letter-spacing:-0.06em;
}

.investment-hero-content p{
  max-width:650px;
  margin-bottom:16px;
  color:#b8c3d8;
  font-size:1.05rem;
  line-height:1.8;
}

.investment-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.investment-visual{
  position:relative;
  min-height:440px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.visual-glow{
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;
  background:
    radial-gradient(circle, rgba(79,140,255,0.22), transparent 64%),
    radial-gradient(circle at 70% 30%, rgba(57,230,195,0.13), transparent 48%);
  filter:blur(8px);
  opacity:0.9;
}

.visual-window{
  position:relative;
  z-index:2;
  width:min(100%,440px);
  min-height:330px;
  padding:22px;
  border:1px solid rgba(192,132,252,0.22);
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(57,230,195,0.14), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.028));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation:floatInvestment 5s ease-in-out infinite;
}

.visual-toolbar{
  display:flex;
  gap:8px;
  margin-bottom:24px;
}

.visual-toolbar span{
  width:12px;
  height:12px;
  border-radius:999px;
  background:#c084fc;
}

.visual-toolbar span:nth-child(2){
  background:#4f8cff;
}

.visual-toolbar span:nth-child(3){
  background:#39e6c3;
}

.visual-code{
  display:grid;
  gap:12px;
  margin-top:22px;
}

.visual-preview{
  display:grid;
  grid-template-columns:86px 1fr;
  gap:18px;
  min-height:168px;
  padding:16px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  background:rgba(7,10,18,0.48);
}

.preview-sidebar{
  border-radius:18px;
  background:
    linear-gradient(180deg, rgba(168,85,247,0.36), rgba(79,140,255,0.1));
}

.preview-main{
  display:grid;
  align-content:center;
  gap:12px;
}

.preview-main span,
.preview-main strong,
.preview-main small{
  display:block;
  height:14px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
}

.preview-main span{
  width:44%;
  background:#39e6c3;
}

.preview-main strong{
  width:88%;
  height:26px;
  background:linear-gradient(90deg,#ffffff,rgba(216,180,254,0.55));
}

.preview-main small:first-of-type{
  width:72%;
}

.preview-main small:last-of-type{
  width:54%;
}

.code-line{
  display:block;
  height:13px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(216,180,254,0.9), rgba(79,140,255,0.18));
}

.code-line.long{ width:82%; }
.code-line.medium{ width:64%; }
.code-line.short{ width:44%; }
.code-line.wide{ width:92%; }

.visual-panel{
  padding:28px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  background:rgba(7,10,18,0.58);
}

.visual-panel strong,
.visual-panel small{
  display:block;
}

.visual-panel strong{
  margin-bottom:8px;
  color:#ffffff;
  font-size:1.6rem;
}

.visual-panel small{
  color:#d8b4fe;
  font-weight:800;
}

.visual-card{
  position:absolute;
  z-index:3;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  color:#ffffff;
  font-size:0.9rem;
  font-weight:800;
  background:rgba(15,23,42,0.86);
  box-shadow:0 18px 42px rgba(0,0,0,0.32);
  animation:floatTag 4.8s ease-in-out infinite;
}

.visual-card span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:12px;
  color:#ffffff;
  background:linear-gradient(135deg,#a855f7,#4f8cff);
}

.visual-card-one{
  top:54px;
  left:4px;
}

.visual-card-two{
  right:0;
  bottom:64px;
}

.visual-card-three{
  top:8px;
  right:66px;
  animation-delay:0.3s;
}

.visual-card-four{
  left:22px;
  bottom:86px;
  animation-delay:0.55s;
}

.visual-card-five{
  right:30px;
  top:132px;
  animation-delay:0.8s;
}

.visual-card-six{
  left:82px;
  bottom:16px;
  animation-delay:1.05s;
}

.investment-section,
.included-section,
.comparison-section,
.faq-section,
.timeline-section,
.testimonials-section{
  padding:80px 0 20px;
}

.investment-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:-20px;
  padding-bottom:40px;
}

.stat-premium-card{
  position:relative;
  overflow:hidden;
  min-height:150px;
  padding:24px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.026));
  box-shadow:0 22px 58px rgba(0,0,0,0.28);
  backdrop-filter:blur(18px);
  transition:0.45s cubic-bezier(.2,.8,.2,1);
}

.stat-premium-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  opacity:0;
  background:
    linear-gradient(120deg, transparent 10%, rgba(255,255,255,0.22), transparent 44%);
  transform:translateX(-80%);
  transition:0.55s ease;
}

.stat-premium-card:hover{
  transform:translateY(-8px);
  border-color:rgba(192,132,252,0.32);
  box-shadow:0 34px 80px rgba(0,0,0,0.38);
}

.stat-premium-card:hover::before{
  opacity:1;
  transform:translateX(80%);
}

.stat-premium-card strong,
.stat-premium-card span{
  position:relative;
  z-index:2;
  display:block;
}

.stat-premium-card strong{
  margin-bottom:14px;
  color:#ffffff;
  font-size:clamp(1.4rem,2vw,2rem);
  line-height:1;
}

.stat-premium-card span{
  color:#b8c3d8;
  line-height:1.6;
}

.investment-heading > p,
.investment-heading p,
.section-heading.investment-heading > p{
  max-width:460px;
  color:#aeb9d6;
  line-height:1.75;
}

.investment-heading h2,
.comparison-section h2,
.faq-section h2{
  max-width:820px;
  color:#ffffff;
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.02;
  letter-spacing:-0.05em;
}

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

.investment-card,
.solution-card{
  position:relative;
  overflow:hidden;
  padding:30px 26px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.082), rgba(255,255,255,0.026));
  box-shadow:0 18px 48px rgba(0,0,0,0.24);
  backdrop-filter:blur(18px);
  transition:0.45s cubic-bezier(.2,.8,.2,1);
}

.investment-card::before,
.solution-card::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  background:
    linear-gradient(120deg, transparent 12%, rgba(255,255,255,0.18), transparent 42%),
    linear-gradient(135deg, rgba(168,85,247,0.13), transparent 58%);
  transform:translateX(-70%);
  transition:0.55s ease;
}

.investment-card:hover,
.solution-card:hover{
  transform:translateY(-8px);
  border-color:rgba(192,132,252,0.34);
  box-shadow:0 28px 70px rgba(0,0,0,0.36);
}

.investment-card:hover::before,
.solution-card:hover::before{
  opacity:1;
  transform:translateX(70%);
}

.investment-card > *,
.solution-card > *{
  position:relative;
  z-index:2;
}

.investment-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  margin-bottom:18px;
  border-radius:18px;
  color:#ffffff;
  font-weight:900;
  background:linear-gradient(135deg, rgba(168,85,247,0.95), rgba(79,140,255,0.8));
  box-shadow:0 16px 34px rgba(79,140,255,0.2);
}

.investment-card h3,
.solution-card h3{
  color:#ffffff;
  font-size:1.25rem;
}

.investment-card p,
.solution-card p{
  color:#b8c3d8;
  line-height:1.72;
}

.included-panel{
  position:relative;
  overflow:hidden;
  padding:52px;
  border:1px solid rgba(57,230,195,0.14);
  border-radius:34px;
  background:
    radial-gradient(circle at top left, rgba(57,230,195,0.14), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.024));
  box-shadow:0 26px 74px rgba(0,0,0,0.34);
}

.project-timeline{
  position:relative;
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:12px;
  margin-top:34px;
}

.project-timeline::before{
  content:"";
  position:absolute;
  left:7%;
  right:7%;
  top:39px;
  height:1px;
  background:linear-gradient(90deg, rgba(168,85,247,0.1), rgba(57,230,195,0.6), rgba(168,85,247,0.1));
}

.project-timeline article{
  position:relative;
  z-index:2;
  min-height:150px;
  display:grid;
  justify-items:center;
  align-content:start;
  gap:12px;
  padding:18px 12px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.09);
  border-radius:22px;
  background:rgba(255,255,255,0.045);
  backdrop-filter:blur(14px);
  transition:0.35s ease;
}

.project-timeline article:hover{
  transform:translateY(-8px);
  border-color:rgba(57,230,195,0.25);
}

.project-timeline span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:16px;
  color:#ffffff;
  font-weight:900;
  background:linear-gradient(135deg,#a855f7,#4f8cff);
  box-shadow:0 14px 32px rgba(79,140,255,0.22);
}

.project-timeline strong{
  color:#ffffff;
  font-size:0.95rem;
}

.project-timeline small{
  color:#39e6c3;
  font-size:1.2rem;
  line-height:1;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
}

.benefit-grid span,
.maintenance-list span{
  position:relative;
  padding:14px 16px 14px 42px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  color:#e5e7eb;
  font-weight:700;
  background:rgba(255,255,255,0.045);
}

.benefit-grid span::before,
.maintenance-list span::before{
  content:"✓";
  position:absolute;
  left:16px;
  color:#39e6c3;
  font-weight:900;
}

.infra-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.infra-grid article{
  min-height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  border:1px solid rgba(168,85,247,0.13);
  border-radius:22px;
  color:#ffffff;
  font-weight:900;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  box-shadow:0 16px 38px rgba(0,0,0,0.22);
  transition:0.3s ease;
}

.infra-grid article:hover{
  transform:translateY(-4px);
  border-color:rgba(168,85,247,0.3);
}

.investment-highlight{
  margin-top:24px;
  padding:24px;
  border-left:4px solid #39e6c3;
  border-radius:20px;
  color:#ffffff;
  font-size:1.02rem;
  line-height:1.75;
  background:rgba(57,230,195,0.08);
}

.mid-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:50px;
  padding:34px;
  border:1px solid rgba(192,132,252,0.22);
  border-radius:30px;
  background:
    radial-gradient(circle at top left, rgba(168,85,247,0.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.026));
  box-shadow:0 28px 74px rgba(0,0,0,0.34);
}

.mid-cta p{
  max-width:720px;
  margin-bottom:8px;
  color:#dbeafe;
  line-height:1.75;
}

.mid-cta h2{
  max-width:760px;
  color:#ffffff;
  font-size:clamp(1.7rem,3vw,2.6rem);
  line-height:1.05;
  letter-spacing:-0.04em;
}

.maintenance-section{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:36px;
  align-items:center;
  padding:90px 0 30px;
}

.maintenance-copy h2{
  margin:18px 0;
  color:#ffffff;
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.02;
  letter-spacing:-0.05em;
}

.maintenance-copy p{
  color:#b8c3d8;
  line-height:1.78;
}

.maintenance-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

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

.solution-card{
  display:flex;
  flex-direction:column;
  min-height:320px;
}

.solution-card p{
  margin-bottom:24px;
}

.solution-card .btn{
  width:fit-content;
  margin-top:auto;
}

.featured-solution{
  border-color:rgba(192,132,252,0.36);
  background:
    radial-gradient(circle at top right, rgba(168,85,247,0.18), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.026));
}

.detailed-solution-grid{
  align-items:stretch;
  gap:20px;
}

.detailed-solution-card{
  min-height:100%;
  padding:28px 22px;
  border-radius:28px;
}

.detailed-solution-card h3{
  margin-bottom:20px;
  font-size:clamp(1.55rem,2.4vw,2.2rem);
  line-height:1.02;
  letter-spacing:-0.04em;
}

.solution-fit,
.solution-includes{
  margin-bottom:20px;
}

.solution-fit strong,
.solution-includes strong{
  display:block;
  margin-bottom:10px;
  color:#d8b4fe;
  font-size:0.76rem;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.solution-fit p{
  margin-bottom:0;
  color:#cbd5e1;
  line-height:1.65;
}

.solution-includes ul{
  display:grid;
  gap:9px;
  margin:0;
  padding:0;
  list-style:none;
}

.solution-includes li{
  position:relative;
  padding-left:25px;
  color:#e5e7eb;
  font-size:0.9rem;
  line-height:1.35;
}

.solution-includes li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#39e6c3;
  font-weight:900;
}

.solution-highlight{
  margin:4px 0 24px;
  padding:16px;
  border:1px solid rgba(57,230,195,0.14);
  border-radius:18px;
  color:#ffffff !important;
  font-weight:750;
  background:rgba(57,230,195,0.07);
}

.solution-badge{
  display:inline-flex;
  width:fit-content;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  color:#ffffff;
  font-size:0.74rem;
  font-weight:900;
  letter-spacing:0.04em;
  background:linear-gradient(135deg,#a855f7,#7c3aed);
  box-shadow:0 12px 28px rgba(168,85,247,0.28);
}

.professional-plan{
  transform:scale(1.035);
  border-color:rgba(168,85,247,0.52);
  box-shadow:
    0 32px 86px rgba(0,0,0,0.42),
    0 0 0 1px rgba(168,85,247,0.12);
}

.professional-plan:hover{
  transform:scale(1.035) translateY(-8px);
}

.premium-plan{
  border-color:rgba(245,196,107,0.34);
  background:
    radial-gradient(circle at top right, rgba(245,196,107,0.16), transparent 38%),
    radial-gradient(circle at bottom left, rgba(168,85,247,0.1), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.078), rgba(255,255,255,0.024));
}

.premium-plan .plan-label,
.premium-plan .solution-fit strong,
.premium-plan .solution-includes strong{
  color:#f5c46b;
}

.premium-plan .solution-includes li::before{
  color:#f5c46b;
}

.premium-badge{
  color:#201304;
  background:linear-gradient(135deg,#fde68a,#f5c46b);
  box-shadow:0 12px 30px rgba(245,196,107,0.24);
}

.plan-compare{
  overflow:hidden;
  margin-top:34px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.022));
  box-shadow:0 24px 68px rgba(0,0,0,0.3);
}

.plan-compare-row{
  display:grid;
  grid-template-columns:1.35fr repeat(3,1fr);
}

.plan-compare-row span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:12px 14px;
  color:#dbe4f0;
  text-align:center;
  border-right:1px solid rgba(255,255,255,0.07);
  border-bottom:1px solid rgba(255,255,255,0.07);
}

.plan-compare-row span:first-child{
  justify-content:flex-start;
  color:#ffffff;
  font-weight:800;
  text-align:left;
}

.plan-compare-row span:last-child{
  border-right:0;
}

.plan-compare-row:last-child span{
  border-bottom:0;
}

.plan-compare-head span{
  color:#ffffff;
  font-weight:900;
  background:
    linear-gradient(135deg, rgba(168,85,247,0.18), rgba(79,140,255,0.08));
}

.plan-compare-head span:nth-child(3){
  background:
    linear-gradient(135deg, rgba(168,85,247,0.34), rgba(79,140,255,0.12));
}

.comparison-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:30px;
}

.comparison-card{
  position:relative;
  overflow:hidden;
  padding:34px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.024));
  box-shadow:0 24px 68px rgba(0,0,0,0.3);
}

.dozedev-card{
  border-color:rgba(57,230,195,0.26);
  background:
    radial-gradient(circle at top right, rgba(57,230,195,0.16), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.026));
}

.generic-card{
  border-color:rgba(248,113,113,0.18);
}

.comparison-label{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 12px;
  border-radius:999px;
  color:#d8b4fe;
  font-size:0.76rem;
  font-weight:900;
  letter-spacing:0.08em;
  text-transform:uppercase;
  background:rgba(168,85,247,0.1);
}

.comparison-card h3{
  max-width:430px;
  margin-bottom:24px;
  color:#ffffff;
  font-size:clamp(1.5rem,2.4vw,2.4rem);
  line-height:1.05;
  letter-spacing:-0.04em;
}

.comparison-card ul{
  display:grid;
  gap:13px;
  padding:0;
  list-style:none;
}

.comparison-card li{
  position:relative;
  padding-left:34px;
  color:#e5e7eb;
  font-weight:750;
}

.generic-card li::before,
.dozedev-card li::before{
  position:absolute;
  left:0;
  top:0;
  font-weight:900;
}

.generic-card li::before{
  content:"✕";
  color:#fb7185;
}

.dozedev-card li::before{
  content:"✓";
  color:#39e6c3;
}

.testimonials-section .investment-heading{
  margin-bottom:30px;
}

.testimonial-carousel{
  position:relative;
  min-height:330px;
}

.testimonial-card{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:72px 1fr auto;
  align-content:center;
  gap:18px;
  padding:34px;
  opacity:0;
  transform:translateY(14px) scale(0.985);
  pointer-events:none;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(168,85,247,0.15), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.026));
  box-shadow:0 26px 74px rgba(0,0,0,0.34);
  transition:0.55s ease;
}

.testimonial-card.active{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}

.testimonial-card img{
  width:72px;
  height:72px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 14px 34px rgba(0,0,0,0.28);
}

.testimonial-card strong,
.testimonial-card span,
.testimonial-card small{
  display:block;
}

.testimonial-card strong{
  color:#ffffff;
  font-size:1.1rem;
}

.testimonial-card span{
  color:#aeb9d6;
}

.testimonial-card small{
  color:#f5c46b;
  font-size:1rem;
}

.testimonial-card p{
  grid-column:1 / -1;
  max-width:860px;
  color:#e5e7eb;
  font-size:clamp(1.2rem,2.3vw,2rem);
  line-height:1.45;
  letter-spacing:-0.03em;
}

.faq-list{
  display:grid;
  gap:14px;
  margin-top:30px;
}

.faq-item{
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.022));
  box-shadow:0 16px 42px rgba(0,0,0,0.18);
  transition:0.32s ease;
}

.faq-item.open{
  border-color:rgba(57,230,195,0.28);
  background:
    radial-gradient(circle at top left, rgba(57,230,195,0.08), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.024));
  box-shadow:0 24px 62px rgba(0,0,0,0.28);
}

.faq-item button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 22px;
  border:0;
  color:#ffffff;
  font:inherit;
  font-weight:900;
  text-align:left;
  background:transparent;
  cursor:pointer;
}

.faq-item button::before{
  content:"?";
  flex:0 0 34px;
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  color:#39e6c3;
  background:rgba(57,230,195,0.1);
}

.faq-item button::after{
  content:"+";
  flex:0 0 34px;
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#d8b4fe;
  background:rgba(168,85,247,0.12);
  transition:0.25s ease;
}

.faq-item.open button::after{
  content:"−";
  color:#ffffff;
  background:linear-gradient(135deg,#a855f7,#7c3aed);
}

.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows 0.38s ease;
}

.faq-item.open .faq-answer{
  grid-template-rows:1fr;
}

.faq-answer p{
  overflow:hidden;
  padding:0 22px;
  color:#b8c3d8;
  line-height:1.75;
}

.faq-item.open .faq-answer p{
  padding-bottom:20px;
}

.btn{
  position:relative;
  overflow:hidden;
}

.btn::after{
  content:"";
  position:absolute;
  width:12px;
  height:12px;
  left:var(--ripple-x,50%);
  top:var(--ripple-y,50%);
  border-radius:50%;
  background:rgba(255,255,255,0.36);
  opacity:0;
  transform:translate(-50%,-50%) scale(1);
  pointer-events:none;
}

.btn.ripple::after{
  animation:rippleSoft 0.55s ease;
}

.pulse-cta{
  animation:pulseCta 3.8s ease-in-out infinite;
}

.investment-final-cta .final-cta-content{
  display:grid;
  grid-template-columns:1.05fr 0.75fr;
  align-items:center;
  gap:34px;
  text-align:left;
  background:
    radial-gradient(circle at 82% 28%, rgba(57,230,195,0.18), transparent 30%),
    radial-gradient(circle at 18% 8%, rgba(168,85,247,0.24), transparent 32%),
    linear-gradient(135deg, rgba(124,58,237,0.34), rgba(15,23,42,0.92) 48%, rgba(6,95,70,0.26));
}

.investment-final-cta .final-cta h2,
.investment-final-cta h2{
  margin-left:0;
  margin-right:0;
}

.investment-final-cta p{
  margin-left:0;
}

.investment-final-cta .final-cta-actions{
  justify-content:flex-start;
}

.cta-illustration{
  position:relative;
  min-height:300px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.028));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.08);
}

.cta-illustration span,
.cta-illustration strong,
.cta-illustration small,
.cta-illustration i{
  position:absolute;
  display:block;
  border-radius:22px;
}

.cta-illustration span{
  width:68%;
  height:46%;
  left:16%;
  top:18%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.05));
}

.cta-illustration strong{
  width:44%;
  height:14px;
  left:24%;
  top:38%;
  background:#ffffff;
}

.cta-illustration small{
  width:34%;
  height:12px;
  left:24%;
  top:48%;
  background:rgba(216,180,254,0.72);
}

.cta-illustration i{
  width:84px;
  height:84px;
  right:18%;
  bottom:18%;
  background:linear-gradient(135deg,#39e6c3,#4f8cff);
  box-shadow:0 18px 42px rgba(57,230,195,0.22);
}

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

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

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

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

@keyframes rippleSoft{
  0%{
    opacity:0.5;
    transform:translate(-50%,-50%) scale(1);
  }

  100%{
    opacity:0;
    transform:translate(-50%,-50%) scale(24);
  }
}

@keyframes pulseCta{
  0%,100%{
    box-shadow:0 14px 30px rgba(168,85,247,0.28);
  }

  50%{
    box-shadow:0 18px 44px rgba(168,85,247,0.42);
  }
}

@media(max-width:980px){

  .investment-hero,
  .maintenance-section{
    grid-template-columns:1fr;
  }

  .investment-visual{
    min-height:360px;
  }

  .investment-grid,
  .investment-stats,
  .benefit-grid,
  .solution-grid,
  .comparison-cards,
  .investment-final-cta .final-cta-content{
    grid-template-columns:1fr;
  }

  .project-timeline{
    grid-template-columns:1fr;
  }

  .project-timeline::before{
    left:39px;
    right:auto;
    top:20px;
    bottom:20px;
    width:1px;
    height:auto;
    background:linear-gradient(180deg, rgba(168,85,247,0.1), rgba(57,230,195,0.6), rgba(168,85,247,0.1));
  }

  .project-timeline article{
    grid-template-columns:56px 1fr auto;
    justify-items:start;
    align-items:center;
    min-height:auto;
    text-align:left;
  }

  .mid-cta{
    align-items:flex-start;
    flex-direction:column;
  }

  .professional-plan,
  .professional-plan:hover{
    transform:none;
  }

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

}

@media(max-width:680px){

  .investment-hero{
    padding:54px 0 70px;
  }

  .investment-actions,
  .investment-actions .btn,
  .solution-card .btn{
    width:100%;
  }

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

  .visual-window{
    min-height:292px;
  }

  .visual-card{
    position:static;
    width:100%;
    margin-top:12px;
  }

  .premium-visual{
    display:grid;
    gap:10px;
  }

  .included-panel{
    padding:34px 22px;
  }

  .infra-grid,
  .maintenance-list{
    grid-template-columns:1fr;
  }

  .testimonial-card{
    grid-template-columns:58px 1fr;
    padding:24px;
  }

  .testimonial-card img{
    width:58px;
    height:58px;
  }

  .testimonial-card small{
    grid-column:1 / -1;
  }

  .cta-illustration{
    min-height:230px;
  }

  .plan-compare{
    overflow-x:auto;
  }

  .plan-compare-row{
    min-width:680px;
  }

}

/* =========================================================
   HOME COMMERCIAL PLANS RESPONSIVE OVERRIDES
========================================================= */

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

@media(max-width:1180px){

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

  .plan-featured{
    transform:none;
  }

}

@media(max-width:640px){

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

}

/* =========================================================
   PLAN BADGE HIERARCHY
========================================================= */

.plan-featured::after{
  content:none !important;
}

.plan-featured-badge,
.plan-premium-badge,
.plan-black-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:center;

  width:fit-content;
  min-height:34px;

  margin:0 auto 24px;
  padding:8px 14px;

  border-radius:999px;

  font-size:0.72rem;
  font-weight:900;
  letter-spacing:0.04em;
  line-height:1;
  white-space:nowrap;
}

.plan-featured-badge{
  color:#ffffff;
  background:linear-gradient(135deg,#a855f7,#7c3aed);
  box-shadow:0 12px 30px rgba(168,85,247,0.28);
}

.plan-premium-badge{
  color:#ffffff;
}

.plan-card .plan-label{
  align-self:center;
  justify-content:center;
  min-height:34px;
  margin:0 auto 24px;
  padding:8px 14px;
  line-height:1;
  white-space:nowrap;
}

.plan-card h3{
  margin-bottom:24px;
  text-align:center;
}

.plan-card h3 small{
  margin-top:10px;
}
