:root {
  --bg: #151515;
  --bg-deep: #0e0e0f;
  --panel: #242424;
  --panel-soft: #1b1b1c;
  --text: #f7f7f7;
  --muted: #cacaca;
  --red: #d8212a;
  --red-dark: #a9161d;
  --line: #383838;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Courier New", Courier, monospace;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0.035) 50%, rgba(0, 0, 0, 0.08) 50%);
  background-size: 100% 4px;
  mix-blend-mode: overlay;
  opacity: 0.32;
  animation: scanlineDrift 7s linear infinite;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #292929;
  border-top: 1px solid #747474;
  border-bottom: 1px solid #171717;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.brand:hover {
  filter: drop-shadow(0 0 10px rgba(216, 33, 42, 0.7));
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--red);
  border: 2px solid var(--red);
  font-size: 1.35rem;
  line-height: 1;
  animation: redPulse 1.8s ease-in-out infinite;
}

.brand-text {
  color: #fff;
  font-size: 1.1rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a,
.mobile-nav a,
.site-footer a {
  position: relative;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active,
.site-footer a:hover {
  color: var(--red);
  text-shadow: 0 0 14px rgba(216, 33, 42, 0.78);
}

.desktop-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.mobile-nav a:hover::after,
.mobile-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  place-items: center;
  border: 1px solid #6f6f6f;
  background: #202020;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.menu-toggle:hover {
  border-color: var(--red);
  box-shadow: 0 0 18px rgba(216, 33, 42, 0.35);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

.menu-toggle span + span {
  margin-top: 7px;
}

.mobile-nav {
  display: none;
}

.section-shell {
  padding: clamp(56px, 7vw, 90px) 0;
} 

.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(216, 33, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 33, 42, 0.04) 1px, transparent 1px),
    var(--bg-deep);
  background-size: 46px 46px;
  animation: gridShift 18s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: textBlink 2.4s ease-in-out infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.section-heading h2,
.contact-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
}

h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.02rem;
}

.hero-copy p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #8c8c8c;
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #fff;
  box-shadow: 0 0 22px rgba(216, 33, 42, 0.3);
}

.button:hover::before {
  transform: translateX(120%);
}

.button-primary {
  border-color: var(--red);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-ghost {
  background: #151515;
}

.terminal-card {
  position: relative;
  padding: 54px 28px 28px;
  border: 1px solid var(--red);
  background: var(--panel);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  animation: borderBlink 2.8s ease-in-out infinite;
}

.terminal-card:hover {
  transform: translateY(-4px);
  border-color: #ff4850;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34), 0 0 28px rgba(216, 33, 42, 0.18);
}

.terminal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 48%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 0.28s ease, transform 0.55s ease;
}

.terminal-card:hover::after {
  opacity: 1;
  transform: translateX(18%);
}

.terminal-controls {
  position: absolute;
  top: 20px;
  left: 22px;
  display: flex;
  gap: 8px;
}

.terminal-controls span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red);
  animation: redPulse 1.35s ease-in-out infinite;
}

.terminal-controls span:nth-child(2) {
  animation-delay: 0.18s;
}

.terminal-controls span:nth-child(3) {
  animation-delay: 0.36s;
}

.terminal-card p {
  color: #fff;
  animation: terminalTextPulse 3.4s ease-in-out infinite;
}

.terminal-card p:nth-of-type(2) {
  animation-delay: 0.25s;
}

.terminal-card p:nth-of-type(3) {
  animation-delay: 0.5s;
}

.terminal-card p:nth-of-type(4) {
  animation-delay: 0.75s;
}

.terminal-card p:last-child {
  margin-bottom: 0;
}

.cursor-line span {
  display: inline-block;
  width: 10px;
  height: 1.1em;
  margin-left: 4px;
  background: #fff;
  transform: translateY(3px);
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.split-section,
.articles-section {
  background: var(--bg);
}

.split-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.icon-stack {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.icon-stack h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.tech-icon {
  position: relative;
  width: 92px;
  height: 92px;
}

.monitor-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 12px solid var(--red);
  border-radius: 50%;
  animation: redPulse 1.8s ease-in-out infinite;
}

.monitor-icon::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 12px;
  right: -9px;
  bottom: 8px;
  background: var(--red);
  transform: rotate(45deg);
  transform-origin: center;
  animation: iconNudge 1.8s ease-in-out infinite;
}

