:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-primary: #8b5cf6; /* violet-500 */
  --color-primary-hover: #7c3aed; /* violet-600 */
  --color-primary-light: #c4b5fd; /* violet-200 */
  --color-secondary: #d946ef; /* fuchsia-500 */
  --color-muted: rgba(255, 255, 255, 0.7);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-card-bg: rgba(255, 255, 255, 0.05);

  --font-sans: 'Poppins', sans-serif;
  --max-w: 1280px;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-text);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
/* Faint noise/grain overlay for the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998; /* Below cursor */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015; /* Suavized for performance */
  mix-blend-mode: overlay;
}

html {
  scroll-behavior: smooth;
}

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

/* Background Effects */
.background-container {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.top-orb {
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  height: 420px;
  width: 420px;
  background-color: rgba(109, 40, 217, 0.25); /* violet-700 */
}

.right-orb {
  top: 24%;
  right: 8%;
  height: 300px;
  width: 300px;
  background-color: rgba(139, 92, 246, 0.1); /* violet-500 */
}

.bottom-orb {
  bottom: 8%;
  left: 6%;
  height: 240px;
  width: 240px;
  background-color: rgba(217, 70, 239, 0.1); /* fuchsia-500 */
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: 
    linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 38px 38px;
}

/* Layout Utilities */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
  .container { padding: 0 2rem; }
}

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.pt-0 { padding-top: 0 !important; }
.pb-24 { padding-bottom: 6rem !important; }

/* Typography */
.text-muted {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .section-title { font-size: 3rem; }
}

.section-badge {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(196, 181, 253, 0.8);
  margin-bottom: 0.75rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-border);
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}

.desktop-nav a {
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: var(--color-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary-hover);
  color: white;
  padding: 0.625rem 1.25rem;
}

.btn-primary:hover {
  transform: scale(1.03);
  background-color: var(--color-primary);
}

.btn-large {
  padding: 1rem 1.75rem;
  text-align: center;
  justify-content: center;
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background-color: #000;
  color: white;
  padding: 1rem 1.75rem;
}

.btn-dark:hover {
  transform: scale(1.03);
}

/* Hero Section */
.hero {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.badge {
  display: inline-flex;
  border-radius: 9999px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background-color: rgba(139, 92, 246, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-primary-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 64rem;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.hero-clock {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }

.gradient-text {
  background-image: linear-gradient(to right, #ffffff, var(--color-primary-light), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-top: 0.5rem;
}

.hero .subtitle {
  margin-top: 1.5rem;
  max-width: 42rem;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
}

@media (min-width: 640px) { .hero .subtitle { font-size: 1.125rem; } }

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 36rem;
}

.stat-card {
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-card-bg);
  padding: 1.25rem;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 900;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-image-wrapper {
  position: relative;
}

.hero-backdrop-blur {
  position: absolute;
  top: -1.5rem; right: -1.5rem; bottom: -1.5rem; left: -1.5rem;
  border-radius: 2rem;
  background: linear-gradient(to bottom right, rgba(124, 58, 237, 0.25), rgba(217, 70, 239, 0.1), transparent);
  filter: blur(40px);
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-card-bg);
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.main-image {
  height: 540px;
  width: 100%;
  border-radius: 1.4rem;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  border-radius: 1.4rem;
  border: 1px solid var(--color-border);
  background-color: rgba(0, 0, 0, 0.45);
  padding: 1.25rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.overlay-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(196, 181, 253, 0.8);
}

.overlay-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
}

.overlay-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 0.95fr 1.05fr; }
}

.about-image-card {
  height: 100%;
  min-height: 440px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.about-content {
  padding: 2rem;
}

@media (min-width: 1024px) {
  .about-content { padding: 3rem; }
}

.about-stats-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.stat-value-sm {
  font-size: 1.5rem;
  font-weight: 900;
}

.dark-card { background-color: rgba(0, 0, 0, 0.2); }

/* Common Cards */
.card {
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-card-bg);
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .card { padding: 2rem; }
}

