:root {
  --black: #111214;
  --black-2: #191a1d;
  --graphite: #2d2f33;
  --gray: #6d7178;
  --light-gray: #f2f3f5;
  --white: #ffffff;
  --red: #dc3438;
  --red-dark: #b9272b;
  --line: rgba(17, 18, 20, 0.13);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--light-gray);
  line-height: 1.55;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.eyebrow,
.brand,
.hero-badge,
.stat strong,
.step strong,
.field-logo {
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: var(--black);
  margin-bottom: 18px;
}

.section-title span {
  color: var(--red);
}

.section-lead {
  max-width: 720px;
  color: #4c5057;
  font-size: 1.04rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: 0.25s ease;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(220, 52, 56, 0.27);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(17, 18, 20, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  min-width: fit-content;
}

.brand-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: 0.2s ease;
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

/* Menu Styles */
.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu>li {
  list-style: none;
  position: relative;
  padding: 29px 0;
}

.menu>li>a {
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu>li>a:hover {
  color: var(--white);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--black-2);
  min-width: 240px;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  display: block;
  padding: 12px 24px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s;
  font-size: 0.75rem;
}

.dropdown a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 28px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRightFade {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 78px;
  padding-bottom: 0 !important;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: url('../images/bg/bg-home.jpg') center bottom / cover no-repeat;
  color: var(--white);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  align-items: stretch;
  gap: 42px;
  min-height: calc(100vh - 78px);
  padding: 32px 0 0;
}

.hero-copy {
  max-width: 620px;
  align-self: center;
  padding-bottom: 72px;
  opacity: 0;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px 18px 28px 28px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.08em;
  margin-bottom: 44px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  max-width: 690px;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-figure {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--black);
  z-index: 2;
  opacity: 0;
  animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
}

.hero-guard-img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 78px);
  margin-bottom: 0;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.45));
}

.hero-note {
  position: absolute;
  left: -20px;
  bottom: 80px;
  width: 210px;
  padding: 18px 20px;
  background: rgba(17, 18, 20, 0.92);
  color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  z-index: 3;
  opacity: 0;
  animation: slideRightFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1s;
}

.hero-note strong {
  display: block;
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-note span {
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.84;
}

section {
  position: relative;
  padding: 110px 0;
}

.diagonal-white,
.diagonal-dark {
  overflow: hidden;
}

.diagonal-white::before,
.diagonal-dark::before {
  content: "";
  position: absolute;
  width: 36vw;
  height: 36vw;
  border: 22px solid rgba(17, 18, 20, 0.06);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 0;
}

.diagonal-white::before {
  right: -18vw;
  top: -10vw;
}

.diagonal-dark {
  background: var(--black);
  color: var(--white);
}

.diagonal-dark::before {
  left: -18vw;
  bottom: -16vw;
  border-color: rgba(255, 255, 255, 0.08);
}

.diagonal-dark .section-title {
  color: var(--white);
}

.diagonal-dark .section-lead {
  color: rgba(255, 255, 255, .72);
}

.split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

/* Hidden by default — shown only on tablet breakpoint */
.tablet-break {
  display: none;
}

.about-section {
  background: url('../images/bg/bg-about.jpg') center center / cover no-repeat;
  position: relative;
  padding: 80px 0;
}

.about-section::before {
  display: none !important;
}

.mvv-section {
  background: url('../images/bg/bg-about-2.jpg') center center / cover no-repeat;
  position: relative;
  padding: 130px 0;
  /* Aumentado espaçamento superior e inferior */
}

.mvv-section::before {
  display: none !important;
}

.diferenciais-section {
  background: var(--light-gray);
  position: relative;
  padding-top: 100px;
  padding-bottom: 0px;
}

.diferenciais-section::before {
  display: none !important;
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.culture-list {
  list-style: none;
  counter-reset: custom-counter;
  display: flex;
  flex-direction: column;
}

.culture-list li {
  counter-increment: custom-counter;
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 18, 20, 0.25);
}

.culture-list li::before {
  content: counter(custom-counter);
  color: var(--red);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-right: 22px;
  min-width: 34px;
}

.diferenciais-figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: end;
}

.diferenciais-figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

.about-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-guard-full {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
  display: block;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stat {
  padding: 22px;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .05);
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.06em;
}

