@charset "UTF-8";
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3 {
  color: #005476;
  font-weight: bold;
  display: block;
}
h1.light, h2.light, h3.light {
  color: #00AFDC;
}
h1.white, h2.white, h3.white {
  color: white;
}
h1.center, h2.center, h3.center {
  text-align: center;
}

h1 {
  font-size: 60px;
  line-height: 71px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  h1 {
    font-size: 50px;
    line-height: 67px;
  }
}

h2 {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 16px;
  letter-spacing: 0.36px;
}
h2.space {
  margin-bottom: 32px;
}
@media screen and (max-width: 575px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

h3 {
  font-size: 22px;
  line-height: 30px;
}

.content-title {
  font-size: 22px;
  line-height: 32px;
  color: #005476;
}

p {
  font-size: 18px;
  line-height: 26px;
  color: #0F253C;
}
p.intro-text {
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  max-width: 820px;
  margin: auto;
  margin-bottom: 40px;
}

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

div#page {
  max-width: 100%;
}

main#full-width-template {
  width: 100%;
}
main#full-width-template .container {
  padding: 0 25px;
}
main#full-width-template .container.space {
  margin-bottom: 64px;
}
main#full-width-template .container .wrapper {
  max-width: 1236px;
  margin: auto;
  width: 100%;
}

.content-container {
  padding: 0 25px;
}
.content-container.space {
  margin-bottom: 64px;
}
.content-container .wrapper {
  max-width: 1236px;
  margin: auto;
  width: 100%;
}

.btn {
  border: 2px solid #00AFDC;
  background: #00AFDC;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 26px;
  transition: 0.3s;
  text-align: center;
  width: fit-content;
  display: inline-block !important;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  color: white;
  background: #00AFDC;
  transform: scale(1.15);
}
.btn.center {
  display: block !important;
  margin: auto;
  width: fit-content;
}
.btn.outline {
  background: transparent;
  border-color: white;
  color: white;
}
.btn.outline:hover {
  color: #00AFDC;
  background-color: white;
}
.btn.outline.blue {
  border-color: #00AFDC;
  color: #00AFDC;
}
.btn.outline.blue:hover {
  color: white;
  background-color: #00AFDC;
}
.btn.width-full {
  width: 100%;
  display: flex !important;
  justify-content: space-between;
}

footer.site-info {
  display: none;
}

section.lasts-posts {
  padding: 0 15px;
}
section.lasts-posts .posts-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1230px;
  margin: 64px auto;
}
@media screen and (max-width: 715px) {
  section.lasts-posts .posts-container {
    grid-template-columns: 1fr;
  }
}
section.lasts-posts .posts-container a {
  background: #F7F7F7;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 27px rgba(0, 0, 0, 0.1607843137);
  text-decoration: none;
}
section.lasts-posts .posts-container a img {
  height: 300px;
  object-fit: cover;
}
section.lasts-posts .posts-container a span.category {
  font-size: 20px;
  color: #00AFDC;
  font-weight: bold;
  padding: 12px 24px;
  display: block;
}
section.lasts-posts .posts-container a h2 {
  font-size: 20px;
  line-height: 27px;
  color: #333333;
  padding: 0 24px 10px 24px;
}

.last-articles {
  letter-spacing: var(--unnamed-character-spacing-0);
  color: var(--unnamed-color-333333);
  text-align: center;
  letter-spacing: 0px;
  color: #333333;
  opacity: 1;
  font-weight: 600;
}

section.more-posts {
  padding: 0 15px;
}
section.more-posts .posts-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas */
  gap: 16px;
  max-width: 1230px;
  margin: 64px auto;
}
@media screen and (max-width: 1024px) {
  section.more-posts .posts-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
  }
}
@media screen and (max-width: 715px) {
  section.more-posts .posts-container {
    grid-template-columns: 1fr; /* 1 columna en móviles */
  }
}
section.more-posts .posts-container a {
  background: #F7F7F7;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 27px rgba(0, 0, 0, 0.1607843137);
  text-decoration: none;
}
section.more-posts .posts-container a img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  display: block;
}
section.more-posts .posts-container a span.category {
  font-size: 16px;
  color: #00AFDC;
  font-weight: bold;
  padding: 12px 24px;
  display: block;
}
section.more-posts .posts-container a h2 {
  font-size: 16px;
  line-height: 27px;
  color: #333333;
  padding: 0 24px 10px 24px;
}

.pagination-numerica ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0 0 20px 0;
}
.pagination-numerica ul li {
  margin: 0 5px;
}
.pagination-numerica a,
.pagination-numerica span {
  display: block;
  padding: 0;
  width: 34px;
  height: 34px;
  background: #f0f0f0;
  color: #00AFDC;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.pagination-numerica a:hover,
.pagination-numerica span:hover {
  background: #00AFDC;
  color: #fff;
}
.pagination-numerica a.next, .pagination-numerica a.prev,
.pagination-numerica span.next,
.pagination-numerica span.prev {
  width: unset;
  border-radius: 50px;
  padding: 0 12px;
}
.pagination-numerica .current {
  background: #00AFDC;
  color: #fff;
}

.explora-categorias {
  position: relative;
  width: 100%;
  padding: 34px 20px;
  background: #F0F2F7;
  color: #fff;
  text-align: center;
  border-radius: 27px;
  margin: 64px auto;
  width: 1230px;
}
.explora-categorias .distribucion-categorias {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.explora-categorias .distribucion-categorias .categoria-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 260px;
  min-width: 180px;
  padding: 12px 16px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0);
  border: 2px solid #00AFDC;
  border-radius: 27px;
  opacity: 1;
  box-shadow: none;
}
.explora-categorias .distribucion-categorias .categoria-nombre {
  color: #00AFDC;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .explora-categorias .distribucion-categorias {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px;
    padding: 16px;
    overflow-x: visible;
  }
  .explora-categorias .distribucion-categorias .categoria-item {
    flex: 1 1 auto;
    min-width: unset;
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
  }
  .explora-categorias .distribucion-categorias .categoria-nombre {
    font-size: 16px;
    text-align: center;
  }
  .explora-categorias .explora-categorias {
    position: relative;
    max-width: 100% !important;
    height: 539px;
    padding: 34px 20px;
    background: #F0F2F7;
    color: #fff;
    text-align: center;
    border-radius: 27px;
    margin: 64px auto;
    width: 326px;
    margin: 0 24px;
  }
  .explora-categorias .pagination-numerica ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0 0 20px 0;
    margin: 0 auto;
  }
  .explora-categorias .hero-header {
    position: relative;
    width: 100%;
    height: 350px;
    background: url(/wp-content/uploads/2026/01/hero-blog-mobile.webp);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .explora-categorias section.lasts-posts .posts-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
    width: 1026px;
    margin: 0 auto;
    padding: 64px 24px;
  }
}

