@import url("./fonts.css");

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

:root {
  --primary: #064DA2;
  --secondary: #ED1A24;
  --background: #032145;
  --gold: #c89b63;
  --gold-soft: #e4c8a2;
  --light: #f5f7fb;
  --white: #ffffff;
  --text: #202a35;
  --muted: #6f7a86;
  --border: #e6ebf0;
  --shadow: 0 30px 70px rgba(15, 23, 32, 0.08);
  --radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Swiss721", Arial, sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;    
}

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

.container-small {
  max-width: 1180px;
}

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

.hero {
  min-height: 100vh;
  background:
  linear-gradient(rgba(10,16,24,0.55), rgba(10,16,24,0.6)),
  url('https://pratesbomfim.com.br/wp-content/uploads/2026/07/IMA-KUBO_ADILSON_SANTOS-FACHADA_NOTURNA-ALTA-scaled.jpg') center/cover;
  position: relative;    
  color: white;
  display: flex;
  flex-direction: column;
}

/**** MENU ****/

.topbar {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--secondary), #9d6f3e);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 200px;
  height: auto;
  transition: opacity .3s ease;
}

.logo-scrolled {
  display: none;
}

#menu.scrolled .logo-top {
  display: none;
}

#menu.scrolled .logo-scrolled {
  display: block;
}

.menu {
  display: flex;
  gap: 36px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;    
}

.menu a:hover {
  color: white;
}

#menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  border-radius: 0 0 20px 20px;
}

#menu.scrolled {
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);    
}

#menu.scrolled .topbar {
  color: rgba(13, 78, 162, .75);
  border-bottom: 1px solid rgba(13, 78, 162, .12);
}

#menu.scrolled .menu,
#menu.scrolled .menu a {
  color: var(--primary);
}

#menu.scrolled .menu a:hover {
  color: var(--secondary);
}

/**** MENU ****/


.hero-btn {
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--secondary);
  color: white;
  font-weight: 700;
  transition: .25s ease;
  box-shadow: 0 16px 35px rgba(99, 104, 200, 0.28);
  text-align: center;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-content {
  padding: 100px 0 120px;
  margin-top: 166px;
  max-width: 920px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--secondary-soft);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(58px, 7vw, 104px);
  line-height: .92;
  letter-spacing: -0.07em;
  margin-bottom: 28px;
  max-width: 900px;
}

.hero p {
  font-size: 22px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.outline-btn {
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  color: white;
  font-weight: 700;
}

.search-box {
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
  width: min(1280px, 86%);
  background: white;
  border-radius: 34px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  z-index: 10;
}

.search-field select {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  outline: none;
  font-family: inherit;
}

.search-box {
  grid-template-columns: repeat(3, 1fr) 1.2fr;
}

.search-field {
  background: #f5f7fb;
  border-radius: 18px;
  padding: 18px;
}

.search-field small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.search-field strong {
  color: var(--primary);
  font-size: 16px;
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  font-weight: 800;
  font-size: 16px;
  padding: 10px;
}

section {
  padding: 120px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.06em;
  color: var(--primary);
  max-width: 760px;
}

.section-head p {
  max-width: 440px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
}

.featured-main {
  position: relative;
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;    
  display: flex;
  align-items: end;
  padding: 40px;
  color: white;
  box-shadow: var(--shadow);
}

.featured-image {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

.featured-overlay {
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      rgba(15,23,32,.25),
      rgba(15,23,32,.45)
    );
}

.featured-content {
  position: relative;
  max-width: 520px;
  z-index: 2;
}

.featured-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.featured-content h3 {
  font-size: 52px;
  line-height: .95;
  letter-spacing: -.05em;
  margin-bottom: 20px;
}

.featured-content p {
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 28px;
}

.project-side {
  display: grid;
  gap: 28px;
}

.project-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-image {
  height: 240px;
  overflow: hidden;
  /* background-size: cover;
  background-position: center; */
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.project-body {
  padding: 28px;
}

.project-body h3 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.project-body p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.features span {
  background: #f5f7fb;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
}

.progress-section {
  background: white;
  border-radius: 40px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.progress-image {
  min-height: 640px;
  background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.18)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.progress-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.progress-content small {
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.progress-content h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.05em;
  margin-bottom: 24px;
  color: var(--primary);
}

.progress-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 38px;
  font-size: 18px;
}

.progress-item {
  margin-bottom: 28px;
}

.progress-item strong {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 16px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #eef2f6;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.benefits {
  background: var(--primary);
  color: white;
  text-align: center;    
}


.benefits h2 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -.06em;
  margin-bottom: 20px;
}

.benefits h3 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: .96;
  letter-spacing: -.06em;
  margin-bottom: 20px;
}

.benefits p {
  max-width: 760px;
  margin: 0 auto 60px;
  color: rgba(255,255,255,0.74);
  font-size: 20px;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  overflow: hidden;    
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 1em;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;    
  color: white;
  box-shadow: var(--shadow);
}

