:root {
  --primary: #0057d8;
  --primary-2: #0068ff;
  --secondary: #75c928;
  --accent: #00a3ff;
  --dark: #06152f;
  --dark-2: #0b1f42;
  --text: #101a31;
  --muted: #65758b;
  --soft: #eef6ff;
  --soft-green: #f1ffe8;
  --white: #ffffff;
  --border: rgba(6, 21, 47, 0.1);
  --shadow-soft: 0 24px 70px rgba(0, 42, 111, 0.13);
  --shadow-hover: 0 30px 80px rgba(0, 42, 111, 0.2);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 2%, rgba(0, 104, 255, 0.08), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(117, 201, 40, 0.08), transparent 26%),
    #ffffff;
  overflow-x: hidden;
}

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

img,
svg {
  max-width: 100%;
}

strong {
  font-weight: 900;
}

.section-space {
  padding: 96px 0;
}

.section-space-sm {
  padding: 70px 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-soft {
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.bg-dark-brand {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 163, 255, 0.26), transparent 27%),
    radial-gradient(circle at 92% 10%, rgba(117, 201, 40, 0.18), transparent 26%),
    linear-gradient(135deg, #06152f 0%, #081f45 60%, #053b87 100%);
  position: relative;
  overflow: hidden;
}

.bg-dark-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
  opacity: .45;
}

.bg-dark-brand > .container {
  position: relative;
  z-index: 1;
}

.badge-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(0, 104, 255, 0.10);
  color: var(--primary);
  font-weight: 900;
  font-size: .88rem;
  border: 1px solid rgba(0, 104, 255, 0.14);
}

.bg-dark-brand .badge-brand {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.icon-svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 19px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 35px rgba(0, 104, 255, 0.22);
  flex: 0 0 auto;
}

.icon-box.green {
  background: linear-gradient(135deg, #3fae2a, var(--secondary));
  box-shadow: 0 16px 35px rgba(117, 201, 40, 0.22);
}

.icon-box.dark {
  background: linear-gradient(135deg, #06152f, #12376e);
}

.btn-main,
.btn-outline-main,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease, background .25s ease;
}

.btn-main {
  color: white;
  border: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 40px rgba(0, 104, 255, 0.28);
}

.btn-main:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0, 104, 255, 0.38);
}

.btn-outline-main {
  color: var(--dark);
  border: 1px solid rgba(0, 104, 255, .18);
  background: rgba(255,255,255,.82);
}

.btn-outline-main:hover {
  color: var(--primary);
  border-color: rgba(0, 104, 255, .38);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.btn-white {
  color: var(--primary);
  background: white;
  border: 1px solid rgba(255,255,255,.25);
}

.btn-white:hover {
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(255,255,255,.2);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition: opacity .45s ease, visibility .45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.loader-brand img {
  width: 220px;
  height: auto;
}

.loader-dots {
  display: flex;
  gap: 9px;
}

.loader-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  animation: bounce .8s ease-in-out infinite alternate;
}

.loader-dots span:nth-child(2) {
  background: var(--accent);
  animation-delay: .15s;
}

.loader-dots span:nth-child(3) {
  background: var(--secondary);
  animation-delay: .3s;
}

@keyframes bounce {
  from { transform: translateY(0); opacity: .55; }
  to { transform: translateY(-10px); opacity: 1; }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 21, 47, 0.08);
  transition: box-shadow .25s ease, background .25s ease, min-height .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 40px rgba(6, 21, 47, 0.08);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
}

.brand-logo img {
  width: 70px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.nav-link {
  color: var(--dark);
  font-weight: 850;
  font-size: .96rem;
  padding: 12px 10px !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}


/* Hero */
.hero-section {
  padding-top: calc(var(--header-height) + 22px);
  position: relative;
}

.hero-layout {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.hero-carousel {
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 42, 111, .22);
  background: #06152f;
}

.hero-slide {
  min-height: 640px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(48px, 6vw, 82px) clamp(34px, 7vw, 92px);
  overflow: hidden;
  isolation: isolate;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .36;
}

.hero-slide::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -170px;
  top: -150px;
  border-radius: 50%;
  z-index: -1;
  background: rgba(255,255,255,.11);
  filter: blur(2px);
}

