.elementor-22 .elementor-element.elementor-element-ec553bc{--display:flex;}@media(min-width:768px){.elementor-22 .elementor-element.elementor-element-ec553bc{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-ad6bea4 *//* =========================================================
   MANES ENGENHARIA — style.css
   Premium structural engineering experience
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --white: #ffffff;
  --off-white: #f6f7f9;
  --concrete: #e8eaed;
  --concrete-gray: #9aa3ad;
  --graphite: #12161d;
  --graphite-soft: #1b212b;
  --navy: #0a1128;
  --navy-deep: #060b1a;
  --steel: #3b7bd6;      /* steel blue accent */
  --steel-light: #6ea0e6;
  --steel-dark: #2b5fa8;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--off-white);
  --fg: var(--graphite);
  --fg-muted: #5c6672;
  --accent: var(--steel);
  --border: rgba(18, 22, 29, 0.10);
  --border-light: rgba(255, 255, 255, 0.14);

  /* Type */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Shape */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px -20px rgba(10, 17, 40, 0.25);
  --shadow-soft: 0 10px 30px -12px rgba(10, 17, 40, 0.18);
  --shadow-lg: 0 40px 90px -30px rgba(10, 17, 40, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  --header-h: 84px;
  --maxw: 1700px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(80px, 11vw, 160px) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow--light { color: var(--steel-light); }

.section__head { max-width: 720px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; }
.section__head--left { text-align: left; margin-left: 0; }
.section__title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  color: var(--graphite);
  text-wrap: balance;
}
.section__title--light { color: var(--white); }
.section__lead {
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--fg-muted);
  text-wrap: pretty;
}
.section__lead a { color: var(--accent); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--primary { background: var(--accent); color: var(--white); box-shadow: 0 12px 28px -10px rgba(59, 123, 214, 0.7); }
.btn--primary:hover { background: var(--steel-dark); box-shadow: 0 16px 34px -10px rgba(59, 123, 214, 0.8); }
.btn--dark { background: var(--graphite); color: var(--white); }
.btn--dark:hover { background: var(--navy); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }

/* Ripple */
.ripple .ripple-dot {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.5);
  animation: ripple 0.65s var(--ease);
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--steel), var(--steel-light));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  transition: height var(--dur) var(--ease);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-soft);
}
.header.is-scrolled .header__inner { height: 66px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.header.is-scrolled .logo { color: var(--graphite); }
.logo__mark { display: grid; place-items: center; color: var(--steel-light); }
.header.is-scrolled .logo__mark { color: var(--steel); }
.logo__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo__text em { font-style: normal; font-weight: 400; opacity: 0.6; }

/* Nav */
.nav { display: flex; gap: 4px; }
.nav__link {
  position: relative;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color var(--dur) var(--ease);
}
.header.is-scrolled .nav__link { color: var(--fg-muted); }
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 0; height: 2px; background: var(--accent);
  transform: translateX(-50%);
  transition: width var(--dur) var(--ease);
  border-radius: 2px;
}
.nav__link:hover { color: var(--white); }
.header.is-scrolled .nav__link:hover { color: var(--graphite); }
.nav__link.is-active { color: var(--white); }
.header.is-scrolled .nav__link.is-active { color: var(--accent); }
.nav__link.is-active::after { width: 22px; }