.benefit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 22px;
}

.benefit-info {    
  height: 120px;
  text-align: left;
}

.benefit-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--secondary), #9d6f3e);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.benefit-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.benefit-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.8;
}

.cta {
  background:
    linear-gradient(rgba(15,23,32,.72), rgba(15,23,32,.72)),
    url('https://pratesbomfim.com.br/wp-content/uploads/2026/07/IMA-KUBO_ADILSON_SANTOS-PORTARIA-ALTA-R01-scaled.jpg') center/cover;
  text-align: center;
  color: white;
  padding: 120px 0;
}

.cta h2 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: .92;
  letter-spacing: -.07em;
  margin-bottom: 26px;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-size: 20px;
}

footer {
  background: var(--primary);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 50px;
}

footer h4 {
  color: white;
  margin-bottom: 18px;
  font-size: 18px;
}

footer li,
footer p {
  list-style: none;
  margin-bottom: 12px;
  line-height: 1.8;
}

footer img {
  width: 80%;
  margin-bottom: 20px;
}

footer .social {
  font-size: 2rem;
  color: #FFF;
}

footer a:hover {
  color: #FFF;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 1150px) {
  .featured-grid,
  .progress-section,
  .benefits-grid,
  .footer-grid,
  .search-box {
    grid-template-columns: 1fr 1fr;
  }

  .search-box {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: auto;
    margin: 40px 0 0;
  }

  .footer-logo {
    display: none;
  }
}

@media (max-width: 760px) {
  .menu,
  .topbar {
    display: none;
  }  

  .featured-grid,
  .progress-section,
  .benefits-grid,
  .footer-grid,
  .search-box {
    grid-template-columns: 1fr;
  }

  .hero-content,
  section,
  .cta,
  footer,
  .navbar {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero h1 {
    font-size: 62px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 20px;
  }

  .progress-content {
    padding: 50px 32px;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 120px;
  }
}

/***** ENTERPRISE DETAIL *****/

.enterprise-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.enterprise-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enterprise-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 20, 42, .88),
    rgba(3, 20, 42, .52),
    rgba(3, 20, 42, .35)
  );
}

.enterprise-hero-menu {
  position: relative;
  z-index: 5;
  height: 92px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.enterprise-logo {
  font-weight: 800;
  letter-spacing: .08em;
}

.enterprise-hero-menu nav {
  display: flex;
  gap: 34px;
}

.enterprise-whatsapp {
  border: 1px solid rgba(255,255,255,.45);
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.enterprise-hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enterprise-status {
  width: fit-content;
  border: 1px solid rgba(255,255,255,.45);
  padding: 9px 16px;
  border-radius: 6px;
  margin-bottom: 28px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.enterprise-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .95;
  max-width: 760px;
  margin-bottom: 24px;
}

.enterprise-hero p {
  max-width: 560px;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.enterprise-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  color: rgba(255,255,255,.86);
}

.enterprise-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.enterprise-specs {
  padding: 40px 0;
  background: #fff;
}

.show-all-enterprises {  
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.show-all-enterprises a {  
  width: 50%;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid #e6ebf0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

.specs-grid div {
  padding: 28px;
  text-align: center;
  border-right: 1px solid #e6ebf0;
}

.specs-grid div:last-child {
  border-right: none;
}

.specs-grid strong {
  display: block;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 6px;
}

.specs-grid span {
  color: var(--muted);
  font-size: 14px;
}

.enterprise-about {
  padding: 80px 0;
}

.enterprise-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: 34px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.enterprise-about small,
.enterprise-progress small,
.enterprise-gallery small {
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
}

.enterprise-about h2,
.enterprise-progress h2,
.enterprise-gallery h2 {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--primary);
  line-height: 1.05;
}

.enterprise-about p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.enterprise-about-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 26px;
}

.enterprise-progress {
  padding: 80px 0;
}

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

.enterprise-progress-card {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.enterprise-progress-card strong {
  color: var(--primary);
}

.enterprise-progress-card h3 {
  font-size: 34px;
  margin: 12px 0;
  color: var(--primary);
}

.enterprise-gallery {
  padding: 80px 0 120px;
}

.enterprise-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.enterprise-gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.enterprise-not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 900px) {
  .enterprise-hero-menu nav {
    display: none;
  }

  .specs-grid,
  .enterprise-about-grid,
  .enterprise-progress-grid,
  .enterprise-gallery-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid div {
    border-right: none;
    border-bottom: 1px solid #e6ebf0;
  }

  .enterprise-about-grid {
    padding: 28px;
  }
}

.gallery-lightbox {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.94);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:.35s;
  z-index:99999;
}

.gallery-lightbox.active {
  opacity:1;
  visibility:visible;
}

.gallery-lightbox img {
  max-width:90%;
  max-height:88vh;
  border-radius:16px;
  object-fit:contain;
}

.gallery-close {
  position:absolute;
  top:30px;
  right:40px;
  color:white;
  font-size:46px;
  cursor:pointer;
}

.gallery-prev,
.gallery-next {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:60px;
  height:60px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:white;
  font-size:30px;
  cursor:pointer;
  transition:.25s;
}

.gallery-prev:hover,
.gallery-next:hover {
  background:white;
  color:#0D4EA2;
}

.gallery-prev {
  left:40px;
}

.gallery-next {
  right:40px;
}

.gallery-item {
  cursor:pointer;
  transition:.3s;
}

.gallery-item:hover {
  transform:scale(1.04);
}

/***** ENTERPRISE LIST *****/
.enterprises-page {
  margin-top: 166px;  
}

.enterprises-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.enterprise-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.enterprise-card-image {
  display: block;
  height: 280px;
  overflow: hidden;
}

.enterprise-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.enterprise-card:hover img {
  transform: scale(1.05);
}

.enterprise-card-content {
  padding: 28px;
}

.enterprise-card-status {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.enterprise-card-status span {
  background: rgba(237,26,36,.1);
  color: var(--secondary);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.enterprise-card h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 12px;
}

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

.enterprise-info {
  min-height: 120px;
}

.enterprise-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.enterprise-filters select {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}

.enterprise-filters select:focus {
  border-color: var(--primary);
}

.empty-enterprises {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  box-shadow: var(--shadow);
}

.empty-enterprises h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.empty-enterprises p {
  color: var(--muted);
}

@media (max-width: 768px) {
  .enterprise-filters {
    grid-template-columns: 1fr;
  }
  
  .show-all-enterprises a {  
    width: 100%;
  }

}

.dark-menu .topbar,
.dark-menu .menu,
.dark-menu .menu a {
  color: var(--primary);
}

.dark-menu .logo-top {
  display: none;
}

.dark-menu .logo-scrolled {
  display: block;
}


@media (max-width: 900px) {
  .enterprises-list {
    grid-template-columns: 1fr;
  }
}

/***** ABOUT US *****/
.about-hero {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,20,42,.9), rgba(3,20,42,.5));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-content span,
.about-history small,
.about-social small {
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.about-hero-content h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .95;
  max-width: 800px;
  margin-bottom: 24px;
}

.about-hero-content p {
  max-width: 650px;
  font-size: 22px;
  line-height: 1.6;
}

.about-history,
.about-areas,
.about-social {
  padding: 100px 0;
}

.about-history-grid,
.about-social-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.about-history h2,
.about-social h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--primary);
  line-height: 1;
}

