:root {
  font-size: 20px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

p {
  margin: 0;
}

p:not(:last-child) {
  margin-bottom: 1.5em;
}

body {
  font: 1em/1.618 Nunito, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 30px;
  margin: 0;
  color: #003a8a;
  background: rgb(0, 58, 138);
  background: linear-gradient(90deg, rgba(0, 58, 138, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

strong {
  color: #f39200;
}

a {
  text-decoration-color: #072a5c;
}

h4 {
  margin-top: 0em;
  font-size: 0.5em;
  margin-bottom: 1em;
  color: #072a5c;
}

button {
  font: inherit;
  padding: 0.5em 1em;
  border: 0;
  border-radius: 0.25em;
  background-color: #f39200;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.5s;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}


.card {
  max-width: 650px;
  min-height: 740px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  align-items: center;
  width: 650px;
  padding: 25px 25px 25px 25px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
}

.img-central {
  width: 100%;
  height: 60%;
}

.card-footer {
  font-size: 0.65em;
  color: #446;
}

.Redes {
  width: 100%;
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-grow: 1;
}

.Redes>* {
  margin: 6px;
}

@media (max-width: 600px) {
  .card {
    padding: 10px;
    min-height: 620px;
    
  }

  .Redes {
    width: 100%;
    padding-top: 15px;
    display: grid;
    grid-template-rows: repeat(2, 80px);
    grid-template-columns: repeat(3, 100px);
    gap: 20px;
  }
}

@media (max-height: 670px) {
  .card {
    
    min-height: 600px;
  }

  .Redes {
    padding-top: 10px;
    
}
}

.icon {
  width: 90px;
}

.icon1 {
  color: #003a8a;
  font-size: 2em;
  margin: auto;
  transition: 0.5s;
}
.icon1:hover {
  color: #f39200;
  font-size: 2.5em;
  margin: auto;
  transition: 0.5s;
}


.icon2 {
  color: #f39200;
  font-size: 2em;
  transition: 0.5s;
}

.icon2:hover {
  color: #003a8a;
  font-size: 2.5em;
  transition: 0.5s;
}

