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

:root {
  --white: #FFFFFF;
  --bg: #F6F3EE;
  --bg-soft: #f7f7f7;
  --ink: #111111;
  --ink-mid: #4B4B4B;
  --ink-muted: #8A857E;
  --black: #111111;
  --cream: #F6F3EE;
  --cream-2: #EEE8DF;
  --red: #D92D20;
  --accent: #C75C4A;
  --border: #E7DED3;
  --border-strong: #CABFB2;
  --shadow: 0 30px 80px rgba(17,17,17,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'General Sans', sans-serif;
  background: var(--bg-soft);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5 {
  font-family: 'Satoshi', sans-serif;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 0 3rem;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

nav.scrolled {
  background: rgba(251,248,243,0.72);
  backdrop-filter: blur(22px);
  border-bottom-color: rgba(17,17,17,0.06);
  box-shadow: 0 18px 50px rgba(17,17,17,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  height: 30px;
  width: auto;
}
.nav-logo .brand-divider {
  width: 1px;
  height: 22px;
  background: rgba(17,17,17,0.16);
}
.nav-logo .invoice-logo {
  height: 22px;
}

.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  font-size: 1rem; font-weight: 400; color: var(--ink-mid);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink); color: var(--white) !important;
  padding: 0.58rem 1.2rem; border-radius: 100px;
  font-size: 1rem !important; font-weight: 400 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #222 !important; color: var(--white) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  padding: 0 3rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
  /* border-bottom: 1px solid var(--border); */
  background: radial-gradient(circle at 12% 0%, rgb(255 255 255 / 16%), #85858500 34%), linear-gradient(135deg, #ffffff 0%, #F1E9DE 100%);
}

/* pink glow top-left — exactly like Kapta */
.hero::before {
  content: '';
  position: absolute;
  inset: auto -12% -28% auto;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(17,17,17,0.09) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  align-items: end; gap: 5rem;
  padding: 9rem 0 4.5rem;
  position: relative; z-index: 1;
}

.hero h1 {
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: var(--ink);
  margin-bottom: 0;
  max-width: 860px;
}

.hero h1 .accent { color: var(--ink); opacity: 0.48; }

.hero-right {
  display: flex; flex-direction: column; gap: 2rem;
  align-self: end; padding-bottom: 0.4rem;
  max-width: 420px;
}

.hero-desc {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-mid);
  line-height: 1.85;
}

.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--ink); color: var(--white);
  font-family: 'General Sans', sans-serif; font-size: 1rem; font-weight: 500;
  padding: 0.9rem 1.55rem; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 16px 34px rgba(17,17,17,0.12);
}
.btn-primary:hover { background: #222222; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--ink-mid); font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: color 0.2s;
}
.btn-secondary:hover { color: var(--ink); }
.btn-secondary i { font-size: 0.68rem; transition: transform 0.2s; }
.btn-secondary:hover i { transform: translateX(3px); }

.hero-stats {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 3rem;
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 28px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

.hero-stats > div {
  padding: 1rem;
  border-radius: 18px;
  
}

.stat-val {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
}

/* ── SHARED ── */
.section { padding: 7rem 3rem; background: var(--bg-soft); }
.inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--cream); }

.label {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300; letter-spacing: -0.065em; line-height: 0.98;
  color: var(--ink);
}

/* ── FEATURES ── */
.feat-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: end; margin-bottom: 4.5rem;
}
.feat-head-desc { font-size: 0.92rem; color: var(--ink-mid); line-height: 1.85; align-self: end; }

  .feat-grid {
  position: relative;
}

.feat-grid::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 280px;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(90deg, rgba(251,248,243,0), var(--bg-soft));
}

  .feat-grid.owl-carousel .owl-stage {
    display: flex;
  }

  .feat-grid.owl-carousel .owl-item {
    display: flex;
  }

  .feat-grid.owl-carousel .owl-item .feat {
    width: 100%;
  }

.feat {
  min-height: 280px;
  padding: 2.3rem;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255,255,255,0.58);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feat:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feat-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; margin-bottom: 1.6rem;
  transition: background 0.2s;
}
.feat:hover .feat-icon { background: #333; }

.feat h3 { font-size: 1.08rem; font-weight: 700; color: var(--ink); margin-bottom: 0.65rem; letter-spacing: -0.03em; }
.feat p { font-size: 0.84rem; color: var(--ink-muted); line-height: 1.8; }

.feat-grid .owl-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 1rem;
}