.diagnostic-section {
  background: var(--bg);
  padding-top: clamp(78px, 9vw, 112px);
}

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

.diagnostic-icon-stack {
  gap: 24px;
}

.magnifier-icon::before {
  content: "";
  position: absolute;
  inset: 4px 20px 20px 4px;
  border: 12px solid var(--red);
  border-radius: 50%;
  animation: redPulse 1.8s ease-in-out infinite;
}

.magnifier-icon::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 12px;
  right: 4px;
  bottom: 10px;
  background: var(--red);
  transform: rotate(45deg);
  transform-origin: center;
  animation: iconNudge 1.8s ease-in-out infinite;
}

.about-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.about-copy {
  padding: 32px 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.caption {
  color: #fff;
  border-left: 4px solid var(--red);
  padding-left: 18px;
  animation: terminalTextPulse 3s ease-in-out infinite;
}

.values-grid {
  display: grid;
  gap: 18px;
}

.small-card {
  min-height: 220px;
}

.small-card strong {
  display: block;
  margin-top: 18px;
  color: var(--red);
}

.services-section {
  background: var(--bg);
}

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

.service-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 286px;
  border: 1px solid var(--red);
  background: var(--panel-soft);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  animation: borderBlink 3.2s ease-in-out infinite;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #ff4850;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28), 0 0 24px rgba(216, 33, 42, 0.16);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.05);
  transition: filter 0.25s ease, transform 0.35s ease;
  animation: imageFlicker 2.9s ease-in-out infinite;
}

.service-card:hover img {
  filter: saturate(1.2) contrast(1.12) drop-shadow(0 0 12px rgba(216, 33, 42, 0.45));
  transform: scale(1.03);
}

.service-card.image-top img {
  object-position: center top;
}

.service-card.image-middle img {
  object-position: center center;
}

.service-card.image-bottom img {
  object-position: center bottom;
}

.service-card div:not(.service-symbol) {
  padding: 28px 24px;
}

.service-card h3 {
  color: var(--red);
  animation: textBlink 2.8s ease-in-out infinite;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.contact-section {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

address {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-style: normal;
}

address strong,
address a {
  color: #fff;
}

address a:hover {
  color: var(--red);
}

.contact-actions-card {
  display: grid;
  gap: 22px;
}

.contact-actions-card p {
  color: var(--muted);
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid #6d6d6d;
  background: #111;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  animation: borderBlink 2.6s ease-in-out infinite;
}

.contact-button:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  background: #181818;
  box-shadow: 0 0 24px rgba(216, 33, 42, 0.22);
}

.contact-button svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  fill: #fff;
  transition: fill 0.18s ease, transform 0.18s ease;
  animation: iconBlink 2s ease-in-out infinite;
}

.contact-button:hover svg {
  fill: var(--red);
  transform: scale(1.08) rotate(-2deg);
}

.contact-button span,
.contact-button strong {
  min-width: 0;
}

.contact-button span {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-button strong {
  color: var(--red);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
  animation: textBlink 2.2s ease-in-out infinite;
}

.site-footer {
  padding: 62px 0 48px;
  color: var(--red);
  background: #151515;
  border-top: 1px solid var(--red);
}

.footer-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  min-height: 270px;
}

.footer-links,
.footer-social {
  display: grid;
  justify-items: center;
}

.footer-links {
  gap: 7px;
  font-size: 0.82rem;
}

.footer-social {
  gap: 12px;
  text-align: center;
  font-size: 0.82rem;
}

.footer-social > span {
  color: var(--red);
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 8px 0;
}

.footer-icons a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.footer-icons svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
  animation: iconBlink 2s ease-in-out infinite;
}

