/* === RESET & TOKENS === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --red: #E62627;
  --red-glow: rgba(230, 38, 39, 0.4);
  --red-dark: #b51c1d;
  --black: #000;
  --dark: #111;
  --card: #1a1a1a;
  --text: #f0f0f0;
  --text2: #a0a0a0;
  --font-h: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-b: 'Inter', 'Segoe UI', sans-serif;
  --nav-h: 72px;
  --max-w: 1200px;
  --r: 8px;
  --r-lg: 16px;
  --t: 250ms ease;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px
}

/* === NAV === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: var(--max-w);
  height: 68px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(194, 31, 32, 0.1);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  z-index: 51;
  flex-shrink: 0;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px
}

.logo-text {
  font-family: var(--font-h);
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--text)
}

.logo-accent {
  color: var(--red)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text2);
  transition: color var(--t);
  cursor: pointer;
  padding: 8px 0
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--red)
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 22px !important;
  border-radius: var(--r);
  transition: background var(--t), box-shadow var(--t) !important
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  box-shadow: 0 0 24px var(--red-glow)
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 51;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform var(--t), opacity var(--t)
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h)+20px) 24px 60px;
  background: radial-gradient(ellipse at 25% 50%, rgba(194, 31, 32, .18) 0%, transparent 50%), radial-gradient(ellipse at 75% 30%, rgba(194, 31, 32, .08) 0%, transparent 45%), radial-gradient(ellipse at 50% 90%, rgba(194, 31, 32, .06) 0%, transparent 40%), var(--black);
  overflow: hidden
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
  z-index: 0
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 500px);
  pointer-events: none;
  z-index: 0;
  opacity: .07;
  filter: grayscale(.5) brightness(.5)
}

.watermark-img {
  width: 100%;
  height: auto
}

.hero-diagonal {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to right bottom, transparent 49.5%, var(--black) 50%);
  z-index: 1
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -10%;
  width: 350px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(194, 31, 32, .3), transparent);
  transform: rotate(-25deg);
  z-index: 0
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: -5%;
  width: 250px;
  height: 1px;
  background: linear-gradient(-90deg, transparent, rgba(194, 31, 32, .3), transparent);
  transform: rotate(15deg);
  z-index: 0
}

/* --- HERO ANIMATIONS --- */
.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px
}

.hero-tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 24px;
  text-transform: uppercase
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 5px;
  color: #fff;
  margin-bottom: 28px;
  text-transform: uppercase
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text2);
  letter-spacing: 8px;
  margin-bottom: 52px;
  font-weight: 300
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  animation: scrollB 2s ease-in-out infinite;
  opacity: .5
}

@keyframes scrollB {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: .3
  }

  50% {
    transform: rotate(45deg) translateY(8px);
    opacity: .7
  }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.15rem;
  letter-spacing: 2.5px;
  padding: 18px 48px;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .3s ease;
  text-transform: uppercase;
  min-height: 56px;
  border: none
}

.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px
}

.btn-primary {
  background: var(--red);
  color: #fff
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 0 40px var(--red-glow), 0 8px 24px rgba(0, 0, 0, .5);
  transform: scale(1.04)
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .2)
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 24px rgba(194, 31, 32, .2);
  transform: scale(1.04)
}

.btn-small {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-h);
  font-size: .95rem;
  letter-spacing: 2px;
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .3s ease;
  text-transform: uppercase;
  min-height: 44px;
  border: none
}

.btn-small:hover {
  background: var(--red-dark);
  box-shadow: 0 0 24px var(--red-glow);
  transform: scale(1.04)
}

/* === SECTIONS === */
.section {
  padding: 9rem 0;
  position: relative
}

.section-black {
  background: var(--black)
}

.section-dark {
  background: var(--dark)
}

.section-deep {
  background: #0a0a0a
}

.section-header {
  text-align: center;
  margin-bottom: 72px
}

.section-tag {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 6px;
  color: #fff;
  text-transform: uppercase
}

.title-bar {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 18px auto 0;
  border-radius: 2px
}

/* Section decorative dots */
.section-decor-dots {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(194, 31, 32, .15) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none
}

/* === QUOTE BANNER === */
.quote-banner {
  background: var(--red);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.quote-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
  transform: skewX(-20deg)
}