.feat-grid .owl-nav button.owl-prev,
.feat-grid .owl-nav button.owl-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink) !important;
  color: var(--white) !important;
  font-size: 0.82rem !important;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}

.feat-grid .owl-nav button.disabled {
  opacity: 0.22;
  cursor: default;
}

.feat-grid .owl-nav button.disabled:hover {
  background: var(--ink) !important;
  transform: none;
}

.feat-grid .owl-nav button.owl-prev:hover,
.feat-grid .owl-nav button.owl-next:hover {
  background: #444 !important;
  transform: translateY(-1px);
}

.feat-grid .owl-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: -2.05rem;
  min-height: 38px;
  align-items: center;
}

.feat-grid button.owl-dot span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(17,17,17,0.18);
}

.feat-grid button.owl-dot.active span {
  background: var(--ink);
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: rgba(17,17,17,0.12);
  z-index: 0;
}

.step {
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}
.step:last-child { border-bottom: none; }

.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(17,17,17,0.14);
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
  letter-spacing: -0.04em;
}
.step p {
  font-size: 0.84rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

.step-card {
  padding: 1.65rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.58);
  min-height: 178px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

/* ── PRICING ── */
/* PRICING - REPLACED */
.pricing-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 4.5rem;
  align-items: stretch;
}

.plan {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78)),
    radial-gradient(circle at 100% 0%, rgba(217,45,32,0.08), transparent 36%);
  box-shadow: 0 34px 90px rgba(17,17,17,0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  display: flex;
  flex-direction: column;
}

.plan:hover {
  transform: translateY(-5px);
  border-color: rgba(17,17,17,0.16);
  box-shadow: 0 42px 110px rgba(17,17,17,0.13);
}

.plan.featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(217,45,32,0.34), transparent 42%),
    linear-gradient(145deg, rgba(17,17,17,0.98), rgba(17,17,17,0.91));
  border-color: rgba(17,17,17,0.95);
  color: var(--white);
}

.plan.featured::before {
  content: '';
  position: absolute;
  width: 540px;
  height: 540px;
  right: -260px;
  top: -260px;
  background: radial-gradient(circle, rgba(217,45,32,0.42), transparent 67%);
  pointer-events: none;
}

.plan.featured::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

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

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 40px;
}

.plan-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.plan-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,17,17,0.055);
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.plan.featured .plan-icon {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.plan-label {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

.plan.featured .plan-label { color: var(--white); }

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 800;
  color: #444;
  background: #e7e7e7;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0;
  flex-shrink: 0;
}

.plan.featured .plan-badge {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.plan-name {
  font-size: clamp(2.6rem, 4vw, 4.15rem);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.98;
  color: rgba(17,17,17,0.46);
  margin-bottom: 30px;
  max-width: 560px;
}

.plan.featured .plan-name { color: rgba(255,255,255,0.58); }

.plan-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: auto;
}

.plan-price-block {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 1.35rem;
  min-width: 0;
}

.plan-price-line {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0.28rem;
  color: var(--ink);
  white-space: nowrap;
  min-width: 0;
}

.plan.featured .plan-price-line { color: var(--white); }

.plan-price-prefix {
  display: none;
}

.plan.featured .plan-price-prefix { color: rgba(255,255,255,0.62); }

.plan-currency {
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  font-weight: 400;
  color: currentColor;
}

.plan-amount {
  font-size: clamp(4rem, 6.2vw, 5.5rem);
  font-weight: 300;
  line-height: 0.84;
  color: currentColor;
}

.plan-period {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: currentColor;
  font-weight: 400;
}

.plan-note,
.plan-divider,
.plan-items { display: none; }

.plan-info-box {
  background: rgba(246,243,238,0.78);
  border: 1px solid rgba(17,17,17,0.06);
  border-radius: 24px;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.35rem;
  min-width: 0;
}

.plan.featured .plan-info-box {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.09);
}

.plan-info-head {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 0;
}

