@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IM+Fell+Great+Primer:ital@0;1&family=Space+Grotesk:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  list-style: none;
}

:root {
  --clr-fondo: #0a1427;
  --clr-blanco: #f5f3ee;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--clr-fondo);
  color: var(--clr-blanco);
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-thumb {
  background-color: #0132ad7a;
  border-radius: 6px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #0132ad;
}

/* NAV */
.nav-bars {
  display: none;
}

.section-nav {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;

  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.171),
    inset 0 0 0.5px rgba(255, 255, 255, 0.6);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-icons {
  height: 60px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.5rem;
}

.nav-icons a {
  display: inline-block;
  display: flex;
  align-items: center;
  transition: transform 300ms ease-in-out;
}

.nav-icons a:hover {
  transform: scale(1.1);
}

.nav-icons a img {
  width: 22px;
}

.nav-logo {
  height: 60px;
  display: flex;
  align-self: center;
  justify-content: center;
  transition: transform 300ms ease-in-out;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  border-radius: 100%;
  width: 45px;
}

.nav-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav1-ul {
  height: 60px;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.nav2-ul {
  justify-content: start;
}

.nav1-li a {
  text-decoration: none;
  color: var(--clr-blanco);
  font-size: 0.9rem;
  font-weight: 300;
  padding-right: 1rem;
}

.nav-padding {
  padding-left: 1rem;
}

.nav-btn {
  height: 60px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.nav-btn a {
  display: inline-block;
  text-decoration: none;
  color: var(--clr-blanco);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.7rem 1.1rem;

  border-radius: 20px;
  background-color: #ffffff2b;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 0.5px rgba(255, 255, 255, 0.4);
  transition: all 300ms ease-in-out;
}

.nav-btn a:hover {
  transform: scale(1.03);
  background-color: #ffffff41;
}

/* ENCABEZADO */
.hero {
  width: 100%;
  min-height: 80dvh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  mask-image: radial-gradient(
    ellipse 80% 90% at top,
    black 50%,
    transparent 100%
  );
  opacity: 0.8;
}

.hero-bg video {
  width: 100%;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-titulos {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.hero-container h1 {
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 60px;
  border-radius: 7px;

  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 0.5px rgba(255, 255, 255, 0.4);
}

.hero-container h2 {
  font-size: 1rem;
  font-weight: 300;
}

.hero-container a:hover {
  transform: scale(1.03);
  background-color: rgba(255, 255, 255, 0.2);
}

/* CARDS */
.cards-container {
  padding: 100px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 190px);
  grid-template-rows: 150px;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-blanco);
  text-decoration: none;
  border-radius: 5px;
  transition: transform 500ms ease-in-out;
}

.card:hover {
  transform: scale(1.15);
}

.card p {
  font-size: 18px;
  font-weight: 500;
  padding: 1rem;
  text-align: center;
  transition: all 400ms ease-in-out;
}

.card:hover p {
  opacity: 0;
  transform: scale(0);
}

.cards-img-container {
  width: 75px;
  height: 75px;
  position: absolute;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 500ms;
}

.card:hover .cards-img-container {
  transform: translateY(45px) scale(1.5);
}

.cards-img-container img {
  width: 100%;
}

/* CURSOS REFERIDOS */
.cursos-referidos-container {
  position: relative;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.bg-cursos-referidos {
  position: absolute;
  inset: 0;
  margin: auto;
  background: url(../img/fondo-referidos.webp) center / cover no-repeat;
  z-index: -1;

  mask-image: radial-gradient(
    ellipse 90% 50% at center,
    black 50%,
    transparent 100%
  );
  opacity: 0.8;
}

.cursos-referidos {
  min-height: 500px;
  min-width: 350px;
  max-width: 410px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;

  backdrop-filter: blur(17px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 0.5px rgba(255, 255, 255, 0.4);
  border-radius: 7px;
}

.cursos-referidos-titulos h3 {
  font-size: 26px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Space Grotesk", sans-serif;
}

.cursos-referidos-titulos h5 {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #c2c2c2;
  border-bottom: 1px solid #ffffff31;
  padding-bottom: 20px;
}

.cursos-referidos-ul {
  list-style: none;
}

.cursos-referidos-li {
  flex: 1;
  font-size: 15px;
  font-weight: 300;
  margin: 5px 0;
}

.curos-referidos-profes p {
  font-weight: 300;
  font-size: 13px;
  color: #c2c2c2;
}

.cursos-referidos-tiempo h6 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

.cursos-referidos-tiempo p {
  font-size: 12px;
}

.cursos-referidos-buttons {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #0132ad00;
}
.cursos-referidos-buttons a {
  text-decoration: none;
  font-size: 17px;
  color: var(--clr-blanco);
  padding: 1rem 0;
  border-radius: 50px;
  background-color: #ffffff3f;
  transition: background-color 300ms ease-in-out;
}

.cursos-referidos-buttons a:hover {
  background-color: #ffffff50;
}

.proximamente {
  text-align: center;
}

/* MAIN */
.sociedad-llc-container {
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
}

.ee-uu {
  width: max-content;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 5px 20px;
  margin-bottom: 10px;
  border-radius: 50px;
  background-color: #0f1f3d9d;
}

.ee-uu img {
  width: 30px;
}

.sociedad-llc-titulos {
  display: flex;
  flex-direction: column;
  margin-top: 120px;
  font-family: "Space Grotesk", sans-serif;
}

.sociedad-llc-titulos h1 {
  font-size: 74px;
  line-height: 70px;
}

.sociedad-llc-titulos h3 {
  line-height: 35px;
  font-size: 28px;
  font-weight: 500;
}

.sociedad-llc-titulos b {
  background: linear-gradient(90deg, #be52e8, #7940e4, #3c8bdd);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sociedad-llc-ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2rem;
}

.sociedad-llc-ul li {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 300;
  padding: 5px 15px;
  border-radius: 50px;
  background-color: #0f1f3d9d;
}

.sociedad-llc-ul li:nth-child(5) {
  border-radius: 10px;
  margin-top: 25px;
}
.sociedad-llc-ul li:nth-child(6) {
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-left: -15px;
  background-color: transparent;
}

.doolaezequiel10 {
  font-size: 18px;
  font-weight: 500;
  padding: 2px 15px;
  border-radius: 50px;
  background-color: #5311a8bd;
}

.sociedad-lcc-i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #25418865;
}

.fa-building-columns,
.fa-wallet,
.fa-chart-line,
.fa-shield {
  font-size: 20px;
  background: linear-gradient(90deg, #be52e8, #7940e4, #3c8bdd);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-tag {
  color: rgba(0, 255, 242, 0.808);
}

.sociedad-llc-img {
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sociedad-llc-img img {
  width: 130%;
  filter: drop-shadow(0 0px 100px rgba(198, 0, 247, 0.295));
}

.sociedad-llc-button-container a {
  width: max-content;
  text-decoration: none;
  display: block;
  font-size: 17px;
  color: var(--clr-blanco);
  padding: 0.5rem 2.2rem;
  margin: 1.4rem 0;
  border-radius: 50px;
  background: linear-gradient(90deg, #a622ef, #11b9ee);
  transition: all 300ms ease-in-out;
}

.sociedad-llc-button-container a:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
}

/* SECTION EBOOKS */
.section-ebooks {
  width: 100%;
  position: relative;
  margin: auto;
}

.section-ebooks h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 2px;
  padding: 10rem 0;
}

.ebook-span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  color: rgba(56, 218, 56, 0.9);
}

.section-ebooks-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 10px;
}

.section-ebook-1,
.section-ebook-2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-ebook-1 img,
.section-ebook-2 img {
  width: 100%;
}

.section-ebook-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-ebook-info h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  padding: 20px;

  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(17px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 0.5px rgba(255, 255, 255, 0.4);
}

.section-ebook-info p,
.section-ebook-info p {
  font-size: 17px;
  font-weight: 300;
  padding: 30px;

  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(17px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 0.5px rgba(255, 255, 255, 0.4);
}

.section-ebook-imgButon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.section-ebook-imgButon a {
  text-align: center;
  text-decoration: none;
  color: var(--clr-blanco);
  font-weight: 600;
  padding: 0.8rem 2.4rem;
  transition: all 300ms ease-in-out;

  border-radius: 50px;
  background-color: #ffffff1a;
  backdrop-filter: blur(17px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 0.5px rgba(255, 255, 255, 0.4);
}

.section-ebook-imgButon a:hover {
  transform: scale(1.1);
  background-color: #ffffff2f;
}

.ebook-2-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* SECTION SOBRE NOSOTROS */
.sNosotros-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.sNosotros-container h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 2px;
  padding: 10rem 0;
}

.sNosotros-info {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}

.sNosotros-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.sNosotros-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sNosotros-card-info img {
  width: 160px;
  border-radius: 50%;
}

.sNosotros-card-info h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.sNosotros-card-info p {
  font-size: 1rem;
  font-weight: 400;
  padding: 40px;
}

.sNosotros-redes {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.sNosotros-redes a {
  display: block;
  text-decoration: none;
  font-size: 2rem;
  transition: transform 300ms ease-in-out;
}

.sNosotros-redes a:hover {
  transform: scale(1.1);
}

.fa-youtube {
  color: red;
}

.fa-telegram {
  color: #229ed9;
}

.fa-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FOOTER */
.footer {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;

  mask-image: radial-gradient(
    ellipse 100% 90% at bottom,
    black 0%,
    transparent 90%
  );
  opacity: 0.8;
}

.footer-bg img {
  width: 100%;
}

.footer-container {
  height: 100%;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  flex: 1;
}

.footer-logo a img {
  width: 70px;
  border-radius: 50%;
}

.footer-titulos {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 30px;

  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(17px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 0 0.5px rgba(255, 255, 255, 0.4);
}

.footer-titulos h1 {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "Space Grotesk", sans-serif;
}

.footer-titulos p {
  font-size: 1rem;
  font-weight: 300;
}

.footer-contacto {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 1rem;
}

.footer-iconos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footer-iconos a {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: transform 300ms ease-in-out;
}

.footer-iconos a:hover {
  transform: scale(1.2);
}

.footer-iconos a i {
  font-size: 30px;
}

.footer-dr {
  width: 100%;
  text-align: center;
  background-color: var(--clr-dark);
  font-size: 0.8rem;
  font-weight: 100;
  letter-spacing: 0.5px;
  padding: 5px;
}

/*BANNER FIXED*/
.banner-fixed-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-around;
  box-shadow: 0 0 10px 1px #ffffff3d;
  position: fixed;
  bottom: 0px;
  right: 0px;
  left: 0;
}

.banner-fixed-titulos {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.banner-fixed-a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 8px;
  color: var(--clr-blanco);
}

.banner-fixed-a-1 {
  background: linear-gradient(to top, #5c94ff, #06308a 80%);
}

.banner-fixed-a-2 {
  background: linear-gradient(to top, #ffeb33, #03264c 80%);
}

.banner-fixed-a img {
  width: 20px;
  height: 20px;
}

.banner-fixed-a h1 {
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
}

.banner-fixed-a:hover {
  color: #e9e9e9;
}

.banner-fixed-a p {
  font-size: 14px;
  color: #090909;
}

/* RESPONSIVE DESING */

@media only screen and (max-width: 1220px) {
  /* NAV */
  .nav-btn,
  .nav-logo {
    display: none;
  }

  .nav-bars {
    display: block;
  }

  .nav-info {
    width: 100%;
    height: 100dvh;
    position: absolute;
    top: 60px;
    left: 100%;
    padding: 1rem;
    flex-direction: column;
    gap: 0;
    background-color: #070d1a;
    transition: left 300ms ease-in-out;
  }

  .nav1-ul {
    flex-direction: column;
    justify-content: start;
    margin: 0;
    gap: 20px;
    height: max-content;
    padding-bottom: 1rem;
  }

  .nav-li-cursos p {
    height: max-content;
  }

  .ul-desplegable {
    width: 100%;
    top: 100px;
    right: 0;
    margin: 0 auto;
  }

  .nav-visible {
    left: 0;
  }

  /* HERO */
  .hero-bg video {
    mask-image: radial-gradient(
      ellipse 80% 70% at top,
      black 50%,
      transparent 100%
    );
  }

  .hero-titulos h1 {
    font-size: 40px;
  }

  /* CARDS */
  .cards-container {
    padding: 1rem;
    grid-template-columns: repeat(3, 170px);
    grid-template-rows: repeat(2, 150px);
  }

  /* REFERIDOS */
  .cursos-referidos {
    min-width: 100%;
  }

  .cursos-referidos-container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .cursos-referidos-li {
    font-size: 17px;
  }

  .cursos-referidos-gratis {
    transform: scale(1);
  }

  .cursos-referidos-titulos h3 {
    font-size: 35px;
  }

  /* SOCIEDAD LLC */
  .sociedad-llc-container {
    flex-direction: column;
    padding: 0 1rem;
  }

  /* LIBROS */
  .section-ebooks-container {
    flex-direction: column;
    padding: 1rem;
    gap: 5rem;
  }

  /* SOBRE NOSOTROS */
  .sNosotros-info {
    flex-direction: column;
    padding-bottom: 10rem;
  }

  /* FOOTER */
  .footer {
    height: 1000px;
    background-color: #0a1428;
  }

  .footer-container {
    flex-direction: column;
    justify-content: space-around;
  }

  .footer-contacto,
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 950px) {
  .hero-titulos h1 {
    font-size: 30px;
    padding: 2rem;
  }
}

@media only screen and (max-width: 750px) {
  /* HERO */
  .hero-bg video {
    object-fit: cover;
  }

  .hero-titulos {
    padding: 1rem;
  }

  .hero-titulos h1 {
    font-size: 27px;
  }

  .hero-titulos h2 {
    font-size: 16px;
  }

  .sNosotros-container h1,
  .section-ebooks h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 500px) {
  /* CARDS */
  .cards-container {
    grid-template-columns: repeat(2, 170px);
    grid-template-rows: repeat(3, 150px);
  }

  .cards-container p {
    font-size: 16px;
  }

  /* REFERIDOS */
  .cursos-referidos {
    padding: 1rem;
  }

  .cursos-referidos-ul li {
    font-size: 15px;
  }

  /* SPCIEDAD LLC */
  .sociedad-llc-titulos {
    width: 100%;
  }
  .sociedad-llc-titulos h1 {
    font-size: 50px;
  }
  .sociedad-llc-titulos h3 {
    font-size: 20px;
  }
  .sociedad-llc-ul li {
    font-size: 15px;
    flex-wrap: wrap;
  }
  .sociedad-llc-ul li:nth-child(5) {
    font-size: 12px;
  }
  .sociedad-llc-ul li:nth-child(6) {
    font-size: 11px;
  }
  .sociedad-llc-button-container {
    margin-bottom: 4rem;
  }
  /* LIBROS */
  .section-ebook-info p {
    padding: 1rem;
  }

  /* SOBRE NOSOTROS */
  .sNosotros-card-info p {
    padding: 0rem;
  }

  /* FOOTER */
  .footer-dr {
    font-size: 10px;
  }
}
