/* ============================================================
   WEZA CONSTRUÇÕES - style.css
   Cores: Laranja #E87722 | Azul Escuro #0E2D67 | Preto | Branco
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --orange:      #E87722;
  --orange-dark: #c5601a;
  --orange-light:#f4a35e;
  --blue:        #0E2D67;
  --blue-mid:    #1a4494;
  --blue-light:  #1e3d80;
  --black:       #0a0a0a;
  --dark:        #111827;
  --dark-2:      #1f2937;
  --gray:        #6b7280;
  --gray-light:  #f3f4f6;
  --white:       #ffffff;
  --border:      rgba(255,255,255,.12);
  --shadow:      0 8px 32px rgba(14,45,103,.13);
  --shadow-lg:   0 20px 60px rgba(14,45,103,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.35s cubic-bezier(.4,0,.2,1);
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Outfit', sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 99px; }

/* ─── Utility ───────────────────────────────────────────── */
.section-padding { padding: 100px 0; }
.text-orange { color: var(--orange) !important; }

.section-tag {
  display: inline-block;
  background: rgba(232,119,34,.12);
  color: var(--orange);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 14px;
  border: 1px solid rgba(232,119,34,.25);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue);
  letter-spacing: .01em;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary-weza {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-weza:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,119,34,.35);
}

.btn-orcamento {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-weight: 600;
  font-size: .88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-orcamento:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,119,34,.4);
  color: var(--white) !important;
}

/* ─── PRELOADER ─────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-inner img { width: 160px; margin: 0 auto 24px; filter: brightness(0) invert(1); }
.preloader-bar {
  width: 200px; height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-bar span {
  display: block; height: 100%;
  background: var(--orange);
  width: 0;
  border-radius: 99px;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ─── HEADER / NAVBAR ───────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding: 0;
}
.header .navbar {
  padding: 22px 0;
  transition: padding .4s ease;
}
.header.scrolled {
  background: rgba(14,45,103,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.header.scrolled .navbar { padding: 14px 0; }

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

.navbar-nav .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--orange);
  border-radius: 99px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 14px; right: 14px; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white) !important; }

/* Custom Toggler */
.navbar-toggler {
  border: none; background: none; padding: 6px;
  outline: none !important; box-shadow: none !important;
}
.toggler-icon {
  display: flex; flex-direction: column; gap: 5px; width: 26px;
}
.toggler-icon span {
  display: block; height: 2px; background: var(--white);
  border-radius: 99px; transition: var(--transition);
}

/* ─── HERO SECTION ──────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(14,45,103,.85) 0%,
    rgba(10,10,10,.65) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding-top: 80px;
}

.hero-swiper { padding: 0 !important; }

.hero-slide-inner {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 0 calc((100vw - min(1200px, 92vw)) / 2);
  padding-top: 80px;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  background: rgba(232,119,34,.25);
  border: 1px solid rgba(232,119,34,.5);
  color: var(--orange-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.hero-title span { color: var(--orange); }

.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  padding: 15px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex; align-items: center;
  border: 2px solid var(--orange);
}
.btn-hero-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232,119,34,.45);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--transition);
  display: inline-flex; align-items: center;
  backdrop-filter: blur(8px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* Hero Navigation */
.hero-prev, .hero-next {
  width: 50px !important; height: 50px !important;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.hero-prev::after, .hero-next::after { display: none !important; }
.hero-prev i, .hero-next i { font-size: .85rem; }
.hero-prev:hover, .hero-next:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.hero-prev { left: 28px !important; }
.hero-next { right: 28px !important; }

.hero-pagination { bottom: 36px !important; }
.hero-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.4);
  opacity: 1;
  transition: var(--transition);
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 28px;
  border-radius: 99px;
}

/* Scroll down indicator */
.scroll-down {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.scroll-down span {
  display: block; width: 2px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 99px;
  animation: scrollBounce 1.4s ease infinite;
}
.scroll-down span:nth-child(2) { animation-delay: .2s; }
.scroll-down span:nth-child(3) { animation-delay: .4s; }
@keyframes scrollBounce {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(4px); }
}