.quote-text {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
  min-height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.quote-cursor {
  display: inline-block;
  color: #ffffff;
  font-weight: 300;
  margin-left: 2px;
  animation: cursorBlink 0.7s infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* === SOBRE === */
.sobre-content {
  display: grid;
  gap: 60px
}

.sobre-text {
  max-width: 740px;
  position: relative;
  padding-left: 28px
}

.sobre-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
  border-radius: 2px
}

.sobre-intro {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.8
}

.sobre-text p:last-child {
  color: var(--text2);
  line-height: 1.8
}

.sobre-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px
}

.mvv-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 40px 28px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.mvv-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(194, 31, 32, 0.15);
}

.mvv-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px
}

.mvv-card h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 14px
}

.mvv-card p {
  color: var(--text2);
  font-size: .95rem;
  line-height: 1.7
}

/* === PILARES — PREMIUM GLASS REDESIGN === */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.pilar-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.01);
}

.pilar-card:hover {
  transform: translateY(-10px);
  border-color: rgba(194, 31, 32, 0.6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(194, 31, 32, 0.2);
}

.pilar-watermark-num {
  position: absolute;
  top: -15px;
  right: 15px;
  font-family: var(--font-h);
  font-size: 8.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
}

.pilar-card:hover .pilar-watermark-num {
  color: rgba(194, 31, 32, 0.08);
}

.pilar-featured {
  background: linear-gradient(180deg, rgba(194, 31, 32, 0.08) 0%, rgba(18, 18, 18, 0.95) 100%);
  border-color: rgba(194, 31, 32, 0.3);
}

.pilar-card-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.pilar-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
}

.pilar-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(194, 31, 32, 0.12);
  border: 1px solid rgba(194, 31, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: all 0.35s ease;
}

.pilar-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  transition: transform 0.35s ease;
}

.pilar-card:hover .pilar-icon-wrap {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  box-shadow: 0 0 25px rgba(194, 31, 32, 0.5);
}

.pilar-card:hover .pilar-icon-wrap svg {
  stroke: #ffffff;
  transform: scale(1.1);
}

.pilar-badge {
  font-family: var(--font-h);
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.pilar-badge-featured {
  background: rgba(194, 31, 32, 0.2);
  border-color: var(--red);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(194, 31, 32, 0.3);
}

.pilar-title {
  font-family: var(--font-h);
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 6px;
  position: relative;
  z-index: 3;
}

.pilar-tagline {
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 16px;
  position: relative;
  z-index: 3;
}

.pilar-desc {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 3;
}

.pilar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
}

.pilar-tag {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pilar-card:hover .pilar-tag {
  border-color: rgba(194, 31, 32, 0.3);
  background: rgba(194, 31, 32, 0.08);
}

.pilar-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--font-h);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
}

.pilar-link-btn:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(194, 31, 32, 0.4);
  transform: translateY(-2px);
}

.pilar-link-btn .arrow-icon {
  transition: transform 0.3s ease;
}

.pilar-link-btn:hover .arrow-icon {
  transform: translateX(5px);
}

/* ========================================================
   OPÇÃO 2: TRILHA HORIZONTAL DA JORNADA (.layout-timeline)
   ======================================================== */
.pilares-grid.layout-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.pilares-grid.layout-timeline::before {
  content: '';
  position: absolute;
  top: 75px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(194, 31, 32, 0.4) 50%, var(--red) 100%);
  z-index: 1;
}

.pilares-grid.layout-timeline .pilar-card {
  border-radius: var(--r-lg);
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(194, 31, 32, 0.25);
  position: relative;
  z-index: 2;
}

.pilares-grid.layout-timeline .pilar-watermark-num {
  font-size: 6rem;
  top: 10px;
  right: 15px;
  color: rgba(194, 31, 32, 0.15);
}

/* ========================================================
   OPÇÃO 3: PAINEL 3D SPOTLIGHT (.layout-spotlight)
   ======================================================== */
.pilares-grid.layout-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 36px;
  align-items: center;
  position: relative;
}

