@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800;12..96,900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg-black: #020202;
  --bg-dark: #080808;
  --bg-light: #f5f6f8;
  --blue-primary: #123194;
  --blue-hover: #1e45c4;
  --text-white: #ffffff;
  --text-grey: #a0a0a0;
  --text-dark: #111111;
  --border-dark: rgba(255, 255, 255, 0.08);
  --f1: 'Bricolage Grotesque', sans-serif;
  --f2: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f2);
  background-color: var(--bg-black);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ════ UTILITIES ════ */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 5%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-primary);
  color: var(--text-white);
  font-family: var(--f2);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: var(--blue-hover);
}

.section-title {
  font-family: var(--f1);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-eyebrow {
  font-family: var(--f2);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue-primary);
  margin-bottom: 1rem;
  display: block;
}

/* ════ NAV — ALC PILL ════ */
.nav-outer {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 2%;
  transition: top 0.3s ease;
}

.nav-outer.sc {
  top: 0.8rem;
}

.nav-pill {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  width: 100%;
  max-width: 1200px;
}

.logo-img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-l {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s;
  opacity: 0.8;
}

.nav-l:hover {
  opacity: 1;
}

.nav-cta {
  background-color: var(--blue-primary);
  color: var(--text-white);
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  background-color: var(--blue-hover);
}

/* ════ HERO ════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 12rem 0 8rem 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gradient to blend image into the black background */
.hero-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-black) 0%, rgba(2,2,2,0.8) 30%, transparent 80%);
  z-index: 2;
}

.hero-bg-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, var(--bg-black) 0%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 650px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hero-eyebrow span {
  color: var(--blue-hover);
}

#hero h1 {
  font-family: var(--f1);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-grey);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* ════ NUMBERS (PROOF BAR) ════ */
#proof {
  background-color: var(--text-white);
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.proof-item {
  border-right: 1px solid #e0e0e0;
}

.proof-item:last-child {
  border-right: none;
}

.proof-number {
  font-family: var(--f1);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  color: var(--blue-primary);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 0.5rem;
}

.proof-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ════ LOGOS ════ */
#logos {
  background-color: #ffffff;
  padding: 3rem 0;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}

.logos-track {
  display: flex;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem; /* Match gap */
  opacity: 0.6;
  filter: grayscale(100%);
  animation: marquee 30s linear infinite;
  flex-shrink: 0;
}

.logos-slide img {
  height: 100px;
  object-fit: contain;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ════ SERVICES ════ */
#services {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 8rem 0;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.services-left .section-title {
  color: var(--text-dark);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
}

.services-left p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.srv-card {
  border-radius: 12px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}

.srv-card:hover {
  transform: translateY(-5px);
}

.srv-blue {
  background-color: var(--blue-primary);
  color: var(--text-white);
}

.srv-black {
  background-color: var(--bg-black);
  color: var(--text-white);
}

.srv-icon {
  margin-bottom: 1.5rem;
}

.srv-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--text-white);
}

