:root {
  --navy: #0c2f4d;
  --navy-dark: #071d30;
  --blue: #145a8d;

  --sun: #f9c74f;
  --sun-dark: #e5ac22;

  --green: #3e9b67;

  --white: #ffffff;
  --bg: #f7f9fb;
  --surface: #ffffff;

  --text: #163042;
  --muted: #71808b;

  --border: rgba(12,47,77,0.12);

  --container: 1180px;
}


/* ==================================================
   RESET
================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;

  -webkit-text-size-adjust: 100%;
}


body {
  min-height: 100vh;

  color: var(--text);
  background: var(--bg);

  font-family: "Manrope", sans-serif;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}


body.menu-open,
body.modal-open {
  overflow: hidden;
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}


.container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;
}


.section {
  padding: 110px 0;
}


.section-label {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--green);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 3px;
}



/* ==================================================
   HEADER
================================================== */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  z-index: 1200;

  width: 100%;

  padding-top:
    env(safe-area-inset-top);

  background:
    rgba(7,29,48,0.18);

  transition: 0.3s;
}


.site-header.scrolled {
  background:
    rgba(7,29,48,0.97);

  box-shadow:
    0 10px 30px
    rgba(0,0,0,0.12);
}


.header-inner {
  min-height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}


.brand {
  display: flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}


.brand-icon {
  width: 43px;
  height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--navy-dark);
  background: var(--sun);

  border-radius: 14px;

  font-size: 22px;
}


.brand-copy {
  display: flex;
  flex-direction: column;

  line-height: 1;
}


.brand-copy strong {
  color: white;

  font-family: "Montserrat", sans-serif;

  font-size: 16px;
  font-weight: 800;

  letter-spacing: 1px;
}


.brand-copy span {
  margin-top: 5px;

  color: var(--sun);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 4px;
}


.desktop-nav {
  display: flex;
  align-items: center;

  gap: 22px;
}


.desktop-nav a {
  color: rgba(255,255,255,0.78);

  font-size: 11px;
  font-weight: 600;

  transition: 0.2s;
}


.desktop-nav a:hover {
  color: var(--sun);
}


.header-cta {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 18px;

  color: var(--navy-dark);
  background: var(--sun);

  border-radius: 7px;

  font-size: 10px;
  font-weight: 800;

  transition: 0.25s;
}


.header-cta:hover {
  transform: translateY(-2px);
}


.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  background: transparent;

  border: 1px solid rgba(255,255,255,0.18);

  border-radius: 9px;
}


.menu-toggle span {
  display: block;

  width: 18px;
  height: 1px;

  margin: 5px auto;

  background: white;
}



