*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #033B6C;
  --secondary:     #13629B;
  --bg:            #4A4A4A;
  --light-bg:      #DDD;
  --dark:          #0B1C2E;
  --darker:        #07111E;
  --card-dark:     #0F2236;
  --card-light:    #F4F7FB;
  --border-dark:   rgba(255,255,255,0.07);
  --border-light:  rgba(3,59,108,0.12);
  --text-dark:     #E8EEF6;
  --text-light:    #1A2D42;
  --muted-dark:    #7A90A8;
  --muted-light:   #5A6E82;
  --accent:        #13629B;
  --accent-glow:   rgba(19,98,155,0.35);
  --white:         #ffffff;
  --radius:        16px;
  --font-head:     'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --nav-h:         72px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--darker); color: var(--text-dark); overflow-x: hidden; line-height: 1.7; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

/* ══════════════════════════════ NAV ══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
  background: rgba(7,17,30,0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: background .35s, box-shadow .35s;
}
nav.scrolled {
  background: rgba(7,17,30,0.97);
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.nav-logo {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  color: var(--white); text-decoration: none; letter-spacing: -.025em;
  display: flex; align-items: center; gap: 2px;
}
.nav-logo .bold { color: var(--white); }
.nav-logo .thin { color: #9BB8D4; font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .83rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted-dark); text-decoration: none;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--secondary); transition: width .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary); color: var(--white) !important;
  padding: .5rem 1.4rem; border-radius: 50px;
  border: none; cursor: pointer; font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
  box-shadow: 0 2px 16px rgba(3,59,108,0.5);
}
.nav-cta:hover {
  background: var(--secondary) !important; transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(3,59,108,0.6) !important;
}
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 210; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(7,17,30,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--secondary); }

/* ══════════════════════════════ HERO ══════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 6vw 80px;
  position: relative; overflow: hidden;
  background: var(--darker);
}

.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(19,98,155,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,98,155,0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 90% 80% at 40% 50%, black 20%, transparent 80%);
}

.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(3,59,108,0.4) 0%, transparent 65%); top: -200px; left: -150px; filter: blur(60px); }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(19,98,155,0.2) 0%, transparent 65%); bottom: -100px; right: 5%; filter: blur(80px); }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(3,59,108,0.25) 0%, transparent 65%); top: 40%; right: 25%; filter: blur(50px); }

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(19,98,155,0.12); border: 1px solid rgba(19,98,155,0.35);
  padding: .45rem 1.1rem; border-radius: 50px; margin-bottom: 2.2rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: #7FBFED;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .7s ease forwards .1s;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; box-shadow: 0 0 10px #22C55E;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title {
  font-family: var(--font-head); font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.07; letter-spacing: -.03em;
  color: var(--white); margin-bottom: 1.6rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .85s ease forwards .25s;
}
.hero-title .hl {
  background: linear-gradient(135deg, #4DA3E8 0%, #13629B 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(.95rem, 1.4vw, 1.15rem); font-weight: 300;
  color: var(--muted-dark); max-width: 540px; margin-bottom: 2.8rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .85s ease forwards .4s;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  margin-bottom: 4rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s ease forwards .55s;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .92rem; text-decoration: none;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 28px rgba(3,59,108,0.5);
}
.btn-primary:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(3,59,108,0.6); }
.btn-primary svg, .btn-ghost svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-dark);
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 500; font-size: .92rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-ghost:hover { border-color: var(--secondary); color: #7FBFED; transform: translateY(-2px); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 3rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border-dark);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .8s ease forwards .7s;
}
.stat-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-num em { color: var(--secondary); font-style: normal; }
.stat-lbl { font-size: .8rem; color: var(--muted-dark); margin-top: .3rem; letter-spacing: .02em; }

.hero-visual {
  position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
  z-index: 1; width: min(42vw, 520px);
  opacity: 0; animation: fadeRight 1s ease forwards .65s;
}

/* ══════════════════════════════ DASH CARD ══════════════════════════════ */
.dash-card {
  background: linear-gradient(145deg, var(--card-dark), #0A1B30);
  border: 1px solid var(--border-dark); border-radius: 20px;
  padding: 1.6rem; box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.dash-title { font-family: var(--font-head); font-size: .78rem; font-weight: 700; color: var(--muted-dark); text-transform: uppercase; letter-spacing: .1em; }
.dash-live { display: flex; align-items: center; gap: 6px; font-size: .72rem; color: #22C55E; font-weight: 600; }
.dash-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 8px #22C55E; animation: blink 2s infinite; }
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1.2rem; }
.dash-metric { background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); border-radius: 12px; padding: 1rem; }
.dm-val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.dm-val.green { color: #22C55E; }
.dm-val.blue  { color: #60AEFF; }
.dm-lbl { font-size: .72rem; color: var(--muted-dark); margin-top: .2rem; }
.dash-bar-row { margin-bottom: .9rem; }
.bar-info { display: flex; justify-content: space-between; margin-bottom: .4rem; }
.bar-name { font-size: .78rem; color: var(--muted-dark); }
.bar-pct  { font-size: .78rem; color: var(--white); font-weight: 600; }
.bar-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.dash-footer { margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: space-between; }
.dash-tag { font-size: .7rem; color: var(--muted-dark); letter-spacing: .06em; text-transform: uppercase; }
.dash-status {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 600;
  background: rgba(34,197,94,0.1); color: #22C55E;
  padding: .25rem .7rem; border-radius: 50px;
  border: 1px solid rgba(34,197,94,0.2);
}

/* ══════════════════════════════ SECTIONS SHARED ══════════════════════════════ */
section { position: relative; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 100px 6vw; }
.section-label { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--secondary); margin-bottom: 1rem; display: block; }
.section-title { font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; color: var(--white); margin-bottom: 1.2rem; }
.section-title.dark { color: var(--text-light); }
.section-desc { font-size: 1.05rem; font-weight: 300; color: var(--muted-dark); max-width: 540px; line-height: 1.75; }
.section-desc.dark { color: var(--muted-light); }

/* ══════════════════════════════ SOBRE ══════════════════════════════ */
#sobre { background: var(--dark); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.sobre-visual { position: relative; }
.sobre-box {
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  border-radius: 20px; padding: 2.5rem;
  color: var(--white); position: relative; overflow: hidden;
}
.sobre-box::before { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.08); top: -60px; right: -60px; }
.sobre-box-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; position: relative; }
.sobre-box p { font-size: .92rem; color: rgba(255,255,255,0.8); line-height: 1.7; position: relative; }
.sobre-float {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--card-dark); border: 1px solid var(--border-dark);
  border-radius: 16px; padding: 1.2rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4); min-width: 180px;
}
.sf-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.sf-num em { color: var(--secondary); font-style: normal; }
.sf-lbl { font-size: .78rem; color: var(--muted-dark); margin-top: .25rem; }

