@font-face {
  font-family: "helvetica";
  src: url(../font/Helvetica.ttf);
}
@font-face {
  font-family: "helveticaBold";
  src: url(../font/Helvetica-Bold.ttf);
}

:root {
  --font-helvetica: "helvetica", sans-serif;
  --font-helvetica-bold: "helveticaBold", sans-serif;
  --azul: #2c355c;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: auto;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tarjeta {
  width: 400px;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.bg-header {
  width: 100%;
  object-fit: cover;
  height: 70vh;
  position: relative;
}

.header-logo {
  width: 280px;
  margin-top: -18rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 320px){
  .header-logo{
      margin-top: -14rem;
      width: 240px;
  }
}
.header-logo img {
  width: 100%;
  object-fit: cover;
}

.header-iso {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background-color: #e7e7e7;
  opacity: 0.9;
  margin-top: -4.5rem;
}
@media (max-width: 320px){
  .header-iso {
      width: 120px;
  }
}
.header-iso img {
  width: 100%;
  object-fit: cover;
  padding: 1rem;
}

/* titiulo */
.titulo h1 {
  text-align: center;
  text-transform: uppercase;
  margin-top: 3rem;
  font-family: var(--font-helvetica-bold);
  color: var(--azul);
  font-weight: bold;
  font-size: 2.5rem;
}
.titulo h2 {
  text-align: center;
  font-family: var(--font-helvetica);
  color: var(--azul);
  font-weight: 300;
  font-size: 1.4rem;
}
.linea {
  width: 170px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  background-color: #e7e7e7;
  margin-top: 10px;
}
/* Contacto */
.contacto {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.info-contacto {
  text-align: center;
}

.lista-contacto {
  list-style: none;
  margin-top: 2rem;
  margin-bottom: 3rem;

  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lista-contacto img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
.lista-contacto a {
  color: #c2c2c2;
  text-decoration: none;
  font-family: var(--font-helvetica);
  color: var(--azul);
  font-weight: 500;
  font-size: 20px;
}

.lista-contacto li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.brochure {
  margin-bottom: 3rem;
}
.brochure a{
  font-family: var(--font-helvetica);
  color: #3A3A3A;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: .7rem 2.5rem;
  border: 2px solid #3A3A3A;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;

    position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}


.brochure a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.brochure a:hover {
  background-color: #444;
  color: white;
}

.brochure a:hover::before {
  left: 125%;
}

.item-cuatro-contacto {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.item-cuatro-contacto img{
  width: 30px;
  height: 30px;
  object-fit: cover;
  margin-bottom: 3rem;
}