.stat span {
  color: var(--gray);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mvv-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.mvv-left {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.mvv-right {
  display: flex;
  flex-direction: column;
}

.mvv-item {
  display: flex;
  flex-direction: column;
}

.mvv-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.mvv-header img {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.mvv-header h3 {
  color: var(--red);
  font-size: 2.8rem;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0;
}

.mvv-item p {
  color: #111214;
  font-size: 1.1rem;
  line-height: 1.6;
}

.mvv-divider {
  display: none;
}

.mvv-right ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mvv-right li {
  color: #111214;
  font-size: 1.1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.mvv-right li::before {
  content: "•";
  color: var(--red);
  font-weight: bold;
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: -4px;
}

.mvv-right li strong {
  color: var(--black);
}

@media (max-width: 991px) {
  .mvv-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.presence-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.map-card {
  position: relative;
  background: #f0f1f2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
}

.map-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.presenca-section {
  padding: 100px 0;
}

.state-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.state-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  font-weight: 800;
  font-size: .86rem;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 54px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  isolation: isolate;
  padding: 30px 26px;
  min-height: 276px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .07);
  overflow: hidden;
  transition: .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -45% auto;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(220, 52, 56, .08);
  border-radius: 50%;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 58px;
  height: 58px;
  border: 3px solid var(--black);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.18rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 18px;
}

.service-card a {
  color: var(--red);
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.feature-item {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 20px;
}

.feature-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-item span {
  color: rgba(255, 255, 255, .64);
  font-size: .9rem;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.segment {
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px 14px;
  font-weight: 900;
  color: var(--graphite);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .045);
}

.segment span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.client-logo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07), 0 1px 4px rgba(0, 0, 0, .04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 24px 48px rgba(220, 52, 56, .12), 0 8px 20px rgba(0, 0, 0, .08);
  border-color: rgba(220, 52, 56, .2);
}

.client-logo:hover img {
  transform: scale(1.06);
}

.field-section {
  background: linear-gradient(0deg, rgba(17, 18, 20, .74), rgba(17, 18, 20, .74)), radial-gradient(circle at 50% 30%, #555 0 16%, #222 17% 100%);
  color: var(--white);
  overflow: hidden;
}

.field-section::before,
.field-section::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 6px;
  background: var(--white);
  transform: rotate(-22deg);
  opacity: .9;
}

.field-section::before {
  left: -8vw;
  top: 90px;
}

.field-section::after {
  right: -7vw;
  bottom: 84px;
}

.field-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.field-logo {
  width: 150px;
  height: 150px;
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 34px 34px 52px 52px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  letter-spacing: .07em;
}

.tech-panel {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 46px;
  position: relative;
  overflow: hidden;
}

.tech-panel::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 260px;
  height: 260px;
  border: 36px solid rgba(220, 52, 56, .16);
  border-radius: 50%;
}

.contratacao-section {
  background-color: var(--black);
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(45deg, rgba(220, 52, 56, 0.05) 0px, rgba(220, 52, 56, 0.05) 1px, transparent 1px, transparent 60px);
  padding: 120px 0;
}

.timeline {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 190px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .055);
}

.step strong {
  display: block;
  color: var(--red);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.08em;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.step p {
  color: var(--gray);
  font-size: .86rem;
}


.clients-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.client-logo {
  min-height: 92px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--gray);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .045);
}

.recognition-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.recognition-card {
  min-height: 250px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff 0 55%, #f1f1f1 55% 100%);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .055);
}

.recognition-card h3 {
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.recognition-card p {
  color: var(--gray);
  font-size: .9rem;
}

.cta-final {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(128deg, transparent 0 52%, rgba(255, 255, 255, .94) 52.2% 100%);
  pointer-events: none;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 54px;
  align-items: center;
}

.cta-final h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.8rem);
  line-height: .95;
  letter-spacing: -0.06em;
  margin-bottom: 22px;
}

.cta-final p {
  color: rgba(255, 255, 255, .74);
  max-width: 520px;
  margin-bottom: 28px;
}

.team-placeholder {
  min-height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(17, 18, 20, .08), rgba(17, 18, 20, .18)), #e8e9eb;
  color: rgba(17, 18, 20, .42);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer h3 {
  color: var(--red);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .72);
  font-size: .94rem;
  display: block;
  margin-bottom: 9px;
}

.social-links a {
  display: inline-block;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, .9);
  transition: 0.2s ease;
  margin-bottom: 0;
}

.social-links a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .52);
  font-size: .82rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
  transition: .25s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Pages Internal Structure */
.page-header {
  padding: 120px 0 60px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 0;
  min-height: 50vh;
}

/* ========================================= */
/* CTA FINAL SECTION (Contato)               */
/* ========================================= */
.cta-final-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 0 !important;
}

/* Desktop: Full width background since the image is already prepared at 1920x1080 */
.cta-bg-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg/bg-fachada.jpg') center center / cover no-repeat;
  z-index: 1;
}

