/* ==========================================================================
   Página: Sobre (Short Code) — usa variáveis globais para enxugar estilo
   Paleta base: linear-gradient(318deg, #1dd1a1 25%, #54a0ff 100%)
   ========================================================================== */

:root {
  --sc-about-grad: linear-gradient(318deg, #1dd1a1 25%, #54a0ff 100%);
  --sc-about-grad-soft: linear-gradient(318deg,
      rgba(29, 209, 161, 0.22) 25%,
      rgba(84, 160, 255, 0.22) 100%);

  --sc-about-bg: #ffffff;
  --sc-about-surface: rgba(255, 255, 255, 0.7);
  --sc-about-border: rgba(17, 24, 39, 0.12);
  --sc-about-text: #0f172a;
  --sc-about-muted: rgba(15, 23, 42, 0.72);

  --sc-about-radius: 18px;
  --sc-about-shadow: 0 18px 60px rgba(2, 6, 23, 0.1);
}

[data-theme="dark"] {
  --sc-about-bg: #050b12;
  --sc-about-surface: rgba(9, 14, 22, 0.68);
  --sc-about-border: rgba(255, 255, 255, 0.12);
  --sc-about-text: rgba(255, 255, 255, 0.92);
  --sc-about-muted: rgba(255, 255, 255, 0.72);
  --sc-about-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

body.sc-about-page {
  background: var(--sc-about-bg);
  color: var(--sc-about-text);
}

/* ============================================
   ANIMAÇÕES FADE-IN
   ============================================ */
.sc-about-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sc-about-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero - anima mais rápido */
.sc-about-hero-new .sc-about-fade-in {
  transition-duration: 0.6s;
}

/* Métricas - stagger automático */
.sc-about-metrics-grid .sc-about-fade-in:nth-child(1) {
  transition-delay: 0.1s;
}

.sc-about-metrics-grid .sc-about-fade-in:nth-child(2) {
  transition-delay: 0.25s;
}

.sc-about-metrics-grid .sc-about-fade-in:nth-child(3) {
  transition-delay: 0.4s;
}

/* MVV Cards - stagger automático */
.sc-about-mvv-grid .sc-about-fade-in:nth-child(1) {
  transition-delay: 0.1s;
}

.sc-about-mvv-grid .sc-about-fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.sc-about-mvv-grid .sc-about-fade-in:nth-child(3) {
  transition-delay: 0.3s;
}

.sc-about-hero.home-rcs {
  /* mantém a mesma estrutura do hero do site, mudando só o gradiente */
  background: var(--sc-about-grad);
}

/* Novo Hero - mais contido, sem particles */
.sc-about-hero-new {
  padding: 120px 0 80px;
  background: var(--sc-about-bg);
  position: relative;
}

.sc-about-hero-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: var(--sc-about-grad);
  opacity: 0.05;
  z-index: 0;
}

.sc-about-hero-new .container {
  position: relative;
  z-index: 1;
}

.sc-about-hero-new .hero-rcs-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--sc-about-grad);
  color: #ffffff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.sc-about-hero-title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
  color: var(--sc-about-text);
  background: var(--sc-about-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sc-about-hero-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--sc-about-muted);
  max-width: 90%;
  margin-bottom: 30px;
}

.sc-about-hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: var(--sc-about-surface);
  padding: 20px;
}

.sc-about-equipe-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

/* Seção de Métricas */
.sc-about-metrics-section {
  padding: 80px 0;
  background: var(--sc-about-grad);
  position: relative;
  overflow: hidden;
}

.sc-about-metrics-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%);
  pointer-events: none;
}

.sc-about-metrics-section .container {
  position: relative;
  z-index: 1;
}

.sc-about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.sc-about-metric-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease, background 0.3s ease;
  cursor: default;
}