.border-card {
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-card-bg);
  padding: 1.75rem;
}

.hover-lift {
  transition: transform 0.3s, border-color 0.3s;
}

.hover-lift:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 900;
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Portfolio */
.split-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .split-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .portfolio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.portfolio-card {
  overflow: hidden;
  padding: 0;
}

.portfolio-image-wrapper {
  overflow: hidden;
}

.portfolio-image {
  height: 18rem;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(196, 181, 253, 0.7);
}

.portfolio-title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 900;
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.step-number {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(196, 181, 253, 0.6);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.testimonial-author {
  font-weight: 700;
}

.testimonial-role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* CTA Banner */
.cta-banner {
  overflow: hidden;
  border-radius: 2.2rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: linear-gradient(to bottom right, #6d28d9, #8b5cf6);
  padding: 3rem 2rem;
  color: white;
}

@media (min-width: 640px) {
  .cta-banner { padding: 3rem 2.5rem; }
}

@media (min-width: 1024px) {
  .cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 3.5rem;
  }
}

.cta-content {
  max-width: 42rem;
}

.cta-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(237, 233, 254, 0.8);
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 900;
}

@media (min-width: 640px) {
  .cta-title { font-size: 3rem; }
}

.cta-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.cta-action {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .cta-action { margin-top: 0; }
}

/* Custom Hero Styles & Cursive Text */
.cursive-gradient {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.15em;
  background-image: linear-gradient(to right, #d946ef, #8b5cf6, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  transform: rotate(-3deg);
  margin: 0 0.05em;
  padding-right: 0.15em; /* Previne corte do final da letra */
  padding-bottom: 0.1em;
}

/* Badges & Status */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 8px 1px rgba(34, 197, 94, 0.6);
  margin-right: 6px;
}

.header-badge {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Utility Classes */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-8 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.max-w-4xl { max-width: 56rem; }
.justify-center { justify-content: center; }
.hidden { display: none !important; }
@media (min-width: 768px) {
  .md\:flex { display: flex !important; }
}
.items-center { align-items: center; }
.gap-4 { gap: 1rem; }

/* Neon White Buttons */
.btn-white {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  z-index: 1;
  padding: 0.625rem 1.25rem;
}

.btn-white.btn-large {
  padding: 1rem 1.75rem;
}

.btn-white::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, #d946ef, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.btn-white:hover {
  color: #ffffff;
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
  transform: translateY(-2px);
}

.btn-white:hover::after {
  opacity: 1;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background-color: rgba(255,255,255,0.02);
  padding: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.bento-col-2 {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .bento-col-2 { grid-column: span 2; }
}

.bento-hover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.bento-card:hover .bento-hover-glow {
  opacity: 1;
}

.bento-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.bento-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: rgba(255,255,255,0.05);
  color: var(--color-primary-light);
  transition: all 0.3s;
}

.bento-card:hover .bento-icon {
  background-color: rgba(139, 92, 246, 0.2);
  transform: scale(1.05);
}

.bento-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
}

.bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bento-meta {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary-light);
  background-color: rgba(139, 92, 246, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.bento-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bento-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  background-color: rgba(255,255,255,0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

/* Behance Section */
.behance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .behance-grid { grid-template-columns: repeat(3, 1fr); }
}

.behance-card {
  display: block;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16/10;
  transition: transform 0.3s;
}

.behance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.behance-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.behance-card:hover .behance-img {
  transform: scale(1.05);
}

.behance-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Novo Stack Cascade Process */
.stack-section {
  width: 100%;
  padding: 100px 24px;
  background: #050505;
}

.stack-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.stack-intro .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #a855f7;
}

.stack-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  font-weight: 900;
}

.stack-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.stack-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 320px;
}