/* Hero Animations */
.animate-fade { animation: fadeIn .8s ease forwards; }
.animate-up { animation: slideUp .8s ease forwards; opacity: 0; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── STATS SECTION ─────────────────────────────────────── */
.stats-section {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.stats-section::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.03'%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");
}

.stat-card {
  padding: 48px 28px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(255,255,255,.04); }

.stat-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 500;
}

/* ─── ABOUT SECTION ─────────────────────────────────────── */
.about-section { background: var(--white); }

.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: 32px; right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 12px 40px rgba(232,119,34,.45);
}
.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

.about-shape {
  position: absolute;
  top: -20px; left: -20px;
  width: 140px; height: 140px;
  border: 5px solid rgba(232,119,34,.2);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-text strong { color: var(--blue); }

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mvv-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid transparent;
  transition: var(--transition);
}
.mvv-card:hover {
  border-color: var(--orange);
  background: rgba(232,119,34,.05);
  transform: translateY(-2px);
}
.mvv-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.mvv-card h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.mvv-card p {
  font-size: .82rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.55;
}

/* ─── SERVICES SECTION ──────────────────────────────────── */
.services-section {
  background: var(--gray-light);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); }

.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,45,103,.5), transparent);
  transition: var(--transition);
}

.service-body {
  padding: 28px;
  position: relative;
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  margin-top: -42px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(232,119,34,.4);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); }

.service-body h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.service-body p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-btn {
  color: var(--orange);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.service-btn i { transition: var(--transition); }
.service-btn:hover { color: var(--blue); }
.service-btn:hover i { transform: translateX(5px); }

/* ─── PORTFOLIO SECTION ─────────────────────────────────── */
.portfolio-section { background: var(--white); }

.portfolio-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.filter-btn {
  background: var(--gray-light);
  color: var(--dark);
  border: none;
  padding: 9px 22px;
  border-radius: 99px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.filter-btn.active { box-shadow: 0 6px 18px rgba(232,119,34,.3); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-item { overflow: hidden; }
.portfolio-item.hidden { display: none; }

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.portfolio-card img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform .6s ease;
}
.portfolio-card:hover img { transform: scale(1.08); }

.portfolio-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,45,103,.95) 0%, transparent 100%);
  padding: 60px 22px 22px;
  transform: translateY(60px);
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-info { transform: translateY(0); }

.portfolio-cat {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 8px;
}

.portfolio-info h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.portfolio-info p {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  margin: 0;
}

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section {
  background: linear-gradient(135deg, var(--blue) 0%, #1a3d7c 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(232,119,34,.08);
}
.testimonials-section .section-tag { background: rgba(232,119,34,.2); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.65); }

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(232,119,34,.4);
  transform: translateY(-4px);
}

.testi-stars { color: #fbbf24; margin-bottom: 16px; font-size: .9rem; }
.testi-text {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.testi-author h6 {
  color: var(--white);
  font-weight: 700; font-size: .95rem; margin: 0;
}
.testi-author span { color: rgba(255,255,255,.55); font-size: .8rem; }

.testi-pagination { margin-top: 28px !important; position: relative !important; }
.testi-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,.4); opacity: 1;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--orange); width: 24px; border-radius: 99px;
}

/* ─── CLIENTS SECTION ───────────────────────────────────── */
.clients-section { background: var(--gray-light); }

.client-logo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(14,45,103,.08);
  transition: var(--transition);
  min-height: 90px;
}
.client-logo-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(232,119,34,.15);
  transform: translateY(-3px);
}
.client-logo-card span {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .04em;
  transition: var(--transition);
}
.client-logo-card:hover span { color: var(--orange); }