.cta-final-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 480px;
  gap: 60px;
}

/* Content column */
.cta-content {
  padding: 60px 0;
}

.cta-logo {
  width: 120px;
  height: auto;
  margin-bottom: 32px;
  border-radius: 12px;
}

.cta-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-lead {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-tagline {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 36px;
  line-height: 1.4;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Fachada photo — hidden on desktop, visible on mobile */
.cta-photo {
  display: none;
}

.cta-photo img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .3));
}

/* Mobile fachada photo — hidden on desktop */
.cta-mobile-photo {
  display: none;
}

/* ---- Responsive: Mobile CTA ---- */
@media (max-width: 768px) {
  .cta-bg-strip {
    display: none;
  }

  .cta-final-section {
    background: url('../images/bg/bg-about.jpg') center center / cover no-repeat;
  }

  .cta-final-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 18, 20, .75);
    z-index: 0;
  }

  .cta-final-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    max-width: 100%;
    gap: 0;
  }

  .cta-content {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .cta-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-heading {
    color: var(--white);
  }

  .cta-lead {
    color: rgba(255, 255, 255, .75);
  }

  .cta-tagline {
    color: var(--white);
  }

  .cta-actions {
    justify-content: center;
  }

  /* Hide the desktop inline photo */
  .cta-photo {
    display: none;
  }

  /* Show mobile fachada below content */
  .cta-mobile-photo {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 16px 0;
  }

  .cta-mobile-photo img {
    width: 100%;
    max-width: 420px;
    height: auto;
  }
}

/* ========================================= */
/* COMPANIES SECTION (Globall System, etc)   */
/* ========================================= */
.companies-section {
  padding: 110px 0;
  background: var(--white) url('../images/bg/bg-about-2.jpg') center center / cover no-repeat;
  position: relative;
}