.pilares-grid.layout-spotlight .pilar-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pilares-grid.layout-spotlight .pilar-featured {
  transform: scale(1.06);
  border: 2px solid var(--red);
  background: radial-gradient(circle at center, rgba(194, 31, 32, 0.2) 0%, rgba(10, 10, 10, 0.98) 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(194, 31, 32, 0.4);
  z-index: 5;
}

.pilares-grid.layout-spotlight .pilar-featured:hover {
  transform: scale(1.09) translateY(-10px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(194, 31, 32, 0.6);
}

@media (max-width: 960px) {
  .pilares-grid.layout-timeline {
    grid-template-columns: 1fr;
  }
  .pilares-grid.layout-timeline::before {
    display: none;
  }
  .pilares-grid.layout-spotlight .pilar-featured {
    transform: none;
  }
}

/* === IMPACTO === */
.impacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center
}

.impacto-card {
  padding: 36px 16px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: var(--r);
}

.impacto-card:hover {
  transform: translateY(-5px);
  background: rgba(194, 31, 32, 0.05);
}

.impacto-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(194, 31, 32, .15), transparent)
}

.impacto-card:last-child::after {
  display: none
}

.impacto-number {
  font-family: var(--font-h);
  font-size: clamp(3rem, 5vw, 4.2rem);
  color: var(--red);
  letter-spacing: 2px;
  display: inline
}

.impacto-suffix {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--red)
}

.impacto-label {
  font-size: .85rem;
  color: var(--text2);
  margin-top: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500
}

.pulse-once {
  animation: pulseOnce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pulseOnce {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); color: #fff; text-shadow: 0 0 20px var(--red); }
  100% { transform: scale(1); }
}

/* === DEPOIMENTOS === */
.carousel-wrapper {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden
}

.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1)
}

.depo-card {
  min-width: 100%;
  flex-shrink: 0;
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.depo-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 2px
}

.depo-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

.depo-name {
  font-family: var(--font-h);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #fff
}

.depo-role {
  font-size: .85rem;
  color: var(--text2);
  margin-top: 4px
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 32px
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: var(--text2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t)
}

.carousel-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: scale(1.08)
}

.carousel-btn svg {
  width: 20px;
  height: 20px
}

.carousel-dots {
  display: flex;
  gap: 10px
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s
}

.carousel-dot.active {
  background: var(--red);
  transform: scale(1.4)
}

/* === AGENDA === */
.agenda-grid {
  max-width: 800px;
  margin: 0 auto
}

.evento-card {
  display: flex;
  gap: 28px;
  padding: 32px;
  transition: all .3s;
  cursor: pointer;
  align-items: flex-start;
  border-radius: var(--r)
}

.evento-card:hover {
  transform: translateX(8px);
  background: rgba(194, 31, 32, .03)
}

.evento-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 31, 32, .2), transparent);
  margin: 4px 32px
}

.evento-date {
  min-width: 84px;
  text-align: center;
  background: rgba(194, 31, 32, .08);
  border-radius: var(--r);
  padding: 16px 12px;
  flex-shrink: 0
}

.evento-day {
  font-family: var(--font-h);
  font-size: 2.8rem;
  color: var(--red);
  display: block;
  line-height: 1
}

.evento-month {
  font-family: var(--font-h);
  font-size: 1rem;
  letter-spacing: 4px;
  color: var(--text2);
  display: block;
  margin-top: 4px
}

.evento-title {
  font-family: var(--font-h);
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 10px
}

.evento-desc {
  color: var(--text2);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 18px
}

/* === APOIE === */
.apoie-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  text-align: center;
}

.apoie-intro {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8
}

.apoie-text p:nth-child(2) {
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 36px
}

.pix-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(194, 31, 32, .06);
  border: 1px solid rgba(194, 31, 32, .15);
  border-radius: var(--r-lg);
  padding: 24px 28px
}

.pix-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0
}

.pix-icon svg {
  width: 100%;
  height: 100%
}

.pix-label {
  font-size: .7rem;
  letter-spacing: 3px;
  color: var(--text2);
  font-weight: 600;
  text-transform: uppercase
}

.pix-key-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px
}

.pix-key {
  font-family: var(--font-h);
  font-size: 1.6rem;
  color: var(--red);
  letter-spacing: 1px
}

.copy-btn {
  position: relative;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  color: var(--text2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t)
}

.copy-btn:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(194, 31, 32, .08)
}

.copy-btn svg {
  width: 16px;
  height: 16px
}

.copy-feedback {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.copy-btn.copied .copy-feedback {
  opacity: 1
}

.apoie-qr {
  text-align: center
}

.qr-frame {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--r-lg);
  padding: 28px;
  display: inline-block
}