/* ==================================================
   MOBILE MENU
================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;

  z-index: 5000;

  opacity: 0;
  visibility: hidden;

  transition: 0.25s;
}


.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}


.mobile-menu-overlay {
  position: absolute;
  inset: 0;

  background:
    rgba(6,20,33,0.72);
}


.mobile-menu-panel {
  position: absolute;

  top: 0;
  right: 0;

  width: min(86%, 360px);
  height: 100%;

  padding:
    max(
      25px,
      env(safe-area-inset-top)
    )
    25px
    max(
      25px,
      env(safe-area-inset-bottom)
    );

  background: var(--navy-dark);

  transform: translateX(100%);

  transition: 0.3s;
}


.mobile-menu.active
.mobile-menu-panel {
  transform: translateX(0);
}


.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-bottom: 24px;

  border-bottom:
    1px solid rgba(255,255,255,0.1);
}


.mobile-menu-top button {
  width: 40px;
  height: 40px;

  color: white;
  background: rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.1);

  border-radius: 8px;

  font-size: 22px;
}


.mobile-nav {
  display: flex;
  flex-direction: column;

  margin-top: 25px;
}


.mobile-nav a {
  padding: 17px 0;

  color: white;

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  font-size: 14px;
  font-weight: 700;
}


.mobile-menu-cta {
  width: 100%;

  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 30px;

  color: var(--navy-dark);
  background: var(--sun);

  border-radius: 8px;

  font-size: 11px;
  font-weight: 800;
}



/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;

  min-height: 880px;

  display: flex;
  align-items: center;

  overflow: hidden;
}


.hero-media {
  position: absolute;
  inset: 0;
}


.hero-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7,29,48,0.98) 0%,
      rgba(7,29,48,0.85) 43%,
      rgba(7,29,48,0.30) 78%
    ),
    linear-gradient(
      to top,
      rgba(7,29,48,0.6),
      transparent 45%
    );
}


.hero-grid {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1fr
    330px;

  gap: 80px;

  align-items: center;

  padding-top: 140px;
  padding-bottom: 80px;
}


.hero-kicker {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--sun);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 3px;
}


.hero-content h1 {
  max-width: 760px;

  color: white;

  font-family: "Montserrat", sans-serif;

  font-size:
    clamp(
      58px,
      7vw,
      92px
    );

  font-weight: 800;

  line-height: 0.98;

  letter-spacing: -3px;
}


.hero-content h1 strong {
  color: var(--sun);

  font-weight: 800;
}


.hero-content > p {
  max-width: 640px;

  margin-top: 28px;

  color: rgba(255,255,255,0.75);

  font-size: 15px;

  line-height: 1.85;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 34px;
}


.btn {
  min-height: 53px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 23px;

  border-radius: 7px;

  font-size: 11px;
  font-weight: 800;

  transition: 0.25s;
}


.btn-primary {
  color: var(--navy-dark);
  background: var(--sun);
}


.btn-primary:hover {
  transform: translateY(-3px);
}


.btn-secondary {
  color: white;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.2);
}


.hero-trust {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  max-width: 760px;

  margin-top: 60px;

  border-top:
    1px solid rgba(255,255,255,0.13);
}


.hero-trust > div {
  padding:
    20px
    20px
    0
    0;
}


.hero-trust > div + div {
  padding-left: 20px;

  border-left:
    1px solid rgba(255,255,255,0.13);
}


.hero-trust strong {
  display: block;

  color: white;

  font-family: "Montserrat", sans-serif;

  font-size: 20px;
}


.hero-trust span {
  display: block;

  margin-top: 5px;

  color: rgba(255,255,255,0.55);

  font-size: 9px;

  line-height: 1.5;
}


.hero-card {
  padding: 30px;

  background:
    rgba(255,255,255,0.94);

  border-radius: 12px;

  box-shadow:
    0 25px 60px
    rgba(0,0,0,0.16);
}


.hero-card > span {
  color: var(--green);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 2px;
}


.hero-card h2 {
  margin-top: 12px;

  color: var(--navy-dark);

  font-family: "Montserrat", sans-serif;

  font-size: 28px;

  line-height: 1.12;
}


.hero-card p {
  margin-top: 14px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.7;
}


.hero-card a {
  display: inline-block;

  margin-top: 22px;

  color: var(--blue);

  font-size: 10px;
  font-weight: 800;
}



/* ==================================================
   NUMBERS
================================================== */

.numbers-strip {
  background: var(--sun);
}


.numbers-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}


.numbers-grid > div {
  min-height: 115px;

  display: flex;
  justify-content: center;
  flex-direction: column;

  padding: 20px 28px;

  border-right:
    1px solid rgba(7,29,48,0.14);
}


.numbers-grid > div:first-child {
  border-left:
    1px solid rgba(7,29,48,0.14);
}


.numbers-grid strong {
  color: var(--navy-dark);

  font-family: "Montserrat", sans-serif;

  font-size: 28px;
}


.numbers-grid span {
  margin-top: 5px;

  color: rgba(7,29,48,0.72);

  font-size: 9px;
  font-weight: 700;
}



/* ==================================================
   HEADINGS
================================================== */

.section-heading {
  display: grid;

  grid-template-columns:
    1fr
    0.48fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 60px;
}


.section-heading h2,
.about-content h2,
.process-intro h2,
.contact-content h2 {
  color: var(--navy-dark);

  font-family: "Montserrat", sans-serif;

  font-size:
    clamp(
      42px,
      5vw,
      64px
    );

  font-weight: 800;

  line-height: 1.03;

  letter-spacing: -2px;
}


.section-heading h2 strong,
.about-content h2 strong,
.process-intro h2 strong,
.contact-content h2 strong {
  color: var(--green);
}


.section-heading > p {
  color: var(--muted);

  font-size: 13px;

  line-height: 1.8;
}



/* ==================================================
   ABOUT
================================================== */

.about {
  background: white;
}


.about-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 90px;

  align-items: center;
}


.about-image {
  position: relative;
}


.about-image img {
  width: 100%;

  aspect-ratio: 1.05;

  object-fit: cover;

  border-radius: 14px;
}


.about-image-badge {
  position: absolute;

  right: -25px;
  bottom: 30px;

  width: 175px;

  padding: 22px;

  color: white;
  background: var(--green);

  border-radius: 10px;

  box-shadow:
    0 15px 40px
    rgba(62,155,103,0.25);
}


.about-image-badge strong {
  display: block;

  font-family: "Montserrat", sans-serif;

  font-size: 26px;
}