.plan-info-text {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.48;
  color: var(--ink);
  max-width: 100%;
}

.plan.featured .plan-info-text { color: rgba(255,255,255,0.86); }

.plan-info-logo {
  height: 17px;
  width: auto;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.plan.featured .plan-info-logo { filter: brightness(0) invert(1); }

.plan-cta,
.plan-info-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  font-family: 'General Sans', sans-serif;
}

.plan-cta {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 18px 40px rgba(17,17,17,0.16);
}

.plan.featured .plan-cta {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.plan-info-cta {
  width: 100%;
  min-height: 50px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(17,17,17,0.1);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.plan.featured .plan-info-cta {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}

.plan-cta i,
.plan-info-cta i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  font-size: 0.72rem;
}

.plan.featured .plan-cta i,
.plan-info-cta i { background: rgba(17,17,17,0.08); }

.plan.featured .plan-info-cta i { background: rgba(255,255,255,0.12); }

.plan-cta:hover,
.plan-info-cta:hover { transform: translateY(-1px); }
.plan-cta:hover { background: #222222; color: var(--white); }
.plan-info-cta:hover { border-color: rgba(17,17,17,0.18); box-shadow: 0 12px 28px rgba(17,17,17,0.08); }
.plan.featured .plan-info-cta:hover { border-color: rgba(255,255,255,0.2); box-shadow: none; }

/* ── CTA ── */
.cta-section {
  /* border-top: 1px solid var(--border); */
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -220px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(217,45,32,0.36) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 4rem;
  position: relative; z-index: 1;
}

.cta-heading {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.98;
  color: var(--ink);
}
.cta-heading span { color: #777; }

.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.cta-sub { font-size: 0.8rem; color: rgba(255,255,255,0.48); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.6rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--bg);
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.foot-logo img {
  display: block;
  height: 24px;
  width: auto;
}
.foot-logo .brand-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.18);
}
.foot-logo .invoice-logo {
  height: 20px;
  opacity: 0.62;
}

footer p { font-size: 0.85rem; color: var(--black); }

/* ── REVEAL ── */
.r { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.r.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (min-width: 901px) and (max-width: 1180px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .plan { min-height: auto; }
  .plan-price-block { grid-template-columns: 1fr auto; align-items: end; }
  .plan-cta { width: auto; min-width: 260px; }
}

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; height: 68px; }
  .nav-links { display: none; }
  .hero { padding: 0 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 7.5rem; }
  .section { padding: 5rem 1.5rem; }
  .feat-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 1rem; }
  .process-grid::before { top: 0; bottom: 0; left: 34px; right: auto; width: 1px; height: auto; }
  .step { display: grid; grid-template-columns: 68px 1fr; align-items: start; gap: 1rem; }
  .step-card { min-height: auto; }
  .pricing-layout { grid-template-columns: 1fr; gap: 1.25rem; }
  .plan-body { display: flex; flex-direction: column; align-items: stretch; }
  .plan-info-text { max-width: 100%; }
  .plan { min-height: auto; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-right { align-items: flex-start; }
  .cta-section { padding: 5rem 1.5rem; }
  footer { padding: 1.5rem; }
}

@media (max-width: 580px) {
  .hero h1 { font-size: 3rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; padding: 0.75rem; }
  .stat-val { font-size: 1.05rem; }
  .stat-lbl {
    font-size: 0.68rem;
    line-height: 1.35;
  }
  .plan { padding: 1.45rem; border-radius: 24px; min-height: auto; }
  .plan-top { align-items: flex-start; flex-direction: column; gap: 1rem; margin-bottom: 2.4rem; }
  .plan-name { font-size: 2.2rem; margin-bottom: 2.5rem; max-width: 100%; }
  .plan-price-line { gap: 0.24rem; white-space: nowrap; }
  .plan-price-prefix { font-size: 0.9rem; }
  .plan-currency { font-size: 1.45rem; }
  .plan-amount { font-size: 3.15rem; }
  .plan-period { font-size: 0.9rem; }
  .plan-info-box { padding: 1.25rem; min-height: auto; }
  .plan-info-head { flex-direction: column-reverse; gap: 1rem; }
  .plan-body { gap: 1.25rem; }
  .plan-price-block { grid-template-columns: 1fr; gap: 1.25rem; }
  .plan-cta { min-width: 0; }
}