.footer-icons a:hover svg {
  fill: #fff;
  transform: translateY(-2px);
}

.footer-badge {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 174px;
  min-height: 142px;
  color: var(--red);
  text-align: center;
  transform: rotate(-8deg);
  animation: redPulse 2.4s ease-in-out infinite;
}
.footer-badge.engineer-badge {
  width: 240px;
  min-height: 280px;

  color: #ffd500 !important;

  border: 3px solid #ffd500;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,213,0,.06),
      rgba(0,0,0,.92)
    );

  box-shadow:
    0 0 24px rgba(255,213,0,.45),
    0 0 80px rgba(255,213,0,.18);

  animation: engineerGlow 2s infinite;
}
.engineer-badge .badge-icon {
  width: 110px;
  height: 110px;

  margin-bottom: 18px;

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

  border: 6px solid #ffd500;
  border-radius: 50%;

  color: #ffd500;

  font-size: 3rem;
  font-weight: 900;

  text-shadow:
    0 0 14px rgba(255,213,0,.95);

  box-shadow:
    0 0 24px rgba(255,213,0,.45),
    inset 0 0 24px rgba(255,213,0,.18);
}

.engineer-badge strong {
  color: #ffd500 !important;

  font-size: 2rem;

  text-shadow:
    0 0 14px rgba(255,213,0,.95);
}


.footer-badge span,
.footer-badge strong,
.footer-badge em {
  display: block;
  line-height: 1;
}

.footer-badge span,
.footer-badge em {
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 800;
}

.footer-badge strong {
  margin: 3px 0;
  font-size: 1.28rem;
}

.footer-copy {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 26px;
  color: var(--red);
  font-size: 0.82rem;
  text-align: center;
}

.footer-copy p {
  margin: 0;
}

.contact-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--red);
  background: #0f0f0f;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  animation: floatPulse 1.8s ease-in-out infinite;
}

.contact-float:hover {
  background: var(--red);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.reveal-on-scroll,
.terminal-card.reveal-on-scroll {
  transition: opacity 0.62s ease, transform 0.62s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

@keyframes scanlineDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 80px;
  }
}

@keyframes gridShift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 46px 46px, 46px 46px, 0 0;
  }
}

@keyframes redPulse {
  0%,
  100% {
    opacity: 0.76;
    box-shadow: 0 0 0 rgba(216, 33, 42, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 16px rgba(216, 33, 42, 0.75);
  }
}

@keyframes borderBlink {
  0%,
  100% {
    border-color: rgba(216, 33, 42, 0.74);
  }

  50% {
    border-color: rgba(255, 74, 84, 1);
  }
}

@keyframes textBlink {
  0%,
  100% {
    opacity: 0.78;
    text-shadow: 0 0 0 rgba(216, 33, 42, 0);
  }

  48%,
  54% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(216, 33, 42, 0.62);
  }
}

@keyframes terminalTextPulse {
  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 9px rgba(255, 255, 255, 0.2);
  }
}

@keyframes imageFlicker {
  0%,
  100% {
    opacity: 0.86;
  }

  47% {
    opacity: 1;
  }

  50% {
    opacity: 0.72;
  }

  53% {
    opacity: 1;
  }
}

@keyframes iconBlink {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(216, 33, 42, 0.58));
  }
}

@keyframes iconNudge {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(4px, 0);
  }
}