.header__cta { padding: 11px 22px; font-size: 0.88rem; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 950; }
.burger span {
  width: 26px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.header.is-scrolled .burger span { background: var(--graphite); }
.burger.is-open span { background: var(--white); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 940;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
  opacity: 0; visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease), transform 0.5s var(--ease);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: scale(1); }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-menu__nav a {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  opacity: 0; transform: translateY(20px);
  transition: color 0.3s var(--ease);
}
.mobile-menu.is-open .mobile-menu__nav a { animation: menuIn 0.5s var(--ease) forwards; }
.mobile-menu__nav a:hover { color: var(--steel-light); }
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
  color: var(--white);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__video, .hero__fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__video { z-index: 1; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 11, 26, 0.55) 0%, rgba(6, 11, 26, 0.35) 40%, rgba(6, 11, 26, 0.9) 100%),
    radial-gradient(120% 80% at 20% 20%, rgba(10, 17, 40, 0.2), rgba(6, 11, 26, 0.7));
}
.hero__grid {
  position: absolute; inset: 0; z-index: 3; opacity: 0.15;
  background-image:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(120% 90% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 30%, #000 30%, transparent 75%);
}

.hero__content { position: relative; z-index: 5; max-width: 900px; }
.hero__title {
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-bottom: 26px;
}
.hero__title em { font-style: normal; color: var(--steel-light); }
.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: pretty;
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero stats */
.hero__stats {
  position: relative; z-index: 5;
  margin-top: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.stat__num{
    font-size: clamp(1.5rem,2.8vw,2.4rem);
    margin-bottom:10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}
.stat__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.7);
}
.scroll-indicator__mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px; display: flex; justify-content: center; padding-top: 7px;
}
.scroll-indicator__mouse span {
  width: 3px; height: 7px; background: var(--white); border-radius: 3px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
.scroll-indicator__text { font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; }
@keyframes scrollDot { 0%{opacity:0;transform:translateY(-4px);} 40%{opacity:1;} 80%,100%{opacity:0;transform:translateY(10px);} }

/* ---------- About ---------- */
.about { background: var(--bg); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about__badge {
  position: absolute; bottom: -22px; right: -14px;
  padding: 20px 26px; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 2px;
}
.about__badge-num { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--graphite); }
.about__badge-label { font-size: 0.75rem; color: var(--fg-muted); letter-spacing: 0.06em; }
.about__text p { color: var(--fg-muted); font-size: 1.05rem; margin-bottom: 18px; text-wrap: pretty; }
.about__list { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--graphite); }
.about__list span { color: var(--accent); font-size: 0.7rem; }

/* ---------- Services ---------- */
.services { background: var(--bg-alt); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(59,123,214,0.14), rgba(59,123,214,0.05));
  color: var(--accent);
  margin-bottom: 22px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.service-card:hover .service-card__icon { background: var(--accent); color: var(--white); }
.service-card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--graphite); }
.service-card p { font-size: 0.94rem; color: var(--fg-muted); }

/* ---------- Why ---------- */
.why { background: var(--navy); position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.why > .container { position: relative; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why__item {
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.why__item:hover { background: rgba(255, 255, 255, 0.06); transform: translateY(-5px); }
.why__num { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--steel-light); display: block; margin-bottom: 16px; }
.why__item h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.why__item p { color: rgba(255, 255, 255, 0.62); font-size: 0.94rem; }

/* ---------- Projects ---------- */
.projects { background: var(--bg); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter {
  font-family: var(--font-head);
  font-size: 0.88rem; font-weight: 500;
  padding: 10px 22px; border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  background: var(--white);
  transition: all var(--dur) var(--ease);
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.is-active { background: var(--graphite); color: var(--white); border-color: var(--graphite); }

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.project:nth-child(1), .project:nth-child(4) { aspect-ratio: 4 / 5.6; }
.project.is-hidden { display: none; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.project:hover img { transform: scale(1.08); }
.project__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, rgba(6,11,26,0) 30%, rgba(6,11,26,0.85) 100%);
  opacity: 0.85;
  transition: opacity var(--dur) var(--ease);
}
.project:hover .project__overlay { opacity: 1; }
.project__info { transform: translateY(10px); transition: transform var(--dur) var(--ease); }
.project:hover .project__info { transform: translateY(0); }
.project__tag { display: inline-block; font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-light); margin-bottom: 8px; }
.project__info h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.project__info p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 12px; }
.project__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--white);
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.project:hover .project__link { opacity: 1; transform: translateY(0); }
.project__link:hover { gap: 14px; color: var(--steel-light); }