.sc-about-metric-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sc-about-metric-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.sc-about-metric-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.sc-about-metric-value {
  display: block;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.sc-about-metric-desc {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 992px) {
  .sc-about-metrics-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sc-about-hero-new {
    padding: 100px 0 60px;
  }

  .sc-about-hero-text {
    max-width: 100%;
  }

  .sc-about-hero-image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .sc-about-metrics-section {
    padding: 60px 0;
  }

  .sc-about-metric-card {
    padding: 32px 24px;
  }
}

/* Dark mode para métricas */
[data-theme="dark"] .sc-about-metrics-section {
  background: linear-gradient(318deg, rgba(29, 209, 161, 0.9) 25%, rgba(84, 160, 255, 0.9) 100%);
}

[data-theme="dark"] .sc-about-metric-card {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .sc-about-metric-card:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Reaproveita componentes do RCS (rcs-info / rcs-shortcode) sem depender do GSAP */
body.sc-about-page .rcs-info-title,
body.sc-about-page .rcs-info-desc,
body.sc-about-page .rcs-info-card {
  opacity: 1;
  transform: none;
}

body.sc-about-page .rcs-info-title {
  background: var(--sc-about-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.sc-about-page .rcs-shortcode-badge {
  background: var(--sc-about-grad);
  box-shadow: 0 4px 12px rgba(29, 209, 161, 0.25);
}

body.sc-about-page .rcs-shortcode-title {
  background: var(--sc-about-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.sc-about-page .rcs-shortcode-item {
  border-left-color: #1dd1a1;
}

body.sc-about-page .rcs-shortcode-item strong {
  color: #1dd1a1;
}

body.sc-about-page .rcs-shortcode-conclusion {
  background: var(--sc-about-grad-soft);
  border-left-color: #54a0ff;
}

/* Hero antigo (mantido para compatibilidade) */
.sc-about-hero {
  position: relative;
  padding: 110px 0 56px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .sc-about-hero {
    padding-top: 92px;
    /* não briga com o header mobile fixo */
  }
}

.sc-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sc-about-grad-soft);
}

.sc-about-hero::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(900px 400px at 12% 20%,
      rgba(29, 209, 161, 0.28),
      transparent 60%),
    radial-gradient(820px 360px at 78% 30%,
      rgba(84, 160, 255, 0.3),
      transparent 60%);
  pointer-events: none;
}

.sc-about-hero .container {
  position: relative;
  z-index: 1;
}

.sc-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--sc-about-surface);
  border: 1px solid var(--sc-about-border);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  color: var(--sc-about-text);
  font-weight: 600;
}

.sc-about-title {
  margin: 18px 0 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.05;
}

.sc-about-subtitle {
  margin: 0;
  max-width: 68ch;
  color: var(--sc-about-muted);
  font-size: 18px;
  line-height: 1.6;
}

.sc-about-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sc-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--sc-about-border);
  background: var(--sc-about-surface);
  color: var(--sc-about-text);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.sc-about-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(84, 160, 255, 0.35);
}

.sc-about-btn--primary {
  background: var(--sc-about-grad);
  border-color: transparent;
  color: #0b1020;
}

[data-theme="dark"] .sc-about-btn--primary {
  color: #021018;
}

.sc-about-section {
  padding: 52px 0;
}

.sc-about-section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.sc-about-lead {
  color: var(--sc-about-muted);
  line-height: 1.7;
  margin: 0 0 22px;
}

.sc-about-card {
  background: var(--sc-about-surface);
  border: 1px solid var(--sc-about-border);
  border-radius: var(--sc-about-radius);
  box-shadow: var(--sc-about-shadow);
  padding: 18px;
}

.sc-about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.sc-about-grid>.sc-about-col-6 {
  grid-column: span 6;
}

.sc-about-grid>.sc-about-col-4 {
  grid-column: span 4;
}

.sc-about-grid>.sc-about-col-12 {
  grid-column: span 12;
}

@media (max-width: 991px) {

  .sc-about-grid>.sc-about-col-6,
  .sc-about-grid>.sc-about-col-4 {
    grid-column: span 12;
  }
}

.sc-about-kpi {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.sc-about-kpi strong {
  font-size: 22px;
}

.sc-about-kpi span {
  color: var(--sc-about-muted);
}

.sc-about-dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px 14px;
  margin: 0;
}

.sc-about-dl dt {
  font-weight: 800;
  color: var(--sc-about-text);
}

.sc-about-dl dd {
  margin: 0;
  color: var(--sc-about-muted);
}

@media (max-width: 575px) {
  .sc-about-dl {
    grid-template-columns: 1fr;
  }
}

.sc-about-anchor {
  scroll-margin-top: 90px;
}

/* Hero Image */
.sc-about-hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.sc-about-logo-hero {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

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

.sc-about-hero-badge {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.sc-about-badge-item {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Quem somos — seção história */
.sc-about-quem .sc-about-quem-title {
  margin-bottom: 1.5rem;
}

.sc-about-quem-story {
  padding-right: 1.5rem;
}

.sc-about-quem-p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--sc-about-muted);
  margin-bottom: 1.25rem;
}

.sc-about-quem-p strong {
  color: var(--sc-about-text);
}

.sc-about-quem-closing {
  margin-bottom: 0;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sc-about-border);
}