.about-history p,
.about-social p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.about-numbers {
  padding: 50px 0;
  background: var(--primary);
  color: #fff;
}

.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.about-numbers-grid div {
  padding: 34px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.16);
}

.about-numbers-grid div:last-child {
  border-right: none;
}

.about-numbers-grid strong {
  display: block;
  font-size: 42px;
  margin-bottom: 8px;
}

.about-numbers-grid span {
  color: rgba(255,255,255,.78);
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-cards-grid article {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-cards-grid h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 24px;
}

.about-cards-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.about-social-card {
  background: var(--primary);
  color: #fff;
  padding: 46px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about-social-card h3 {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-social-card p {
  color: rgba(255,255,255,.8);
}

@media (max-width: 900px) {
  .about-history-grid,
  .about-social-grid,
  .about-numbers-grid,
  .about-cards-grid {
    grid-template-columns: 1fr;
  }

  .about-numbers-grid div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
}

/***** LEADS *****/
.lead-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 24px;
}

.lead-modal.active {
  display: flex;
}

.lead-modal-content {
  background: #fff;
  max-width: 520px;
  width: 100%;
  border-radius: 28px;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow);
}

.lead-modal-close {
  position: absolute;
  right: 22px;
  top: 18px;
  background: none;
  border: none;
  font-size: 34px;
  cursor: pointer;
}

#lead-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

#lead-form input,
#lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  font-family: inherit;
  font-size: 15px;
}

#lead-form textarea {
  min-height: 110px;
  resize: vertical;
}

/***** SUCESS ALERT *****/

.lead-success {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:.35s;
  z-index:999999;
}

.lead-success.active {
  opacity:1;
  visibility:visible;
}

.lead-success-card {
  width:460px;
  background:white;
  border-radius:30px;
  padding:45px;
  text-align:center;
}

.lead-success-icon {
  width:90px;
  height:90px;
  margin:auto;
  border-radius:50%;
  background:#EAF7EF;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:25px;
}

.lead-success-icon i {
  color:#2FB15A;
  font-size:46px;
}

.lead-success h2 {
  color:var(--primary);
  margin-bottom:18px;
}

.lead-success p {
  color:#666;
  line-height:1.7;
  margin-bottom:28px;
}