/* ---------- Process / Timeline ---------- */
.process { background: var(--bg-alt); }
.timeline {
  position: relative;
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 20px; bottom: 20px;
  width: 2px; background: linear-gradient(var(--concrete), var(--steel), var(--concrete));
}
.timeline__step { position: relative; display: flex; gap: 28px; align-items: flex-start; padding: 22px 0; }
.timeline__num {
  flex: none;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  background: var(--white); color: var(--accent);
  border: 2px solid var(--steel);
  box-shadow: var(--shadow-soft);
  position: relative; z-index: 1;
}
.timeline__body { padding-top: 6px; }
.timeline__body h3 { font-size: 1.3rem; color: var(--graphite); margin-bottom: 6px; }
.timeline__body p { color: var(--fg-muted); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy-deep); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { padding: 34px 30px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 24px; }
.testimonial blockquote { font-family: var(--font-head); font-size: 1.08rem; font-weight: 500; line-height: 1.5; color: var(--white); }
.testimonial figcaption { display: flex; flex-direction: column; gap: 2px; }
.testimonial__name { font-weight: 700; color: var(--white); }
.testimonial__role { font-size: 0.85rem; color: var(--steel-light); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq__wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
  background: var(--white);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq__item[open] { border-color: transparent; box-shadow: var(--shadow-soft); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--graphite);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-weight: 400; font-size: 1.6rem; color: var(--accent);
  transition: transform var(--dur) var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { overflow: hidden; }
.faq__answer p { padding-bottom: 22px; color: var(--fg-muted); }

/* ---------- Contact ---------- */
.contact { background: var(--navy); position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 80% 0%, rgba(59,123,214,0.18), transparent 60%);
}
.contact__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__info p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 32px; max-width: 440px; }
.contact__list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact__list li { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.9); font-weight: 500; }
.contact__list a:hover { color: var(--steel-light); }
.contact__ic {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-light);
  color: var(--steel-light);
}
.contact__ic svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact__map { border-radius: var(--radius); height: 180px; overflow: hidden; }
.contact__map-inner {
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: rgba(255,255,255,0.55);
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.contact__map-inner svg { width: 34px; height: 34px; fill: none; stroke: var(--steel-light); stroke-width: 1.4; }
.contact__map-inner span { font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.1em; }

/* Form */
.contact__form { padding: 36px; border-radius: var(--radius-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.98rem;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  color: var(--white);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field select { color: rgba(255,255,255,0.7); }
.field select option { color: var(--graphite); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--steel); background: rgba(255,255,255,0.1);
}
.field input:invalid:not(:placeholder-shown) { border-color: #e06666; }
.form-feedback { margin-top: 12px; font-size: 0.9rem; color: var(--steel-light); min-height: 1.2em; }

/* ---------- Footer ---------- */
.footer { background: var(--graphite); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand p { margin-top: 18px; max-width: 300px; font-size: 0.95rem; }
.logo__text--footer { color: var(--white); }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.footer__col a, .footer__col span { font-size: 0.95rem; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--steel-light); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---------- Floating ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  transition: transform var(--dur) var(--ease);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
@keyframes floatPulse { 0%,100%{ box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);} 50%{ box-shadow: 0 12px 40px -6px rgba(37,211,102,0.9);} }

.back-to-top {
  position: fixed; bottom: 96px; right: 26px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--graphite); color: var(--white);
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }
.back-to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Glass ---------- */
.glass {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
}
.about__badge.glass { background: rgba(255,255,255,0.9); border-color: var(--border); box-shadow: var(--shadow); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal[data-reveal="left"] { transform: translateX(-50px); }
.reveal[data-reveal="right"] { transform: translateX(50px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Stagger children */
.services__grid .reveal.is-visible,
.why__grid .reveal.is-visible,
.projects__grid .reveal.is-visible,
.testimonials__grid .reveal.is-visible { transition-delay: var(--stagger, 0s); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .about__grid, .contact__grid, .faq__wrap { grid-template-columns: 1fr; }
  .about__media img { aspect-ratio: 16 / 11; }
  .about__badge { right: 16px; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .project:nth-child(1), .project:nth-child(4) { aspect-ratio: 4 / 5; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; padding: 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .section__head { text-align: left; }
  .timeline__num { width: 48px; height: 48px; }
  .timeline::before { left: 23px; }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}/* End custom CSS */