section.post-header.wrapper {
  padding: 64px 25px;
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  height: 100%;
}
section.post-header.wrapper:before {
  content: "";
  position: absolute;
  z-index: 9;
  background: linear-gradient(90deg, white, transparent);
  width: 100%;
  height: 100%;
  left: 0;
  opacity: 0.5;
}
section.post-header.wrapper .post-container {
  z-index: 99;
  color: white;
  max-width: 1190px;
  margin: auto;
  width: 100%;
}
section.post-header.wrapper .post-container h1 {
  max-width: 984px;
  font-size: 50px;
  font-weight: bold;
  line-height: 66px;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 1010px) {
  section.post-header.wrapper .post-container h1 {
    font-size: 39px;
    line-height: 48px;
  }
}
section.post-header.wrapper .post-container .post-meta {
  display: flex;
  gap: 56px;
  font-size: 16px;
  line-height: 24px;
}
section.post-header.wrapper .post-container .post-meta span {
  position: relative;
}
section.post-header.wrapper .post-container .post-meta span.post-date:after {
  content: "";
  width: 1px;
  height: 15px;
  background: white;
  position: absolute;
  right: -29px;
  top: 5px;
}
section.post-header.wrapper img.img-background {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

section.post-grid {
  padding: 0 25px;
}
section.post-grid .post-container {
  max-width: 1200px;
  margin: 64px auto;
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  gap: 42px;
}
@media screen and (max-width: 1010px) {
  section.post-grid .post-container {
    grid-template-columns: 1fr;
  }
}
section.post-grid .post-container .post-sidebar input {
  width: 100%;
}

.post-content .ez-toc-js-icon-con {
  display: none !important;
}
.post-content #ez-toc-container {
  display: none;
}
@media screen and (max-width: 1010px) {
  .post-content #ez-toc-container {
    display: block;
    background: transparent;
  }
  .post-content #ez-toc-container span.ez-toc-title {
    margin: 0 0 14px 0 !important;
    display: block !important;
    font-weight: bold !important;
  }
  .post-content #ez-toc-container a {
    font-size: 16px !important;
    line-height: 28px;
    color: #333333 !important;
    opacity: 0.5;
  }
}

@media screen and (max-width: 1010px) {
  .toc-columns {
    display: none;
  }
}
.toc-columns .ez-toc-title-toggle {
  display: none;
}
.toc-columns span.ez-toc-title {
  font-size: 22px !important;
  line-height: 30px !important;
  display: block !important;
  color: #005476;
}
.toc-columns .sticky-toc {
  position: sticky;
  top: 85px;
}
.toc-columns .sticky-toc #ez-toc-container {
  padding: 0;
  border: none;
  background: transparent;
  margin: 0;
  position: sticky;
  display: block;
}
.toc-columns .sticky-toc #ez-toc-container li.ez-toc-heading-level-2 a,
.toc-columns .sticky-toc #ez-toc-container li.ez-toc-heading-level-3 a {
  color: #0F253C;
  line-height: 24px;
}
.toc-columns .sticky-toc #ez-toc-container li.ez-toc-heading-level-2 > a {
  font-size: 16px !important;
  line-height: 24px;
  margin: 24px 0 0 0;
}
.toc-columns .sticky-toc #ez-toc-container li.ez-toc-heading-level-3 > a {
  font-size: 14px !important;
  line-height: 24px;
  margin: 8px 0 0 0;
}

.post-sidebar .wpcf7 {
  position: sticky;
  top: 85px;
}
.post-sidebar form {
  background-color: #F0F2F7;
  padding: 24px;
  border-radius: 10px;
}
.post-sidebar form .cf-title {
  line-height: 30px;
  text-align: center;
  font-weight: 500;
}
.post-sidebar form .cf-field label {
  font-size: 14px;
  margin-bottom: 7px;
  display: block;
}
.post-sidebar form .cf-field input {
  border-radius: 10px;
  border: 1px solid #0E5388;
  height: 32px;
  font-size: 14px;
}
.post-sidebar form span.wpcf7-not-valid-tip {
  font-size: 12px;
}
.post-sidebar form span.wpcf7-list-item {
  margin: 0;
}
.post-sidebar form .cf-checkbox {
  font-size: 14px;
  line-height: 24px;
  margin: 10px 0;
}
.post-sidebar form .cf-checkbox input {
  margin: 0;
  padding: 0;
}
.post-sidebar form .wpcf7-submit {
  border-radius: 50px;
  background-color: #00AFDC !important;
}

.single-post .site-main {
  margin: 0;
}
.single-post .featured-image {
  margin: 0;
}
.single-post .featured-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
}
.single-post .post-content-container {
  padding: 0 25px;
}
.single-post .post-content-container .post-content-wrapper {
  max-width: 872px;
  margin: 0 auto 72px auto;
}
.single-post header.entry-header h1 {
  font-size: 40px;
  line-height: 49px;
  margin: 24px 0;
}
.single-post header.entry-header .post-meta-info {
  margin-bottom: 24px;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin: 24px 0 16px 0;
}
.post-content h2 {
  font-size: 30px;
  line-height: 40px;
}
.post-content h3 {
  font-size: 25px;
  line-height: 35px;
}
.post-content h4 {
  font-size: 20px;
  line-height: 30px;
}
.post-content img {
  width: 100%;
  margin-bottom: 26px;
}
.post-content span.subtitle {
  display: block;
  margin-bottom: 26px;
  font-weight: bold;
}
.post-content .two-columns-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 480px) {
  .post-content .two-columns-image {
    grid-template-columns: 1fr;
  }
}
.post-content .two-columns-image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 985px) {
  .formations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 650px) {
  .formations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 475px) {
  .formations-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.formations-grid.space {
  margin-bottom: 64px;
}
.formations-grid .formation {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.formations-grid .formation:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #025476;
  opacity: 0.6;
  height: 150px;
  border-radius: 20px 20px 20px 0;
  z-index: 99;
}
.formations-grid .formation.coming-soon {
  position: relative;
}
.formations-grid .formation.coming-soon:before {
  content: "PRÓXIMAMENTE";
  position: absolute;
  color: white;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  z-index: 999;
}
.formations-grid .formation img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px 20px 20px 0;
}
.formations-grid .formation .title {
  line-height: 33px;
  margin: 0;
  color: #0F253C;
}
.formations-grid .formation p.content {
  margin: 0;
  font-size: 15px;
  line-height: 20px;
}
.formations-grid .formation .more-info {
  position: relative;
  font-size: 18px;
  color: #00AFDC;
  text-decoration: none;
  line-height: 26px;
}
.formations-grid .formation .more-info:after {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url(/wp-content/themes/generatepress-child/assets/media/arrow-top.svg);
  background-position: center;
  background-size: contain;
  margin-left: 9px;
  top: 1px;
}

