:root {
  --blue-950: #001f3f;
  --blue-900: #002b57;
  --blue-850: #003a73;
  --blue-800: #004b93;
  --blue-700: #0068c9;
  --blue-600: #0878df;
  --green: #17c653;
  --text: #071a35;
  --muted: #4c5d73;
  --line: #dbe5f0;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --shadow: 0 18px 45px rgba(0, 35, 74, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: 78px 0;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.eyebrow-line {
  width: 55px;
  height: 3px;
  margin: 22px 0 28px;
  background: var(--blue-700);
  border-radius: 10px;
}

.section-head .eyebrow-line {
  margin-inline: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: #082f68;
  letter-spacing: 0;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2.35rem, 4.5vw, 3.65rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 10px 24px rgba(0, 104, 201, 0.24);
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 104, 201, 0.28);
}

.btn.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: none;
}

.btn.light {
  background: #fff;
  color: var(--blue-800);
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.icon-lg {
  width: 58px;
  height: 58px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(3, 47, 97, 0.1);
  box-shadow: 0 8px 26px rgba(0, 34, 68, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1300px, calc(100% - 56px));
  min-height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 184px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: #071a35;
  font-weight: 650;
  line-height: 1;
  padding: 36px 0 32px;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  width: 0;
  height: 3px;
  margin: auto;
  background: var(--blue-700);
  border-radius: 20px;
  transition: width 0.18s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--blue-700);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #081a31;
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link .icon {
  color: #05b84b;
  width: 26px;
  height: 26px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-800);
  background: #fff;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 25px;
  height: 25px;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-home {
  min-height: 585px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 35, 70, 0.98) 0%, rgba(0, 48, 92, 0.9) 42%, rgba(0, 36, 76, 0.46) 70%, rgba(0, 23, 49, 0.18) 100%),
    url("assets/photo-ejecucion-obras.jpeg") center / cover no-repeat,
    var(--blue-900);
}

.hero-copy {
  max-width: 650px;
  padding: 80px 0;
}

.hero-copy h1 {
  color: #fff;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
}

.quick-services {
  color: #fff;
  background: radial-gradient(circle at 15% 0%, rgba(0, 118, 221, 0.28), transparent 35%), linear-gradient(135deg, #003260, #001f3f 70%);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.quick-item {
  min-height: 205px;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item .icon-lg {
  margin-bottom: 18px;
}

.quick-item h3 {
  color: #fff;
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.quick-item p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.intro-media img,
.equipment-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.equipment-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-top {
  object-position: center top;
}

.intro-copy .btn {
  margin-top: 18px;
}

.about-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #fff 0%, #fff 40%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 255, 255, 0.15) 68%, rgba(255, 255, 255, 0) 100%),
    url("assets/about-hero.png") right center / auto 100% no-repeat,
    #f7fafc;
}

.about-hero .hero-copy {
  max-width: 620px;
}

.about-hero h1 {
  color: #082f68;
}

.about-hero p {
  color: #26364d;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.value-card {
  padding: 26px 36px;
  text-align: center;
  border-right: 1px solid #bcc8d6;
}

.value-card:last-child {
  border-right: 0;
}

.value-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  color: #082f68;
}

.value-card h3 {
  color: #071a35;
  font-size: 1.38rem;
}

.value-card p {
  margin-bottom: 0;
}

.stats-band {
  color: #fff;
  background: radial-gradient(circle at 12% 20%, rgba(0, 117, 221, 0.28), transparent 34%), linear-gradient(135deg, #003260, #001f3f);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 60px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.44);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.55rem;
  line-height: 1.25;
}

.service-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.service-card,
.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 32px rgba(0, 30, 64, 0.08);
}

.service-card {
  position: relative;
}

.service-card img,
.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.service-card-body {
  position: relative;
  padding: 72px 32px 34px;
}

.service-icon {
  position: absolute;
  top: -48px;
  left: 32px;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: 0 12px 24px rgba(0, 104, 201, 0.24);
}

.service-icon .icon {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.service-card p {
  min-height: 138px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-weight: 800;
}

.text-link .icon {
  width: 20px;
  height: 20px;
  transition: transform 0.18s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.process-section {
  background: #fff;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue-700);
  border-radius: 50%;
  color: var(--blue-800);
  background: #fff;
}

.process-icon .icon {
  width: 56px;
  height: 56px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 55px;
  left: calc(50% + 56px);
  width: calc(100% - 82px);
  height: 2px;
  background: var(--blue-700);
}

.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 48px;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--blue-700);
}

.process-number {
  width: 36px;
  height: 36px;
  margin: -17px auto 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-700);
  font-weight: 850;
}

.process-step h3 {
  font-size: 1.34rem;
  color: #071a35;
}

.process-step p {
  margin-bottom: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 31, 63, 0.96), rgba(0, 41, 86, 0.92) 56%, rgba(0, 41, 86, 0.62)),
    url("assets/cta-worker.png") right bottom / auto 100% no-repeat,
    var(--blue-950);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band h2 {
  max-width: 720px;
}

.cta-band p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: #fff;
  font-size: 2rem;
  font-weight: 850;
}

.equipment-hero {
  min-height: 530px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 31, 63, 0.96) 0%, rgba(0, 42, 84, 0.78) 42%, rgba(0, 25, 49, 0.18) 80%),
    url("assets/photo-andamios-obra.jpeg") center / cover no-repeat,
    var(--blue-950);
}

.equipment-page {
  color: #fff;
  background:
    linear-gradient(rgba(0, 37, 74, 0.95), rgba(0, 30, 60, 0.98)),
    radial-gradient(circle at right, rgba(0, 118, 221, 0.14), transparent 35%),
    var(--blue-950);
}

.equipment-list {
  display: grid;
  gap: 44px;
}

.equipment-item {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.equipment-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.equipment-copy h2,
.equipment-copy p {
  color: #fff;
}

.equipment-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.blue-icon-box {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
}

.blue-icon-box .icon {
  width: 48px;
  height: 48px;
}

.projects-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card img {
  height: 292px;
}

.project-body {
  padding: 28px 24px 30px;
}

.project-card h3 {
  min-height: 74px;
  font-size: 1.45rem;
}

.project-body p {
  margin-bottom: 8px;
}

.project-body strong {
  color: #071a35;
}

.project-hidden {
  display: none;
}

.project-hidden.is-visible {
  display: block;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.contact-section {
  position: relative;
  min-height: calc(100vh - 98px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.88)),
    url("assets/photo-supervision-asfalto.jpeg") center right / cover no-repeat;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

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

.contact-info-list {
  display: grid;
  gap: 30px;
  margin-top: 56px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.contact-info-item .icon {
  width: 46px;
  height: 46px;
  color: var(--blue-800);
}

.contact-info-item.whatsapp .icon {
  color: #13b74a;
}

.contact-info-item h3 {
  color: #071a35;
  font-size: 1.34rem;
  margin-bottom: 2px;
}

.contact-info-item p {
  margin-bottom: 0;
  color: #0c2b50;
  font-size: 1.22rem;
}

.contact-card {
  padding: 36px 44px 44px;
  border: 1px solid rgba(204, 216, 229, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.map-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 56px;
}

.map-copy,
.google-map {
  border: 1px solid rgba(204, 216, 229, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.map-copy {
  padding: 30px;
}

.map-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.map-copy p {
  color: #0c2b50;
  font-size: 1.18rem;
}

.google-map {
  width: 100%;
  min-height: 360px;
}

.form-row {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.form-row label {
  color: #27405f;
  font-weight: 750;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #cbd8e7;
  border-radius: 5px;
  color: #092040;
  background: #fff;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-row textarea {
  min-height: 128px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(0, 104, 201, 0.12);
}

.form-status {
  min-height: 28px;
  margin: 14px 0 0;
  color: var(--blue-800);
  font-weight: 700;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 118, 221, 0.2), transparent 34%),
    linear-gradient(135deg, #001d3b 0%, #00152c 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr 1fr;
  gap: 58px;
  padding: 82px 0 72px;
}

.footer-logo {
  width: 245px;
  margin-bottom: 22px;
}

.footer-main p,
.footer-main a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.9);
}

.footer-main p {
  max-width: 360px;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  font-weight: 850;
}

.footer-title {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 13px;
  background: var(--blue-700);
  border-radius: 10px;
}

.footer-list {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-list .icon {
  color: var(--blue-600);
}

.footer-contact {
  display: grid;
  gap: 22px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.footer-contact-item .icon {
  width: 28px;
  height: 28px;
}

.footer-contact strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
}

.footer-bottom .container {
  min-height: 80px;
  display: flex;
  align-items: center;
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 55;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #16c65a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.floating-whatsapp .icon {
  width: 40px;
  height: 40px;
}

.simple-page {
  background: #fff;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .primary-nav {
    gap: 20px;
  }

  .phone-link span {
    display: none;
  }

  .service-grid,
  .projects-grid {
    gap: 24px;
  }
}

@media (max-width: 940px) {
  .container {
    width: min(100% - 34px, var(--container));
  }

  .header-inner {
    width: min(100% - 28px, 1300px);
    min-height: 82px;
  }

  .brand img {
    width: 154px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav,
  .header-actions {
    position: fixed;
    left: 0;
    right: 0;
    display: none;
    background: #fff;
  }

  .primary-nav {
    top: 82px;
    bottom: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 28px 10px;
    border-top: 1px solid var(--line);
  }

  .primary-nav a {
    padding: 17px 0;
    border-bottom: 1px solid #edf2f7;
  }

  .primary-nav a::after {
    bottom: 7px;
    margin: 0;
  }

  .header-actions {
    top: 458px;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 28px 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 24px rgba(0, 30, 64, 0.1);
  }

  body.nav-open .primary-nav,
  body.nav-open .header-actions {
    display: flex;
  }

  .phone-link span {
    display: inline;
  }

  .quick-grid,
  .values-grid,
  .stats-grid,
  .projects-grid,
  .service-grid,
  .intro-grid,
  .contact-grid,
  .map-block,
  .equipment-item,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .quick-item,
  .value-card,
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 43, 87, 0.18);
  }

  .quick-item {
    border-color: rgba(255, 255, 255, 0.24);
  }

  .quick-item:last-child,
  .value-card:last-child,
  .stat:last-child {
    border-bottom: 0;
  }

  .hero-home,
  .about-hero,
  .equipment-hero {
    min-height: auto;
    background-position: center;
    background-size: cover;
  }

  .about-hero {
    background:
      linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.94)),
      url("assets/about-hero.png") center / cover no-repeat;
  }

  .hero-copy {
    padding: 72px 0;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-step:not(:last-child)::before,
  .process-step:not(:last-child)::after {
    display: none;
  }

  .contact-section {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-home {
    background:
      linear-gradient(rgba(0, 35, 70, 0.9), rgba(0, 35, 70, 0.86)),
      url("assets/photo-ejecucion-obras.jpeg") center / cover no-repeat,
      var(--blue-900);
  }

  .service-card img,
  .project-card img {
    height: 220px;
  }

  .service-card-body,
  .project-body,
  .contact-card,
  .map-copy {
    padding-inline: 22px;
  }

  .contact-info-item {
    grid-template-columns: 44px 1fr;
  }

  .google-map {
    min-height: 300px;
  }

  .footer-main {
    gap: 34px;
    padding: 58px 0 52px;
  }

  .floating-whatsapp {
    width: 62px;
    height: 62px;
    right: 18px;
    bottom: 18px;
  }

  .floating-whatsapp .icon {
    width: 32px;
    height: 32px;
  }
}