@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(216, 33, 42, 0.42);
  }

  50% {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 0 12px rgba(216, 33, 42, 0);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: #202020;
    transition: max-height 0.25s ease;
  }

  .menu-open .mobile-nav {
    max-height: 520px;
  }

  .mobile-nav a {
    position: relative;
    padding: 15px 18px;
    border-top: 1px solid #353535;
    font-size: 0.86rem;
    font-weight: 800;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .about-grid,
  .article-grid,
  .contact-grid,
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .hero-terminal {
    order: -1;
  }

  .icon-stack {
    justify-items: start;
    text-align: left;
  }

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

  .service-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .footer-panel {
    min-height: auto;
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 26px, var(--max));
  }

  .section-shell {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-text {
    font-size: 1rem;
  }

  h1,
  .section-heading h2,
  .contact-section h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .terminal-card {
    padding: 50px 18px 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    min-height: 210px;
    height: 210px;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .contact-float {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
/* =========================================
   ALERTA CYBER cPANEL / PLESK
========================================= */

.hero-alert {
  position: relative;

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

  margin-top: 36px;
  margin-bottom: 34px;

  padding: 22px 26px;

  width: fit-content;
  max-width: 100%;

  border: 2px solid #ffd500;
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(255,213,0,.12),
      rgba(0,0,0,.92)
    );

  overflow: visible;

  box-shadow:
    0 0 18px rgba(255,213,0,.25),
    0 0 50px rgba(255,213,0,.10);

  animation: cyberPulse 2s infinite;
}

.hero-alert::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0 12px,
      rgba(255,213,0,.04) 12px 24px
    );

  pointer-events: none;
}

.hero-alert-icon {
  position: relative;
  z-index: 2;

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

  min-width: 74px;
  height: 74px;

  border: 3px solid #ffd500;
  border-radius: 50%;

  color: #ffd500;

  font-size: 2.3rem;
  font-weight: bold;

  text-shadow:
    0 0 12px rgba(255,213,0,.9);

  box-shadow:
    0 0 18px rgba(255,213,0,.35),
    inset 0 0 18px rgba(255,213,0,.15);

  animation: blinkAlert 1s infinite;
}

.hero-alert-content {
  position: relative;
  z-index: 2;
}

.hero-alert-top {
  display: block;

  margin-bottom: 10px;

  color: #ffd500;

  font-size: .82rem;
  font-weight: 800;

  letter-spacing: 1px;

  text-shadow:
    0 0 10px rgba(255,213,0,.7);
}



.hero-alert-title::after {
  content: "";

  position: absolute;
  top: 0;
  right: -6px;

  width: 3px;
  height: 100%;

  background: #ffd500;

  animation: cursorPanel .8s infinite;
}

.hero-alert-text {
  color: #ffffff;

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

  line-height: 1.8;

  letter-spacing: 1px;

  opacity: 0;

  animation:
    fadeCyber .8s ease forwards;

  animation-delay: 3s;
}

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



@keyframes cursorPanel {
  0%,50% {
    border-color: #ffd500;
  }

  51%,100% {
    border-color: transparent;
  }
}

@keyframes cyberPulse {
  0%,100% {
    box-shadow:
      0 0 18px rgba(255,213,0,.18),
      0 0 40px rgba(255,213,0,.08);
  }

  50% {
    box-shadow:
      0 0 30px rgba(255,213,0,.38),
      0 0 70px rgba(255,213,0,.16);
  }
}

@keyframes blinkAlert {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: .45;
  }
}

@keyframes fadeCyber {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================================
   TYPING EFFECT FINAL
========================================= */

.hero-alert-title {
  position: relative;

  display: inline-block;

  margin-bottom: 14px;

  color: #ffd500;

  font-size: 1.5rem;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 1px;

  white-space: nowrap;
  overflow: hidden;

  width: 0;

  border-right: 3px solid #ffd500;

  text-shadow:
    0 0 12px rgba(255,213,0,.95),
    0 0 26px rgba(255,213,0,.45);

  animation:
    typingPanel 4s steps(16,end) infinite,
    cursorPanel .8s step-end infinite;
}

@keyframes typingPanel {

  0% {
    width: 0;
  }

  40% {
    width: 16ch;
  }

  60% {
    width: 16ch;
  }

  100% {
    width: 0;
  }

}
/* =========================================
   ENGINEER CENTER BADGE
========================================= */

.engineer-badge {
  position: relative;

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

  width: 220px;
  height: 260px;

  padding: 26px;

  border: 3px solid #ffd500;
  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,213,0,.05),
      rgba(0,0,0,.92)
    );

  transform: rotate(-7deg);

  overflow: hidden;

  box-shadow:
    0 0 18px rgba(255,213,0,.45),
    0 0 70px rgba(255,213,0,.15);

  animation:
    engineerGlow 2s infinite;
}