.about-image-badge span {
  display: block;

  margin-top: 5px;

  font-size: 9px;

  line-height: 1.5;
}


.about-content > p {
  margin-top: 22px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.9;
}


.about-points {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  margin-top: 30px;

  border-top:
    1px solid var(--border);
}


.about-points > div {
  padding: 16px 0;

  color: #4d6575;

  border-bottom:
    1px solid var(--border);

  font-size: 11px;
}


.about-points span {
  margin-right: 8px;

  color: var(--green);

  font-weight: 800;
}



/* ==================================================
   BENEFITS
================================================== */

.benefits {
  background: #f0f5f8;
}


.benefits-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 16px;
}


.benefit-card {
  min-height: 260px;

  padding: 28px;

  background: white;

  border:
    1px solid var(--border);

  border-radius: 12px;

  transition: 0.25s;
}


.benefit-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 40px
    rgba(12,47,77,0.08);
}


.benefit-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--navy-dark);
  background: rgba(249,199,79,0.25);

  border-radius: 10px;

  font-size: 21px;
}


.benefit-card h3 {
  margin-top: 35px;

  color: var(--navy-dark);

  font-family: "Montserrat", sans-serif;

  font-size: 20px;
}


.benefit-card p {
  margin-top: 12px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.75;
}



/* ==================================================
   PROCESS
================================================== */

.process {
  background: var(--navy-dark);
}


.process-intro {
  max-width: 820px;

  margin-bottom: 55px;
}


.process-intro h2 {
  color: white;
}


.process-intro h2 strong {
  color: var(--sun);
}


.process-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid rgba(255,255,255,0.12);

  border-left:
    1px solid rgba(255,255,255,0.12);
}


.process-step {
  min-height: 280px;

  padding: 28px;

  border-right:
    1px solid rgba(255,255,255,0.12);

  border-bottom:
    1px solid rgba(255,255,255,0.12);
}


.process-number {
  color: var(--sun);

  font-family: "Montserrat", sans-serif;

  font-size: 16px;
  font-weight: 800;
}


.process-step h3 {
  margin-top: 75px;

  color: white;

  font-family: "Montserrat", sans-serif;

  font-size: 20px;
}


.process-step p {
  margin-top: 12px;

  color: rgba(255,255,255,0.58);

  font-size: 11px;

  line-height: 1.7;
}



/* ==================================================
   TEAM
================================================== */

.team {
  background: white;
}


.team-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}


.team-card {
  overflow: hidden;

  background: #f9fbfc;

  border:
    1px solid var(--border);

  border-radius: 12px;
}


.team-image {
  aspect-ratio: 1.18;

  overflow: hidden;
}


.team-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.4s;
}


.team-card:hover
.team-image img {
  transform: scale(1.04);
}


.team-content {
  padding: 24px;
}


.team-content > span {
  color: var(--green);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.7px;
}


.team-content h3 {
  margin-top: 8px;

  color: var(--navy-dark);

  font-family: "Montserrat", sans-serif;

  font-size: 21px;
}


.team-content p {
  margin-top: 10px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.7;
}



/* ==================================================
   IMPACT
================================================== */

.impact {
  padding: 90px 0;

  background:
    linear-gradient(
      120deg,
      #3e9b67,
      #2d7b52
    );
}


.impact-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 70px;

  align-items: center;
}


.impact-main > span {
  color: rgba(255,255,255,0.7);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 3px;
}


.impact-main h2 {
  margin-top: 14px;

  color: white;

  font-family: "Montserrat", sans-serif;

  font-size:
    clamp(
      40px,
      5vw,
      60px
    );

  line-height: 1.05;
}


.impact-stats {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);
}


.impact-stats > div {
  padding: 20px;

  border-left:
    1px solid rgba(255,255,255,0.2);
}


.impact-stats strong {
  display: block;

  color: white;

  font-family: "Montserrat", sans-serif;

  font-size: 22px;
}


.impact-stats span {
  display: block;

  margin-top: 6px;

  color: rgba(255,255,255,0.7);

  font-size: 9px;

  line-height: 1.5;
}



/* ==================================================
   PROJECTS
================================================== */

.projects {
  background: #f7f9fb;
}


.projects-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  grid-auto-rows: 240px;

  gap: 12px;
}


.project-card {
  position: relative;

  padding: 0;

  overflow: hidden;

  border: 0;

  border-radius: 10px;

  background: #dfe7ec;
}


.project-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(7,29,48,0.72),
      transparent 55%
    );
}


.project-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.45s;
}


.project-card:hover img {
  transform: scale(1.04);
}