/* ─── CONTACT SECTION ───────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-info-wrap {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 44px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-wrap::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(232,119,34,.1);
}
.contact-info-wrap h4 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-info-wrap > p { color: rgba(255,255,255,.65); font-size: .92rem; margin-bottom: 32px; }

.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-info-item:last-of-type { border-bottom: none; }

.ci-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(232,119,34,.2);
  border: 1px solid rgba(232,119,34,.4);
  color: var(--orange);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item h6 {
  color: var(--white);
  font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 4px;
}
.contact-info-item p {
  color: rgba(255,255,255,.65);
  font-size: .88rem; margin: 0; line-height: 1.5;
}

.contact-social { display: flex; gap: 10px; margin-top: 28px; }
.cs-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
  transition: var(--transition);
}
.cs-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid rgba(14,45,103,.1);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.form-group { position: relative; }
.form-group label {
  display: block;
  font-weight: 600; font-size: .85rem;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.weza-input {
  width: 100%;
  background: var(--gray-light) !important;
  border: 1.5px solid rgba(14,45,103,.12) !important;
  border-radius: var(--radius) !important;
  padding: 13px 18px !important;
  font-family: var(--font-body) !important;
  font-size: .92rem !important;
  color: var(--dark) !important;
  transition: var(--transition) !important;
  box-shadow: none !important;
}
.weza-input:focus {
  border-color: var(--orange) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(232,119,34,.12) !important;
}
.weza-input.is-invalid { border-color: #ef4444 !important; }

select.weza-input { cursor: pointer; }
textarea.weza-input { resize: vertical; min-height: 130px; }

.form-result {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600; font-size: .92rem;
  display: none;
}
.form-result.success {
  background: rgba(16,185,129,.1);
  border: 1.5px solid rgba(16,185,129,.4);
  color: #065f46;
  display: block;
}
.form-result.error {
  background: rgba(239,68,68,.08);
  border: 1.5px solid rgba(239,68,68,.3);
  color: #b91c1c;
  display: block;
}

/* Loading spinner on submit */
#submitBtn .spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
  margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--dark); }

.footer-top { padding: 80px 0 60px; }

.footer-logo { height: 52px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }

.footer-desc {
  color: rgba(255,255,255,.55);
  font-size: .88rem; line-height: 1.75; margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--orange);
  border-radius: 99px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a i { color: var(--orange); font-size: .75rem; }
.footer-links a:hover { color: var(--orange); transform: translateX(4px); }

.footer-contacts { display: flex; flex-direction: column; gap: 16px; }
.footer-contacts li { display: flex; gap: 14px; align-items: flex-start; }
.footer-contacts i {
  color: var(--orange);
  font-size: .9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contacts span { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.55; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,.4);
  font-size: .83rem; margin: 0;
}
.footer-bottom strong { color: rgba(255,255,255,.7); }

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(232,119,34,.4);
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); transform: translateY(-4px); }

/* ─── AOS-like scroll animations ────────────────────────── */
[data-aos] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(.92); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(14,45,103,.97);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 16px;
    border: 1px solid rgba(255,255,255,.1);
  }
  .navbar-nav .nav-link::after { display: none; }
  .hero-slide-inner { padding: 0 24px; padding-top: 80px; }
  .about-badge { right: 16px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .contact-info-wrap { padding: 32px; }
  .contact-form-wrap { padding: 32px; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-card:last-child { border-bottom: none; }
}

@media (max-width: 767px) {
  .section-padding { padding: 70px 0; }
  .hero-prev, .hero-next { display: none !important; }
  .about-main-img { height: 320px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { padding: 60px 0 40px; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
  .back-to-top { bottom: 20px; right: 20px; }
}

/* ─── PAGE HERO (páginas internas) ──────────────────────── */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(14,45,103,.88) 0%,
    rgba(10,10,10,.72) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.page-hero-content .hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item a {
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { color: var(--orange); }
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.4);
  content: "›";
}

/* ─── HIGHLIGHT CARDS (home) ─────────────────────────────── */
.home-highlights { background: var(--gray-light); }

.highlight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid rgba(14,45,103,.08);
  transition: var(--transition);
  color: var(--dark);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  color: var(--dark);
}
.highlight-card--orange::before {
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}
.highlight-card--orange .hc-icon { background: var(--orange); }
.highlight-card--orange:hover { border-color: transparent; }

.hc-icon {
  width: 56px; height: 56px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.highlight-card:hover .hc-icon { transform: scale(1.1) rotate(-5deg); }

.highlight-card h5 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.highlight-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.hc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(14,45,103,.08);
  color: var(--blue);
  margin-top: 20px;
  transition: var(--transition);
  align-self: flex-start;
}
.highlight-card:hover .hc-arrow {
  background: var(--blue);
  color: var(--white);
  transform: translateX(4px);
}
.highlight-card--orange:hover .hc-arrow {
  background: var(--orange);
}

/* Navbar always visible on inner pages */
.header.scrolled {
  background: rgba(14,45,103,.97) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

