:root {
  --blue-dark: #0d2d5e;
  --blue: #1a56a0;
  --blue-light: #2e7dd6;
  --blue-pale: #e8f1fc;
  --orange: #e87722;
  --orange-light: #f9a558;
  --orange-pale: #fef3e8;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #eef0f5;
  --gray-300: #c8cdd9;
  --gray-500: #7a849a;
  --gray-700: #3d4559;
  --gray-900: #111827;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(13,45,94,.08);
  --shadow: 0 6px 24px rgba(13,45,94,.12);
  --shadow-lg: 0 16px 48px rgba(13,45,94,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-900); background: var(--white); overflow-x: hidden; }

/* ───── NAV ───── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100); padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; box-shadow: var(--shadow-sm);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--blue-dark); letter-spacing: -.3px; }
.nav-logo-text span:last-child { font-size: 11px; color: var(--orange); font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13.5px; font-weight: 500; color: var(--gray-700); padding: 8px 14px; border-radius: 8px; transition: all .2s; }
.nav-links a:hover { background: var(--blue-pale); color: var(--blue); }
.nav-cta { background: var(--orange) !important; color: white !important; font-weight: 600 !important; padding: 10px 20px !important; border-radius: 50px !important; box-shadow: 0 2px 12px rgba(232,119,34,.3); }
.nav-cta:hover { background: #d06418 !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,119,34,.4) !important; }

/* ───── HERO ───── */
.hero {
  min-height: 100vh; padding-top: 72px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3a6e 50%, #0d2450 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 60%, rgba(46,125,214,.25) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 20% 40%, rgba(232,119,34,.12) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,119,34,.2); border: 1px solid rgba(232,119,34,.4);
  color: var(--orange-light); font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--orange-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 800; line-height: 1.1; color: white; margin-bottom: 24px; letter-spacing: -.5px; }
.hero h1 em { font-style: normal; color: var(--orange-light); }
.hero p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.75); margin-bottom: 40px; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: white; font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 50px; text-decoration: none; transition: all .25s; box-shadow: 0 4px 20px rgba(232,119,34,.4); }
.btn-primary:hover { background: #d06418; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,119,34,.5); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; font-weight: 500; font-size: 15px; padding: 14px 28px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.35); text-decoration: none; transition: all .25s; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.hero-visual { position: relative; }
.toolbox { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 24px; padding: 32px; backdrop-filter: blur(8px); box-shadow: var(--shadow-lg); }
.toolbox-title { font-family: var(--font-display); color: white; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: .6; margin-bottom: 20px; text-align: center; }
.toolbox-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.toolbox-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 18px; transition: all .3s; cursor: pointer; text-decoration: none; display: block; }
.toolbox-card:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.toolbox-card-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.toolbox-card h3 { font-family: var(--font-display); color: white; font-size: 13px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.toolbox-card p { color: rgba(255,255,255,.55); font-size: 11.5px; line-height: 1.5; }
.toolbox-card.orange { border-top: 3px solid var(--orange); }
.toolbox-card.blue { border-top: 3px solid var(--blue-light); }

/* ───── STATS ───── */
.stats { background: white; padding: 48px 5%; border-bottom: 1px solid var(--gray-100); }
.stats-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.stat-item { text-align: center; flex: 1; min-width: 140px; }
.stat-value { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--blue-dark); line-height: 1; margin-bottom: 6px; }
.stat-value span { color: var(--orange); }
.stat-label { font-size: 12.5px; color: var(--gray-500); line-height: 1.4; max-width: 160px; margin: 0 auto; }
.stat-divider { width: 1px; height: 56px; background: var(--gray-100); }

/* ───── SECTIONS ───── */
section { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; }
.tag-blue { background: var(--blue-pale); color: var(--blue); }
.tag-orange { background: var(--orange-pale); color: var(--orange); }
.section-header { margin-bottom: 64px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: var(--blue-dark); line-height: 1.15; margin-bottom: 16px; letter-spacing: -.5px; }
.section-header h2 em { font-style: normal; color: var(--orange); }
.section-header p { font-size: 16.5px; color: var(--gray-500); line-height: 1.7; max-width: 580px; font-weight: 300; }

