@charset "UTF-8";
/* Define Poppins font faces from local files in assets/fonts/ */
/* Adjust paths if your compiled CSS lives elsewhere. */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
/* Convenience variable */
/* Layout: make body a column so .coming-soon can fill available viewport
     and the .footer sits at the bottom with a white background. */
html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Coming soon section: fills remaining space, black fallback color,
     and a background image that covers the whole area. */
.coming-soon {
  flex: 1 0 auto;
  /* take remaining space above the footer */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  /* fallback when image is missing */
  /* Replace 'bg.jpg' with your image filename in assets/images/ */
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* Optional inner container to limit content width */
}
.coming-soon .coming-soon__inner {
  display: flex;
  max-width: 936px;
  width: 100%;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.coming-soon .logo-risen {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 3.5rem;
}
.coming-soon .action-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #204aa0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
}
.coming-soon .action-button:hover {
  background-color: #3050b0;
}
.coming-soon .main-text {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3.5rem;
}
.coming-soon .secondary-text {
  font-size: 2rem;
  font-weight: 400;
  color: #9d9d9d;
  margin-bottom: 3.5rem;
}

.footer {
  background: #ffffff;
  color: #1C1C1C;
  padding: 1rem 1.5rem;
  text-align: center;
  flex: 0 0 auto;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.footer .left-copyright {
  width: 50%;
  font-size: 0.875rem;
}
.footer .right-social {
  width: 50%;
  text-align: right;
  margin-right: 12%;
}
.footer .right-social ul {
  margin: 0;
  display: flex;
  justify-content: end;
  flex-direction: row;
}
.footer .right-social ul li {
  margin: 0rem 1rem;
  display: block;
  list-style: none;
}
.footer .right-social ul li a {
  display: block;
  text-align: center;
  width: 14px;
  padding: 10px 10px;
  height: auto;
}
.footer .right-social ul li a img {
  width: 100%;
  filter: grayscale(100%); /* Blanco y negro */
  transition: filter 0.4s ease; /* Transición suave */
}
.footer .right-social ul li a:hover img {
  filter: grayscale(0%); /* Vuelve al color */
}

/* Small responsive tweaks */
@media (max-width: 600px) {
  .coming-soon {
    padding: 1.25rem;
  }
}
@media (max-width: 768px) {
  .coming-soon .main-text {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
  .coming-soon .secondary-text {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  .footer {
    flex-direction: column;
  }
  .footer .left-copyright {
    width: 100%;
    font-size: 14px;
    margin: 1rem 1rem;
    justify-content: center;
  }
  .footer .right-social {
    margin-right: 0%;
    width: 100%;
  }
  .footer .right-social ul {
    justify-content: center;
    padding: 0;
  }
}/*# sourceMappingURL=styles.css.map */