/* Nova-inspired theme — AnuthamVas */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --nova-primary: #fed71a;
  --nova-primary-dark: #fed71a;
  --nova-primary-hover: #d4b415;
  --nova-secondary: #484848fa;
  --nova-body: #aeb0b2;
  --nova-heading: #484848fa;
  --nova-light: #f8fafc;
  --nova-border: #e2e8f0;
  --nova-radius: 12px;
  --nova-shadow: 0 10px 40px rgba(72, 72, 72, 0.08);
  --nova-font: 'Inter', system-ui, sans-serif;
  --nova-topbar-height: 36px;
  --nova-header-height: 72px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--nova-font);
  color: var(--nova-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--nova-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

/* Top bar — SCO address */
.nova-topbar {
  background: var(--nova-secondary);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
}

.nova-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
}

.nova-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nova-topbar-item i {
  color: var(--nova-primary);
}

.nova-topbar a {
  color: #fff;
}

.nova-topbar a:hover {
  color: var(--nova-primary);
}

/* Navbar — fixed to top */
.nova-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0px 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(72, 72, 72, 0.06);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Legal pages: header sits below SCO top bar */
.nova-topbar + .nova-header {
  top: var(--nova-topbar-height);
}

.nova-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 28px rgba(72, 72, 72, 0.1);
}

/* Anchor links clear fixed header */
section[id] {
  scroll-margin-top: calc(var(--nova-header-height) + 16px);
}

body:has(.nova-topbar) section[id] {
  scroll-margin-top: calc(var(--nova-topbar-height) + var(--nova-header-height) + 16px);
}

.nova-header .navbar-brand {
  padding: 0;
}

.logo-thumbnail {
  align-items: center;
}

.logo-thumbnail img {
  display: block;
  max-width: min(150px, 42vw);
  width: auto;
  height: auto;
  object-fit: contain;
}

.nova-footer .logo-thumbnail {
  padding: 12px 16px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.nova-footer .logo-thumbnail img {
  max-height: 64px;
  max-width: 180px;
  filter: none;
}

.nova-header .nav-link {
  color: var(--nova-heading) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px !important;
}

.nova-header .nav-link:hover,
.nova-header .nav-link.active {
  color: var(--nova-primary) !important;
}

.nova-header .navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.nova-header .navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile / tablet nav */
@media (max-width: 991.98px) {
  .nova-header .navbar-collapse {
    background: #fff;
    border-radius: var(--nova-radius);
    padding: 12px 8px 16px;
    margin-top: 12px;
    box-shadow: var(--nova-shadow);
    border: 1px solid var(--nova-border);
  }

  .nova-header .navbar-nav {
    gap: 4px;
  }

  .nova-header .nav-link {
    color: var(--nova-heading) !important;
    padding: 12px 16px !important;
    border-radius: 8px;
    font-size: 16px;
  }

  .nova-header .nav-link:hover,
  .nova-header .nav-link:focus,
  .nova-header .nav-link.active {
    color: var(--nova-primary) !important;
    background: rgba(254, 215, 26, 0.15);
  }

  .nova-header .nav-item .btn-nova {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    padding: 12px 20px !important;
  }

  .nova-header .navbar-toggler {
    border: 1px solid var(--nova-border);
    background: #fff;
  }

  .nova-header .navbar-toggler-icon {
    filter: none;
  }
}

.btn-nova {
  background: var(--nova-primary);
  border: none;
  color: var(--nova-heading) !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-block;
}

.btn-nova:hover {
  background: var(--nova-primary-hover);
  color: var(--nova-heading) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 215, 26, 0.45);
}

.btn-nova-outline {
  background: transparent;
  border: 2px solid var(--nova-primary);
  color: var(--nova-heading) !important;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  display: inline-block;
}

.btn-nova-outline:hover {
  background: var(--nova-primary);
  color: var(--nova-heading) !important;
}

/* SCO office section */
.nova-sco {
  background: var(--nova-light);
}

.nova-sco-card {
  background: #fff;
  border: 1px solid var(--nova-border);
  border-left: 4px solid var(--nova-primary);
  border-radius: var(--nova-radius);
  padding: 24px;
  box-shadow: var(--nova-shadow);
}

.nova-sco-card h5 {
  color: var(--nova-heading);
  margin-bottom: 12px;
}

.nova-sco-card h5 i {
  color: var(--nova-primary);
  margin-right: 8px;
}

.nova-sco-map {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--nova-radius);
  overflow: hidden;
  box-shadow: var(--nova-shadow);
  border: 1px solid var(--nova-border);
}

.nova-sco-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Hero / Carousel */
.nova-hero {
  padding-top: var(--nova-header-height);
  position: relative;
}

.nova-hero #heroCarousel,
.nova-hero .carousel-inner,
.nova-hero .carousel-item {
  min-height: clamp(420px, calc(100vh - var(--nova-header-height)), 900px);
}