.qr-placeholder {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.qr-icon-svg {
  width: 52px;
  height: 52px;
  opacity: .35
}

.qr-placeholder-text {
  font-family: var(--font-h);
  font-size: 1rem;
  color: #333;
  letter-spacing: 2px
}

.qr-placeholder-sub {
  font-size: .7rem;
  color: #888;
  text-align: center;
  padding: 0 8px;
  line-height: 1.4
}

.qr-caption {
  font-size: .85rem;
  color: var(--text2);
  margin-top: 16px;
  line-height: 1.5;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto
}

/* === FOOTER === */
.footer-separator {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent)
}

.footer {
  background: var(--black);
  padding: 64px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px
}

.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 16px;
  filter: brightness(1.1)
}

.footer-tagline {
  color: var(--text2);
  font-size: .95rem
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px
}

.footer-links a {
  display: block;
  color: var(--text2);
  font-size: .9rem;
  padding: 6px 0;
  transition: color var(--t);
  cursor: pointer
}

.footer-links a:hover {
  color: var(--red)
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text2);
  transition: color var(--t);
  cursor: pointer
}

.social-link:hover {
  color: var(--red)
}

.social-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 28px;
  text-align: center
}

.footer-quote {
  font-style: italic;
  color: var(--text2);
  font-size: .95rem;
  margin-bottom: 12px
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255, 255, 255, .25)
}

/* === SCROLL REVEAL + STAGGER === */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal[data-delay="1"] {
  transition-delay: .12s
}

.reveal[data-delay="2"] {
  transition-delay: .24s
}

.reveal[data-delay="3"] {
  transition-delay: .36s
}

/* === REDUCED MOTION === */
@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }

  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* === RESPONSIVE === */
@media(max-width:768px) {

  /* --- MOBILE MENU --- */
  .nav-toggle {
    display: flex;
    z-index: 101
  }

  .navbar.menu-open {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: var(--nav-h);
    border-radius: 0;
    border: none;
    background: #000;
    backdrop-filter: none
  }

  .nav-logo {
    z-index: 101
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
    z-index: 100
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible
  }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 3px
  }

  /* --- SECTIONS --- */
  .section {
    padding: 6rem 0
  }

  .section-header {
    margin-bottom: 48px
  }

  .sobre-cards {
    grid-template-columns: 1fr
  }

  .sobre-text {
    padding-left: 16px
  }

  .pilares-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto
  }

  .impacto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .impacto-card::after {
    display: none
  }

  .apoie-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .pix-info {
    justify-content: center;
    flex-wrap: wrap
  }

  .pix-key-row {
    justify-content: center
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .footer-logo-img {
    margin-left: auto;
    margin-right: auto
  }

  .social-link {
    justify-content: center
  }

  .evento-card {
    flex-direction: column;
    padding: 24px 16px
  }

  .evento-date {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center
  }

  .section-decor-dots {
    display: none
  }

  .hero-watermark {
    right: 5%;
    width: 80vw;
    opacity: .07
  }

  .hero::before,
  .hero::after {
    display: none
  }

  /* --- CAROUSEL / DEPOIMENTOS --- */
  .carousel-wrapper {
    max-width: 100%;
    overflow: hidden;
    padding: 0 16px;
    box-sizing: border-box
  }

  .carousel-track {
    width: 100%
  }

  .depo-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 28px 20px;
    box-sizing: border-box
  }

  .depo-text {
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word
  }

  .depo-avatar {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    font-size: 1.1rem
  }

  .depo-name {
    font-size: 1.1rem
  }

  .depo-role {
    font-size: .8rem
  }

  .carousel-controls {
    margin-top: 20px;
    gap: 12px
  }

  .carousel-btn {
    width: 40px;
    height: 40px
  }

  .carousel-btn svg {
    width: 16px;
    height: 16px
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: 2rem
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 12px
  }

  .btn {
    padding: 16px 32px
  }

  .impacto-number {
    font-size: 2.4rem
  }

  .quote-text {
    font-size: 1rem;
    letter-spacing: 3px
  }

  .depo-card {
    padding: 24px 16px
  }

  .depo-text {
    font-size: .88rem
  }
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--red-glow);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* === ACTIVE NAV LINK === */
.nav-links a.active {
  color: var(--red);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* === IMPACTO FEATURED CARD === */
.impacto-card-featured {
  background: rgba(194, 31, 32, 0.08) !important;
  border: 1px solid rgba(194, 31, 32, 0.3) !important;
  box-shadow: 0 0 30px rgba(194, 31, 32, 0.15) !important;
}

.impacto-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.impacto-subtext {
  display: block;
  font-size: 0.75rem;
  color: var(--text2);
  margin-top: 6px;
  line-height: 1.4;
}

/* === PROVAS SOCIAIS / VIDEOS GRID === */
.section-subtitle {
  font-size: 1rem;
  color: var(--text2);
  margin-top: 12px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.video-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(194, 31, 32, 0.2);
}

.video-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #050505;
  overflow: hidden;
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.video-card:hover .video-preview {
  transform: scale(1.05);
  opacity: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.video-card:hover .video-overlay {
  background: radial-gradient(circle at center, rgba(194, 31, 32, 0.15) 0%, rgba(0,0,0,0.7) 100%);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(194, 31, 32, 0.9);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px rgba(194, 31, 32, 0.5);
  padding-left: 4px;
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
}

.video-card:hover .video-play-btn {
  transform: scale(1.15);
  background: var(--red);
  box-shadow: 0 0 35px var(--red-glow), 0 0 15px #fff;
}

.video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.video-info {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-card-title {
  font-family: var(--font-h);
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 8px;
}

.video-card-context {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.6;
}

/* === VIDEO MODAL === */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  width: 100%;
  max-width: 440px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(194, 31, 32, 0.2);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal-backdrop.open .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  line-height: 1;
}

.video-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.video-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-title {
  font-family: var(--font-h);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #fff;
}

.video-modal-body {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 75vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--red, #c21f20);
  border-radius: 50%;
  animation: modalSpin 0.8s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 5;
}

.video-modal-spinner.visible {
  opacity: 1;
}

@keyframes modalSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.video-modal-body video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  outline: none;
}

/* === PROJETOS PAGE STYLES === */
.hero-projetos {
  min-height: 60vh;
  padding-top: calc(var(--nav-h) + 60px);
}

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(194, 31, 32, 0.15);
}