.page-404 {
  min-height: calc(80vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-404 h1 {
  font-size: 10rem;
  color: #040940;
  text-align: center;
  line-height: 11rem;
}
.page-404 h1 span {
  color: #ff0000;
}
.page-404 .subtitle {
  font-size: 1.5rem;
  color: #040940;
  text-align: center;
  margin-top: 1rem;
}
.page-404 form.search-form {
  margin: 32px auto 0 auto;
  display: flex;
  justify-content: center;
}
.page-404 form.search-form input {
  border-radius: 5px;
}
.page-404 form.search-form button {
  border-radius: 0px 5px 5px 0px;
  background: #070b40;
}

.no-result-page-imena {
  padding: 0 25px;
  min-height: 40dvh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.no-result-page-imena header.entry-header span.entry-title {
  font-weight: bold;
  color: #0f5376;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 16px;
  letter-spacing: 0.36px;
}
.no-result-page-imena .entry-content {
  max-width: 690px;
}
.no-result-page-imena form.search-form {
  width: fit-content;
  margin: auto;
  position: relative;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}
.no-result-page-imena form.search-form input {
  background: #f0f2f7;
  height: 100%;
  border: none;
}
.no-result-page-imena form.search-form label {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}
.no-result-page-imena form.search-form button.search-submit {
  background: #2bafdc;
}

header#masthead {
  padding: 152px 0 0 0;
  z-index: 99991;
}
header#masthead .inside-header {
  padding: 0;
  position: fixed;
  z-index: 99;
  width: 100%;
  padding: 0;
  top: 0;
}
header#masthead .inside-header nav#site-navigation {
  margin: auto;
  width: 100%;
  z-index: 9999;
}
header#masthead .inside-header nav#site-navigation .inside-navigation {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
header#masthead .inside-header nav#site-navigation .inside-navigation section#pre-header {
  width: 100%;
  padding: 16px 25px;
  display: block;
}
header#masthead .inside-header nav#site-navigation .inside-navigation section#pre-header .wrapper {
  width: 100%;
  max-width: 1230px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header#masthead .inside-header nav#site-navigation .inside-navigation section#pre-header .wrapper .left img {
  max-width: 120px;
}
header#masthead .inside-header nav#site-navigation .inside-navigation section#pre-header .wrapper .center span {
  color: #005476;
  letter-spacing: 0.72px;
  line-height: 62px;
  font-size: 24px;
}
@media screen and (max-width: 769px) {
  header#masthead .inside-header nav#site-navigation .inside-navigation section#pre-header .wrapper .center, header#masthead .inside-header nav#site-navigation .inside-navigation section#pre-header .wrapper .right {
    display: none;
  }
}
header#masthead .inside-header nav#site-navigation .inside-navigation div#primary-menu {
  background: #005476;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 25px;
}
@media screen and (max-width: 769px) {
  header#masthead .inside-header nav#site-navigation .inside-navigation div#primary-menu {
    padding: 0;
    text-align: center;
  }
}
header#masthead .inside-header nav#site-navigation .inside-navigation div#primary-menu #menu-menu-principal {
  justify-content: center;
  column-gap: 40px;
  row-gap: 12px;
}
@media screen and (max-width: 769px) {
  header#masthead .inside-header nav#site-navigation .inside-navigation div#primary-menu #menu-menu-principal {
    padding: 16px 25px;
    width: 100%;
    column-gap: 20px;
  }
}
header#masthead .inside-header nav#site-navigation .inside-navigation div#primary-menu .sub-menu a {
  color: #0f5376;
  width: 100%;
  text-align: left;
  padding: 16px;
}
header#masthead .inside-header nav#site-navigation .inside-navigation div#primary-menu a {
  color: white;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  padding: 16px 0;
}
header#masthead .inside-header nav#site-navigation .inside-navigation div#primary-menu a .dropdown-menu-toggle {
  padding-right: 0;
}
@media screen and (max-width: 769px) {
  header#masthead .inside-header nav#site-navigation .inside-navigation div#primary-menu a {
    margin: 6px 0;
  }
}
header#masthead nav#mobile-menu-control-wrapper {
  position: absolute;
  z-index: 999;
  right: 25px;
  top: 12px;
}
header#masthead nav#mobile-menu-control-wrapper button {
  padding: 0;
}

.admin-bar .inside-header {
  top: 32px !important;
}

