/* Reset estilos por defecto */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  font-family: "Source Sans Pro", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  background: radial-gradient(circle at top, rgba(46, 118, 179, 0.22), transparent 32%),
    linear-gradient(180deg, #07101d 0%, #05070f 100%);
  color: white;
}

h1,
h2,
h3,
p {
  margin: 0;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: white;
}

.coverPage {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  padding-top: 2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  animation: fadeIn 3s ease forwards;
}

.coverPage::before {
  content: "";
  display: block;
  position: absolute;
  background: black;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  top: 0;
}

.__coverPage-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  color: white;
  min-height: calc(100vh - 4rem);
  width: min(100%, 980px);
  text-align: center;
  opacity: 0.95;
  padding: 2rem 1.5rem 1.5rem;
  margin: 0 auto;
}

.__coverPage-content h1 {
  font-size: 3.0rem;
  margin-top: 0.5rem;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.hero-logo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.hero-form {
  width: 100%;
  max-width: 470px;
}

.hero-form form {
  width: 100%;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.custom-select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.__coverPage-content input[type="submit"] {
  align-self: center;
}

.custom-select-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.custom-select-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
  background: rgba(3, 12, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 0.75rem;
}

.custom-select-wrapper.open .custom-select-dropdown {
  display: block;
}

.custom-select-search {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  outline: none;
}

.custom-select-search::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.custom-select-options {
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-select-option {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  margin-bottom: 0.4rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.2s ease;
}

.custom-select-option:hover,
.custom-select-option.selected {
  background: rgba(182, 223, 94, 0.16);
}

.custom-select-wrapper.open .custom-select-toggle i {
  transform: rotate(180deg);
}

.__coverPage-content h2 {
  font-size: 2em;
  margin-bottom: 1.5em;
}

.__coverPage-content h3 {
  font-size: 1.1em;
  margin-bottom: 0.8em;
  text-transform: uppercase;
  opacity: 0.7;
}

.__coverPage-content p {
  font-size: 1.4em;
  line-height: 1.5;
  opacity: 0.9;
  color: rgb(182, 223, 94);
}

.__coverPage-content form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 0.4rem;
}

.hero-form form {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}

.custom-select-wrapper {
  flex: 1 1 0;
  min-width: 0;
}

.__coverPage-content select.frm-field,
.__coverPage-content input[type="submit"],
.custom-select-wrapper {
  margin: 0;
}

.__coverPage-content select.frm-field {
  flex: 1 1 210px;
  min-width: 180px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border-radius: 18px 0 0 18px;
  border: 1px solid transparent;
  border-right: none;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

.__coverPage-content input[type="submit"] {
  flex: 0 0 auto;
  padding: 1rem 1.4rem;
  font-size: 1rem;
  border-radius: 0 18px 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-left: none;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.__coverPage-content input[type="submit"]:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.landing-sections {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
  width: 100%;
  padding-bottom: 1.5rem;
}

.landing-section {
  background: rgba(15, 23, 42, 0.342);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border-radius: 24px;
  padding: 1.0rem 1.2rem;
  text-align: left;
}

.landing-section h2 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.landing-section p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 600;
  gap: 0.75rem;
}

.logo-card i {
  font-size: 1.1rem;
}

.mission-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.8rem;
  align-items: stretch;
  width: 100%;
}

.mission-card > * {
  min-width: 0;
}

.mission-video {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #000;
}

.mission-video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.mission-copy h2 {
  font-size: 1.55rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.mission-copy p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  font-size: 1.01rem;
}

.logo-carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  margin-top: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.logo-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 1rem 1.2rem;
  min-width: 100%;
  animation: scrollLogos 18s linear infinite;
}

.logo-carousel .logo-card {
  flex: 0 0 auto;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.12);
}

.logo-card.bank-logo {
  background: transparent;
  border: none;
  min-width: 140px;
  padding: 1.2rem 1rem;
}