.project-card-featured {
  background: linear-gradient(180deg, rgba(194, 31, 32, 0.08) 0%, rgba(26, 26, 26, 0.95) 100%);
  border: 1px solid rgba(194, 31, 32, 0.35);
  box-shadow: 0 10px 30px rgba(194, 31, 32, 0.1);
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.project-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
}

.project-number {
  font-family: var(--font-h);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 1px;
}

.impact-featured-badge {
  background: rgba(194, 31, 32, 0.18);
  border: 1px solid rgba(194, 31, 32, 0.4);
  color: #fff;
  font-family: var(--font-h);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.impact-featured-badge svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.project-title {
  font-family: var(--font-h);
  font-size: 1.7rem;
  letter-spacing: 2.5px;
  color: #fff;
  margin-bottom: 14px;
}

.project-short-desc {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-quote-badge {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--red);
  background: rgba(194, 31, 32, 0.08);
  border-left: 3px solid var(--red);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 18px;
}

.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.highlight-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--text);
  padding: 4px 10px;
  border-radius: 4px;
}

.project-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-public {
  font-size: 0.8rem;
  color: var(--text2);
}

.btn-project-trigger {
  align-self: flex-start;
  background: transparent;
  border: none;
  color: var(--red);
  font-family: var(--font-h);
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 6px 0;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-project-trigger:hover {
  color: #fff;
  transform: translateX(4px);
}

/* === PROJECT DETAIL MODAL === */
.project-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.project-modal-container {
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(194, 31, 32, 0.15);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-modal-backdrop.open .project-modal-container {
  transform: scale(1);
}

.project-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.project-modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.project-modal-header {
  margin-bottom: 24px;
}

.project-modal-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
}

.project-modal-title {
  font-family: var(--font-h);
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: #fff;
  margin-top: 4px;
}

.pm-section {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pm-section:last-child {
  border-bottom: none;
}

.pm-section h4 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 8px;
}

.pm-section p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.pm-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pm-tags-list li {
  background: rgba(194, 31, 32, 0.1);
  border: 1px solid rgba(194, 31, 32, 0.25);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 6px;
}

.project-modal-footer {
  margin-top: 28px;
  text-align: right;
}

/* === PARCEIRO CTA SECTION === */
.parceiro-card {
  background: linear-gradient(135deg, rgba(194, 31, 32, 0.12) 0%, rgba(17, 17, 17, 0.95) 100%);
  border: 1px solid rgba(194, 31, 32, 0.3);
  border-radius: var(--r-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.parceiro-desc {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 800px;
  margin: 24px auto 16px;
  line-height: 1.8;
}

.parceiro-subdesc {
  font-size: 0.95rem;
  color: var(--text2);
  max-width: 740px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.parceiro-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === EMPRESAS PARCEIRAS SECTION === */
.parceiros-futuro-section {
  padding: 80px 0;
}

.parceiros-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}

.parceiro-logo-item {
  background: #19191d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg, 16px);
  padding: 22px 28px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.parceiro-logo-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(194, 31, 32, 0.35);
  border-color: rgba(194, 31, 32, 0.65);
  background: #202026;
}

.parceiro-logo-item img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.parceiro-logo-item:hover img {
  filter: brightness(1.1) contrast(1.1);
  transform: scale(1.05);
}

/* === RESPONSIVE MEDIA QUERIES FOR NEW SECTIONS === */
@media (max-width: 992px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .projetos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .parceiros-grid-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .projetos-grid {
    grid-template-columns: 1fr;
  }
  .parceiro-card {
    padding: 40px 20px;
  }
  .parceiro-buttons {
    flex-direction: column;
  }
  .parceiros-grid-preview {
    grid-template-columns: 1fr;
  }
  .project-modal-container {
    padding: 28px 20px;
  }
}

/* =============================================
   VISUAL POLISH — PROJETOS PAGE v7
   ============================================= */

/* --- HERO GLOW ORBS --- */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.hero-glow-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(194,31,32,0.35) 0%, transparent 70%);
  top: 10%;
  left: -8%;
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-glow-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230,38,39,0.2) 0%, transparent 70%);
  bottom: 15%;
  right: 5%;
  animation: orbFloat2 11s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 25px); }
}