@media (max-width: 768px) {
  .admin-bar .inside-header {
    top: 46px !important;
  }
  .main-navigation .menu-toggle, .sidebar-nav-mobile:not(#sticky-placeholder) {
    display: block !important;
    position: absolute;
    right: 0;
    padding: 16px 25px;
  }
  header#masthead {
    padding: 86px 0 0 0;
  }
  header#masthead span.dropdown-menu-toggle {
    position: absolute;
  }
  header#masthead .sub-menu.toggled-on {
    background: #0f5376;
    border: none !important;
    transition: 0.3s !important;
  }
  header#masthead .sub-menu.toggled-on a {
    color: white !important;
    text-align: center !important;
    font-size: 15px !important;
    padding: 8px 0 !important;
  }
}
/* ************************* */
/* HERO WITH SLIDER
/* ************************* */
#hero-slider {
  position: relative;
}
#hero-slider.space {
  margin-bottom: 64px;
}
#hero-slider img.hero-background {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#hero-slider .owl-hero-slider card.item {
  padding: 0 25px;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
}
#hero-slider .owl-hero-slider card.item img.slider-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}
#hero-slider .owl-hero-slider card.item .content-container {
  z-index: 999;
  margin: auto;
  max-width: 1230px;
  width: 100%;
}
#hero-slider .owl-hero-slider card.item .content-container h1, #hero-slider .owl-hero-slider card.item .content-container h2, #hero-slider .owl-hero-slider card.item .content-container span {
  max-width: 690px;
}
#hero-slider .owl-hero-slider card.item .content-container span {
  display: block;
  color: #005476;
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 12px;
}
#hero-slider .owl-dots {
  position: absolute;
  bottom: 12px;
  margin: 0 auto;
  width: 100%;
}
#hero-slider .owl-dots button.owl-dot span {
  background: #00AFDC;
  border: 2px solid #00AFDC;
  width: 12px;
  height: 12px;
}
#hero-slider .owl-dots button.owl-dot.active span {
  background: transparent;
}

/* ************************* */
/* END OF HERO WITH SLIDER
/* ************************* */
/* ************************* */
/* PAGE HERO
/* ************************* */
#page-header {
  position: relative;
  min-height: 400px;
  padding: 32px 25px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#page-header img.background {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#page-header .wrapper {
  z-index: 999;
  display: block;
  position: relative;
  max-width: 1230px;
  margin: auto;
  color: white;
  width: 100%;
}
#page-header .wrapper h1 {
  color: #005476;
  margin-bottom: 14px;
  max-width: 693px;
}
#page-header .wrapper .subtitle {
  color: #00AFDC;
  font-size: 22px;
  font-weight: 600;
  max-width: 480px;
  width: 100%;
  display: block;
}
#page-header .wrapper .subtitle.blue {
  color: #005476;
}

/* ************************* */
/* END OF PAGE HERO
/* ************************* */
footer#footer {
  padding: 34px 25px;
  background: #0e263c;
}
footer#footer .wrapper {
  max-width: 1236px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer#footer .wrapper .brand-logos,
footer#footer .wrapper .rrss-logos {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
footer#footer .wrapper .brand-logos {
  justify-content: space-between;
}
@media screen and (max-width: 850px) {
  footer#footer .wrapper .brand-logos {
    flex-direction: column;
    align-items: center;
  }
}
footer#footer .wrapper .brand-logos > div {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
footer#footer .wrapper .rrss-logos {
  justify-content: center;
}
footer#footer .wrapper .rrss-logos a {
  height: 32px;
}
footer#footer .wrapper .legal-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) {
  footer#footer .wrapper .legal-links {
    flex-direction: column;
  }
}
footer#footer .wrapper .legal-links a {
  position: relative;
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 500px) {
  footer#footer .wrapper .legal-links a {
    text-align: center;
  }
}
footer#footer .wrapper .legal-links a:not(:last-child):before {
  content: "";
  position: absolute;
  right: -13px;
  top: 3px;
  width: 1px;
  height: 20px;
  background: white;
}
@media screen and (max-width: 500px) {
  footer#footer .wrapper .legal-links a:not(:last-child):before {
    display: none;
  }
}
footer#footer .wrapper .legal-info {
  color: white;
}

section#breadcrumbs {
  margin-top: 24px;
  padding: 0 25px;
}
section#breadcrumbs .wrapper {
  max-width: 1236px;
  margin: auto;
}
section#breadcrumbs span {
  font-size: 16px;
}
section#breadcrumbs a {
  font-weight: bold;
  text-decoration: none;
  color: #005476;
}

.grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .grid-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .grid-content.reverse-mobile .left {
    order: 1;
  }
}
.grid-content img {
  max-width: 500px;
  margin: auto;
  display: block;
  width: 100%;
}
.grid-content .content-list-grid.space {
  margin-bottom: 40px;
}
.grid-content .content-list-grid card:not(:last-child) {
  padding-bottom: 24px;
  margin-bottom: 24px;
  display: block;
  border-bottom: 1px solid rgba(15, 37, 60, 0.2);
}
.grid-content .content-list-grid card h3 {
  margin-bottom: 16px;
}
.grid-content .content-list-grid card p {
  margin: 0;
}