/* Services Grid */
.sc-about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.sc-about-services-quem {
  margin-top: 0;
}

/* Timeline moderna - História */
.sc-about-timeline {
  position: relative;
  padding-left: 2rem;
}

.sc-about-timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--sc-about-grad);
  opacity: 0.3;
  animation: sc-timeline-line 1.2s ease-out 0.2s both;
}

@keyframes sc-timeline-line {
  from {
    transform: scaleY(0);
    transform-origin: top;
  }

  to {
    transform: scaleY(1);
    transform-origin: top;
  }
}

.sc-about-timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 0;
  opacity: 0;
  animation: sc-timeline-item-in 0.6s ease-out forwards;
  transition: padding-bottom 0.4s ease;
}

.sc-about-timeline-item:hover {
  padding-bottom: 320px;
  z-index: 5;
}

.sc-about-timeline-item:nth-child(1) {
  animation-delay: 0.3s;
}

.sc-about-timeline-item:nth-child(2) {
  animation-delay: 0.55s;
}

.sc-about-timeline-item:nth-child(3) {
  animation-delay: 0.8s;
}

.sc-about-timeline-item:last-child {
  margin-bottom: 0;
}

@keyframes sc-timeline-item-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sc-about-timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sc-about-timeline-year {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1dd1a1;
  white-space: nowrap;
  background: var(--sc-about-bg);
  padding: 2px 6px;
  border-radius: 4px;
  animation: sc-timeline-badge-in 0.5s ease-out backwards;
}

.sc-about-timeline-item:nth-child(1) .sc-about-timeline-year {
  animation-delay: 0.4s;
}

.sc-about-timeline-item:nth-child(2) .sc-about-timeline-year {
  animation-delay: 0.65s;
}

.sc-about-timeline-item:nth-child(3) .sc-about-timeline-year {
  animation-delay: 0.9s;
}

@keyframes sc-timeline-badge-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sc-about-timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sc-about-grad);
  border: 3px solid var(--sc-about-bg);
  box-shadow: 0 0 0 2px rgba(29, 209, 161, 0.2);
  position: relative;
  z-index: 2;
  animation: sc-timeline-dot-pulse 2.5s ease-in-out infinite;
}

.sc-about-timeline-item:nth-child(1) .sc-about-timeline-dot {
  animation-delay: 0s;
}

.sc-about-timeline-item:nth-child(2) .sc-about-timeline-dot {
  animation-delay: 0.4s;
}

.sc-about-timeline-item:nth-child(3) .sc-about-timeline-dot {
  animation-delay: 0.8s;
}

@keyframes sc-timeline-dot-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(29, 209, 161, 0.2);
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(29, 209, 161, 0.15);
  }
}

.sc-about-timeline-card {
  background: var(--sc-about-surface);
  border: 1px solid var(--sc-about-border);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-about-timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(29, 209, 161, 0.15);
}


.sc-about-timeline-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--sc-about-grad-soft);
  animation: sc-timeline-icon-in 0.5s ease-out backwards;
}

.sc-about-timeline-item:nth-child(1) .sc-about-timeline-icon {
  animation-delay: 0.45s;
}

.sc-about-timeline-item:nth-child(2) .sc-about-timeline-icon {
  animation-delay: 0.7s;
}

.sc-about-timeline-item:nth-child(3) .sc-about-timeline-icon {
  animation-delay: 0.95s;
}

@keyframes sc-timeline-icon-in {
  from {
    opacity: 0;
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sc-about-timeline-icon svg {
  width: 32px;
  height: 32px;
}

.sc-about-timeline-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--sc-about-text);
  background: var(--sc-about-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sc-about-timeline-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--sc-about-muted);
  margin: 0;
}

/* Imagem que aparece embaixo no hover */
.sc-about-timeline-image {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  right: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  pointer-events: none;
}

.sc-about-timeline-card:hover .sc-about-timeline-image {
  max-height: 280px;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sc-about-timeline-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(29, 209, 161, 0.2);
  object-fit: cover;
  max-height: 280px;
}

@media (max-width: 991px) {
  .sc-about-quem-story {
    padding-right: 0;
  }

  .sc-about-timeline {
    margin-top: 2rem;
    padding-left: 1.75rem;
  }

  .sc-about-timeline::before {
    left: 0.5rem;
  }

  .sc-about-timeline-marker {
    left: -1.75rem;
  }

  .sc-about-timeline-year {
    font-size: 10px;
  }

  .sc-about-timeline-dot {
    width: 14px;
    height: 14px;
  }

  .sc-about-timeline-item:hover {
    padding-bottom: 240px;
  }

  .sc-about-timeline-card:hover .sc-about-timeline-image {
    max-height: 220px;
  }

  .sc-about-timeline-image img {
    max-height: 220px;
  }
}