/*SOBRE PROBLEMAS*/
#issuezero {
  padding: 80px 0;
  background: url('../img/performace-banner.webp');
  background-size: cover;
  background-position: center center;
  height: 100vh;
}
#issuezero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#issuezero h4 {
  color:#999;
  margin-bottom: 20px;
}
#issuezero h2 {
  margin-bottom: 0px;
  color: white;
}
#issuezero p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0;
}
#issuezero .card-sucess {
  background: #000000ad;
  padding: 12px 30px;
  border-radius: 30px;
}
#issuezero .card-sucess h1 {
  color: white;
  font-size: 2rem;
  text-align: right;
  font-family: 'Satoshi-Regular';
}
#issuezero .card-sucess h3 {
  color: white;
  font-weight: 300;
  font-size: 1.30rem;
}


#issueone {
  padding: 80px 0;
  background: url('../img/userexperience-banner.webp');
  background-size: cover;
  background-position: center center;
  height: 100vh;
}
#issueone .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#issueone h4 {
  color:#f4f4f4;
  margin-bottom: 20px;
}
#issueone h2 {
  margin-bottom: 0px;
  color: #161616;
}
#issueone p {
  color: #161616;
  font-size: 1.1rem;
  margin-bottom: 0;
}
#issueone .card-sucess {
  background: #ffffff96;
  padding: 12px 30px;
  border-radius: 30px;
}
#issueone .card-sucess h1 {
  color: #161616;
  font-size: 2rem;
  text-align: right;
  font-family: 'Satoshi-Regular';
}
#issueone .card-sucess h3 {
  color: #161616;
  font-weight: 300;
  font-size: 1.30rem;
}

#issuezero.three {
  padding: 80px 0;
  background: url('../img/traffic-banner.webp');
  background-size: cover;
  background-position: center center;
  height: 100vh;
}
#issueone.four {
  padding: 80px 0;
  background: url('../img/convertion-banner.webp');
  background-size: cover;
  background-position: center center;
  height: 100vh;
}

/*SOBRE PROBLEMAS*/

  .container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
  }

  .row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
  }

  .align-items-center {
    align-items: center;
  }

  .align-items-end {
    align-items: flex-end;
  }

  .ml-auto {
    margin-left: auto;
  }

  .py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .mb-0 {
    margin-bottom: 0;
  }

  .col-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  @media (min-width: 768px) {
    .col-md-3 {
      flex: 0 0 25%;
      max-width: 25%;
    }

    .col-md-4 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }

    .col-md-5 {
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }

    .col-md-9 {
      flex: 0 0 75%;
      max-width: 75%;
    }

    .col-md-12 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }

  @media (max-width: 767px) {
    .container {
      width: min(100% - 32px, 1180px);
    }

    .ml-auto {
      margin-left: 0;
    }
  }

  

  .card-sucess {
    width: 100%;
    padding: 1.35rem;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(17,17,17,0.08);
    box-shadow: 0 22px 60px rgba(17,17,17,0.08);
  }

  .card-sucess img {
    display: block;
    max-width: 100px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  

  @media (max-width: 767px) {
    #issuezero,
    #issueone {
      padding: 4rem 0;
    }

    #issuezero h2,
    #issueone h2 {
      margin-bottom: 1.3rem;
    }

    .card-sucess {
      margin-top: 1.8rem;
      padding: 1.1rem;
    }
  }

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(17,17,17,0.58);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.75;
}

@media (max-width: 580px) {
  .footer-links {
    gap: 0.8rem;
    flex-direction: column;
    align-items: center;
  }
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-content {
  width: 100%;
  max-width: 760px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 24px;
  padding: 1.2rem 1.35rem;
  box-shadow: 0 24px 60px rgba(17,17,17,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
  color: #111111;
}

.cookie-text p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(17,17,17,0.64);
  max-width: 520px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: #111111;
  color: #FFFFFF;
}

.cookie-btn-secondary {
  background: rgba(17,17,17,0.06);
  color: #111111;
}

@media (max-width: 680px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    justify-content: center;
  }
}