.grid-columns {
  display: grid;
}
.grid-columns.four {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1030px) {
  .grid-columns.four {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .grid-columns.four card.item:not(:last-child):after {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .grid-columns.four {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .grid-columns.four card.item:not(:last-child):after {
    display: none;
  }
}
.grid-columns.four card.item:not(:last-child):after {
  right: -20px;
}
.grid-columns.three {
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.grid-columns.three card.item:not(:last-child):after {
  right: -30px;
}
@media screen and (max-width: 800px) {
  .grid-columns.three {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .grid-columns.three card.item:not(:last-child):after {
    display: none;
  }
}
.grid-columns card.item {
  position: relative;
}
.grid-columns card.item:not(:last-child):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 90%;
  background: rgba(15, 37, 60, 0.2);
  bottom: 0;
}
.grid-columns card.item img {
  height: 65px;
}
.grid-columns card.item a {
  text-decoration: none;
}
.grid-columns card.item a h3 {
  margin-bottom: 16px;
  position: relative;
  max-width: 255px;
}
.grid-columns card.item a h3:after {
  content: "";
  height: 13px;
  width: 13px;
  position: absolute;
  margin-left: 9px;
  bottom: 8px;
  background-image: url(/wp-content/themes/generatepress-child/assets/media/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.grid-timeline {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  text-align: center;
  margin: 100px auto 140px auto;
  position: relative;
  max-width: 96%;
}
@media screen and (max-width: 980px) {
  .grid-timeline {
    max-width: 650px;
  }
}
@media screen and (max-width: 760px) {
  .grid-timeline {
    flex-direction: column;
    margin: 60px auto 0 auto;
  }
}
.grid-timeline:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 7px;
  background: linear-gradient(90deg, #00AFDC, #005476);
  margin: auto;
  right: 0;
  left: 0;
  opacity: 0.11;
}
@media screen and (max-width: 760px) {
  .grid-timeline:before {
    width: 7px;
    height: 100%;
    right: unset;
    left: 15px;
  }
}
.grid-timeline card {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.grid-timeline card .text {
  position: absolute;
  margin: auto;
  max-width: 190px;
  font-size: 14px;
  font-weight: 600;
  color: #005476;
  width: calc(100% + 270px);
}
@media screen and (max-width: 760px) {
  .grid-timeline card .text {
    position: unset;
    text-align: left;
    width: 100%;
    max-width: unset;
    margin-left: 15px;
  }
}
.grid-timeline card .text.top {
  bottom: 45px;
}
.grid-timeline card .text.bottom {
  top: 45px;
}

.cta .wrapper {
  padding: 32px 25px;
  background: transparent linear-gradient(98deg, #185476 0%, #3BAFDC 47%, #47D3F0 100%, #4FEBFC 100%) 0% 0% no-repeat padding-box;
  text-align: center;
  border-radius: 10px;
}
.cta .wrapper h2 {
  color: white;
}

.cta-job-board-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .cta-job-board-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.cta-job-board-grid .left {
  background: #005476;
  padding: 25px 50px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
}
.cta-job-board-grid .left h2.title {
  color: white;
  position: relative;
  padding-right: 100px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .cta-job-board-grid .left h2.title {
    padding: 0;
  }
}
.cta-job-board-grid .left h2.title:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 82px;
  height: 100%;
  background: url(/wp-content/uploads/2026/01/soy-efr.webp) no-repeat center center;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 1000px) {
  .cta-job-board-grid .left h2.title:before {
    width: 100%;
    height: 82px;
    margin: 0 auto 16px auto;
    position: unset;
  }
}
.cta-job-board-grid .left p {
  color: white;
  max-width: 427px;
}
@media screen and (max-width: 1000px) {
  .cta-job-board-grid .left p {
    margin: 0 auto 16px auto;
  }
}
@media screen and (max-width: 1000px) {
  .cta-job-board-grid .left .btn {
    margin: 0 auto;
  }
}
.cta-job-board-grid .right img.cta-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .cta-job-board-grid .right img.cta-image {
    max-height: 400px;
  }
}

.soy-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .soy-cta {
    grid-template-columns: 1fr;
  }
}
.soy-cta card {
  padding: 25px;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.soy-cta card .title {
  color: white;
  font-size: 36px;
  line-height: 48px;
}

.explora-servicios {
  width: 100%;
  padding: 32px 24px;
  background: #F0F2F7;
  color: #fff;
  text-align: center;
  border-radius: 27px;
  margin: 64px auto;
  max-width: 760px;
}
.explora-servicios .servicios-cta {
  max-width: 1200px;
  margin: 0 auto;
}
.explora-servicios .servicios-cta .servicios-title {
  font-size: 36px;
  font-weight: 600;
  color: #005476;
}
.explora-servicios .distribucion-servicios {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.explora-servicios .distribucion-servicios .btn-servicios {
  text-decoration: none;
  font-size: 18px;
  color: #00AFDC;
  border-radius: 22px;
  background-color: none;
  padding: 10px 24px;
  border: 2px solid #00AFDC;
}

section#featured-icons {
  background: #F6F8FC;
  padding: 64px 25px !important;
}
section#featured-icons .icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 32px auto;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  section#featured-icons .icons-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
section#featured-icons .icons-grid card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  color: #005476;
  max-width: 185px;
  margin: 0 auto;
}
section#featured-icons .icons-grid card img {
  height: 55px;
}
section#featured-icons .icons-grid card span.number {
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
}
section#featured-icons .icons-grid card p {
  letter-spacing: 0.54px;
  font-weight: 500;
  color: #005476;
}

.slider-wrapper {
  position: relative;
}
.slider-wrapper .slider-arrows {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  top: 0;
  justify-content: space-between;
}
.slider-wrapper .slider-arrows button {
  padding: 0 !important;
  display: flex;
  background: white;
}
.slider-wrapper .slider-arrows button.owl-next img {
  transform: rotate(180deg);
}
.slider-wrapper .owl-dots {
  position: absolute;
  margin: auto;
  width: 100%;
  margin-top: 40px;
}
.slider-wrapper .owl-dots button.owl-dot span {
  background: #00AFDC;
  border: 2px solid #00AFDC;
  width: 12px;
  height: 12px;
}
.slider-wrapper .owl-dots button.owl-dot:hover span {
  background: #00AFDC;
}
.slider-wrapper .owl-dots button.owl-dot.active span {
  background: transparent;
}

#testimonies {
  margin-bottom: 134px !important;
}
#testimonies .owl-testimonies {
  max-width: calc(100% - 100px);
  margin: auto;
  position: relative;
  z-index: 9999;
}
#testimonies .owl-testimonies .owl-stage {
  display: flex;
  align-items: center;
}
#testimonies .owl-testimonies .owl-item {
  padding: 40px 25px !important;
  background: #F6F8FC;
  border-radius: 10px;
  display: flex;
  height: -webkit-fill-available;
}
#testimonies .owl-testimonies .owl-item card.item {
  display: flex;
  flex-direction: column;
}
#testimonies .owl-testimonies .owl-item card.item .name {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 30px;
  font-weight: 500;
  color: #00AFDC;
}
#testimonies .owl-testimonies .owl-item card.item .position {
  display: block;
  margin-bottom: 24px;
}
#testimonies .owl-testimonies .owl-item card.item p {
  margin: 0;
}

section#certifications .grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 800px) {
  section#certifications .grid {
    grid-template-columns: 1fr;
  }
}
section#certifications .grid .right {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  section#certifications .grid .right {
    justify-content: center;
  }
}
section#certifications .grid .right img {
  height: fit-content;
  max-width: 125px;
}

#profession h2 {
  max-width: 724px;
  margin: 0 auto 40px auto;
}
#profession .profession-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 956px;
  margin: auto;
}
#profession .profession-list card {
  border-radius: 10px;
  background: #F6F8FC;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  #profession .profession-list card {
    flex-direction: column;
  }
}
#profession .profession-list card .right {
  width: 100%;
  max-width: 143px;
  text-align: end;
}
#profession .profession-list card .left {
  max-width: 694px;
}
#profession .profession-list card .left p {
  margin: 0;
}