.project-card > span {
  position: absolute;

  left: 18px;
  bottom: 17px;

  z-index: 2;

  color: white;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


.project-large {
  grid-column: span 2;
  grid-row: span 2;
}


.project-wide {
  grid-column: span 2;
}



/* ==================================================
   CTA
================================================== */

.cta {
  padding: 80px 0;

  background: var(--sun);
}


.cta-grid {
  display: grid;

  grid-template-columns:
    1fr
    0.7fr;

  gap: 70px;

  align-items: center;
}


.cta-grid > div:first-child > span {
  color: rgba(7,29,48,0.64);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 3px;
}


.cta h2 {
  margin-top: 12px;

  color: var(--navy-dark);

  font-family: "Montserrat", sans-serif;

  font-size:
    clamp(
      40px,
      5vw,
      60px
    );

  line-height: 1.05;
}


.cta p {
  color: rgba(7,29,48,0.7);

  font-size: 12px;

  line-height: 1.8;
}


.btn-dark {
  margin-top: 20px;

  color: white;
  background: var(--navy-dark);
}



/* ==================================================
   CONTACT
================================================== */

.contact {
  background: white;
}


.contact-grid {
  display: grid;

  grid-template-columns:
    1fr
    0.6fr;

  gap: 80px;

  align-items: center;
}


.contact-content > p {
  max-width: 600px;

  margin-top: 22px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.8;
}


.contact-info {
  margin: 30px 0;

  border-top:
    1px solid var(--border);
}


.contact-info > div {
  padding: 16px 0;

  border-bottom:
    1px solid var(--border);
}


.contact-info small {
  display: block;

  color: var(--green);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 2px;
}


.contact-info strong {
  display: block;

  margin-top: 6px;

  color: var(--navy-dark);

  font-size: 12px;
}


.contact-panel {
  padding: 35px;

  color: white;
  background: var(--navy-dark);

  border-radius: 12px;
}


.contact-panel > span {
  color: var(--sun);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 2px;
}


.contact-panel h3 {
  margin-top: 12px;

  font-family: "Montserrat", sans-serif;

  font-size: 27px;

  line-height: 1.15;
}


.contact-panel ul {
  list-style: none;

  margin-top: 25px;
}


.contact-panel li {
  padding: 13px 0;

  color: rgba(255,255,255,0.75);

  border-bottom:
    1px solid rgba(255,255,255,0.1);

  font-size: 11px;
}



/* ==================================================
   FOOTER
================================================== */

.footer {
  padding-bottom:
    env(safe-area-inset-bottom);

  background: var(--navy-dark);
}


.footer-grid {
  display: grid;

  grid-template-columns:
    1fr
    0.4fr
    0.4fr
    0.4fr;

  gap: 55px;

  padding: 70px 0;
}


.footer-brand > p {
  max-width: 360px;

  margin-top: 20px;

  color: rgba(255,255,255,0.48);

  font-size: 11px;

  line-height: 1.7;
}


.footer-links {
  display: flex;
  flex-direction: column;

  gap: 11px;
}


.footer-links h4 {
  margin-bottom: 7px;

  color: white;

  font-size: 10px;
}


.footer-links a {
  color: rgba(255,255,255,0.48);

  font-size: 10px;

  transition: 0.2s;
}


.footer-links a:hover {
  color: var(--sun);
}


.footer-bottom {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid rgba(255,255,255,0.08);
}


.footer-bottom p {
  color: rgba(255,255,255,0.38);

  font-size: 9px;
}


.footer-bottom a {
  color: var(--sun);

  font-weight: 800;
}



/* ==================================================
   WHATSAPP
================================================== */

.whatsapp-float {
  position: fixed;

  right:
    max(
      20px,
      env(safe-area-inset-right)
    );

  bottom:
    max(
      20px,
      env(safe-area-inset-bottom)
    );

  z-index: 1400;

  width: 59px;
  height: 59px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;

  border-radius: 50%;

  box-shadow:
    0 15px 35px
    rgba(37,211,102,0.26);

  transition: 0.25s;
}


.whatsapp-float:hover {
  transform:
    translateY(-4px)
    scale(1.03);
}


.whatsapp-float svg {
  width: 30px;
  height: 30px;

  fill: white;
}



/* ==================================================
   MODAL
================================================== */

.gallery-modal {
  position: fixed;
  inset: 0;

  z-index: 6000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 35px;

  opacity: 0;
  visibility: hidden;

  background:
    rgba(7,29,48,0.96);

  transition: 0.25s;
}


.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}


.gallery-modal img {
  width: auto;

  max-width: 95vw;
  max-height: 90vh;

  object-fit: contain;
}