.stack-card {
  position: sticky;
  top: 100px;
  min-height: 280px;
  padding: 32px 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stack-card + .stack-card {
  margin-top: 80px;
}

.stack-card .card-number {
  font-size: clamp(6rem, 15vw, 15rem);
  font-weight: 400; /* Regular as requested */
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.stack-card .card-text {
  flex: 1;
}

.stack-card h3 {
  margin: 0 0 16px;
  font-size: clamp(3rem, 6vw, 4.5rem); /* Giant Typography */
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.stack-card .text-faded {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.stack-card p {
  margin: 0;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.card-1 { top: 110px; z-index: 1; }
.card-2 { top: 140px; z-index: 2; }
.card-3 { top: 170px; z-index: 3; }
.card-4 { top: 200px; z-index: 4; }

@media (max-width: 768px) {
  .stack-section { padding: 72px 18px; }
  .stack-wrapper { padding-bottom: 180px; }
  .stack-card { top: 80px !important; min-height: auto; padding: 24px 0; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stack-card .card-number { font-size: 5rem; }
  .stack-card + .stack-card { margin-top: 32px; }
}

/* Faint vertical lines grid background for the whole page */
body {
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
}

/* Custom Cursor */
#custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 15px 2px rgba(255, 255, 255, 0.4);
}

#custom-cursor.cursor-hover {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
  backdrop-filter: grayscale(1);
}

#custom-cursor.cursor-click {
  transform: translate(-50%, -50%) scale(0.8);
}

/* Hide cursor on interactive elements since custom takes over */
a, button, .bento-card, .stack-card { 
  cursor: none; 
}

/* Sobre Section Redesign */
.sobre-section {
  padding: 6rem 0;
}

.sobre-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sobre-grid { grid-template-columns: 0.8fr 1.2fr; }
}

.sobre-image-wrapper {
  position: relative;
  width: 100%;
}

.sobre-image {
  width: 100%;
  aspect-ratio: 1/1; /* Square crop mimicking the reference photo */
  object-fit: cover;
  filter: grayscale(80%) contrast(1.1); /* Dark moody vibe */
}

.sobre-content {
  display: flex;
  flex-direction: column;
}

.sobre-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sobre-title .cursive-gradient {
  font-weight: 700;
  font-size: 1.2em;
}

.sobre-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-weight: 400;
  max-width: 38rem;
}

.sobre-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}


/* =========================================
   V7 CSS ARCHITECTURE - THE PINNACLE
========================================= */

/* HTML Scroll Snapping Removido p/ maior fluidez e suavidade */
html { scroll-behavior: smooth; }