.contact-section-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  font-family: "Outfit";
}
@media screen and (max-width: 1000px) {
  .contact-section-container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .contact-section-container > div {
    max-width: unset !important;
  }
}
.contact-section-container .contact-info {
  flex: 1;
  width: 100%;
  max-width: 415px;
}
.contact-section-container .contact-info .title {
  font-size: 22px;
  line-height: 1.4;
  color: #005476;
  font-weight: 600;
  margin-bottom: 40px;
  display: block;
}
.contact-section-container .contact-info .title span {
  color: #00AFDC;
}
.contact-section-container .contact-info .contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}
.contact-section-container .contact-info .contact-methods .contact-method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact-section-container .contact-info .contact-methods .contact-method-item .icon-circle {
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border: none;
}
.contact-section-container .contact-info .contact-methods .contact-method-item a {
  color: #00AFDC;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
}
.contact-section-container .contact-info .social-box {
  background: linear-gradient(90deg, #1A5F7A 0%, #40CBEF 100%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 160, 209, 0.2);
  max-width: 100%;
}
.contact-section-container .contact-info .social-box .social-title {
  margin: 0 0 20px 0;
  font-size: 22px;
  font-weight: 600;
  color: white;
  display: block;
}
.contact-section-container .contact-info .social-box .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.contact-section-container .contact-info .social-box .social-icons a {
  background-color: white;
  color: #00A0D1;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  transition: transform 0.2s;
}
.contact-section-container .contact-info .social-box .social-icons a:hover {
  transform: translateY(-3px);
}
.contact-section-container .contact-form-wrapper {
  flex: 1;
  max-width: 651px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-section-container .contact-form-wrapper h2 {
  text-align: center;
  color: #1A3B47;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.contact-section-container .wpcf7-form {
  gap: 24px;
  display: flex;
  flex-direction: column;
  max-width: 651px;
}
.contact-section-container .wpcf7-form label {
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.contact-section-container .wpcf7-form .wpcf7-text,
.contact-section-container .wpcf7-form .wpcf7-textarea,
.contact-section-container .wpcf7-form .wpcf7-select,
.contact-section-container .wpcf7-form .wpcf7-tel,
.contact-section-container .wpcf7-form .wpcf7-email {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #CFD8DC;
  border-radius: 6px;
  font-size: 1rem;
  background-color: white;
  color: #333;
  box-sizing: border-box;
}
.contact-section-container .wpcf7-form .wpcf7-textarea {
  height: 120px;
  resize: vertical;
}
.contact-section-container .wpcf7-form p {
  margin-bottom: 0;
}
.contact-section-container .wpcf7-form .input-group-row {
  display: flex;
  gap: 17px;
}
.contact-section-container .wpcf7-form .input-group-row > span {
  flex: 1;
}
@media screen and (max-width: 500px) {
  .contact-section-container .wpcf7-form .input-group-row {
    flex-direction: column;
    gap: 24px;
  }
}
.contact-section-container .wpcf7-form .wpcf7-list-item {
  display: inline-block;
  margin-right: 20px;
  margin-left: 0;
}
.contact-section-container .wpcf7-form .wpcf7-list-item-label {
  font-weight: normal;
  color: #555;
  font-size: 0.95rem;
}
.contact-section-container .wpcf7-form .wpcf7-radio {
  display: flex;
}
@media screen and (max-width: 666px) {
  .contact-section-container .wpcf7-form .wpcf7-radio {
    flex-direction: column;
  }
}
.contact-section-container .wpcf7-form .wpcf7-radio input[type=radio] {
  accent-color: #00A0D1;
  margin-right: 5px;
}
.contact-section-container .wpcf7-form .checkbox-wrapper .wpcf7-list-item {
  margin: 0;
}
.contact-section-container .wpcf7-form .wpcf7-acceptance label {
  font-weight: normal;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-section-container .wpcf7-form .wpcf7-acceptance input[type=checkbox] {
  width: auto;
  accent-color: #00A0D1;
}
.contact-section-container .wpcf7-form .wpcf7-acceptance a {
  color: #00A0D1;
}
.contact-section-container .wpcf7-form .wpcf7-submit {
  background-color: #00A0D1 !important;
  color: white;
  border: none;
  padding: 12px 50px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: 0.3s;
}
.contact-section-container .wpcf7-form .wpcf7-submit:hover {
  background-color: #00769D;
}

#page-contact .contact-content {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 765px) {
  #page-contact .contact-content {
    flex-direction: column;
  }
}
#page-contact .contact-content .right {
  max-width: 376px;
}
#page-contact .contact-content .right .form-container {
  background: #f0f2f8;
  padding: 24px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#page-contact .contact-content .right .form-container span.form-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #025476;
}
#page-contact .contact-content .right .form-container .form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#page-contact .contact-content .right .form-container .form-wrapper .row .name {
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
  line-height: 26px;
  text-align: left;
}
#page-contact .contact-content .right .form-container .form-wrapper .row input,
#page-contact .contact-content .right .form-container .form-wrapper .row textarea,
#page-contact .contact-content .right .form-container .form-wrapper .row select {
  border: 1px solid #005476;
  border-radius: 3px;
}
#page-contact .contact-content .right .form-container .form-wrapper .row textarea {
  resize: none;
  height: 80px;
}
#page-contact .contact-content .right .form-container .form-wrapper .row .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  font-size: 14px;
}
#page-contact .contact-content .right .form-container .form-wrapper .row span.wpcf7-not-valid-tip {
  font-size: 12px;
  color: red;
}
#page-contact .contact-content .right .form-container .form-wrapper .send {
  position: relative;
}
#page-contact .contact-content .right .form-container .form-wrapper .send input {
  margin: 0 auto;
  display: block;
  border: 2px solid #00AFDC;
  background: #00AFDC;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 26px;
  transition: 0.3s;
  text-align: center;
  width: fit-content;
  color: white;
}
#page-contact .contact-content .right .form-container .form-wrapper .send span.wpcf7-spinner {
  position: absolute;
  top: 12px;
  right: 0;
}
#page-contact .contact-content .left {
  max-width: 735px;
}