/* ───── MARQUES ───── */
.brands-section { background: var(--gray-50); }
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.brand-card { background: white; border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all .3s; position: relative; overflow: hidden; text-decoration: none; display: block; }
.brand-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.brand-card.card-blue::before { background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%); }
.brand-card.card-orange::before { background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%); }
.brand-card.card-purple::before { background: linear-gradient(90deg, #7c3aed 0%, #a855f7 100%); }
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.brand-card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 24px; }
.icon-blue { background: var(--blue-pale); }
.icon-orange { background: var(--orange-pale); }
.icon-purple { background: #f3f0ff; }
.brand-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 12px; line-height: 1.2; }
.brand-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 24px; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.brand-tag { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 50px; background: var(--gray-100); color: var(--gray-700); }
.brand-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; margin-top: 28px; color: var(--blue); text-decoration: none; transition: gap .2s; }
.brand-card.card-orange .brand-link { color: var(--orange); }
.brand-card.card-purple .brand-link { color: #7c3aed; }
.brand-link:hover { gap: 10px; }

/* ───── SERVICES ───── */
.services-section { background: white; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card { border: 1.5px solid var(--gray-100); border-radius: var(--radius); padding: 36px; transition: all .3s; position: relative; }
.service-card:hover { border-color: var(--blue-light); box-shadow: 0 0 0 4px var(--blue-pale); transform: translateY(-3px); }
.service-card-num { position: absolute; top: 28px; right: 28px; font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--gray-100); line-height: 1; pointer-events: none; }
.service-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
.service-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.service-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--gray-700); }
.service-list li::before { content: '✓'; color: var(--blue-light); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pole-label { display: flex; gap: 8px; align-items: center; margin-bottom: 28px; }
.pole-dot { width: 14px; height: 14px; border-radius: 4px; }
.pole-dot.blue { background: var(--blue); }
.pole-dot.orange { background: var(--orange); }
.pole-text { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--blue-dark); }

/* ───── PILIERS ───── */
.pillars-section { background: var(--blue-dark); position: relative; overflow: hidden; }
.pillars-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(46,125,214,.2) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 5% 80%, rgba(232,119,34,.1) 0%, transparent 50%); }
.pillars-section .section-header h2 { color: white; }
.pillars-section .section-header p { color: rgba(255,255,255,.6); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 2; }
.pillar-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 32px 24px; transition: all .3s; }
.pillar-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.pillar-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--orange-light); margin-bottom: 16px; line-height: 1; opacity: .7; }
.pillar-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; margin-bottom: 12px; line-height: 1.3; }
.pillar-card p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ───── CTA ───── */
.cta-section { background: var(--gray-50); }
.cta-box { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); border-radius: 28px; padding: 72px 64px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-box::before { content: '⚙'; position: absolute; right: -30px; bottom: -60px; font-size: 300px; opacity: .04; pointer-events: none; }
.cta-box h2 { font-family: var(--font-display); font-size: clamp(1.6rem,2.5vw,2.4rem); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 16px; }
.cta-box h2 em { font-style: normal; color: var(--orange-light); }
.cta-box p { font-size: 15.5px; color: rgba(255,255,255,.7); line-height: 1.65; font-weight: 300; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ───── CONTACT ───── */
.contact-section { background: white; border-top: 1px solid var(--gray-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 20px; }
.contact-info p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 36px; font-weight: 300; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { width: 42px; height: 42px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--blue-dark); margin-bottom: 2px; }
.contact-item-text span { font-size: 14px; color: var(--gray-500); }
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea { border: 1.5px solid var(--gray-100); border-radius: 10px; padding: 12px 16px; font-family: var(--font-body); font-size: 14.5px; color: var(--gray-900); transition: all .2s; outline: none; background: var(--gray-50); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-light); background: white; box-shadow: 0 0 0 3px var(--blue-pale); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { display: flex; align-items: center; gap: 8px; background: var(--orange); color: white; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer; transition: all .25s; box-shadow: 0 4px 20px rgba(232,119,34,.35); width: fit-content; }
.form-submit:hover { background: #d06418; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232,119,34,.45); }
.form-success { background: #d1fae5; color: #065f46; padding: 14px 20px; border-radius: 10px; font-weight: 600; font-size: 14px; }

/* ───── FOOTER ───── */
footer { background: var(--blue-dark); padding: 64px 5% 32px; color: rgba(255,255,255,.65); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; line-height: 1.65; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: white; text-decoration: none; transition: background .2s; }
.footer-social:hover { background: rgba(255,255,255,.2); }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13.5px; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 12px; }

/* ───── ANIMATIONS ───── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ───── RESPONSIVE ───── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .brands-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-box { grid-template-columns: 1fr; padding: 48px 36px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 28px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ───── LOGOS CAROUSEL ───── */
.logos-carousel-section {
  padding: 60px 0;
  background: var(--dark-card);
  overflow: hidden;
}
.logos-track-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logos-track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  animation: logos-scroll 30s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logo-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slide img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.4);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.logo-slide img:hover {
  filter: none;
  opacity: 1;
}
@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