/* Base Util Classes */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.hidden { display: none; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-32 { margin-top: 8rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-16 { margin-bottom: 4rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pb-0 { padding-bottom: 0px; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-32 { padding-bottom: 8rem; }
.py-0 { padding-top: 0px; padding-bottom: 0px; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 12px; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.bg-black { background-color: #000; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.text-white { color: #ffffff !important; opacity: 1 !important; }
.text-neutral { color: rgba(255,255,255,0.5) !important; opacity: 1 !important; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.font-medium { font-weight: 500 !important; }
.font-light { font-weight: 300 !important; }
.hover\:text-white:hover { color: #fff !important; }
.transition { transition: all 0.3s ease; }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.inline-block { display: inline-block; }
.grayscale { filter: grayscale(100%) contrast(1.1); }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-start { align-items: flex-start; }
  .md\:text-left { text-align: left; }
  .md\:mx-0 { margin-left: 0; margin-right: 0; }
  .md\:mt-0 { margin-top: 0px; }
  .grid-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* Observer Animations (REVEAL e BLUR mais lentos e reativos) */
.reveal {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(40px);
  transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}
.reveal.revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Divisória Elegante */
.v7-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05) 50%, transparent);
  margin: 0;
  width: 100%;
}

/* Typography Standards */
.v7-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.v7-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
}

/* Dynamic Header */
.v7-header {
  transition: all 0.4s ease;
  padding: 1.5rem 0;
  background: transparent;
}
.v7-header.scrolled {
  background: rgba(2, 2, 2, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Cursor Intensificado */
.cursor-hover-intense {
  transform: translate(-50%, -50%) scale(2);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.8); /* Brilho roxo violento */
}

/* Pulse Intense */
.v7-pulse-hard {
  animation: pulse-hard 3s infinite alternate !important;
  background: var(--color-primary);
  opacity: 0.6; /* Inicial forte */
}
@keyframes pulse-hard {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0.9; }
}

/* Badge "Vagas Disponíveis" */
.badge-v7 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Portfolio Grid 3x2 */
.portfolio-3x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .portfolio-3x2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .portfolio-3x2 { grid-template-columns: repeat(3, 1fr); }
}

/* Card Complexo - Hover Magic */
.port-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  display: block;
}
.port-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.port-card:hover img {
  transform: scale(1.05);
}
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  display: flex;
  padding: 1.5rem;
  transition: all 0.4s ease;
}
.port-text {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.port-title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.port-cat {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 0.9rem;
}
.port-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Requisito: Hover state -> Texto desce/some, Seta vai para baixo/centro */
.port-card:hover .port-text {
  transform: translateY(150%);
  opacity: 0;
}
.port-card:hover .port-arrow {
  right: 50%;
  transform: translateX(50%);
  background: var(--color-primary);
  color: #fff;
}

/* Botão Grid Behance */
.btn-ghost {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* Conic Glow Border Animation Fix (Suave e Clean) */
.v7-glow-border {
  position: relative;
  transition: box-shadow 0.6s ease;
  border: 1px solid rgba(255,255,255,0.05);
}
.v7-glow-border:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.3),
              inset 0 0 20px rgba(168, 85, 247, 0.1);
  z-index: 10;
}

/* Força Cards "Processo" a taparem o fundo e não terem opacidade */
.stack-card-solid {
  background: #000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Marquee Vertical Elegante V7.1 (3 Colunas) */
.marquee-vertical-wrapper {
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.col-track {
  animation: marquee-vert 30s linear infinite;
}
.col-track-reverse {
  animation: marquee-vert-rev 40s linear infinite;
}
.marquee-vertical-track img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: filter 0.3s;
}
.marquee-vertical-track img:hover {
  filter: brightness(1.2);
}
@keyframes marquee-vert {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 0.5rem)); }
}
@keyframes marquee-vert-rev {
  0% { transform: translateY(calc(-50% - 0.5rem)); }
  100% { transform: translateY(0); }
}
.marquee-mask {
  display: none; /* Substituido pela mask-image nativa que não tem bug visual */
}
/* old tracks removed */