.nova-hero .carousel-item {
  position: relative;
  overflow: hidden;
}

.nova-hero .hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.nova-hero .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(72, 72, 72, 0.88) 0%, rgba(72, 72, 72, 0.45) 55%, rgba(254, 215, 26, 0.2) 100%);
}

.nova-hero .carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  padding: 24px 15px;
  max-width: 1140px;
  margin: 0 auto;
}

.nova-hero .hero-badge {
  display: inline-block;
  color: #fde68a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.nova-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.nova-hero h1 span {
  color: #fcd34d;
}

.nova-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.nova-hero .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
}

.nova-hero .carousel-indicators .active {
  background: var(--nova-primary);
}

/* Section common */
.nova-section {
  padding: 90px 0;
}

.nova-section.bg-light {
  background: var(--nova-light) !important;
}

.section-label {
  display: inline-block;
  color: var(--nova-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 640px;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 48px;
}

.section-desc.center {
  margin-left: auto;
  margin-right: auto;
}

/* Feature / service cards */
.nova-feature {
  background: #fff;
  border: 1px solid var(--nova-border);
  border-radius: var(--nova-radius);
  padding: 32px 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nova-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--nova-shadow);
  border-color: rgba(254, 215, 26, 0.35);
}

.nova-feature .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(254, 215, 26, 0.12);
  color: var(--nova-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.nova-feature h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.nova-feature p,
.nova-feature ul {
  font-size: 14px;
  margin: 0;
  color: var(--nova-body);
}

.nova-feature ul {
  list-style: none;
  padding: 0;
}

.nova-feature ul li {
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.nova-feature ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nova-primary);
}

/* Services section — split layout + tiles */
.nova-services-section {
  background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 50%, #e8eef4 100%);
  position: relative;
  overflow: hidden;
}

.nova-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(254, 215, 26, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(72, 72, 72, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.nova-services-intro {
  position: sticky;
  top: 10px;
}

.nova-services-intro .section-desc {
  margin-bottom: 24px;
  max-width: none;
}

.nova-services-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.nova-services-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: #475569;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nova-services-highlights li:last-child {
  border-bottom: none;
}

.nova-services-highlights i {
  color: #ca8a04;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.nova-service-tile {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--nova-radius);
  padding: 28px 26px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(72, 72, 72, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.nova-service-tile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--nova-primary);
  border-radius: 0 0 4px 0;
  transition: height 0.28s ease;
}

.nova-service-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(254, 215, 26, 0.45);
  box-shadow: 0 20px 48px rgba(254, 215, 26, 0.18);
}

.nova-service-tile:hover::after {
  height: 100%;
}

.nova-service-tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(254, 215, 26, 0.2) 0%, rgba(254, 215, 26, 0.06) 100%);
  color: #92400e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.nova-service-tile h5 {
  font-size: 1.12rem;
  color: #280d10;
  margin-bottom: 8px;
}

.nova-service-tile > p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.55;
}

.nova-service-tile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nova-service-tile ul li {
  font-size: 14px;
  color: #475569;
  padding: 6px 0 6px 20px;
  position: relative;
}

.nova-service-tile ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nova-primary);
}

@media (max-width: 991.98px) {
  .nova-services-intro {
    position: static;
    text-align: center;
    margin-bottom: 8px;
  }

  .nova-services-intro .section-title {
    margin-left: auto;
    margin-right: auto;
  }

  .nova-services-intro .section-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .nova-services-highlights {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Core services band — soft grey */
.nova-services-band {
  background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 45%, #e2e8f0 100%);
  position: relative;
}

.nova-services-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(148, 163, 184, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 10% 80%, rgba(254, 215, 26, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.nova-services-band .section-label {
  color: #280d10;
}

.nova-services-band .section-title {
  color: #1e293b;
}

.nova-services-band .section-desc {
  color: #475569;
}

/* Service cards */
.nova-services-band .nova-service-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%) !important;
  background-color: #ffffff !important;
  border-radius: var(--nova-radius);
  padding: 28px 24px;
  height: 100%;
  color: #334155 !important;
  border: 1px solid #cbd5e1 !important;
  border-left: 4px solid #94a3b8 !important;
  box-shadow: 0 8px 30px rgba(100, 116, 139, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nova-services-band .nova-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 215, 26, 0.45) !important;
  border-left-color: #fed71a !important;
  box-shadow: 0 18px 45px rgba(254, 215, 26, 0.22);
  background: linear-gradient(145deg, #ffffff 0%, #fffbeb 100%) !important;
}

.nova-services-band .nova-service-card h5 {
  color: #280d10 !important;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  font-weight: 700;
}

.nova-services-band .nova-service-card h5 i {
  color: #ca8a04 !important;
  margin-right: 8px;
}

.nova-services-band .nova-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nova-services-band .nova-service-card li {
  font-size: 14px;
  color: #475569 !important;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.nova-services-band .nova-service-card li:last-child {
  border-bottom: none;
}

/* About */
.nova-about-img {
  border-radius: var(--nova-radius);
  box-shadow: var(--nova-shadow);
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nova-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.nova-checklist li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--nova-body);
}

.nova-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: rgba(254, 215, 26, 0.15);
  color: var(--nova-primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service image cards — #simage */
.nova-simage-card {
  background: #fff;
  border: 1px solid var(--nova-border);
  border-radius: var(--nova-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 20px rgba(72, 72, 72, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nova-simage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nova-shadow);
}

.nova-simage-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--nova-light);
}

.nova-simage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nova-simage-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--nova-primary);
  color: var(--nova-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 50px;
}

.nova-simage-body {
  padding: 22px 24px 26px;
}

.nova-simage-body h5 {
  font-size: 1.1rem;
  color: #280d10;
  margin-bottom: 10px;
}

.nova-simage-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Portfolio pills (SMS, IVR, WAP) — legacy */
.nova-pill-card {
  position: relative;
  border-radius: var(--nova-radius);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16 / 10;
}

.nova-pill-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nova-pill-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(180, 140, 0, 0.92), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.nova-pill-card .overlay span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Gallery / Clients */
#gallery .client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--nova-border);
  border-radius: var(--nova-radius);
  margin-bottom: 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

#gallery .client-logo-card:hover {
  box-shadow: var(--nova-shadow);
  transform: translateY(-4px);
}