/* --- HERO TITLE GLOW --- */
.hero-title-glow {
  text-shadow: 0 0 60px rgba(194,31,32,0.4), 0 0 120px rgba(194,31,32,0.15);
}

/* --- HERO SUBTITLE PROJETOS --- */
.hero-subtitle-proj {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text2);
  letter-spacing: 1px;
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
}

/* --- HERO PROJ STATS --- */
.hero-proj-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 16px 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.hero-stat-num {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(230,38,39,0.5);
}
.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* --- PROJ INTRO STRIP --- */
.proj-intro-strip {
  background: var(--dark);
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(194,31,32,0.2);
  border-bottom: 1px solid rgba(194,31,32,0.2);
}
.proj-intro-text {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text2);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.proj-intro-text strong {
  color: var(--text);
}

/* --- PROJECT CARD TAGLINE --- */
.project-tagline {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--red);
  margin-bottom: 10px;
  line-height: 1.5;
  opacity: 0.9;
}

/* --- PROJECT CARD FOOTER META --- */
.project-footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text2);
  margin-bottom: 2px;
}
.proj-meta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--red);
}

/* --- BTN PROJECT TRIGGER UPGRADE --- */
.btn-project-trigger .arrow-icon {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn-project-trigger:hover .arrow-icon {
  transform: translateX(5px);
}

/* --- PROJECT CARD GLOW LINE (featured) --- */
.project-card-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), rgba(230,38,39,0.6), transparent);
  border-radius: 2px 2px 0 0;
  animation: glowSweep 3s ease-in-out infinite;
}
@keyframes glowSweep {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 12px var(--red); }
}

/* Featured card extra glow on hover */
.project-card-featured:hover {
  box-shadow: 0 24px 50px rgba(0,0,0,0.7), 0 0 40px rgba(194,31,32,0.3) !important;
}

/* --- SEMEANDO VIDAS SERVICES --- */
.semeando-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.semeando-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.78rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
  transition: border-color 0.2s, background 0.2s;
}
.semeando-item:hover {
  border-color: rgba(194,31,32,0.3);
  background: rgba(194,31,32,0.04);
  color: var(--text);
}
.semeando-item span {
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- PROJ SECTION DIVIDER --- */
.proj-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194,31,32,0.4), transparent);
  margin: 0;
}

/* --- PARCEIRO CARD GLOW UPGRADE --- */
.parceiro-card {
  position: relative;
  overflow: hidden;
}
.parceiro-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(194,31,32,0.25) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
  z-index: 0;
}
.parceiro-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.parceiro-title {
  margin-top: 10px;
}