/* Footer Grandioso */
.footer-logo-v7 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #fff, var(--color-primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s;
}
.footer-logo-v7:hover {
  opacity: 0.8;
}
.footer-divisor-line {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* =========================================
   V5 CSS APPends
========================================= */

/* Canvas Hero Wave Base */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

/* Fix Hero Elements Weight */
.hero-title-light {
  font-weight: 300 !important;
}

.hero-clock {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

/* Bento Grid Override for Atuação */
.atuacao-grid-fixed {
  grid-template-columns: repeat(1, 1fr) !important;
}
@media (min-width: 640px) {
  .atuacao-grid-fixed { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px) {
  .atuacao-grid-fixed { grid-template-columns: repeat(4, 1fr) !important; }
}
.atuacao-grid-fixed > div {
  grid-column: span 1 !important;
}

/* MARQUEE INFINITO */
.portfolio-giant-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

.cursive-gradient {
  background: -webkit-linear-gradient(45deg, var(--color-primary), #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem 0;
}

.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 35s linear infinite;
  padding-right: 1.5rem;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
  /* -50% shifts exact half, creating infinite loop with duplicated items */
}

.marquee-card {
  display: inline-block;
  position: relative;
  width: 380px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.marquee-card:hover img {
  transform: scale(1.05);
}

.marquee-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  white-space: normal;
}

/* SOBRE FOTO ANIMADA */
.sobre-image-container {
  position: relative;
  width: 100%;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-foto-oficial {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  z-index: 2;
  position: relative;
  filter: grayscale(30%) contrast(1.1);
}

.sobre-pulse-glow {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: var(--color-primary);
  filter: blur(40px);
  opacity: 0.15;
  z-index: 1;
  animation: pulse 4s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.1; }
  100% { transform: scale(1.15); opacity: 0.3; }
}

.sobre-title-novo {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}


/* NOVO FOOTER */
.footer-master {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #020202;
  padding-bottom: 2rem;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  overflow: hidden;
  gap: 0;
}

@media (min-width: 992px) {
  .footer-cta {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-content-wrap {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cta-huge-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}

.tilt-img {
  width: 150%;
  height: auto;
  transform: rotate(-10deg) scale(1.1) translateY(20px);
  opacity: 0.8;
  filter: drop-shadow(-10px 10px 30px rgba(0,0,0,0.8));
}

.footer-links-area {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-links-area {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-logo {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  transition: color 0.3s;
}

.footer-logo:hover {
  color: var(--color-primary-light);
}

.footer-nav-grid {
  display: flex;
  gap: 4rem;
}

.nav-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-col h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.nav-col a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.nav-col a:hover {
  color: #fff;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}

/* V7 CTA - Correção de Engine Vanilla JS/CSS */
.footer-cta-v7 {
  padding: 3rem 1.5rem;
  border: 2px solid rgba(139, 92, 246, 0.5); /* Primary glow border */
  border-radius: 2.5rem;
  background-color: #050505;
  color: #fff;
  display: flex !important;
  flex-direction: column !important;
  gap: 3rem;
  position: relative;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
}

@media (min-width: 768px) {
  .footer-cta-v7 {
    padding: 5rem;
    gap: 5rem;
  }
}

.footer-cta-v7 .cta-top-v7 {
  text-align: center;
  width: 100%;
}

.footer-cta-v7 .cta-top-v7 h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-cta-v7 .cta-top-v7 h2 {
    font-size: 6.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-cta-v7 .cta-top-v7 h2 {
    font-size: 7.5rem;
  }
}

.footer-cta-v7 .cta-bottom-v7 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .footer-cta-v7 .cta-bottom-v7 {
    flex-direction: row !important;
    padding: 0 2rem;
  }
}

.footer-cta-v7 .cta-text-v7 {
  text-align: left;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .footer-cta-v7 .cta-text-v7 {
    font-size: 1.4rem;
  }
}

.footer-cta-v7 .cta-btn-v7 {
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  border-radius: 9999px;
  padding: 1.5rem 3.5rem;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(139, 92, 246, 0);
}

.footer-cta-v7 .cta-btn-v7:hover {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4), 0 0 15px rgba(236, 72, 153, 0.5);
}

@media (min-width: 768px) {
  .footer-cta-v7 .cta-btn-v7 {
    padding: 1.75rem 4rem;
    font-size: 1.5rem;
  }
}

/* V7 Feedbacks (Depoimentos Exatos) */
.feedback-grid-v7 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1152px;
  margin: 3rem auto 0 auto;
}

@media (min-width: 768px) {
  .feedback-grid-v7 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feedback-card-v7 {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  padding: 3rem 2.5rem;
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
}

.feedback-card-v7 .feedback-quote-icon {
  margin-bottom: 2rem;
}

.feedback-card-v7 .feedback-quote-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.feedback-card-v7 .feedback-text-v7 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  flex-grow: 1;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem;
  margin-bottom: 3rem;
  text-align: left;
}

.feedback-card-v7 .feedback-author-v7 {
  margin-top: auto;
  text-align: left;
}

.feedback-card-v7 .feedback-author-name {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.feedback-card-v7 .feedback-author-role {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 300;
}

