/* FUENTES */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap");
:root {
  --top-bar: 13%;
  /* Colores */
  --principal: #0149ad;
  --secundario: #ff3131;
  --tercero: #2b4257;
  --cuarto: #000000;
  --garaje: #f1afd0;
  /* 12.75-13.33px */
  --text-xs: clamp(0.83rem, calc(0.78rem + 0.07vw), 0.8rem);
  /* 17-20px */
  --text-s: clamp(1.06rem, calc(0.99rem + 0.37vw), 1.25rem);
  /* 22.66-30px */
  --text-m: clamp(1.42rem, calc(1.24rem + 0.9vw), 1.88rem);
  /* 30.21-45px */
  --text-l: clamp(1.89rem, calc(1.53rem + 1.8vw), 2.81rem);
  /* 40.27-67.5px */
  --text-xl: clamp(2.52rem, calc(1.85rem + 3.32vw), 4.22rem);
  /* 53.67-101.25px */
  --text-2xl: clamp(3.35rem, calc(2.19rem + 5.8vw), 6.33rem);
  /* 71.55-151.88px */
  --text-3xl: clamp(4.47rem, calc(2.51rem + 9.8vw), 9.49rem);
  --aspect-ratio-svg: 1160 / 6740.2;
  --top: 5%;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: var(--text-l);
  text-transform: uppercase;
  color: var(--principal);
}

h2 {
  color: var(--secundario);
  font-family: "Inter", sans-serif;
  padding-bottom: 10px;
  padding-top: 10px;
  text-transform: uppercase;
}

h3 {
  color: var(--secundario);
  font-family: "Inter", sans-serif;
  font-size: var(--text-s);
  padding-bottom: 10px;
  padding-top: 10px;
  text-transform: uppercase;
}

p {
  text-align: justify;
  font-family: "Inter", sans-serif;
  font-size: var(--text-s);
  line-height: 1.8rem;
  color: var(--tercero);
}

li {
  list-style: none;
  font-family: "Inter", sans-serif;
  color: var(--principal);
}
li i {
  margin-right: 15px;
  width: 10px;
  height: 10px;
  color: var(--secundario);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}

svg {
  position: absolute;
  top: 5em;
  left: 10vw;
  width: 50vw;
}
svg .mask {
  width: 0;
}

.container {
  display: flex;
  width: 1000vw;
}
.container .col {
  display: flex;
  gap: 3em;
}
.container p {
  font-size: 0.8rem;
}
.container section {
  width: 100vw;
  padding: 8vw 15vw;
}
.container section h1 {
  font-size: 3rem;
  margin: 0;
}
.container section p {
  font-size: 1.2rem;
}

section {
  height: 100vh;
}

section img {
  border-radius: 10px;
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.08);
}

.header {
  width: 100vw;
  height: 100vh;
}

.top-bar {
  width: 100vw;
  height: var(--top-bar);
  padding: 15px 0px;
  text-align: center;
}
.top-bar h1 {
  padding-top: 5px;
}

.logo {
  width: 10%;
  height: 13%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero {
  margin-top: 10vh;
  width: 100vw;
  height: 50%;
  background-color: red;
  background-image: url(/img/header.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  object-fit: cover;
}

.contenido {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.container-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 25rem), 1fr));
  gap: 20px;
}

.container-cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: 20px;
}

.card-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img-card {
  width: 100px;
  height: 100px;
  padding: 30px;
  border-radius: 50%;
  border: 2px solid --principal;
}
.img-card .icono {
  width: 100%;
}

#analitica .parrafo {
  padding-top: 30px;
  padding-bottom: 30px;
}

.contenido #imagen {
  margin-top: 30px;
}

.lista {
  margin-top: 30px;
}
.lista li {
  font-family: "Inter", sans-serif !important;
  font-size: var(--text-s);
  line-height: 1.8em;
}

.contact {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 8vw 15vw;
}

.header-contact {
  margin-bottom: 10vh;
}

.info-contacto {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10vw;
}

.contact-img {
  border-radius: 10px;
}
.contact-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.08);
}

.link-correo {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: var(--text-s);
  line-height: 1.8rem;
  color: var(--tercero);
}

/*# sourceMappingURL=main.css.map */