#gallery .client-logo-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: clamp(48px, 12vw, 72px);
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Contact */
.nova-contact {
  background: var(--nova-secondary);
  color: rgba(255, 255, 255, 0.85);
}

.nova-contact .section-title,
.nova-contact .section-label {
  color: #fff;
}

.nova-contact .section-label {
  color: #fde68a;
}

.nova-contact .form-control {
  border-radius: 8px;
  border: 1px solid var(--nova-border);
  padding: 12px 16px;
}

.nova-contact .form-control:focus {
  border-color: var(--nova-primary);
  box-shadow: 0 0 0 3px rgba(254, 215, 26, 0.35);
}

.nova-contact label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 6px;
}

.nova-contact-info {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--nova-radius);
  margin-bottom: 16px;
}

.nova-contact-info i {
  color: var(--nova-primary);
  font-size: 22px;
  margin-right: 12px;
}

/* Footer */
.nova-footer {
  background: #e8e7e7;
  color: var(--nova-heading);
  padding: 56px 0 24px;
}

.nova-footer h5 {
  color: var(--nova-heading);
  font-size: 1rem;
  margin-bottom: 16px;
}

.nova-footer a {
  color: var(--nova-heading);
}

.nova-footer a:hover {
  color: #fff;
}

.nova-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nova-footer li {
  margin-bottom: 8px;
}

.nova-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
}

/* Mobile bar */
.nova-mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--nova-secondary);
  z-index: 1020;
  border-top: 2px solid var(--nova-primary);
}

.nova-mob-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  color: #fff;
  font-size: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nova-mob-bar a:last-child {
  border-right: none;
}

.nova-mob-bar img {
  height: 18px;
  margin-right: 4px;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .nova-hero .carousel-caption {
    text-align: center;
  }

  .nova-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .nova-hero #heroCarousel,
  .nova-hero .carousel-inner,
  .nova-hero .carousel-item {
    min-height: clamp(380px, 75vh, 720px);
  }
}

@media (max-width: 767px) {
  .nova-section {
    padding: 60px 0;
  }

  .nova-hero {
    padding-top: var(--nova-header-height);
  }

  .nova-hero #heroCarousel,
  .nova-hero .carousel-inner,
  .nova-hero .carousel-item {
    min-height: clamp(340px, 68vh, 600px);
  }

  .nova-hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .nova-hero p {
    font-size: 0.95rem;
  }

  .nova-hero .carousel-caption {
    padding: 16px 12px;
  }

  .nova-pill-card {
    aspect-ratio: 4 / 3;
  }

  #gallery .client-logo-card {
    min-height: 96px;
    padding: 14px;
  }

  .nova-mob-bar {
    display: flex;
  }

  body {
    padding-bottom: 56px;
  }
}

/* Legal inner pages */
.nova-page-hero {
  padding: calc(var(--nova-header-height) + 48px) 0 60px;
  background-color: #e8e7e7;
  text-align: center;
}

body:has(.nova-topbar) .nova-page-hero {
  padding-top: calc(var(--nova-topbar-height) + var(--nova-header-height) + 48px);
}

.nova-page-hero h1 {
  color: #4a3f41;
  font-size: 2rem;
}

.nova-page-hero p {
  color: #4a3f41;
}

.nova-legal {
  padding: 60px 0 80px;
}

.nova-legal h3 {
  font-size: 1.15rem;
  margin-top: 28px;
}