.sc-about-service-card {
  background: var(--sc-about-surface);
  border: 1px solid var(--sc-about-border);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sc-about-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(29, 209, 161, 0.12);
}

.sc-about-service-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--sc-about-grad-soft);
}

.sc-about-service-icon-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.sc-about-service-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.sc-about-service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--sc-about-text);
}

.sc-about-service-card p {
  font-size: 14px;
  color: var(--sc-about-muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sc-about-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Missão Visão Valores — seção moderna */
.sc-about-mvv {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--sc-about-bg) 0%, rgba(29, 209, 161, 0.04) 50%, var(--sc-about-bg) 100%);
}

.sc-about-mvv-header {
  margin-bottom: 3rem;
}

.sc-about-mvv-heading {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin: 12px 0 10px;
  color: var(--sc-about-text);
  background: var(--sc-about-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.sc-about-mvv-intro {
  font-size: 17px;
  color: var(--sc-about-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.sc-about-mvv-grid {
  align-items: stretch;
  gap: 0;
}

.sc-about-mvv-card {
  background: var(--sc-about-surface);
  border: 1px solid var(--sc-about-border);
  border-radius: 24px;
  padding: 36px 28px 40px;
  text-align: center;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  box-shadow: 0 4px 24px rgba(2, 6, 23, 0.06);
  position: relative;
  overflow: hidden;
}

.sc-about-mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sc-about-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sc-about-mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(29, 209, 161, 0.12);
  border-color: rgba(29, 209, 161, 0.25);
}

.sc-about-mvv-card:hover::before {
  opacity: 1;
}

.sc-about-mvv-card:hover .sc-about-mvv-icon-svg {
  transform: scale(1.05);
}

.sc-about-mvv-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--sc-about-grad-soft);
  transition: transform 0.3s ease, background 0.3s ease;
}

.sc-about-mvv-card:hover .sc-about-mvv-icon-wrap {
  background: linear-gradient(318deg, rgba(29, 209, 161, 0.28) 25%, rgba(84, 160, 255, 0.28) 100%);
}

.sc-about-mvv-icon-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sc-about-mvv-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1dd1a1;
  margin-bottom: 8px;
}

[data-theme="dark"] .sc-about-mvv-label {
  color: #2ee5b5;
}

.sc-about-mvv-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--sc-about-text);
  background: var(--sc-about-grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.sc-about-mvv-text {
  font-size: 15px;
  line-height: 1.72;
  color: var(--sc-about-muted);
  margin: 0;
}

/* Dados Cadastrais */
.sc-about-dados {
  padding: 80px 0;
}

.sc-about-dados-card {
  background: var(--sc-about-surface);
  border: 1px solid var(--sc-about-border);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: var(--sc-about-shadow);
  text-align: center;
}

.sc-about-dados-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.sc-about-dado-item {
  padding: 20px;
  background: rgba(29, 209, 161, 0.05);
  border-radius: 16px;
  border-left: 4px solid #1dd1a1;
  transition: background 0.3s ease;
}

.sc-about-dado-item:hover {
  background: rgba(29, 209, 161, 0.1);
}

.sc-about-dado-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1dd1a1;
  margin-bottom: 8px;
}

.sc-about-dado-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--sc-about-text);
  line-height: 1.6;
}

.sc-about-dado-value a {
  color: #54a0ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sc-about-dado-value a:hover {
  color: #1dd1a1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sc-about-dados-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sc-about-dados-card {
    padding: 30px 20px;
  }

  .sc-about-mvv-card {
    padding: 30px 20px;
  }
}

/* Hero Image Responsivo */
@media (max-width: 991px) {
  .sc-about-hero-image {
    margin-top: 40px;
    padding: 20px;
  }

  .sc-about-logo-hero {
    max-width: 250px;
  }

  .sc-about-hero-badge {
    flex-direction: column;
    align-items: center;
  }
}

/* Ajustes de espaçamento */
.sc-about-section {
  padding: 80px 0;
}

.sc-about-mvv {
  padding: 100px 0;
}

.sc-about-dados {
  padding: 100px 0;
}

@media (max-width: 768px) {

  .sc-about-section,
  .sc-about-mvv,
  .sc-about-dados {
    padding: 60px 0;
  }
}