/* ============================================
   KRONUS CONSTRUTORA — Premium Institutional
   Pure CSS3
   ============================================ */

:root {
  --bg: #ffffff;
  --primary: #181818;
  --secondary: #2b2b2b;
  --gray: #f4f4f4;
  --accent: #b99155;
  --accent-soft: rgba(185, 145, 85, 0.12);
  --border: rgba(24, 24, 24, 0.08);
  --shadow-sm: 0 2px 10px rgba(24, 24, 24, 0.05);
  --shadow-md: 0 18px 50px -20px rgba(24, 24, 24, 0.22);
  --shadow-lg: 0 40px 90px -40px rgba(24, 24, 24, 0.4);
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--secondary);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

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

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

::selection {
  background: var(--accent);
  color: #fff;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
}

.section-pad {
  padding: 140px 0;
}

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.section-title {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  max-width: 20ch;
}

.section-lead {
  margin-top: 24px;
  max-width: 62ch;
  color: #5c5c5c;
  font-size: 1.05rem;
}

.head-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.head-center .section-title {
  max-width: 24ch;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 34px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    color 0.4s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn:hover::after {
  transform: translateY(0);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.45s var(--ease);
}

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

.btn-accent {
  --btn-bg: var(--accent);
}

.btn-accent::after {
  background: var(--primary);
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-ghost::after {
  background: #fff;
}

.btn-ghost:hover {
  color: var(--primary);
}

.btn-wa {
  --btn-bg: #25d366;
  --btn-fg: #0b2c17;
  font-weight: 700;
  padding: 20px 38px;
  font-size: 1rem;
}

.btn-wa::after {
  background: #1eb556;
}

.btn-block {
  width: 100%;
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition:
    background 0.5s var(--ease),
    padding 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--primary);
  transition: transform 0.5s var(--ease);
}

.brand:hover .brand-mark {
  transform: scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: #fff;
  transition: color 0.4s var(--ease);
}

.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.35s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 26px;
  font-size: 0.88rem;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  padding: 12px 0;
  box-shadow: 0 10px 40px -22px rgba(24, 24, 24, 0.28);
  border-bottom-color: var(--border);
}

.nav.scrolled .brand-name,
.nav.scrolled .nav-links a {
  color: var(--primary);
}

.nav.scrolled .brand-mark {
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1.6px;
  background: #fff;
  transform: translateX(-50%);
  transition: 0.4s var(--ease);
}

.nav-toggle span:nth-child(1) {
  top: 17px;
}
.nav-toggle span:nth-child(2) {
  top: 23px;
}
.nav-toggle span:nth-child(3) {
  top: 29px;
}

.nav.scrolled .nav-toggle {
  border-color: var(--border);
}

.nav.scrolled .nav-toggle span {
  background: var(--primary);
}

.nav-toggle.open span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(24, 24, 24, 0.97);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: -12% 0 -12% 0;
  background-size: cover;
  background-position: center 60%;
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15, 15, 15, 0.92) 0%, rgba(18, 18, 18, 0.6) 55%, rgba(20, 20, 20, 0.45) 100%),
    linear-gradient(to top, rgba(15, 15, 15, 0.85), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 180px 0 150px;
}

.hero-eyebrow {
  color: var(--accent);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  max-width: 17ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  margin-top: 30px;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.scroll-ind {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--accent);
  animation: scrollDrop 2.2s var(--ease) infinite;
}

@keyframes scrollDrop {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(250%);
  }
}

/* ---------- Segmentos ---------- */
.segmentos {
  background: var(--gray);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}

.seg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    border-color 0.55s var(--ease);
}

.seg-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-md);
  border-color: rgba(185, 145, 85, 0.4);
}

.icon-box {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  transition:
    background 0.5s var(--ease),
    color 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.seg-card:hover .icon-box,
.serv-card:hover .icon-box {
  background: var(--accent);
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}

.seg-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ---------- A Kronus ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.kronus-list {
  list-style: none;
  margin-top: 38px;
  display: grid;
  gap: 18px;
}

.kronus-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
}

.check svg {
  width: 14px;
  height: 14px;
}

.kronus-list strong {
  display: block;
  color: var(--primary);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 2px;
}

