html {
  box-sizing: border-box;
  font-size: 62.5%; /*Convierte 1 rem a 10px*/
}

@font-face {
  font-family: 'MiFuente';
  src: url(../fonts/Source_Sans_Pro/SourceSansPro-Black.ttf);
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 2;
}

/* Globales */

h1,
h2,
h3 {
  font-family: Coolvetica;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 3rem;
  letter-spacing: 0.5rem;
}

h3 {
  font-size: 3rem;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: #000000;
}

.contenedor {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
  z-index: 1;
}

.bg-green {
  background-color: #1ed760;
}

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

.btn {
  background-color: #1ed760;
  margin: 1rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  transition: background-color 0.3s ease-out;
  text-align: center;
  border: 1px solid #1ed760;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: inline-block;
  padding: 1rem 6rem;
}

.btn:hover {
  background-color: #fff;
  border: 1px solid #1ed760;
  color: #1ed760;
  cursor: pointer;
}

.btn-contacto {
  background-color: #fff;
  margin: 2rem 0;
  color: #1ed760;
  text-transform: uppercase;
  font-weight: 900;
  transition: background-color 0.3s ease-out;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: inline-block;
  padding: 1rem 6rem;
}

.btn-contacto:hover {
  background-color: #1ed760;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}

.padd {
  padding: 2rem 0;
}

.titulo_fuente{
  font-family: "MiFuente"!important;
}

/* utilidades */
.text-center {
  text-align: center;
}

.logo {
  max-width: 20%;
  margin: 1rem 0;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enlaces a {
  color: #fff;
}

.enlaces a:nth-child(1) {
  margin-right: 2rem;
}

/* Galeria */
.sectionGaleria {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.sectionGaleria h2 {
  text-align: center;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

/* Footer */
footer {
  background-color: #1ed760;
}

.grid-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
  justify-items: center;
  align-items: center;
  color: #fff;
  padding: 1rem 0;
}

.imgFooter {
  max-width: 50%;
}

.social {
  display: flex;
  text-align: center;
}

.social-social {
  color: #fff;
}

.social-social i {
  font-size: 2rem;
}

.social-social p {
  margin: 0;
}

.social {
  display: flex;
  justify-content: space-around;
}

.footer-social {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
}

@media (max-width:768px) {
  .logo {
    max-width: 30%;
    margin: 1rem 0;
  }

  .galeria {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-footer {
    padding: 2rem 0;
    grid-template-columns: 1fr;
  }
}

@media (max-width:564px) {
  .logo {
    max-width: 40%;
    margin: 1rem 0;
  }

  .galeria {
    grid-template-columns: repeat(1, 1fr);
  }
}