.hero-slide.slide-1 {
  background:
    radial-gradient(circle at 74% 32%, rgba(0,163,255,.32), transparent 30%),
    linear-gradient(135deg, #06152f 0%, #003b8f 58%, #0068ff 100%);
}

.hero-slide.slide-2 {
  background:
    radial-gradient(circle at 80% 24%, rgba(117,201,40,.22), transparent 31%),
    linear-gradient(135deg, #06152f 0%, #052d64 58%, #008fe8 100%);
}

.hero-slide.slide-3 {
  background:
    radial-gradient(circle at 82% 34%, rgba(117,201,40,.2), transparent 30%),
    linear-gradient(135deg, #05132d 0%, #002f78 66%, #004fc4 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 650px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 900;
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  line-height: .98;
  letter-spacing: -2.4px;
  font-weight: 950;
}

.hero-copy h1 span {
  color: var(--secondary);
}

.hero-copy p {
  max-width: 570px;
  margin: 24px 0 0;
  color: #e7f1ff;
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, background .25s ease;
}

.btn-glass:hover {
  color: white;
  transform: translateY(-3px);
  background: rgba(255,255,255,.18);
}

.hero-graphic {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(100%, 650px);
}

.hero-graphic img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 35px rgba(0, 15, 44, .38));
  animation: floatHero 5s ease-in-out infinite;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-metrics {
  width: min(100%, 980px);
  margin: -60px auto 0;
  position: relative;
  z-index: 3;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(6, 21, 47, .08);
  box-shadow: var(--shadow-soft);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.metric-item h4 {
  font-size: 1rem;
  font-weight: 900;
  margin: 0 0 3px;
}

.metric-item p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.35;
}

.carousel-control-prev,
.carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .9;
  border-radius: 18px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, .24);
}

.carousel-indicators {
  margin-bottom: 25px;
}

.carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  opacity: .65;
}

.carousel-indicators .active {
  width: 34px;
  opacity: 1;
  background: var(--secondary);
}

/* Sections */
.section-title {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title.left {
  margin-left: 0;
  text-align: left;
}

.section-title h2 {
  margin: 16px 0 14px;
  color: var(--dark);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -1.6px;
  line-height: 1.05;
}

.bg-dark-brand .section-title h2 {
  color: #ffffff;
}

.section-title p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 0;
}

.bg-dark-brand .section-title p {
  color: #c9d8ef;
}

/* Intro */
.intro-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(0, 42, 111, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.intro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,104,255,.22);
  box-shadow: var(--shadow-soft);
}

.intro-card h3 {
  font-weight: 900;
  margin: 18px 0 10px;
}

.intro-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Services */
.service-card {
  height: 100%;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid rgba(6, 21, 47, .09);
  box-shadow: 0 16px 42px rgba(0, 42, 111, .07);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,104,255,.22);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  margin: 20px 0 12px;
  font-size: 1.26rem;
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 900;
}

/* Advertising */
.ads-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
}

.ad-main,
.ad-card-img {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(6, 21, 47, .08);
  background: white;
}

.ad-main img,
.ad-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-main {
  min-height: 520px;
}

.ad-side {
  display: grid;
  gap: 24px;
}

.ad-card-img {
  min-height: 248px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ad-card-img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* Sector Cards */
.sector-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .26s ease, background .26s ease, border-color .26s ease;
}

.sector-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .26);
}

.sector-card .icon-box {
  background: white;
  color: var(--primary);
  box-shadow: none;
}

.sector-card h3 {
  margin: 20px 0 10px;
  font-weight: 900;
}

.sector-card p {
  color: #c9d8ef;
  line-height: 1.7;
  margin: 0;
}

/* Solutions carousel */
.solution-carousel-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 440px;
  padding: 34px;
  border-radius: 36px;
  background: white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(6, 21, 47, .08);
}

.solution-carousel-card .visual {
  border-radius: 28px;
  overflow: hidden;
  min-height: 330px;
  background: var(--soft);
}

.solution-carousel-card .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-carousel-card h3 {
  font-weight: 950;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -1px;
  line-height: 1.1;
}

.solution-carousel-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 820;
}

.check-list svg {
  color: var(--secondary);
  flex: 0 0 auto;
}

/* Process */
.process-card {
  height: 100%;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid rgba(6, 21, 47, .09);
  box-shadow: 0 16px 42px rgba(0, 42, 111, .07);
  position: relative;
  overflow: hidden;
}

.process-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  bottom: -12px;
  font-size: 6.8rem;
  line-height: 1;
  font-weight: 950;
  color: rgba(0, 104, 255, .07);
}

.process-card h3 {
  margin: 18px 0 10px;
  font-weight: 900;
}

