:root {
  --bg-main: #05070a;
  --bg-alt: #0a0d12;
  --card-bg: #10151e;
  --accent: #00e676;
  --accent-soft: rgba(0, 230, 118, 0.15);
  --text-main: #f5f7fa;
  --text-muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --radius-xl: 24px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.45);
  --transition-fast: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 50%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.6), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
}

.logo-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pill {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--text-muted);
  font-weight: 600;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, #bbf7d0 0, #4ade80 30%, #22c55e 65%, #15803d 100%);
  box-shadow: 0 15px 45px rgba(34, 197, 94, 0.45);
  color: #02120a;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-primary span.icon {
  font-size: 1.1rem;
}

.btn-primary:hover {
  transform: translateY(-1px) translateZ(0);
  filter: brightness(1.06);
  box-shadow: 0 18px 55px rgba(22, 163, 74, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 25px rgba(21, 128, 61, 0.6);
}

.hero {
  padding: 3.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.12), rgba(15, 23, 42, 0.9));
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.hero-kicker span.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e 0, #22c55e 45%, transparent 70%);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1.4rem, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.hero-title span.accent {
  background: linear-gradient(120deg, #bbf7d0, #22c55e, #a7f3d0);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 480px;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.7rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-meta-pill {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  font-weight: 600;
}

.btn-ghost span.icon {
  font-size: 1rem;
  margin-right: 0.4rem;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.7);
  transform: translateY(-1px);
}

.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.hero-note::before {
  content: "";
  width: 18px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.6), transparent);
}

.hero-panel {
  position: relative;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.15), transparent 55%), linear-gradient(145deg, rgba(15, 23, 42, 0.96), #020617);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(16, 185, 129, 0.1), transparent 60%), radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.1), transparent 55%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.hero-panel-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-panel-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: center;
}

.hero-panel-highlight {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
}

.hero-panel-highlight span {
  color: #bbf7d0;
}

.hero-panel-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.hero-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(55, 65, 81, 0.7);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel-badge {
  justify-self: end;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-panel-badge-main {
  padding: 0.45rem 0.85rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  text-align: right;
  font-weight: 500;
}

.hero-panel-badge-main strong {
  display: block;
  font-size: 0.9rem;
  color: #e5e7eb;
  font-weight: 700;
}

.hero-panel-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.9);
}

section {
  padding: 3rem 0 2.5rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-weight: 600;
}

.section-title {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.section-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 460px;
  font-weight: 400;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 1.3rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.8);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
  border-color: rgba(52, 211, 153, 0.8);
  background: rgba(2, 6, 23, 0.98);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.service-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.service-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-weight: 500;
}

.service-chip {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.work-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.work-item img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(1.05);
  display: block;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.96), transparent 55%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem;
  transition: opacity var(--transition-fast);
}

.work-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.work-info strong {
  display: block;
  font-size: 0.86rem;
  color: #e5e7eb;
  font-weight: 700;
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.95);
  border-color: rgba(96, 165, 250, 0.9);
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-card {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.12), transparent 60%), rgba(15, 23, 42, 0.96);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.contact-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.contact-row-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-row-item span.icon {
  font-size: 1rem;
}

form {
  display: grid;
  gap: 0.8rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  font-weight: 600;
}

input,
textarea {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.85);
  padding: 0.55rem 0.7rem;
  font-size: 0.86rem;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  font-family: inherit;
}

input:focus,
textarea:focus {
  border-color: rgba(52, 211, 153, 0.9);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.6);
  background: rgba(15, 23, 42, 0.97);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 260px;
  font-weight: 400;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-highlight {
  padding: 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.contact-highlight strong {
  color: #e5e7eb;
  font-weight: 700;
}

.contact-whatsapp-card {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.26), rgba(22, 163, 74, 0.95));
  color: #022c16;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.contact-whatsapp-card-main {
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-whatsapp-card-main strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
  font-weight: 700;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.9);
  color: #ecfdf5;
  font-size: 0.82rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  font-weight: 700;
  font-family: inherit;
}

.btn-whatsapp span.icon {
  font-size: 1rem;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  background: rgba(4, 120, 87, 1);
  box-shadow: 0 12px 35px rgba(2, 44, 34, 0.8);
}

footer {
  border-top: 1px solid rgba(30, 64, 175, 0.4);
  padding: 1.2rem 0 1.8rem;
  margin-top: 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #bbf7d0, #22c55e 40%, #16a34a 100%);
  box-shadow: 0 18px 45px rgba(22, 163, 74, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 60;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.whatsapp-float img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(22, 163, 74, 0.95);
  filter: brightness(1.05);
}

.whatsapp-float::after {
  content: "Chat WhatsApp";
  position: absolute;
  right: 110%;
  margin-right: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.fade-section {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .services-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav {
    padding-inline: 0.2rem;
  }

  .hero {
    padding-top: 2.6rem;
  }

  section {
    padding: 2.4rem 0 2rem;
  }

  .services-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .works-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-footer {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-panel {
    padding: 1.05rem;
  }
}
