/* ===================== RESET & BASE ===================== */
:root {
  --color-primary: #1A2EFF;
  --color-primary-dark: #0D1A8A;
  --color-secondary: #7B2FFF;
  --gradient-main: linear-gradient(135deg, #0D1A8A 0%, #7B2FFF 100%);
  --bg-dark: #0A0A14;
  --bg-mid: #11132b;
  --bg-light: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-primary-on-light: #0A0A14;
  --text-secondary: #B0B8D1;
  --accent: #7B2FFF;

  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(123, 47, 255, 0.2);

  --radius-card: 16px;
  --radius-btn: 8px;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-hero: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ===================== UTILITIES ===================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow--center {
  display: block;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 56px;
}

.section-title--left {
  text-align: left;
  margin-bottom: 24px;
}

.text-gradient {
  background: var(--gradient-main);
  background: linear-gradient(135deg, #5a6dff 0%, #c084ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================== LIGHT SECTION VARIANT ===================== */
.section--light {
  background: var(--bg-light) !important;
  color: var(--text-primary-on-light);
}

.section--light .section-title,
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--text-primary-on-light);
}

.section--light .mission__card p,
.section--light .value-card p {
  color: #5a6072;
}

.section--light .card {
  background: rgba(13, 26, 138, 0.03);
  border: 1px solid rgba(13, 26, 138, 0.08);
  box-shadow: 0 8px 32px rgba(123, 47, 255, 0.08);
}

.section--light .card:hover {
  border-color: rgba(123, 47, 255, 0.35);
  box-shadow: 0 16px 48px rgba(123, 47, 255, 0.18);
}

.section--light .section-glow {
  opacity: 0.12;
}

/* Decorative ambient glows used to add depth/light to sections */
.section-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.section-glow--left {
  left: -160px;
  top: 10%;
  background: var(--color-primary);
}

.section-glow--right {
  right: -160px;
  bottom: 10%;
  background: var(--accent);
}

/* Glassmorphism Card */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 47, 255, 0.5);
  box-shadow: 0 16px 48px rgba(123, 47, 255, 0.35);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.card:hover .card__icon {
  transform: scale(1.1) rotate(-6deg);
}

.card__icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 8px 24px rgba(123, 47, 255, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(123, 47, 255, 0.55);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  margin-top: 32px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

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

/* Fade-up animation (IntersectionObserver) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered entrance for grid cards */
.values__grid .fade-up:nth-child(1) { transition-delay: 0s; }
.values__grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.values__grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.values__grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.values__grid .fade-up:nth-child(5) { transition-delay: 0.32s; }

.services__grid .fade-up:nth-child(1) { transition-delay: 0s; }
.services__grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.services__grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.services__grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.services__grid .fade-up:nth-child(5) { transition-delay: 0.32s; }
.services__grid .fade-up:nth-child(6) { transition-delay: 0.4s; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 20, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

.navbar__cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  margin: 0 auto;
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6, 7, 20, 0.96) 0%, rgba(10, 12, 38, 0.88) 38%, rgba(35, 18, 90, 0.55) 65%, rgba(123, 47, 255, 0.35) 100%),
    linear-gradient(0deg, rgba(6, 6, 16, 0.85) 0%, rgba(6, 6, 16, 0.2) 45%, rgba(6, 6, 16, 0.55) 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
}

.hero__glow--1 {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -120px;
  background: var(--color-primary);
  animation: floatBlob 14s ease-in-out infinite;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  bottom: -140px;
  left: -100px;
  background: var(--accent);
  animation: floatBlob 18s ease-in-out infinite reverse;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 100px;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e4e8ff;
  padding: 10px 22px 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 28px;
  transition-delay: 0.05s;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-main);
  background: linear-gradient(135deg, #5a6dff 0%, #c084ff 100%);
  box-shadow: 0 0 12px rgba(192, 132, 255, 0.8);
  flex-shrink: 0;
  animation: badgePulse 2.4s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(2.3rem, 6.4vw, 4.75rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  transition-delay: 0.15s;
}

.hero__title .text-gradient {
  font-style: italic;
  font-weight: 500;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 44px;
  transition-delay: 0.3s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
  transition-delay: 0.45s;
}

.hero__actions .btn--ghost svg {
  transition: transform var(--transition);
}

.hero__actions .btn--ghost:hover svg {
  transform: translateX(4px);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition-delay: 0.55s;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #c4cdff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__stat span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  transition-delay: 0.6s;
}

.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--text-primary);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

@keyframes scrollDot {
  0% { opacity: 1; top: 8px; }
  60% { opacity: 0; top: 24px; }
  100% { opacity: 0; top: 24px; }
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ===================== ABOUT ===================== */
.about {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--bg-mid);
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about__lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 24px;
  transition-delay: 0.05s;
}

.about__paragraph {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about__paragraph--problem {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.15rem;
}

.about__media img {
  border-radius: var(--radius-card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
  transition: transform 0.6s ease;
}

/* ===================== SHOWCASE (VÍDEO) ===================== */
.showcase {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--bg-dark);
}

.showcase__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.showcase__lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 20px 0 28px;
}

.showcase__highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
}