.srv-card h3 {
  font-family: var(--f1);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.srv-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* ════ RADAR SECTION ════ */
.radar-section {
  background-color: var(--bg-light);
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.radar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.radar-text {
  flex: 1;
}

.radar-text h2 {
  font-family: var(--f1);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--blue-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.radar-text p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.radar-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.radar-image img {
  max-width: 100%;
  height: auto;
}

/* ════ DETAILED SERVICES ════ */
.detailed-services {
  padding: 8rem 0;
  background-color: var(--bg-black);
  border-bottom: 1px solid var(--border-dark);
}

.service-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 8rem;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.sr-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sr-img-contain {
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.sr-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-row:hover .sr-image img {
  transform: scale(1.05);
}

.sr-content {
  flex: 1;
}

.sr-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.sr-content h3 {
  font-family: var(--f1);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.sr-content p {
  font-size: 1.05rem;
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sr-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}

/* ════ BRASIL SECTION ════ */
.brasil-section {
  padding: 8rem 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}

.text-center {
  text-align: center;
}

.brasil-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

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

.mvv-card {
  background-color: var(--bg-black);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-primary);
}

.mvv-card h4 {
  font-family: var(--f1);
  font-size: 1.5rem;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.mvv-card p {
  color: var(--text-grey);
  line-height: 1.6;
}

.brasil-map-col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.brasil-map-col img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
}

/* ════ CERTIFICADOS SECTION ════ */
.certificados-section {
  padding: 8rem 0;
  background-color: var(--bg-black);
  border-bottom: 1px solid var(--border-dark);
}

.cert-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.cert-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.cert-badge {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cert-badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cert-text {
  flex: 1;
  color: var(--text-grey);
}

.cert-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cert-text p:last-child {
  margin-bottom: 0;
}

.cert-text strong {
  font-weight: 700;
  color: #ffffff;
}

/* ════ RESULTADOS SECTION ════ */
.resultados-section {
  padding: 8rem 0;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}

.resultados-grid {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.resultados-grid::-webkit-scrollbar {
  height: 8px;
}

.resultados-grid::-webkit-scrollbar-track {
  background: var(--bg-black);
  border-radius: 4px;
}

.resultados-grid::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 4px;
}

.resultados-grid::-webkit-scrollbar-thumb:hover {
  background: var(--blue-primary);
}

.res-card {
  flex: 0 0 calc(90% - 2rem);
  scroll-snap-align: center;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f1f6fc;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .res-card {
    flex: 0 0 45%;
  }
}

.res-card img {
  width: 100%;
  height: auto;
  display: block;
}

.res-mask {
  position: absolute;
  top: 6%;
  left: 2%;
  width: 60%;
  height: 12%;
  background: #f1f6fc;
  display: flex;
  align-items: center;
  font-family: var(--f1);
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 800;
  color: #0b1554;
  padding-left: 1.5rem;
  z-index: 10;
  border-radius: 12px;
}

/* ════ PROCESS ════ */
#process {
  background-color: var(--bg-black);
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.process-step {
  padding-top: 2rem;
  border-top: 2px solid var(--border-dark);
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--blue-primary);
  transition: width 0.5s ease;
}

.process-step:hover::before {
  width: 100%;
}

.step-num {
  font-family: var(--f1);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--f1);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-grey);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ════ FOUNDER ════ */
#founder {
  background-color: var(--bg-black);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
}

.founder-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.founder-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-black) 0%, rgba(2,2,2,0.9) 20%, transparent 80%);
  z-index: 2;
}

.founder-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
}

.founder-content .section-title {
  color: var(--text-white);
  margin-bottom: 2rem;
}

.founder-content .section-title span {
  color: var(--blue-primary);
}

.founder-text {
  font-size: 1.05rem;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.founder-text strong {
  color: var(--text-white);
  font-weight: 600;
}

/* ════ CASES ════ */
#cases {
  background-color: var(--bg-dark);
  padding: 8rem 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.case-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 49, 148, 0.9) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  transition: all 0.3s;
}

.play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--text-white);
  margin-left: 4px;
}

.case-card:hover .play-btn {
  border-color: var(--text-white);
  background-color: rgba(255,255,255,0.1);
}