.grid-how-it-works {
  padding: 64px 40px;
  background: #005476;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 38px;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .grid-how-it-works {
    grid-template-columns: 1fr;
  }
}
.grid-how-it-works .left {
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.grid-how-it-works .left * {
  color: white;
}
.grid-how-it-works .right .list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 24px;
}
@media screen and (max-width: 550px) {
  .grid-how-it-works .right .list-grid {
    grid-template-columns: 1fr;
  }
}
.grid-how-it-works .right .list-grid card {
  background: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 33px 14px 22px 14px;
  border-radius: 20px;
  position: relative;
}
.grid-how-it-works .right .list-grid card:hover .number {
  transform: scale(1.2);
}
@media screen and (min-width: 550px) {
  .grid-how-it-works .right .list-grid card:nth-child(1) {
    border-bottom-right-radius: 0;
  }
  .grid-how-it-works .right .list-grid card:nth-child(2) {
    border-bottom-left-radius: 0;
  }
  .grid-how-it-works .right .list-grid card:nth-child(3) {
    border-top-right-radius: 0;
  }
  .grid-how-it-works .right .list-grid card:nth-child(4) {
    border-top-left-radius: 0;
  }
}
.grid-how-it-works .right .list-grid card .number {
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  top: -25px;
  background: #00AFDC;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  color: white;
  border-radius: 50%;
  border: 5px solid #025476;
  transition: 0.3s;
}
.grid-how-it-works .right .list-grid card span.title {
  font-size: 22px;
  color: #00AFDC;
  font-weight: 500;
}
.grid-how-it-works .right .list-grid card p {
  margin: 0;
}

.contact-grid {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 450px) {
  .contact-grid {
    flex-direction: column;
  }
}
.contact-grid .icon-col .icon {
  width: 40px;
  height: 40px;
  display: block;
  margin-bottom: 16px;
  background-size: contain;
}
.contact-grid .icon-col .icon.mail {
  background: url("../media/mail-icon.svg") no-repeat center center;
}
.contact-grid .icon-col .icon.phone {
  background: url("../media/phone-icon.svg") no-repeat center center;
}
.contact-grid .icon-col p {
  font-size: 16px;
  margin: 0;
}

.form-col {
  padding: 40px;
  background: rgba(1, 7, 64, 0.05);
  border-radius: 5px;
}
@media screen and (max-width: 450px) {
  .form-col {
    padding: 25px;
  }
}
.form-col br {
  display: none;
}
.form-col h3 {
  font-size: 24px !important;
  margin-bottom: 16px !important;
}
.form-col p {
  font-size: 16px;
}
.form-col .row input,
.form-col .row textarea {
  width: 100%;
  border-radius: 5px !important;
  border: 1px solid rgba(1, 7, 64, 0.2) !important;
  background-color: white !important;
}
.form-col .row label {
  font-size: 14px;
  color: #1B2831;
  display: block;
  line-height: 22px;
  margin-bottom: 8px;
}
.form-col .row textarea {
  height: 123px;
  resize: unset;
}
.form-col .btn {
  padding: 16px 24px;
  margin: 0 auto;
  background: #384cff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  display: block;
}

section#footer-form {
  padding: 64px 25px !important;
  background: #F6F8FC;
}
section#footer-form .info-form {
  max-width: 760px;
  margin: auto;
}

.contact-wrapper .row {
  margin-bottom: 24px;
  display: block;
}
.contact-wrapper .row.two-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 765px) {
  .contact-wrapper .row.two-row {
    grid-template-columns: 1fr;
  }
}
.contact-wrapper .row span.wpcf7-form-control-wrap {
  display: flex;
}
.contact-wrapper .row label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.contact-wrapper .row input,
.contact-wrapper .row textarea,
.contact-wrapper .row select {
  border: 1px solid #005476;
  border-radius: 3px;
  width: 100%;
}
.contact-wrapper .row textarea {
  height: 100px;
  resize: none;
}
.contact-wrapper .row .wpcf7-submit {
  width: fit-content !important;
  display: block;
  margin: auto;
  background: #00AFDC;
  border: none !important;
  border-radius: 50px !important;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 24px;
}
.contact-wrapper .row .select-formaciones-text {
  display: none;
}
.contact-wrapper .acceptance-row {
  margin-bottom: 24px;
}
.contact-wrapper .acceptance-row span.wpcf7-list-item {
  margin: 0;
}
.contact-wrapper span.wpcf7-not-valid-tip {
  position: absolute;
  bottom: -19px;
  font-size: 13px;
}
.contact-wrapper .row.form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}
.contact-wrapper .row.form-actions .wpcf7-submit {
  margin: unset !important;
}
.contact-wrapper .row.form-actions span.wpcf7-spinner {
  display: none;
}

.hidden-upload span.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}
.hidden-upload span.wpcf7-form-control-wrap .wpcf7-file {
  display: none;
}
.hidden-upload span.wpcf7-form-control-wrap span.wpcf7-not-valid-tip {
  bottom: -5px;
}
.hidden-upload span.wpcf7-form-control-wrap span.wpcf7-not-valid-tip:before {
  content: "Curriculum: ";
}
.hidden-upload .file-uploaded {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 24px;
}
.hidden-upload .file-uploaded button {
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #08afdc;
  background: transparent;
  color: #08afdc;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-weight: 500;
}
.hidden-upload .file-uploaded button:hover {
  color: white;
  background: #08afdc;
}

