@charset "UTF-8";
/**
 * ARCHIVO PRINCIPAL DE SASS
 */
/* =========================================
   1. PALETA DE COLORES (Brand Colors)
   ========================================= */
/* =========================================
   2. TIPOGRAFÍA
   ========================================= */
/* =========================================
   3. ESPACIADO (Spacing System)
   ========================================= */
/* =========================================
   4. UTILIDADES
   ========================================= */
/**
 * ARCHIVO PRINCIPAL DE SASS
 */
/**
 * MIXINS
 */
/**
 * ARCHIVO PRINCIPAL DE SASS
 */
/**
 * ESTILOS GLOBALES
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

/**
 * ARCHIVO PRINCIPAL DE SASS
 */
/**
 * TIPOGRAFÍA BASE
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #0f4c81;
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
}

/**
 * ARCHIVO PRINCIPAL DE SASS
 */
.site-header {
  background-color: transparent;
  padding: 1rem 0;
  /* box-shadow: vars.$cp-box-shadow; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.site-header__container {
  max-width: min(95%, 1400px);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}
.site-header__logo {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-header__logo .site-title {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.site-header__logo .custom-logo-link {
  display: block;
  margin-bottom: 0.75rem;
}
.site-header__logo img {
  max-width: 280px;
  height: auto;
}
.site-header__logo a {
  display: block;
  text-decoration: none;
}
.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-header__logo .site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0f4c81;
}
.site-header__nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}
.site-header__nav ul li {
  border-right: 1px solid #0f4c81;
  line-height: 1;
  padding: 0 1rem;
}
.site-header__nav ul li:last-child {
  border-right: none;
  padding-right: 0;
}
.site-header__nav ul li a {
  text-decoration: none;
  color: #0f4c81;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.site-header__nav ul li a:hover {
  color: #0099b0;
}
.site-header__nav ul li.current-menu-item > a, .site-header__nav ul li.current_page_item > a {
  color: #0099b0;
}

/**
 * ARCHIVO PRINCIPAL DE SASS
 */
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../images/home-hero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%);
}
.hero__container {
  max-width: min(95%, 1400px);
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 650px;
}
.hero__title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero__title {
    /* font-size: 3.5rem; */
  }
}
.hero__title .text-blue {
  color: #0f4c81;
  display: block;
}
.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 2rem;
}
.hero__subtitle .text-teal {
  color: #0099b0;
  font-weight: 500;
}
.hero__cta .btn {
  display: inline-block;
  background-color: #0f4c81;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(15, 76, 129, 0.3);
}
.hero__cta .btn:hover {
  background-color: #0099b0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 153, 176, 0.4);
}

/**
 * ARCHIVO PRINCIPAL DE SASS
 */
.site-footer {
  background-color: #f8f9fa;
  background-image: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 4px solid #004a87;
  padding: 60px 0 20px;
  /* font-family: vars.$cp-font-main; */
}
.site-footer__container {
  max-width: min(95%, 1400px);
  margin: 0 auto;
  /* padding: 0 vars.$cp-spacing-md; */
}
.site-footer .site-footer__logo img {
  width: 250px;
  height: auto;
}
@media (min-width: 992px) {
  .site-footer .site-footer__logo img {
    width: 350px;
  }
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .site-footer__grid {
    grid-template-columns: 0.8fr 1.5fr 1.5fr;
  }
}
.site-footer__col {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer__col {
    text-align: left;
  }
  .site-footer__col:not(:first-child) {
    border-left: 2px solid #004a87;
  }
}
.site-footer__title {
  color: #004a87;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.site-footer__form {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 4px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
}
.site-footer__input {
  border: none;
  background: transparent;
  padding: 10px 20px;
  flex: 1;
  outline: none;
}
.site-footer__submit {
  background-color: #004a87;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}
.site-footer__policy {
  font-size: 0.8rem;
}
.site-footer__social {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .site-footer__social {
    justify-content: flex-start;
  }
}
.site-footer__social img {
  width: 35px;
  height: auto;
}
.site-footer__btn {
  background-color: #209cb8;
  color: #fff;
  padding: 8px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin: 5px;
  font-size: 0.8rem;
}
.site-footer__btn--wide {
  padding: 8px 40px;
}
.site-footer__copyright {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #888;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

/**
 * ARCHIVO PRINCIPAL DE SASS
 */
.home-pillars {
  padding: 80px 0;
  background-color: #ffffff;
}
.home-pillars__container {
  max-width: min(95%, 1400px);
  margin: 0 auto;
  padding: 0 1rem;
}
.home-pillars__intro {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
  text-align: right;
}
.home-pillars__intro-content {
  max-width: 650px;
}
.home-pillars__heading {
  color: #0f4c81;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.home-pillars__description {
  color: #0099b0;
  /* font-size: vars.$cp-font-size-base; */
  line-height: 1.6;
  font-weight: 700;
}
.home-pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .home-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  height: 620px;
  perspective: 1000px;
}
.pillar-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.pillar-card:hover .pillar-card__inner {
  transform: rotateY(180deg);
}
.pillar-card__front, .pillar-card__back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.pillar-card__front {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  /* justify-content: space-around */
  padding: 20px;
}
.pillar-card__header {
  /* height: 180px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.pillar-card__header img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pillar-card__title-front {
  color: #0f4c81;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}
.pillar-card__summary {
  color: #666666;
  font-size: 0.7rem;
  text-align: justify;
  margin: 0;
  line-height: 1.4;
}
.pillar-card__summary span {
  font-weight: 700;
}
.pillar-card__leer_mas {
  font-size: 0.75rem;
  color: #0f4c81;
  font-weight: 500;
  cursor: pointer;
  margin-top: auto;
}
.pillar-card__back {
  background-color: #0099b0;
  color: #ffffff;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}
.pillar-card:nth-child(even) .pillar-card__back {
  background-color: #0f4c81;
}
.pillar-card:nth-child(even) .pillar-card__divider {
  background-color: #0099b0;
}
.pillar-card__title-back {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #ffffff;
}
.pillar-card__divider {
  width: 50px;
  height: 3px;
  background-color: #0f4c81;
  margin-bottom: 20px;
}
.pillar-card__text {
  text-align: justify;
  font-size: 0.8rem;
  line-height: 1.6;
}
.pillar-card__text span {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */
