@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-primary: #13a5df;
  --color-secondary: #1356a1;
}

body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.row-cde {
  align-items: center;
  overflow: hidden;
}

.btn {
  padding: 0.5em 1.5em;
  border-radius: 2em;
}

.img-nav-logo {
  width: clamp(180px, 25vw, 260px);
  height: auto;
}

.img-letter-mypes {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(80px, 16vw, 130px);
}

.img-logo-pnte {
  width: clamp(180px, 25vw, 260px);
}

.navbar-cde {
  height: 100px;
  box-shadow: 2px 3px 6px rgb(61 61 61 / 10%);
  border-radius: 0 0 30px 30px;
}

.banner {
  position: relative;
}

.hero {
  width: 420px;
}

.text-right {
  text-align: right;
}

.banner-title {
  color: var(--color-primary);
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.banner-text {
  font-size: clamp(1.2rem, 3vw, 1.3rem);
  color: var(--color-secondary);
}

.btn-banner {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-banner:hover {
  background-color: var(--color-primary);
  color: white;
}

.wrapper-map {
  background-image: url('./images/background-map-mobile.png');
  width: 100%;
  height: auto;
  background-position: center;
  background-size: 100% 100%;
  padding: 3rem 1rem;
}

.map-peru-wrapper {
  background-image: url('./images/background-mapa.png');
  background-repeat: no-repeat;
  height: 55vh;
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
}

.map-peru {
  cursor: pointer;
  height: inherit;
}

.map-cde-wrapper {
  height: auto;
}

.map-title {
  color: #fff;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 500;
}

.card-sub-title {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  background: var(--color-primary);
  top: -1.5rem;
  border-radius: 20px;
  padding: 10px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0px -1px 11px #5d5d5d;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.map-card {
  padding: 1.5rem;
  border-radius: 40px;
}

.map-card h5 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.map-card p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  color: var(--color-secondary);
}

.svg-peru {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  /* outline: 2px solid red; */
}

@media screen and (min-width: 992px) {
  .svg-peru {
    min-height: 100vh;
  }

  .wrapper-map {
    min-height: 100vh;
    padding: 0;
  }

  .map-cde-wrapper {
    min-height: 100vh;
  }

  .map-peru-wrapper {
    height: 88vh;
  }

  .wrapper-map {
    background-image: url('./images/background-map.png');
  }

  .map-card {
    padding: 2rem;
  }

  .card-sub-title {
    left: -1.25rem;
    transform: initial;
    padding: 10px 20px;
  }

  .hero {
    width: auto;
  }

}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .banner {
    height: auto;
    margin-top: 4rem !important;
  }

  .banner-text {
    font-size: 18px;
  }

  .img-letter-mypes {
    display: none;
  }

  .btn-banner {
    font-size: 16px !important;
  }

  .img-logo-pnte {
    width: 220px;
  }

  .map-title {
    font-size: 28px;
  }

  .map-card p {
    font-size: 14px;
  }
}

@media screen and (min-width: 1400px) {
  .banner {
    min-height: calc(100vh - 100px);
  }
}

@media screen and (max-width: 992px) {
  .btn-banner {
    font-size: 16px;
    display: block;
  }
}