.case-quote {
  font-family: var(--f1);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

/* ════ CONTACT FORM ════ */
.contact-section {
  padding: 8rem 0;
  background-color: var(--bg-black);
  border-top: 1px solid var(--border-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--blue-primary);
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.contact-eyebrow svg {
  width: 16px;
  height: 16px;
}

.contact-title {
  font-family: var(--f1);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.text-blue {
  color: var(--blue-primary);
}

.contact-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-grey);
}

.contact-form-box {
  background-color: #0b1c66; /* Deep blue from screenshot */
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-header {
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-family: var(--f1);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.form-header p {
  font-size: 1rem;
  opacity: 0.9;
}

.vince-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vince-form input {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 50px;
  background-color: #263884; /* Slightly lighter blue */
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--f2);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.vince-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.vince-form input:focus {
  outline: none;
  border-color: #ffffff;
  background-color: #314496;
}

.form-btn {
  width: 100%;
  padding: 1.2rem;
  border-radius: 50px;
  background-color: #ffffff;
  color: #0b1c66;
  font-family: var(--f1);
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.form-btn svg {
  width: 20px;
  height: 20px;
}

.form-btn:hover {
  background-color: var(--blue-primary);
  color: #ffffff;
}

/* ════ FOOTER ════ */
footer {
  background-color: var(--bg-black);
  border-top: 1px solid var(--border-dark);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-copy {
  color: var(--text-grey);
  font-size: 0.85rem;
}

/* ════ RESPONSIVE ════ */
@media (max-width: 992px) {
  .hero-bg-img, .founder-bg-img {
    width: 100%;
    opacity: 1;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  .hero-bg-img::before, .founder-bg-img::before {
    display: none; /* Remove desktop gradient on mobile */
  }
  /* Blue glow behind the image */
  .hero-bg-img::after, .founder-bg-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(18, 49, 148, 0.6) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(50px);
    z-index: -1;
  }
  .hero-content, .founder-content {
    text-align: center;
    padding: 2rem 1.5rem 0 1.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  .hero-content h1, .founder-content h2 {
    font-size: 2.8rem; /* Bold impact */
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 2rem;
  }
  .services-container {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .service-row, .service-row.reverse {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
  }
  .radar-wrap {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .brasil-grid {
    flex-direction: column;
    gap: 3rem;
  }
  .cert-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .proof-item {
    border-right: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .nav-pill {
    padding: 0.5rem 0.6rem 0.5rem 1.2rem;
    width: 92%;
    border-radius: 100px;
    background: rgba(5, 5, 5, 0.4) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(18, 49, 148, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
  }
  .nav-cta {
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 100px;
    white-space: nowrap;
  }
  .logo-img {
    height: 38px;
    width: auto;
  }
  .section-title {
    font-size: 2.2rem !important;
  }
  /* Dark sections keep white text */
  #hero .hero-content h1, 
  #founder .founder-content h2,
  #contato .contact-title,
  .dark-section .section-title {
    color: #fff !important;
  }
  #hero .hero-content h1 span, 
  #founder .founder-content h2 span {
    color: #fff !important;
  }
  .contact-title {
    font-size: 2.2rem !important;
  }
  .contact-grid {
    padding: 0 1rem;
  }
  .contact-form-box {
    padding: 2rem 1.5rem;
  }
  #hero, #founder {
    display: flex !important;
    flex-direction: column !important;
    padding: 150px 0 0 0 !important; /* Avoid overlap */
    min-height: auto;
    text-align: center;
    background-color: var(--bg-black);
  }
  .hero-content, .founder-content {
    order: 1 !important;
    padding: 0 1.2rem !important;
    position: relative;
    z-index: 5;
  }
  /* Glow behind the text (ALC style) */
  .hero-content::before, .founder-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(18, 49, 148, 0.25) 0%, transparent 80%);
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: -1;
  }
  .hero-bg-img, .founder-bg-img {
    order: 2 !important;
    position: relative !important;
    height: auto !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
    display: block !important;
    opacity: 1 !important;
    overflow: visible !important;
  }
  .hero-bg-img img, .founder-bg-img img {
    position: relative;
    z-index: 2;
    width: 100% !important;
    max-width: 480px;
    height: auto !important;
    display: block;
    margin: 0 auto;
    object-fit: contain !important;
  }
  /* The ALC Blue Blur/Glow - Side Light Effect */
  .hero-bg-img::after, .founder-bg-img::after {
    content: '';
    position: absolute;
    top: 40%;
    left: auto;
    right: -15%; /* Light coming from the side like ALC */
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(18, 49, 148, 0.6) 0%, transparent 70%);
    transform: translateY(-50%);
    filter: blur(45px);
    z-index: 1;
  }
  .hero-bg-img::before, .founder-bg-img::before {
    display: none !important;
  }
  .hero-content h1, .founder-content h2 {
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    color: #fff !important;
  }
  .hero-content h1 span {
    color: #fff !important;
  }
  .logos-slide img {
    height: 60px;
  }
  .logos-slide {
    gap: 2rem;
    padding-right: 2rem;
  }
  .nav-outer {
    padding: 1rem 0;
  }
  .sr-content h3 {
    font-size: 2rem;
  }
  .mvv-card h4 {
    font-size: 1.5rem;
  }
}

/* ════ FORM FEEDBACK ════ */
.form-result {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  text-align: center;
  min-height: 1.5em;
}

.success-msg {
  color: #4caf50;
  font-weight: 600;
  animation: fadeIn 0.4s ease;
}

.error-msg {
  color: #f44336;
  font-weight: 600;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════ CTA SOCIAL PROOF ════ */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.form-social-proof {
  margin-top: 1.2rem;
  justify-content: center;
}

.social-proof-badges {
  display: flex;
  align-items: center;
}

.badge-circle {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--bg-black);
  margin-left: -10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.badge-circle:first-child {
  margin-left: 0;
}

.badge-circle img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.hero-social-proof p {
  font-size: 0.85rem;
  color: var(--text-grey);
  margin: 0;
  line-height: 1.4;
  max-width: 280px;
  text-align: left;
}

.hero-social-proof p strong {
  color: #fff;
}

@media (max-width: 768px) {
  .hero-social-proof {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  .hero-social-proof p {
    text-align: center;
  }
  .badge-circle {
    width: 30px;
    height: 30px;
  }
}