/* Parceiro options */
.parceiro-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 36px;
}
.parceiro-option {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 20px 20px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.3s, background 0.3s;
}
.parceiro-option:hover {
  border-color: rgba(194,31,32,0.4);
  background: rgba(194,31,32,0.04);
}
.parceiro-option-icon {
  width: 36px;
  height: 36px;
  background: rgba(194,31,32,0.12);
  border: 1px solid rgba(194,31,32,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.parceiro-option-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
}
.parceiro-option p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  padding-top: 4px;
}

/* --- GLOWING BTN PRIMARY --- */
.btn-glow {
  box-shadow: 0 0 20px rgba(194,31,32,0.35);
  transition: all 0.3s ease;
}
.btn-glow:hover {
  box-shadow: 0 0 40px rgba(194,31,32,0.6), 0 8px 30px rgba(0,0,0,0.5) !important;
  transform: scale(1.05) !important;
}

/* --- RESPONSIVE for new proj stats & options --- */
@media (max-width: 768px) {
  .hero-proj-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 16px;
  }
  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }
  .parceiro-options {
    grid-template-columns: 1fr;
  }
  .semeando-services {
    grid-template-columns: 1fr;
  }
  .hero-glow-orb-1, .hero-glow-orb-2 {
    display: none;
  }
}

/* =============================================
   NEW FEATURES v10 — FILTER TABS, FAQ & SPOTLIGHT GLOW
   ============================================= */

/* --- PROJETOS FILTER TABS --- */
.projetos-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  position: relative;
  z-index: 5;
}

.proj-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cccccc;
  font-family: var(--font-h);
  font-size: 1.05rem;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.proj-tab:hover {
  border-color: var(--red);
  color: #ffffff;
  background: rgba(194, 31, 32, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(194, 31, 32, 0.25);
}

.proj-tab.active {
  background: var(--red) !important;
  color: #ffffff !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 25px rgba(230, 38, 39, 0.6) !important;
}

.project-card.hidden {
  display: none !important;
}

.project-card.filter-fade-in {
  animation: filterFade 0.4s ease forwards;
}

@keyframes filterFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- FAQ ACCORDION --- */
.faq-section {
  position: relative;
  z-index: 3;
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(194, 31, 32, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item.active {
  border-color: var(--red);
  background: rgba(194, 31, 32, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(194, 31, 32, 0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  text-align: left;
  color: #ffffff;
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  outline: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--red);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--red);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.faq-answer strong {
  color: #ffffff;
}

/* --- MOUSE SPOTLIGHT GLOW EFFECT ON CARDS --- */
.project-card, .video-card, .mvv-card, .pilar-card, .parceiro-card {
  position: relative;
  overflow: hidden;
}

.project-card::after, .video-card::after, .mvv-card::after, .pilar-card::after, .parceiro-card::after {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(230, 38, 39, 0.28) 0%, rgba(194, 31, 32, 0.08) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border-radius: 50%;
}

.project-card:hover::after, .video-card:hover::after, .mvv-card:hover::after, .pilar-card:hover::after, .parceiro-card:hover::after {
  opacity: 1;
}

.project-card-header, .project-title, .project-tagline, .project-short-desc, .project-highlights, .project-footer, .video-info, .video-thumb-wrapper, .semeando-services, .project-quote-badge {
  position: relative;
  z-index: 3;
}

/* --- AMITAI MARKETING DEVELOPER BADGE --- */

/* --- SOBRE LAYOUT v2: TEXT + VIDEO + MVV MINI --- */
.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.sobre-left {
  position: relative;
  padding-left: 24px;
}

.sobre-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sobre-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sobre-video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
  z-index: 5;
}

.sobre-video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.sobre-video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.sobre-video-play-btn {
  background: var(--red);
  border: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(194, 31, 32, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-video-play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.sobre-video-play-overlay:hover .sobre-video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 45px rgba(194, 31, 32, 0.7);
}

.sobre-video-label {
  font-family: var(--font-h);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

/* --- MVV MINI CARDS (Compact Expandable) --- */
.mvv-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.mvv-mini-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 16px 14px;
  cursor: pointer;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mvv-mini-card:hover {
  border-color: rgba(194, 31, 32, 0.5);
  background: rgba(194, 31, 32, 0.06);
}

.mvv-mini-card.expanded {
  border-color: var(--red);
  background: rgba(194, 31, 32, 0.08);
  grid-column: 1 / -1;
  text-align: left;
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(194, 31, 32, 0.15);
}

.mvv-mini-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  transition: all 0.3s ease;
}

.mvv-mini-card.expanded .mvv-mini-icon {
  width: 34px;
  height: 34px;
  margin: 0 0 12px;
}

.mvv-mini-title {
  font-family: var(--font-h);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--red);
  margin: 0;
  transition: font-size 0.3s ease;
}

.mvv-mini-card.expanded .mvv-mini-title {
  font-size: 1.25rem;
}

.mvv-mini-expand-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin 0.3s ease;
  margin-top: 0;
}

.mvv-mini-card.expanded .mvv-mini-expand-content {
  max-height: 200px;
  margin-top: 12px;
}

.mvv-mini-expand-content p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 960px) {
  .sobre-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sobre-video-wrapper {
    max-height: 400px;
    aspect-ratio: 9 / 14;
  }
}

@media (max-width: 600px) {
  .mvv-mini-grid {
    grid-template-columns: 1fr;
  }
  .mvv-mini-card.expanded {
    grid-column: auto;
  }
}


.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
}