.newsletter-container {
  background: linear-gradient(to right, #1a5670, #4ad2f1); /* Ajusta los colores a tu gusto */
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  color: white;
  font-family: sans-serif;
  width: calc(100% - 50px);
  max-width: 1200px;
  margin: auto;
  margin-bottom: 64px;
}
@media screen and (max-width: 1010px) {
  .newsletter-container {
    display: none;
  }
}
.newsletter-container span.title {
  color: white;
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: bold;
  display: block;
}
.newsletter-container .newsletter-inline-group {
  position: relative;
  max-width: 500px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
}
.newsletter-container input[type=email] {
  width: 100%;
  padding: 11px 120px 10px 25px; /* Espacio a la derecha para que el texto no choque con el botón */
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 16px;
}
.newsletter-container input[type=submit] {
  position: absolute;
  right: 5px; /* Margen interno respecto al borde blanco */
  background-color: #004e6d; /* Azul oscuro del botón */
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.newsletter-container input[type=submit]:hover {
  background-color: #003a52;
}
.newsletter-container .newsletter-acceptance {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.newsletter-container .newsletter-acceptance span.wpcf7-list-item {
  margin: 0;
}
.newsletter-container .newsletter-acceptance span.wpcf7-list-item label {
  display: flex;
}
.newsletter-container .newsletter-acceptance span.wpcf7-list-item label input {
  margin-right: 10px;
}
.newsletter-container .newsletter-acceptance span.wpcf7-list-item label a {
  color: white;
}

.sidebar-form {
  display: flex;
  flex-direction: column;
}
.sidebar-form .title {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  margin: 0 auto 16px auto;
  color: #005476;
  padding: 0 10px;
}
.sidebar-form .row label {
  font-size: 14px;
  display: inline-block;
}
.sidebar-form .row input[type=email] {
  font-size: 14px;
  height: 34px;
  border: 1px solid #0E5388;
  border-radius: 3px;
  margin-bottom: 12px;
}
.sidebar-form .wpcf7-acceptance {
  margin-bottom: 12px;
  display: block;
}
.sidebar-form .wpcf7-acceptance input {
  width: unset !important;
}
.sidebar-form .wpcf7-acceptance a {
  color: #0E5388;
}

.efr-container .efr-grid-layout {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 46px;
}
@media screen and (max-width: 900px) {
  .efr-container .efr-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.efr-container .efr-info-column {
  width: 100%;
  max-width: 498px;
  margin: 0 auto;
}
.efr-container .efr-info-column .efr-logo-wrapper {
  margin-bottom: 25px;
}
.efr-container .efr-info-column .efr-logo-wrapper .efr-logo {
  max-width: 140px;
  height: auto;
}
.efr-container .efr-info-column .efr-text {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: #004B61;
  margin-bottom: 30px;
}
.efr-container .efr-info-column .efr-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #005476;
  margin-bottom: 20px;
  display: block;
  margin-top: 40px;
}
.efr-container .efr-info-column .efr-link-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 392px;
  max-width: 100%;
}
.efr-container .efr-info-column a {
  max-width: 392px;
}
.efr-container .efr-form-column {
  background-color: #F6F8FC;
  padding: 32px 24px;
  border-radius: 8px;
}
.efr-container .efr-form-column .efr-form-title {
  color: #005476;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 0;
}

.texto-resaltado {
  text-align: left;
  letter-spacing: 0px;
  color: #005476;
  opacity: 1;
  font-size: 22px;
  font-weight: 600;
}

/* Estilos de la sección */
.info-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 40px 42px;
  background-color: #F6F8FC;
  color: #334155;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  border-radius: 10px;
  margin-bottom: 64px;
}

/* Contenedor de texto (izquierda) */
.info-content {
  flex: 1;
  max-width: 550px;
}

.info-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.highlight-text {
  font-weight: 600;
  color: #0F253C;
}

.regular-text {
  color: #475569;
}

/* Tarjeta de métricas (derecha) */
.stats-card {
  flex: 0 0 auto;
  width: 100%;
  max-width: 500px;
  background: transparent linear-gradient(104deg, #185476 0%, #3BAFDC 47%, #47D3F0 100%, #4FEBFC 100%) 0% 0% no-repeat padding-box;
  border-radius: 12px;
  padding: 33px 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  color: white;
}

.stat-item {
  flex: 1;
  text-align: center;
  position: relative;
}

/* Línea divisoria vertical */
.stat-item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 20px;
  font-weight: 600;
  opacity: 1;
}

/* Responsive para móviles */
@media (max-width: 900px) {
  .info-section {
    flex-direction: column;
    text-align: left;
    padding: 40px 20px;
  }
  .info-content, .stats-card {
    max-width: 100%;
  }
  .stat-number {
    font-size: 36px; /* Un poco más pequeño en móvil */
  }
}
/* =========================================
       ESTILOS SECCIÓN 1: BANNER CERCANÍA
       ========================================= */
.cercania-section {
  padding: 40px 20px;
  /* Centramos el contenido por si la pantalla es muy ancha */
  display: flex;
  justify-content: center;
}

.cercania-img {
  width: 100%;
  max-width: 1200px; /* Ancho máximo para que no se pixele en pantallas gigantes */
  height: auto; /* Mantiene la proporción original */
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15); /* Sombra elegante */
  display: block;
}

/* =========================================
   ESTILOS SECCIÓN 2: CERTIFICACIONES
   ========================================= */
.certificaciones-section {
  padding: 60px 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #334155;
  max-width: 1200px;
  margin: 0 auto;
}

.cert-title {
  text-align: center;
  color: #005476;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 40px;
  align-items: start;
}

.vertical-divider {
  background-color: #cbd5e1;
  width: 1px;
  height: 100%;
  min-height: 300px;
}

.cert-col {
  padding: 0 20px;
}

/* NUEVO: Contenedor para alinear logo y primer texto */
.cert-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}
.cert-header img {
  height: fit-content;
}

.cert-logo {
  width: 120px; /* Ajusta este ancho según necesites */
  height: auto;
  flex-shrink: 0; /* Evita que la imagen se aplaste */
}

.cert-logo-2 {
  width: 68px;
  height: auto;
  flex-shrink: 0;
}

/* Texto destacado al lado de la imagen */
.cert-intro-text {
  font-size: 18px;
  line-height: 26px;
  align-content: center;
  color: #005476;
  font-weight: 700;
  margin: 0;
}

/* Resto de estilos (lista y footer) */
.cert-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.cert-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.5;
  color: #0F253C;
}

.cert-list li::before {
  content: "•";
  color: #3bc4e7;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -4px;
}

.cert-link {
  color: #3bc4e7;
  text-decoration: none;
  border-bottom: 1px solid #3bc4e7;
}

@media (max-width: 900px) {
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .vertical-divider {
    display: none;
  }
  .cert-col {
    padding: 0;
  }
  .cert-header {
    flex-direction: column;
    text-align: center;
  } /* En móvil puede quedar mejor apilado */
}
nav#nav-below {
  display: none;
}

/*# sourceMappingURL=main.css.map */