.showcase__highlights li {
  position: relative;
  padding-left: 28px;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.5;
}

.showcase__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gradient-main);
}

.showcase__media video {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  background: #000;
  display: block;
}

.about__media:hover img {
  transform: scale(1.02);
}

/* ===================== MISSION & VISION ===================== */
.mission {
  padding: 0 0 100px;
  background: var(--bg-mid);
}

.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mission__card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.mission__card p {
  color: var(--text-secondary);
}

/* ===================== VALUES ===================== */
.values {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--bg-dark);
}

.values__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===================== SERVICES ===================== */
.services {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--bg-mid);
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card__media {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.service-card:hover .service-card__media img {
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.2rem;
  margin: 24px 24px 8px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0 24px 24px;
}

/* ===================== SECTORS (FULL SERVICE) ===================== */
.sectors {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.sectors__lead {
  max-width: 720px;
  margin: -32px auto 56px;
  text-align: center;
  font-size: 1.05rem;
  color: #5a6072;
}

.sectors__tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.sectors__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(13, 26, 138, 0.12);
  background: rgba(13, 26, 138, 0.03);
  color: var(--text-primary-on-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.sectors__tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: color var(--transition);
}

.sectors__tab:hover {
  border-color: rgba(123, 47, 255, 0.35);
  transform: translateY(-2px);
}

.sectors__tab.is-active {
  background: var(--gradient-main);
  border-color: transparent;
  color: #fff;
}

.sectors__tab.is-active .sectors__tab-icon {
  color: #fff;
}

.sectors__panels {
  position: relative;
  z-index: 1;
}

.sectors__panel {
  display: none;
}

.sectors__panel.is-active {
  display: block;
  animation: panelFade 0.5s ease;
}

.sectors__panel-text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.sectors__panel-text h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.sectors__panel-text p {
  color: #5a6072;
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sectors__item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid rgba(13, 26, 138, 0.08);
  box-shadow: 0 8px 32px rgba(123, 47, 255, 0.08);
}

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

.sectors__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 20, 0.55) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.sectors__item:hover::after {
  opacity: 1;
}

.sectors__item:hover img {
  transform: scale(1.08);
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 16, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 24px;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ===================== CONTACT ===================== */
.contact {
  padding: 100px 0;
  background: var(--bg-dark);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__list {
  margin-bottom: 8px;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.contact__list a:hover {
  color: var(--accent);
}

.contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.contact__icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-btn);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color var(--transition), background var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.form-submit {
  margin-top: 8px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #060610;
  border-top: 1px solid var(--glass-border);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  height: 36px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 16px;
}

.footer__brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer__contact a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ===================== RESPONSIVE ===================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__media {
    order: -1;
  }

  .about__media img {
    max-height: 360px;
  }

  .showcase__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase__media {
    order: -1;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid var(--glass-border);
  }

  .navbar__nav.active {
    transform: translateX(0);
  }

  .navbar__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .navbar__cta {
    width: 100%;
    text-align: center;
  }

  .navbar__toggle {
    display: flex;
  }

  .mission__grid {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .sectors__grid {
    grid-template-columns: 1fr;
  }

  .sectors__lead {
    margin-top: -16px;
  }

  .sectors__tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .sectors__tab {
    flex-shrink: 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    gap: 24px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    min-width: 40%;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__glow--1,
  .hero__glow--2 {
    width: 220px;
    height: 220px;
  }

  .section-glow {
    width: 280px;
    height: 280px;
    filter: blur(100px);
    opacity: 0.25;
  }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  .hero__bg-img,
  .hero__glow--1,
  .hero__glow--2,
  .hero__scroll span,
  .whatsapp-float {
    animation: none;
  }

  .fade-up {
    transition-duration: 0.01ms;
  }
}