.dev-credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(255, 34, 112, 0.45);
  border-radius: 100px;
  padding: 10px 28px;
  margin-top: 16px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 34, 112, 0.15);
}

.dev-credit-badge:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: #ff2270;
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 34, 112, 0.5);
}

.dev-text {
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.dev-handle {
  color: #ff2270;
  font-weight: 700;
  transition: text-shadow 0.3s ease;
}

.dev-credit-badge:hover .dev-handle {
  text-shadow: 0 0 12px rgba(255, 34, 112, 0.8);
}

.dev-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255, 34, 112, 0.3));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.dev-credit-badge:hover .dev-logo-img {
  transform: rotate(-6deg) scale(1.12);
  filter: drop-shadow(0 0 12px rgba(255, 34, 112, 0.7));
}

/* --- INSTAGRAM BADGE TOP-LEFT OF VIDEO --- */
.video-ig-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.video-ig-badge svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.video-ig-badge:hover {
  transform: scale(1.12);
  border-color: var(--red);
  background: rgba(194, 31, 32, 0.9);
  box-shadow: 0 0 25px rgba(194, 31, 32, 0.6);
}

.video-ig-badge:hover svg {
  stroke: #ffffff;
  transform: scale(1.1);
}

/* --- INSTAGRAM CARD UNDER PIX --- */
.pix-ig-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 16px 22px;
  margin: 20px auto 0;
  max-width: max-content;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pix-ig-card:hover {
  border-color: var(--red);
  background: rgba(194, 31, 32, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(194, 31, 32, 0.2);
}

.pix-ig-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(194, 31, 32, 0.15);
  border: 1px solid rgba(194, 31, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pix-ig-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
}

.pix-ig-card:hover .pix-ig-icon {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(194, 31, 32, 0.5);
}

.pix-ig-card:hover .pix-ig-icon svg {
  stroke: #ffffff;
}

.pix-ig-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.pix-ig-label {
  font-family: var(--font-h);
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.pix-ig-handle {
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

.pix-ig-card:hover .pix-ig-handle {
  color: var(--red);
}

.pix-ig-arrow {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.pix-ig-card:hover .pix-ig-arrow {
  color: var(--red);
  transform: translateX(5px);
}

/* --- MOBILE RESPONSIVE POLISH (max-width: 600px) --- */
@media (max-width: 600px) {
  .projetos-filter-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }
  .proj-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  .dev-credit-badge {
    padding: 8px 18px;
    gap: 10px;
    max-width: 90vw;
  }
  .dev-text {
    font-size: 0.85rem;
  }
  .dev-logo-img {
    height: 30px;
  }
  .pix-ig-card {
    padding: 12px 16px;
    gap: 12px;
  }
  .pix-ig-icon {
    width: 36px;
    height: 36px;
  }
  .pix-ig-icon svg {
    width: 18px;
    height: 18px;
  }
  .pix-ig-handle {
    font-size: 0.95rem;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
  .pilar-card {
    padding: 32px 22px;
  }
  .pilar-watermark-num {
    font-size: 6rem;
  }
}