.gallery-modal-close {
  position: absolute;

  top:
    max(
      20px,
      env(safe-area-inset-top)
    );

  right:
    max(
      20px,
      env(safe-area-inset-right)
    );

  width: 45px;
  height: 45px;

  color: white;
  background: rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: 8px;

  font-size: 24px;
}



/* ==================================================
   REVEAL
================================================== */

.reveal {
  opacity: 0;

  transform: translateY(22px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}


.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}



/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {

  .desktop-nav {
    gap: 14px;
  }


  .header-cta {
    display: none;
  }


  .hero-grid {
    grid-template-columns:
      1fr
      290px;

    gap: 40px;
  }


  .benefits-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .process-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .footer-grid {
    grid-template-columns:
      1fr
      0.5fr
      0.5fr;

    gap: 40px;
  }


  .footer-brand {
    grid-column:
      span 3;
  }

}



/* ==================================================
   MOBILE / TABLET
================================================== */

@media (max-width: 820px) {

  .section {
    padding: 85px 0;
  }


  .desktop-nav {
    display: none;
  }


  .menu-toggle {
    display: block;
  }


  .hero {
    min-height: 760px;
  }


  .hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-top: 130px;
  }


  .hero-card {
    max-width: 380px;
  }


  .numbers-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .about-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }


  .section-heading {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .team-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .team-card:last-child {
    grid-column:
      span 2;

    max-width: 50%;

    margin-inline: auto;
  }


  .impact-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .projects-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .cta-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .contact-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

}



/* ==================================================
   SMARTPHONE
================================================== */

@media (max-width: 600px) {

  .container {
    width:
      calc(100% - 28px);
  }


  .header-inner {
    min-height: 70px;
  }


  .brand-copy strong {
    font-size: 14px;
  }


  .hero {
    min-height: 740px;
  }


  .hero-media img {
    object-position: 68% center;
  }


  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(7,29,48,0.48),
        rgba(7,29,48,0.96) 72%
      );
  }


  .hero-grid {
    padding-top: 120px;
    padding-bottom: 55px;
  }


  .hero-content h1 {
    font-size:
      clamp(
        48px,
        15vw,
        65px
      );

    letter-spacing: -2px;
  }


  .hero-content > p {
    font-size: 13px;
  }


  .hero-actions {
    flex-direction: column;
  }


  .hero-actions .btn {
    width: 100%;
  }


  .hero-trust {
    grid-template-columns: 1fr;

    margin-top: 40px;
  }


  .hero-trust > div {
    padding: 14px 0;
  }


  .hero-trust > div + div {
    padding-left: 0;

    border-left: none;

    border-top:
      1px solid rgba(255,255,255,0.13);
  }


  .hero-card {
    width: 100%;
    max-width: none;
  }


  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }


  .numbers-grid > div {
    min-height: 95px;

    padding: 17px;
  }


  .numbers-grid strong {
    font-size: 22px;
  }


  .section-heading h2,
  .about-content h2,
  .process-intro h2,
  .contact-content h2 {
    font-size:
      clamp(
        38px,
        12vw,
        52px
      );
  }


  .about-image-badge {
    right: 10px;
    bottom: 15px;

    width: 145px;
  }


  .about-points {
    grid-template-columns: 1fr;
  }


  .benefits-grid {
    grid-template-columns: 1fr;
  }


  .process-grid {
    grid-template-columns: 1fr;
  }


  .team-grid {
    grid-template-columns: 1fr;
  }


  .team-card:last-child {
    grid-column: auto;

    max-width: none;
  }


  .impact-stats {
    grid-template-columns: 1fr;
  }


  .impact-stats > div {
    border-left: none;
    border-top:
      1px solid rgba(255,255,255,0.2);
  }


  .projects-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 250px;
  }


  .project-large,
  .project-wide {
    grid-column: auto;
    grid-row: auto;
  }


  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .footer-brand {
    grid-column: auto;
  }


  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;

    padding: 24px 0;
  }


  .whatsapp-float {
    width: 55px;
    height: 55px;

    right:
      max(
        15px,
        env(safe-area-inset-right)
      );

    bottom:
      max(
        15px,
        env(safe-area-inset-bottom)
      );
  }

}



/* ==================================================
   MUITO ESTREITO
================================================== */

@media (max-width: 390px) {

  .brand-copy {
    display: none;
  }


  .numbers-grid {
    grid-template-columns: 1fr;
  }


  .hero-content h1 {
    font-size: 46px;
  }

}



/* ==================================================
   REDUCED MOTION
================================================== */

@media (
  prefers-reduced-motion:
  reduce
) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

}