.process-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Projects */
.project-card {
  height: 100%;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 28px;
  transition: transform .26s ease, background .26s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,.12);
}

.project-card .tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: #06152f;
  background: var(--secondary);
  margin-bottom: 16px;
}

.project-card h3 {
  color: white;
  font-weight: 900;
  margin-bottom: 10px;
}

.project-card p {
  color: #c9d8ef;
  line-height: 1.7;
  margin: 0;
}

/* CTA */
.cta-image {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--dark);
}

.cta-image img {
  width: 100%;
  display: block;
}

/* Contact */
.contact-box {
  border-radius: 38px;
  color: white;
  background:
    radial-gradient(circle at 12% 10%, rgba(0,163,255,.3), transparent 24%),
    linear-gradient(135deg, #06152f 0%, #0045aa 65%, #0068ff 100%);
  box-shadow: 0 36px 90px rgba(0, 42, 111, .26);
  overflow: hidden;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .25s ease, background .25s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.16);
  color: #fff;
}

.contact-info-card h4,
.contact-info-card p {
  margin: 0;
}

.contact-info-card p {
  color: rgba(255,255,255,.66);
  font-weight: 760;
  font-size: .9rem;
}

.contact-form {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .16);
}

.form-label {
  font-weight: 900;
  color: white;
}

.form-control,
.form-select {
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 700;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 4px rgba(255,255,255,.24);
}

/* Footer */
.footer {
  background: #ffffff;
  border-top: 1px solid rgba(6,21,47,.08);
  padding: 36px 0;
}

.footer-logo {
  width: 230px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.footer small {
  color: var(--muted);
  font-weight: 800;
}

.social-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: var(--primary);
  background: var(--soft);
  transition: transform .25s ease, background .25s ease;
}

.social-link:hover {
  color: white;
  background: var(--primary);
  transform: translateY(-4px);
}

/* Floating buttons */
.whatsapp-float,
.to-top {
  position: fixed;
  right: 22px;
  z-index: 990;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  box-shadow: 0 18px 44px rgba(0, 42, 111, .26);
  transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
}

.whatsapp-float {
  bottom: 22px;
  background: #25d366;
}

.to-top {
  bottom: 94px;
  background: var(--dark);
  opacity: 0;
  visibility: hidden;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float:hover,
.to-top:hover {
  color: white;
  transform: translateY(-5px) scale(1.04);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.parallax-soft {
  animation: floatSoft 5s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 1199px) {
  .brand-logo {
    min-width: 235px;
  }

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

  .nav-link {
    font-size: .92rem;
  }

  .solution-carousel-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 78px;
  }

  .section-space {
    padding: 76px 0;
  }

  .site-header .navbar-collapse {
    padding: 12px 0 18px;
  }

  .nav-link::after {
    display: none;
  }

  .hero-slide {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 46px 28px 64px;
    text-align: center;
  }

  .hero-copy,
  .hero-copy p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-graphic {
    max-width: 520px;
  }

  .hero-metrics {
    margin-top: 24px;
  }

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

  .ad-main {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    min-width: auto;
  }

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

  .hero-section {
    padding-top: calc(var(--header-height) + 14px);
  }

  .hero-carousel {
    border-radius: 24px;
  }

  .hero-slide {
    padding: 40px 22px 58px;
  }

  .hero-copy h1 {
    letter-spacing: -1.5px;
  }

  .hero-graphic {
    max-width: 430px;
  }

  .hero-metrics {
    padding: 14px;
    border-radius: 22px;
  }

  .metric-item {
    align-items: flex-start;
  }

  .section-title h2 {
    letter-spacing: -1px;
  }

  .solution-carousel-card {
    padding: 22px;
    border-radius: 28px;
  }

  .solution-carousel-card .visual {
    min-height: 220px;
  }

  .contact-box {
    border-radius: 28px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-logo {
    object-position: center;
  }

  .whatsapp-float,
  .to-top {
    width: 54px;
    height: 54px;
    right: 16px;
  }

  .to-top {
    bottom: 82px;
  }

  .whatsapp-float {
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .hero-slide {
    padding: 34px 18px 54px;
  }

  .hero-kicker {
    font-size: .82rem;
  }

  .hero-graphic {
    display: none;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .carousel-indicators {
    margin-bottom: 14px;
  }

  .btn-main,
  .btn-outline-main,
  .btn-white,
  .btn-glass {
    width: 100%;
  }

  .ad-card-img {
    min-height: 200px;
  }

  .metric-item {
    padding: 6px;
  }
}