.engineer-badge::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0 10px,
      rgba(255,213,0,.04) 10px 20px
    );
}

.badge-icon {
  position: relative;
  z-index: 2;

  width: 110px;
  height: 110px;

  margin-bottom: 20px;

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

  border: 6px solid #ffd500;
  border-radius: 50%;

  color: #ffd500;

  font-size: 3rem;
  font-weight: 900;

  text-shadow:
    0 0 12px rgba(255,213,0,.9);

  box-shadow:
    0 0 20px rgba(255,213,0,.45),
    inset 0 0 20px rgba(255,213,0,.15);
}

.engineer-badge span,
.engineer-badge strong,
.engineer-badge em {
  position: relative;
  z-index: 2;

  font-style: normal;

  text-transform: uppercase;

  text-shadow:
    0 0 10px rgba(255,213,0,.9);
}

.engineer-badge span {
  margin-bottom: 8px;

  color: #ffffff;

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

  letter-spacing: 2px;
}

.engineer-badge strong {
  color: #ffd500;

  font-size: 2.2rem;
  font-weight: 900;

  letter-spacing: 3px;

  line-height: 1;
}

.engineer-badge em {
  margin-top: 8px;

  color: #ffffff;

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

  letter-spacing: 4px;
}

@keyframes engineerGlow {

  0%,100% {
    box-shadow:
      0 0 18px rgba(255,213,0,.35),
      0 0 60px rgba(255,213,0,.12);
  }

  50% {
    box-shadow:
      0 0 26px rgba(255,213,0,.55),
      0 0 90px rgba(255,213,0,.22);
  }

}
/* =========================================
   FORCE ENGINEER BADGE YELLOW
========================================= */

.footer-badge.engineer-badge {
  width: 240px !important;
  min-height: 280px !important;

  border: 3px solid #ffd500 !important;
  border-radius: 18px !important;

  background:
    linear-gradient(
      180deg,
      rgba(255,213,0,.06),
      rgba(0,0,0,.92)
    ) !important;

  color: #ffd500 !important;

  box-shadow:
    0 0 24px rgba(255,213,0,.45),
    0 0 80px rgba(255,213,0,.18) !important;

  animation: engineerGlow 2s infinite !important;
}

.footer-badge.engineer-badge .badge-icon {
  width: 110px !important;
  height: 110px !important;

  margin-bottom: 18px !important;

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

  border: 6px solid #ffd500 !important;
  border-radius: 50% !important;

  color: #ffd500 !important;

  font-size: 3rem !important;
  font-weight: 900 !important;

  text-shadow:
    0 0 14px rgba(255,213,0,.95) !important;

  box-shadow:
    0 0 24px rgba(255,213,0,.45),
    inset 0 0 24px rgba(255,213,0,.18) !important;
}

.footer-badge.engineer-badge span {
  color: #ffffff !important;

  font-size: 1rem !important;
  font-weight: 700 !important;

  letter-spacing: 2px !important;
}

.footer-badge.engineer-badge strong {
  color: #ffd500 !important;

  font-size: 2rem !important;
  font-weight: 900 !important;

  text-shadow:
    0 0 14px rgba(255,213,0,.95) !important;
}

.footer-badge.engineer-badge em {
  color: #ffffff !important;

  font-size: 1.1rem !important;
  font-style: normal !important;

  letter-spacing: 4px !important;
}

@keyframes engineerGlow {

  0%,100% {
    box-shadow:
      0 0 20px rgba(255,213,0,.35),
      0 0 70px rgba(255,213,0,.12);
  }

  50% {
    box-shadow:
      0 0 30px rgba(255,213,0,.55),
      0 0 100px rgba(255,213,0,.22);
  }

}
/* remove círculo vermelho antigo */
.engineer-badge::after {
  display: none !important;
}

.footer-badge::before {
  display: none !important;
}

/* hover premium */
.engineer-badge:hover {
  transform:
    rotate(-7deg)
    scale(1.04);

  transition: .3s ease;
}