.valores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.valor-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1.1rem; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark); border-radius: 12px;
  transition: border-color .2s, background .2s;
}
.valor-item:hover { border-color: rgba(19,98,155,0.3); background: rgba(19,98,155,0.05); }
.valor-icon { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; background: rgba(19,98,155,0.18); display: flex; align-items: center; justify-content: center; }
.valor-icon svg { width: 18px; height: 18px; color: var(--secondary); }
.valor-name { font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: .2rem; }
.valor-desc { font-size: .8rem; color: var(--muted-dark); line-height: 1.5; }

/* ══════════════════════════════ SERVIÇOS ══════════════════════════════ */
#servicos { background: var(--darker); }
.servicos-header { text-align: center; margin-bottom: 4rem; }
.servicos-header .section-desc { margin: 0 auto; }
.servicos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.servico-card {
  background: var(--card-dark); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 2rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.servico-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(3,59,108,0.12) 0%, transparent 60%); opacity: 0; transition: opacity .3s; }
.servico-card:hover { transform: translateY(-6px); border-color: rgba(19,98,155,0.35); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.servico-card:hover::before { opacity: 1; }
.sc-icon { width: 52px; height: 52px; border-radius: 12px; margin-bottom: 1.4rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(3,59,108,0.4); }
.sc-icon svg { width: 24px; height: 24px; color: var(--white); }
.sc-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .7rem; }
.sc-desc { font-size: .87rem; color: var(--muted-dark); line-height: 1.65; }
.sc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.2rem; }
.sc-tag { font-size: .7rem; font-weight: 600; letter-spacing: .05em; color: #7FBFED; background: rgba(19,98,155,0.12); border: 1px solid rgba(19,98,155,0.2); border-radius: 50px; padding: .2rem .65rem; }

/* ══════════════════════════════ TECH ══════════════════════════════ */
#tech { background: var(--dark); overflow: hidden; }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tech-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.5rem; }
.tech-feat {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.3rem; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark); border-radius: 14px;
  transition: border-color .2s, transform .2s;
}
.tech-feat:hover { border-color: rgba(19,98,155,0.35); transform: translateX(4px); }
.tf-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: rgba(3,59,108,0.25); border: 1px solid rgba(19,98,155,0.3); display: flex; align-items: center; justify-content: center; }
.tf-icon svg { width: 20px; height: 20px; color: #7FBFED; }
.tf-title { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.tf-desc { font-size: .82rem; color: var(--muted-dark); line-height: 1.6; }

.tech-visual { position: relative; display: flex; justify-content: center; }
.phone-wrap { position: relative; width: 280px; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6)); }
.phone-frame { background: linear-gradient(145deg, #1A2D42, #0D1B2A); border: 2px solid rgba(255,255,255,0.1); border-radius: 40px; overflow: hidden; padding: 16px 12px; box-shadow: inset 0 0 40px rgba(0,0,0,0.4); }
.phone-screen { background: var(--card-dark); border-radius: 28px; overflow: hidden; min-height: 420px; }
.phone-topbar { background: var(--primary); padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; }
.phone-topbar-title { font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--white); }
.phone-topbar-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 6px #22C55E; animation: blink 2s infinite; }
.phone-body { padding: 1rem; display: flex; flex-direction: column; gap: .7rem; }
.phone-msg { padding: .7rem .9rem; border-radius: 12px; font-size: .72rem; line-height: 1.5; }
.msg-bot { background: rgba(3,59,108,0.25); border: 1px solid rgba(19,98,155,0.2); color: var(--text-dark); border-bottom-left-radius: 4px; align-self: flex-start; max-width: 85%; }
.msg-user { background: var(--primary); color: var(--white); border-bottom-right-radius: 4px; align-self: flex-end; max-width: 85%; }
.phone-input-row { display: flex; align-items: center; gap: .5rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); border-radius: 20px; padding: .5rem .8rem; margin: .5rem; }
.phone-input-text { font-size: .7rem; color: var(--muted-dark); flex: 1; }
.phone-input-btn { width: 26px; height: 26px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; }
.phone-input-btn svg { width: 12px; height: 12px; color: var(--white); }
.tech-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(3,59,108,0.3) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); filter: blur(60px); z-index: -1; }

