/*Importamos fuente*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/*Seteamos paleta de colores*/
:root{
  --color1:#ccd4fd;
  --color2:#ffffff;
  --color3:#15163D;
  --color4:#1e37c5;
  --color5:#04146C;
  --color6:#EFF2FF;
}

/*Estilos Generales*/

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

.radial-gradient {
  background-image: linear-gradient(0.5deg, #ffffff 95%, #ccd4fd 100%);
}

body {
  font-family: "Inter", sans-serif;
}

.wrapper {
  padding: 0rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
} 

/*Estilos Header*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
} 

.logo {
  width: 3rem;
}

/*Estilos Navegación*/

.icon-menu,
.icon-cross {
  display: block;
  font-size: 1.5rem;
  color: var(--color3);
}

.menu {
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: end;
  gap: 1rem;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color2) ;
  padding: 2rem;
  box-shadow: 0 0 0 100vmax rgba(0,0,0,0.5);
}

.menu.visible {
  opacity: 1;
  visibility: visible;
}

.lista-menu {
  align-items: end;
  list-style-type: none;
  gap: 3rem;
} 


/*Estilos Home*/
  .img-section, .img-section-2 {
    max-width: 100%;
    margin-top: 3rem;
  }

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.5rem;
  color: var(--color3);
  margin-bottom: 3rem;
  padding-top: 5rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: var(--color3);
  margin: 2.5rem;
}

a {
  text-decoration: none;
}

a:hover {
  background-color: var(--color4);
  color: var(--color2);
}

.contactanos {
  background-color: var(--color5);
  color: var(--color2);
  padding: 0.6rem 2.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  max-width: max-content;
}

.material-symbols-outlined {
  color: var(--color3);
} 

/*Estilos Secciones*/

.section-1, .section-2, .section-3, .section-4 {
  text-align: center;
}

/* #flecha-derecha {
  visibility: hidden;
} */

.section-4 h1 {
  margin-top: 2.5rem;
}

.section-4 img {
  margin-bottom: 2.5rem;
}

.section-testimonios{
  text-align: center;
}

.section-testimonios-description{
  font-size: 1rem;
  font-weight: 400;
  margin-top: 3rem;
}

.section-testimonios-title {
  margin-top: 2.5rem;
}

.ctn-cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  height: auto;
  margin-top: 1.5rem;
  gap: 2.5rem;
}

.ctn-cards .card {
  border-radius: 1rem;
  background-color: var(--color6);
  text-align: center;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.ctn-cards .card img {
  width: 10rem;
  height: 10rem;
  margin-top: 1.5rem;
}
.ctn-cards .card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.9rem;
}

.ctn-cards .card p {
  font-size: 1rem;
  line-height: 1.1rem;
  font-weight: 300;
  margin: 1.5rem 1.25rem;
}

/*Estilos Footer*/

.pie-pagina {
  background-color:var(--color3);
  color:var(--color2);
  text-align: center;
  height: 584px;
  width: 100%;
  margin-top: 2rem;
}

.pie-pagina .box-1 {
  list-style: none;
  padding: 30px 0;
  line-height: 3.5;
  font-size: 16px;
}

.pie-pagina .box-2 {
  list-style: none;
  line-height: 3.5;
  font-size: 16px;
}

.pie-pagina .box-3 p {
  list-style: none;
  font-size: 16px;
  color: var(--color2);
} 

@media screen and (min-width: 768px) {
  


}

@media screen and (min-width: 1024px) {

.radial-gradient {
background-image: radial-gradient(farthest-corner at 100px 5px, #5974FF 0%, #fff 20%);
  }

.body {
  width: 100vw;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Inter", sans-serif;
  color: var(--color3);
  }

  main {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    margin-top: 125px;
    }

header {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding: 2rem;
}

.logo {
  width: 70px;
  }

  .menu {
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: row;
    position: static;
    align-items: center;
    gap: 1rem;
    background-color: transparent;
    box-shadow: none;
  }

.lista-menu {
  display: flex;
  list-style: none;
  font-size: 1.2rem;
  font-weight: 400;
  gap: 3rem;
}

 .lista-menu li {
  display: inline-block; /* O puedes usar float: left; */
} 

.lista-menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--color3);
} 

.lista-menu a:hover {
  background-color: var(--color4);
  color: var(--color2);
}

.icon-menu,
.icon-cross {
  display: none;
}

.main-wrapper {
  display: flex;
  }

  .section-1 {
    display: flex;
    gap: 8rem;
  }

  .section-1 img {
    margin: 0;
    max-width: 100%;
  }

  h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 3.5rem;
    color: var(--color3);
    margin-bottom: 3rem;

  }
  
  p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5rem;
    color: var(--color3);
    margin: 2.5rem 0rem;
  }

  .main-section-1-content {
    text-align: start;
  }

  .section-2 {
    display: flex;
    gap: 5rem;
    margin-top: 6rem;
  }

  .main-section-2-content {
    order: 1;
    text-align: start;
  }

  .material-symbols-outlined {
    transform: rotate(-90deg);
  }

  .section-3 {
    display: flex;
    gap: 5rem;
    margin-top: 6rem;
  }

  .main-section-3-content {
    text-align: start;
  }

  .section-4 {
    display: flex;
    gap: 5rem;
    margin-top: 6rem;
  }

  .main-section-4-content {
    order: 1;
    text-align: start;
  }

  .ctn-cards {
    flex-direction: row;
  }

  .ctn-text-section {
    width: 478px;
    height: 100%;
    margin-bottom: 100px;
  }

  .pie-pagina {
    background-color:var(--color3);
    color: var(--color2);
    height: 443px;
    width: 100%;
  }

  .pie-pagina .group-1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    padding-top: 50px;
  }

  .pie-pagina li {
    list-style: none;
    font-size: 16px;
  }

  .pie-pagina h4 {
    font-weight: 700;
    font-size: 18px;
  }

  .group-1 .box-1 {
    margin-right: 200px;
    order: 2;
    padding: 0;
    text-align: left;
  }

  .group-1 .box-2 {
    margin-right: 200px;
    text-align: left;
  }

  .pie-pagina .group-2 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
  }

  .group-2 .box-3 p {
    font-size: 18px;
    font-weight: 300;
  }

}