.logo-card.bank-logo img {
  height: 60px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.landing-footer {
  margin-top: 1.5rem;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, rgba(2, 10, 20, 0.96), rgba(7, 15, 31, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #b6df5e;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-note {
  font-size: 0.95rem;
}

.footer-languages a {
  display: inline-flex;
}

.footer-languages img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

@media only screen and (max-width: 720px) {
  .landing-section {
    padding: 1rem 1rem;
  }

  .logo-grid {
    justify-content: center;
  }
}

@media only screen and (max-width: 720px) {
  .landing-section {
    padding: 1rem 1rem;
  }

  .logo-grid {
    justify-content: center;
  }

  .mission-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .mission-copy h2 {
    font-size: 1.4rem;
  }

  .mission-video {
    min-height: 220px;
  }

  .hero-logo img {
    width: 120px;
    height: 120px;
  }

  .__coverPage-content {
    padding: 1.5rem 1rem 1rem;
  }

  .logo-carousel {
    border-radius: 18px;
  }

  .logo-track {
    animation-duration: 24s;
  }
}

@media only screen and (max-width: 520px) {
  .__coverPage-content {
    padding: 1rem 0.8rem 1rem;
  }

  .__coverPage-content h1 {
    font-size: 2.2rem;
  }

  .__coverPage-content p {
    font-size: 1.1rem;
  }

  .hero-form {
    width: 100%;
  }

  .__coverPage-content form {
    flex-direction: column;
    padding: 0.5rem;
  }

  .__coverPage-content select.frm-field,
  .__coverPage-content input[type="submit"] {
    flex: 1 1 100%;
    min-width: 100%;
    border-radius: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
  }

  .__coverPage-content select.frm-field {
    border-right: 1px solid rgba(255, 255, 255, 0.8);
  }

  .__coverPage-content input[type="submit"] {
    border-left: 1px solid rgba(255, 255, 255, 0.8);
  }

  .mission-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mission-copy {
    padding: 0 0.2rem;
  }

  .mission-image {
    min-height: 180px;
  }

  .logo-carousel {
    overflow: hidden;
  }

  .logo-track {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 0.8rem;
    animation: none;
  }

  .logo-carousel .logo-card {
    min-width: 120px;
    flex: 1 1 120px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-meta {
    align-items: center;
  }
}


.socialMedia {
  margin-top: 1em;
}

.socialIcon {
  margin-right: 10px;
  opacity: 0.7;
}

.socialIcon i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 15px;
  height: 25px;
  width: 25px;
  transition: all 0.3s;
}

.socialIcon i:hover {
  color: #249560;
  border-color: #249560;
}

.projectsListTitle {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 1.3rem !important;
  text-transform: capitalize;
}

.projectsList {
  display: flex;
  justify-content: center;
  width: 100%;
  column-gap: 1em;
}

.btn-projects {
  background-color: white;
  color: #333333;
  font-weight: bold;
  padding: 1em;
  width: 250px !important;
  transition: all 0.3s;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.btn-projects:hover {
  background-color: #249560;
  color: white;
  border-color: #1b1b1b;
}

@media only screen and (max-width: 1023px) {
  .__coverPage-content {
    width: 100%;
  }

  .__coverPage-content h1 {
    font-size: 2.8rem;
  }

  .__coverPage-content h2 {
    font-size: 2rem;
  }

  .projectsList {
    flex-direction: column;
    row-gap: 1em;
  }

  .btn-projects {
    text-align: center;
    width: 100% !important;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .__coverPage-content h1 {
    font-size: 1.7rem;
  }

  .__coverPage-content p {
    font-size: 0.8rem;
  }

  .__coverPage-content h2 {
    font-size: 1.2rem;
    margin-bottom: 1em;
  }

  .__coverPage-content h3 {
    font-size: 0.9rem;
  }

  .__coverPage-content a {
    font-size: 0.8rem;
  }

  .socialIcon i {
    font-size: 15px;
  }

  .projectsList {
    flex-direction: row;
    column-gap: 1em;
  }

  .projectsListTitle {
    margin-top: 1.5em !important;
    margin-bottom: 0.1em;
    font-size: 1.2rem !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