/* ══════════════════════════════ POR QUE NÓS ══════════════════════════════ */
#porque { background: var(--darker); }
.porque-header { text-align: center; margin-bottom: 4rem; }
.porque-header .section-desc { margin: 0 auto; }
.porque-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.porque-card { background: var(--card-dark); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 2rem; transition: transform .25s, box-shadow .25s; }
.porque-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.pc-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: #13629b; line-height: 1; margin-bottom: .8rem; letter-spacing: -.05em; }
.pc-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .7rem; }
.pc-desc { font-size: .87rem; color: var(--muted-dark); line-height: 1.7; }

/* ══════════════════════════════ CTA ══════════════════════════════ */
#cta { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); position: relative; overflow: hidden; }
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-orb { position: absolute; border-radius: 50%; pointer-events: none; background: rgba(255,255,255,0.07); filter: blur(40px); }
.cta-orb-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.cta-orb-2 { width: 300px; height: 300px; bottom: -80px; left: 10%; }
.cta-inner { max-width: 1400px; margin: 0 auto; padding: 90px 6vw; position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-left { max-width: 580px; }
.cta-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 1rem; letter-spacing: -.02em; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.cta-right { display: flex; flex-direction: column; gap: 1rem; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--primary); padding: .9rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: .95rem; text-decoration: none; border: none; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s; box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,0.35); background: #F0F6FF; }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; justify-content: center; background: transparent; color: var(--white); padding: .9rem 2.2rem; border-radius: 50px; font-weight: 600; font-size: .95rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.45); transition: border-color .2s, background .2s, transform .15s; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.cta-contact-info { display: flex; flex-direction: column; gap: .5rem; margin-top: .5rem; }
.cci-item { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,0.7); }
.cci-item svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ══════════════════════════════ FOOTER ══════════════════════════════ */
footer { background: var(--darker); border-top: 1px solid var(--border-dark); padding: 60px 6vw 30px; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-dark); margin-bottom: 2rem; }
.footer-brand-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: .8rem; letter-spacing: -.02em; }
.footer-brand-name span { color: var(--secondary); }
.footer-brand-desc { font-size: .87rem; color: var(--muted-dark); line-height: 1.7; max-width: 300px; }
.footer-powered { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-dark); border: 1px solid var(--border-dark); padding: .3rem .8rem; border-radius: 50px; }
.fp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--secondary); }
.footer-col-title { font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { font-size: .87rem; color: var(--muted-dark); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1400px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-copy { font-size: .8rem; color: var(--muted-dark); }
.footer-copy span { color: var(--secondary); }

/* ══════════════════════════════ ANIMATIONS ══════════════════════════════ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { to { opacity: 1; transform: translateY(-50%); } }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════ RESPONSIVE ══════════════════════════════ */
@media (max-width: 960px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-float { right: 0; }
  .tech-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tech-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { gap: 2rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-right { align-items: center; }
  .valores-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════ MODAL ══════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(4, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%; max-width: 620px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark);
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--muted-dark);
  transition: background .2s, color .2s;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.modal-close svg { width: 16px; height: 16px; }

.modal-header { margin-bottom: 1.8rem; }
.modal-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: .4rem; }
.modal-sub { font-size: .88rem; color: var(--muted-dark); }

.modal-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--muted-dark); letter-spacing: .04em; text-transform: uppercase; }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: .7rem 1rem;
  color: var(--text-dark);
  font-family: var(--font-body); font-size: .9rem;
  transition: border-color .2s, background .2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: rgba(19,98,155,0.08);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--card-dark); color: var(--text-dark); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; justify-content: center; margin-top: .4rem; }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 1.8rem 1.4rem; }
}