.kronus-list span {
  font-size: 0.97rem;
  color: #5c5c5c;
}

.media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.media:hover img {
  transform: scale(1.05);
}

.media-badge {
  position: absolute;
  left: 26px;
  bottom: 26px;
  right: 26px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px) saturate(160%);
  color: #fff;
}

.media-badge strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: block;
}

.media-badge span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Serviços ---------- */
.servicos {
  background: var(--primary);
}

.servicos .section-title,
.servicos h3 {
  color: #fff;
}

.servicos .section-lead {
  color: rgba(255, 255, 255, 0.62);
}

.serv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition:
    transform 0.55s var(--ease),
    background 0.55s var(--ease),
    border-color 0.55s var(--ease);
}

.serv-card h3 {
  margin: 26px 0 12px;
  font-size: 1.24rem;
}

.serv-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.96rem;
}

.serv-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(185, 145, 85, 0.55);
}

.serv-card .icon-box {
  background: rgba(185, 145, 85, 0.16);
}

/* ---------- Processo ---------- */
.timeline {
  position: relative;
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.step {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  transition:
    background 0.5s var(--ease),
    color 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.step:hover .step-num {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.step-icon {
  margin: 22px 0 14px;
  color: var(--accent);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step h3 {
  font-size: 1.04rem;
}

.step p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #5c5c5c;
  max-width: 24ch;
}

/* ---------- Projetos ---------- */
.projetos {
  background: var(--gray);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 66px;
}

.proj-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.6s var(--ease),
    box-shadow 0.6s var(--ease);
}

.proj-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.proj-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.proj-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s var(--ease),
    filter 0.6s var(--ease);
}

.proj-card:hover .proj-media img {
  transform: scale(1.08);
}

.proj-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.85), transparent 62%);
}

.proj-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.proj-body {
  position: absolute;
  bottom: 0;
  padding: 34px 34px 36px;
  z-index: 2;
}

.proj-body h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.proj-body p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  max-width: 40ch;
}

/* ---------- Contato ---------- */
.contato .split {
  gap: 80px;
  align-items: start;
}

.contact-info-list {
  list-style: none;
  margin-top: 40px;
  display: grid;
  gap: 14px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
}

.contact-info-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex: none;
}

.wa-wrap {
  margin-top: 40px;
}

.wa-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #7a7a7a;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8a8a;
}

input,
textarea,
select {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--primary);
  background: var(--gray);
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 16px 18px;
  outline: none;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input::placeholder,
textarea::placeholder {
  color: #a5a5a5;
}

input:focus,
textarea:focus,
select:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form-msg {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--accent);
  min-height: 22px;
}

/* ---------- Mapa ---------- */
.mapa {
  line-height: 0;
  background: var(--gray);
}

.mapa iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.7s var(--ease);
}

.mapa:hover iframe {
  filter: grayscale(0);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.6);
  padding: 96px 0 34px;
}

.footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.footer p,
.footer li {
  font-size: 0.94rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer a {
  transition: color 0.35s var(--ease);
}

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

.footer .brand-name {
  color: #fff;
}

.footer-about {
  margin-top: 24px;
  max-width: 40ch;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition:
    transform 0.45s var(--ease),
    background 0.45s var(--ease);
}

.socials a:hover {
  transform: translateY(-4px) scale(1.05);
  background: var(--accent);
}

.socials svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}

/* ---------- Reveal animations ---------- */
[data-anim] {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease),
    transform 1s var(--ease);
  will-change: opacity, transform;
}

[data-anim="up"] {
  transform: translateY(46px);
}
[data-anim="left"] {
  transform: translateX(-56px);
}
[data-anim="right"] {
  transform: translateX(56px);
}
[data-anim="scale"] {
  transform: scale(0.94);
}

[data-anim].in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-anim] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .media img {
    min-height: 420px;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 24px;
  }
  .timeline::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }
  .container {
    padding: 0 22px;
  }
  .section-pad {
    padding: 92px 0;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 30px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 150px 0 130px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .proj-body {
    padding: 26px 24px 28px;
  }
  .scroll-ind {
    display: none;
  }
}
