html {
  scroll-behavior: smooth;
}

body {
  background: #0b1326;
  color: #dae2fd;
  font-family: "Hanken Grotesk", sans-serif;
}

h1, h2, h3, h4, .display-title, .display-subtitle, .section-title, .section-title-center, .footer-brand {
  font-family: "Sora", sans-serif;
}

.nav-glass {
  background: rgba(11, 19, 38, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo, .footer-logo {
  height: 42px;
  width: auto;
}

.nav-link {
  color: rgba(218, 226, 253, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.nav-link.active, .nav-link:hover {
  color: #57d6f9;
}

.btn {
  border-radius: 999px;
}

.btn-brand {
  background: #57d6f9;
  color: #001f27;
  border: none;
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(87, 214, 249, 0.18);
}

.btn-brand:hover {
  background: rgb(45.7038539554%, 86.7491548343%, 98.060851927%);
  color: #001f27;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
  background: url("img/hero.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 14, 32, 0.8), rgba(87, 214, 249, 0.2));
}

.hero-content {
  z-index: 1;
  padding: 4rem 0;
}

.display-title {
  font-size: clamp(3rem, 8vw, 4rem);
  line-height: 1;
  font-weight: 800;
  max-width: 20ch;
}

.display-title span {
  color: #57d6f9;
  font-style: italic;
}

.hero-lead {
  max-width: 44rem;
  font-size: 1.15rem;
  color: #bcc8ce;
  margin: 1.5rem auto 2rem;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: #57d6f9;
  font-size: 2.5rem;
}

.section-pad {
  padding: 7rem 0;
}

.section-alt {
  background: rgba(6, 14, 32, 0.55);
}

.section-heading {
  margin-bottom: 2.5rem;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.section-line {
  width: 7rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #57d6f9, #f15a40, #fbd000);
}

.glass-card, .form-card, .contact-card, .hero-art {
  background: rgba(11, 19, 38, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 2rem;
}

.glass-card {
  padding: 2rem;
}
.glass-card h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.5rem;
  color: #57d6f9;
}
.glass-card p {
  margin: 0;
  color: #bcc8ce;
}

.icon-badge, .step-circle, .feature-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
}
.icon-badge span, .step-circle span, .feature-icon span {
  font-size: 2rem;
}

.badge-primary {
  background: rgba(87, 214, 249, 0.12);
  color: #57d6f9;
}

.badge-coral {
  background: rgba(241, 90, 64, 0.12);
  color: #f15a40;
}

.badge-yellow {
  background: rgba(251, 208, 0, 0.12);
  color: #fbd000;
}

.badge-green {
  background: rgba(72, 183, 73, 0.12);
  color: #48b749;
}

.badge-secondary-maracatu {
  background: rgba(151, 207, 230, 0.12);
  color: #97cfe6;
}

.badge-coral-strong {
  background: rgba(255, 132, 112, 0.12);
  color: #ff8470;
}

.portfolio-card h3 {
  font-size: 2rem;
  margin: 1rem 0 0.25rem;
}
.portfolio-card p {
  color: #57d6f9;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

.portfolio-media {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: #131b2e;
}
.portfolio-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.portfolio-media:hover img {
  transform: scale(1.08);
}

.portfolio-chip {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.chip-primary {
  background: #57d6f9;
  color: #001f27;
}

.chip-yellow {
  background: #fbd000;
  color: #111;
}

.chip-green {
  background: #48b749;
  color: #fff;
}

.chip-coral {
  background: #f15a40;
  color: #fff;
}

.display-subtitle, .section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
}

.section-copy {
  color: #bcc8ce;
  font-size: 1.1rem;
  max-width: 42rem;
  margin: 1.5rem 0 2.5rem;
}

.feature-list {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
}

.feature-primary {
  color: #57d6f9;
}

.feature-coral {
  color: #f15a40;
}

.feature-yellow {
  color: #fbd000;
}

.hero-art {
  padding: 1rem;
  transform: rotate(3deg);
}

.section-process {
  background: rgba(19, 27, 46, 0.7);
}

.section-title-center {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
}

.section-subtitle {
  color: #bcc8ce;
}

.process-step {
  text-align: center;
}

.step-circle {
  margin: 0 auto 1rem;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.bg-coral {
  background: #f15a40 !important;
}

.bg-yellow {
  background: #fbd000 !important;
}

.bg-green {
  background: #48b749 !important;
}

.bg-secondary-maracatu {
  background: #97cfe6 !important;
  color: #001f27 !important;
}

.stats-band {
  padding: 4rem 0;
  background: #57d6f9;
  color: #001f27;
}

.stat-number {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  font-size: 0.9rem;
}

.contact-links {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-card {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #dae2fd;
  text-decoration: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-title {
  font-size: 1.25rem;
  font-family: "Sora", sans-serif;
}

.form-card {
  padding: 2rem;
}

.form-control, .form-select {
  background: #131b2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dae2fd;
}

.form-control::-moz-placeholder {
  color: rgba(218, 226, 253, 0.35);
}

.form-control::placeholder {
  color: rgba(218, 226, 253, 0.35);
}

.footer-band {
  padding: 3rem 0;
  background: #060e20;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-size: 1.5rem;
  color: #57d6f9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: #bcc8ce;
  text-decoration: none;
}

.footer-links a:hover {
  color: #57d6f9;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 7rem;
  }
  .display-title, .display-subtitle, .section-title {
    max-width: none;
  }
  .hero-art {
    transform: none;
  }
}