.companies-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.companies-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.companies-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company-title {
  color: red !important;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.company-item p {
  color: var(--black);
  line-height: 1.6;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .companies-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========================================= */
/* GENERIC SIDE-BY-SIDE SECTION              */
/* ========================================= */
.side-by-side-section {
  padding: 110px 0;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.side-by-side-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.side-by-side-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.position-relative {
  position: relative;
}

.parceria-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 280px;
  max-width: 80%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  z-index: 3;
  border-radius: 4px;
}

.side-by-side-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.side-by-side-content h2 {
  color: red !important;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.side-by-side-content p {
  color: var(--black);
  line-height: 1.6;
  font-size: 1.15rem;
}

.side-by-side-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.side-by-side-content ul li {
  position: relative;
  padding-left: 24px;
  font-size: 1.15rem;
  color: var(--black);
}

.side-by-side-content ul li::before {
  content: '•';
  color: var(--black);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

.atuacao-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .side-by-side-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .side-by-side-content {
    padding: 24px;
  }

  .atuacao-list-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ========================================= */
/* EM CAMPO SECTION                          */
/* ========================================= */
.em-campo-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--black) url('../images/bg/globall-em-campo.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 100px;
  text-align: center;
}

.em-campo-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.em-campo-title {
  color: var(--white);
  font-size: clamp(2.0rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: none;
  word-wrap: break-word;
}

.em-campo-subtitle {
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

.em-campo-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.nfl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

@media (min-width: 901px) {
  .nfl-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ========================================= */
/* HIGHLIGHTS SECTION (Destaques)            */
/* ========================================= */
.highlights-section {
  position: relative;
  background-color: var(--white);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 !important;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.bg-destaque-1 {
  background-image: url('../images/bg/bg-destaques-01.jpg');
}

.bg-destaque-2 {
  background-image: url('../images/bg/bg-destaques-02.jpg');
}

.bg-destaque-3 {
  background-image: url('../images/bg/bg-destaques-03.jpg');
}

.bg-destaque-4 {
  background-image: url('../images/bg/bg-destaques-04.jpg');
}

.highlights-divider {
  height: 60px;
  background: var(--black);
  width: 100%;
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.highlights-content {
  padding: 80px 0;
}

.highlights-heading {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: red !important;
  line-height: 1.1;
  margin-bottom: 24px;
}

.highlights-content p {
  color: var(--black);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 640px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .highlights-section {
    background-position: left top;
    /* Ajustado para left top para focar na colagem que fica à esquerda na imagem original */
    background-size: cover;
    align-items: flex-end;
    /* Alinha o quadro branco na parte inferior */
    padding-top: 350px !important;
    /* Cria um espaço livre de 350px para ver a imagem de fundo! */
    padding-bottom: 40px !important;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlights-empty {
    display: none;
  }

  .highlights-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    border-radius: 12px;
    margin: 0;
    width: 100%;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 1120px) {
  .menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-open .menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(17, 18, 20, .98);
    padding: 18px 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
    align-items: stretch;
  }

  .mobile-menu-open .menu>li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .mobile-menu-open .menu>li>a {
    padding: 15px 0;
    width: 100%;
    justify-content: space-between;
  }

  .mobile-menu-open .dropdown {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 0 15px 0;
    display: none;
  }

  /* Show dropdown on hover or active class for mobile */
  .mobile-menu-open .menu>li.active .dropdown {
    display: block;
  }

  .mobile-menu-open .menu>li:hover .dropdown {
    display: block;
  }

  .hero::before {
    background: linear-gradient(110deg, rgba(17, 18, 20, 0.98) 0%, rgba(17, 18, 20, 0.98) 62%, rgba(255, 255, 255, 0.96) 62.3%, rgba(255, 255, 255, 0.96) 100%);
  }

  .hero-inner,
  .split,
  .presence-grid,
  .field-grid,
  .culture-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  /* Tablet: about section text overflowing — push up and force line break on title */
  .tablet-break {
    display: block;
  }

  .split .about-text {
    align-self: start;
    padding-top: 40px;
  }

  .split .about-figure,
  .split .mobile-reverse-img {
    order: 2;
  }

  .hero-inner {
    gap: 22px;
    padding: 72px 0 0;
  }

  .hero-figure {
    min-height: 500px;
  }

  .hero-guard-img {
    max-width: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments-grid,
  .timeline,
  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-final::before {
    opacity: .08;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding-bottom: 0 !important;
  }

  .nav {
    height: 68px;
  }

  .mobile-menu-open .menu {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    font-size: .54rem;
  }

  .brand-name {
    font-size: .96rem;
  }

  .hero {
    padding-top: 68px;
  }

  .hero::before {
    background: none;
  }

  .hero-inner {
    min-height: auto;
    padding: 48px 0 0;
  }

  .hero-badge {
    margin-bottom: 30px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
  }

  .hero p {
    font-size: 1rem;
    letter-spacing: .05em;
  }

  .hero-actions {
    display: grid;
  }

  .hero-figure {
    min-height: 390px;
    align-items: flex-end;
  }

  .hero-guard-img {
    max-width: 280px;
  }

  .hero-note {
    display: none;
  }

  .stats-row,
  .mvv-container,
  .services-grid,
  .feature-list,
  .segments-grid,
  .timeline,
  .recognition-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .state-list {
    grid-template-columns: 1fr;
  }

  .about-card,
  .map-card {
    min-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ========================================= */
/* LEVEL 2 ANIMATIONS (ENTRANCE & HOVER)     */
/* ========================================= */

/* --- Entrance Base (Ao abrir a tela) --- */
.reveal-up,
.reveal-fade,
.reveal-scale,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.92);
}

/* Triggered State via JS */
.is-visible {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* Stagger Delays (for lists/grids) */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* --- Hover Effects (Ao passar o mouse) --- */
/* Cards Lifting and Glowing */
.service-card,
.mvv-card,
.step,
.recognition-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-card:hover,
.mvv-card:hover,
.step:hover,
.recognition-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(220, 52, 56, 0.12), 0 12px 24px rgba(0, 0, 0, 0.08) !important;
  z-index: 2;
}

/* Specific Card elements on hover */
.service-icon,
.mvv-icon {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.mvv-card:hover .mvv-icon {
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(220, 52, 56, 0.4);
}

/* Buttons Level 2 Hover (Shine effect) */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(220, 52, 56, 0.4);
  transform: translateY(-3px);
}

/* ========================================= */
/* MOBILE OVERRIDES (Solid BG & White Board) */
/* ========================================= */
@media (max-width: 900px) {

  /* Logo e Nav Adjustments */
  .nav {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-logo-img {
    margin-left: 8px;
  }

  /* Hero Section Adjustments */
  .hero-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  /* Video Expansion */
  .video-container-mobile {
    border-radius: 0 !important;
    border: none !important;
    width: 100vw !important;
    margin-left: -24px !important;
    box-shadow: none !important;
    max-width: none !important;
  }

  .mobile-bg-gray {
    background-image: none !important;
    background-color: #f4f5f7 !important;
  }

  .mobile-bg-black {
    background-image: none !important;
    background-color: #111214 !important;
  }

  .mobile-bg-black .section-title {
    color: var(--white) !important;
  }

  .mobile-bg-black p {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .mobile-white-board {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 30px 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    margin-top: -20px;
    width: 100%;
  }

  .mobile-bg-black .mobile-white-board p {
    color: var(--black) !important;
  }

  .mobile-bg-black .mobile-white-board .section-title {
    color: var(--red) !important;
  }
}

/* ========================================= */
/* SEGMENT ICONS (PAGE HEADER) */
/* ========================================= */
.segments-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.segment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
}

.segment-item i {
  font-size: 2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}

.segment-item span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.segment-item:hover {
  color: var(--white);
  transform: translateY(-5px);
}

.segment-item:hover i {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(220, 52, 56, 0.3);
}

@media (max-width: 768px) {
  .segments-icons {
    gap: 15px;
    margin-top: 30px;
  }

  .segment-item {
    width: calc(33.333% - 15px);
  }

  .segment-item i {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }

  .segment-item span {
    font-size: 0.7rem;
  }
}

/* ========================================= */
/* FAB TOGGLE IMAGE MODE (MOBILE)            */
/* ========================================= */
.fab-toggle-btn {
  display: none;
}

@media (max-width: 768px) {
  .fab-toggle-btn {
    display: flex;
    position: fixed;
    bottom: 22px;
    left: 45%;
    transform: translateX(-50%);
    z-index: 90;
    background: var(--black);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  body.hide-highlights .highlights-content {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(20px) !important;
  }

  .highlights-content {
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
}

/* =========================================
   PROPOSTAS PREMIUM PAGE STYLES
========================================= */

.propostas-premium-page {
  overflow-x: hidden;
  background-color: var(--black);
  color: var(--white);
}

.premium-section {
  padding: 120px 0;
  position: relative;
}

/* Hero Premium */
.premium-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  background: radial-gradient(circle at 80% 50%, #2a0809 0%, var(--black) 50%);
}

.premium-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.premium-title .gsap-text {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.text-red {
  color: var(--red);
}

.premium-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-bottom: 40px;
}

.gsap-fade {
  opacity: 0;
}

.premium-hero-figure {
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-box-wrapper {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 30px 60px rgba(220, 52, 56, 0.3);
  opacity: 0;
  transform: translateX(100px) rotate(20deg);
}

.premium-box {
  font-size: 8rem;
  color: var(--white);
}

/* Lists */
.premium-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.premium-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.premium-list .text-red {
  font-size: 1.3rem;
}

.performance-section {
  background: var(--black-2);
}

.performance-section .section-title,
.performance-section .section-lead,
.performance-section .premium-list li {
  color: var(--white);
}

/* Performance Demo */
.performance-demo {
  perspective: 1000px;
}

.perf-window {
  background: #1e1e1e;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.perf-window:hover {
  transform: rotateY(0) rotateX(0);
}

.perf-header {
  height: 40px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.perf-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #555;
}

.perf-header span:nth-child(1) {
  background: #ff5f56;
}

.perf-header span:nth-child(2) {
  background: #ffbd2e;
}

.perf-header span:nth-child(3) {
  background: #27c93f;
}

.perf-body {
  padding: 24px;
}

.perf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.perf-skeleton {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.perf-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  animation: loadingSkel 1.5s infinite;
}

@keyframes loadingSkel {
  100% {
    transform: translateX(100%);
  }
}

.img-loaded {
  background: url('../images/bg/bg-home.jpg') center/cover;
  animation: none;
}

.img-loaded::after {
  display: none;
}

/* SEO Section */
.seo-demo {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.chart-bar {
  width: 18%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: flex-end;
}

.bar-fill {
  width: 100%;
  background: var(--gray);
  border-radius: 8px 8px 0 0;
  height: 0;
  /* Animated by GSAP */
}

.final-bar {
  background: var(--red);
  box-shadow: 0 0 30px rgba(220, 52, 56, 0.4);
}

.seo-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--white);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: scale(0.5);
}

/* Design Section */
.design-section {
  background: var(--black);
  background-image: radial-gradient(circle at top right, rgba(220, 52, 56, 0.15), transparent 40%);
}

.design-playground {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  width: 320px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(220, 52, 56, 0.3);
}

.glass-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
}

.glass-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* Security Demo */
.security-demo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.sec-badge {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  color: var(--red);
  box-shadow: 0 0 60px rgba(220, 52, 56, 0.2);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.sec-small {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  position: absolute;
  z-index: 1;
  background: var(--black-2);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.badge-1 {
  top: 40px;
  left: 40px;
}

.badge-2 {
  bottom: 40px;
  right: 40px;
}

@media (max-width: 991px) {
  .premium-hero {
    text-align: center;
  }

  .premium-hero-figure {
    margin-top: 60px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .seo-demo {
    order: 2;
  }
}