* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
}

:root {
  --font-Roboto: "Roboto", sans-serif;
  --font-Arial: Arial, Helvetica, sans-serif;
  --font-Lato: "Lato", sans-serif;
  --font-opensans: "Open Sans", sans-serif;
  --font-Montserrat: "Montserrat", sans-serif;
  --font-Oswald: "Oswald", sans-serif;
  --font-Poppins: "Poppins", sans-serif;
  --font-JosefinSans: "Josefin Sans", sans-serif;
  --font-Myriad: "Myriad Pro", sans-serif;

  /*
  --font-Verdana: Verdana, sans-serif;
  --font-LenguajeSpartan: "League Spartan", sans-serif;
  --font-Inter: "Inter", sans-serif; */

  --color-bluemain: #005262;
  --color-bluesecun: #01687d;
  --color-bluetre: #006a7f;
  --color-bluefour: #50cde6;
  --color-bluepr: #118aae;
  --color-azula18: #0081a8;
  --color-blue9e: #3d8e9e;
  --color-bluea7f: #006a7f;
  --color-white: #ffffff;
  --color-little-blue: #96add5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.navigation-wrapper {
  position: relative;
  width: 100%;
}

.top-navigation {
  background-color: var(--color-bluemain);
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.top-navigation .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.shadow-effect {
  position: absolute;
  top: 93%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1920px;
  height: 20px;
  background-image: url("../img/headerweb/shadow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.top-nav ul li a {
  font-family: var(--font-Roboto);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.top-nav a.active {
  font-weight: 500;
}

.top-nav a.active,
.top-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  text-decoration-color: #00d5ff;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bluemain);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon i {
  font-size: 18px;
}

.social-icon.facebook:hover {
  background-color: #1877f2;
  color: white;
  text-decoration: none;
}

.social-icon.twitter:hover {
  background-color: #000000;
  color: white;
  text-decoration: none;
}

.social-icon.email:hover {
  background-color: #ea4335;
  color: white;
  text-decoration: none;
}

.main-header {
  background-image: url("../img/headerweb/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  aspect-ratio: 19 / 9;
  display: flex;
  align-items: center;
}

.main-header .container {
  width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: none;
}

.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  clip-path: polygon(0% 0%, 55% 0%, 37.5% 100%, 0% 100%);
  z-index: 1;
}

.header-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.header-left {
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
}

.header-right {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}

.main-logo {
  width: 381px;
  height: 406px;
  object-fit: contain;
}

.mobile-only-slide {
  display: none !important;
}

/* Header Carousel con Swiper */
.carousel-wrapper {
  position: relative;
  width: 550px;
  height: 600px;
}

.header-carousel-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.header-carousel-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-carousel-swiper .swiper-slide a {
  display: flex;
  text-align: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.header-carousel-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.carousel-nav-buttons {
  position: absolute;
  bottom: -30px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-nav-buttons .swiper-button-next,
.carousel-nav-buttons .swiper-button-prev {
  position: static;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 82, 98, 0.8);
  border-radius: 50%;
  color: white;
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}

.carousel-nav-buttons .swiper-button-next:hover,
.carousel-nav-buttons .swiper-button-prev:hover {
  background-color: var(--color-bluemain);
}

.carousel-nav-buttons .swiper-button-next:after,
.carousel-nav-buttons .swiper-button-prev:after {
  font-size: 14px;
  font-weight: bold;
}

/* Footer */

.main-footer {
  background-color: #1d1f20;
  padding: 120px 0;
  position: relative;
  overflow: visible;
}

.main-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  clip-path: polygon(0% 0%, 37% 0%, 42% 100%, 0% 100%);
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-logo img {
  max-width: 300px;
  height: auto;
}

.footer-info {
  display: flex;
  gap: 80px;
  align-items: center;
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  color: var(--color-bluetre);
  font-size: 24px;
  font-family: var(--font-Lato);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  font-family: var(--font-Lato);
  font-size: 14px;
}

.contact-item i {
  width: 29px;
  height: 29px;
  background-color: var(--color-bluetre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1f20;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: left;
}

.social-link {
  width: 29px;
  height: 29px;
  background-color: var(--color-bluetre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1f20;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 17px;
}

.social-link:hover {
  background-color: #1877f2;
  color: #ffffff;
}

.social-link.twitter:hover {
  background-color: #000000;
  color: #ffffff;
}

.footer-bottom {
  background-color: var(--color-bluemain);
  padding: 15px 0;
}

.footer-bottom .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 11px;
  font-family: var(--font-Arial);
}

.footer-bottom-content p {
  margin: 0;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.tecweb-logo {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Inicio*/

#inicio-section {
  position: relative;
  padding: 120px 0 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

#inicio-section .welcome-title-bar {
  position: absolute;
  top: 120px;
  left: 40%;
  right: 0;
  background-color: var(--color-bluetre);
  padding: 5px 0;
  z-index: 10;
}

#inicio-section .welcome-title {
  margin: 0;
  font-family: var(--font-opensans);
  color: white;
  padding-left: calc(40% - 270px);
  display: flex;
  align-items: baseline;
  gap: 15px;
}

#inicio-section .welcome-text {
  font-weight: 400;
  font-size: 40px;
  white-space: nowrap;
}

#inicio-section .organization-name {
  font-weight: 800;
  font-size: 40px;
  white-space: nowrap;
}

#inicio-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

#inicio-section .content-wrapper {
  display: flex;
  flex-direction: column;
}

#inicio-section .first-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

#inicio-section .image-left {
  flex: 0 0 auto;
}

#inicio-section .welcome-img-1 {
  width: 525px;
  height: 487px;
  object-fit: contain;
  display: block;
}

#inicio-section .text-right {
  flex: 1;
}

#inicio-section .main-description {
  font-family: var(--font-Lato);
  font-size: 18px;
  color: #4e4e4e;
  margin: 0;
  font-weight: 400;
}

#inicio-section .second-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

#inicio-section .text-left {
  flex: 1;
  padding-left: 50px;
}

#inicio-section .history-description {
  font-family: var(--font-Lato);
  font-size: 18px;
  color: #4e4e4e;
  margin: 0;
  font-weight: 400;
}

#inicio-section .image-right {
  flex: 0 0 auto;
}

#inicio-section .welcome-img-2 {
  width: 523px;
  height: 329px;
  object-fit: contain;
  display: block;
}

#inicio-section .shadow-effect {
  position: absolute;
  top: -1%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1920px;
  height: 20px;
  background-image: url("../img/inicio/shadow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

#mision-vision-section {
  position: relative;
  height: 700px;
  background-color: #006a7f;
  background-image: url("../img/inicio/effect.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  overflow: hidden;
}

#mision-vision-section .mision-vision-content {
  display: flex;
  width: 100%;
  height: 100%;
}

#mision-vision-section .content-left-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mision-vision-section .content-left {
  max-width: 550px;
  margin-left: auto;
  margin-right: 10px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: white;
}

#mision-vision-section .section-title {
  font-family: var(--font-Montserrat);
  font-size: 24px;
  font-weight: 900;
  color: #01d5ff;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

#mision-vision-section .section-description {
  font-family: var(--font-Lato);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
  color: white;
}

#mision-vision-section .ethics-list {
  display: flex;
}

#mision-vision-section .ethics-column {
  flex: 1;
}

#mision-vision-section .ethics-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mision-vision-section .ethics-column ul li {
  font-family: var(--font-Lato);
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

#mision-vision-section .ethics-column ul li::before {
  content: "●";
  color: #ffffff;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
}

#mision-vision-section .image-right {
  width: 50%;
  display: flex;
}

#mision-vision-section .mision-vision-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

#objectives-section {
  position: relative;
  padding: 120px 0 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

#objectives-section .objectives-title-bar {
  position: absolute;
  top: 130px;
  left: 33%;
  right: 0;
  background-color: var(--color-bluetre);
  padding: 5px 0;
  z-index: 10;
}

#objectives-section .objectives-title {
  margin: 0;
  font-family: var(--font-opensans);
  color: white;
  padding-left: calc(40% - 270px);
  display: flex;
  align-items: baseline;
  gap: 15px;
}

#objectives-section .objectives-text {
  font-weight: 400;
  font-size: 40px;
  white-space: nowrap;
}

#objectives-section .objectives-name {
  font-weight: 800;
  font-size: 40px;
  white-space: nowrap;
}

#objectives-section .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

#objectives-section .content-wrapper {
  display: flex;
  flex-direction: column;
}

#objectives-section .objectives-row {
  display: flex;
  align-items: end;
  gap: 60px;
}

#objectives-section .image-left {
  flex: 0 0 auto;
}

#objectives-section .objectives-img {
  width: 525px;
  height: 487px;
  object-fit: contain;
  display: block;
}

#objectives-section .text-right {
  flex: 1;
  padding-left: 60px;
}

#objectives-section .objectives-description {
  font-family: var(--font-Lato);
  font-size: 18px;
  color: #4e4e4e;
  margin: 0;
  font-weight: 400;
}

#objectives-section .shadow-effect {
  position: absolute;
  top: -1%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 20px;
  background-image: url("../img/inicio/shadow2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

#conference-section {
  padding: 80px 0;
  background-image: url("../img/inicio/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#conference-section .conference-content {
  display: flex;
  width: 100%;
}

#conference-section .conference-text-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#conference-section .conference-text {
  max-width: 580px;
  margin-left: auto;
  margin-right: 50px;
  padding: 0 20px;
}

#conference-section .conference-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#conference-section .conference-list li {
  font-family: var(--font-Lato);
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

#conference-section .conference-list li::before {
  content: "●";
  color: #01d5ff;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

#conference-section .conference-image {
  width: 50%;
  padding-right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#conference-section .conference-img {
  width: 684px;
  height: 569px;
  object-fit: contain;
  display: block;
  margin-left: 40px;
}

/*Quienes somos*/

#quienes-somos-section {
  position: relative;
  height: 700px;
  background-color: var(--color-white);
  overflow: hidden;
}

#quienes-somos-section .title-rectangle {
  position: absolute;
  top: 175px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1080px;
  width: 100%;
  height: 80px;
  background-image: url("../img/quienes-somos/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#quienes-somos-section .section-title {
  font-family: var(--font-opensans);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  text-align: center;
}

#quienes-somos-section .title-highlight {
  font-weight: 800;
}

#quienes-somos-section .quienes-somos-content {
  display: flex;
  width: 100%;
  height: 100%;
}

#quienes-somos-section .content-left-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#quienes-somos-section .content-left {
  max-width: 530px;
  margin-left: auto;
  margin-right: 80px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 150px;
}

#quienes-somos-section .section-description {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
  color: #4e4e4e;
}

#quienes-somos-section .section-description strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

#quienes-somos-section .images-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#quienes-somos-section .images-grid {
  width: 100%;
  height: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 25px;
  padding: 20px;
  z-index: 1;
}

#quienes-somos-section .image-top-left {
  grid-column: 1;
  grid-row: 1;
  position: relative;
}

#quienes-somos-section .image-top-right {
  grid-column: 2;
  grid-row: 1;
  position: relative;
}

#quienes-somos-section .image-bottom {
  grid-column: 1 / 3;
  grid-row: 2;
  position: relative;
}

#quienes-somos-section .image-top-left::after,
#quienes-somos-section .image-top-right::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 20px;
  background-image: url("../img/quienes-somos/shadow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

#quienes-somos-section .image-bottom::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 20px;
  background-image: url("../img/quienes-somos/shadow2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

#quienes-somos-section .qs-img-1,
#quienes-somos-section .qs-img-2,
#quienes-somos-section .qs-img-3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#quienes-somos-section .shadow-effect {
  position: absolute;
  top: -1.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 20px;
  background-image: url("../img/quienes-somos/shadowmain.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

#comisiones-section {
  position: relative;
  padding: 50px 0;
  background-image: url("../img/quienes-somos/background2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#comisiones-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

#comisiones-section .comisiones-header {
  text-align: center;
  margin-bottom: 50px;
}

#comisiones-section .comisiones-title {
  font-family: var(--font-Montserrat);
  font-size: 25px;
  font-weight: 900;
  color: var(--color-bluefour);
  margin: 0;
  line-height: 1.3;
  padding: 0 20px;
}

#comisiones-section .header-line {
  width: 60px;
  height: 2px;
  background-color: white;
  margin: 2px auto 0 auto;
}

#comisiones-section .comisiones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-items: flex-start;
  padding-left: 100px;
}

#comisiones-section .comision-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

#comisiones-section .comision-icon {
  width: 65px;
  height: 65px;
  border: 3px solid var(--color-bluefour);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;
}

#comisiones-section .icon-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

#comisiones-section .comision-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  color: white;
}

#comisiones-section .comision-code {
  font-family: var(--font-Oswald);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-bluefour);
  margin: 0;
}

#comisiones-section .comision-description {
  font-family: var(--font-Lato);
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin: 0;
  line-height: 1.5;
}

/*Presidencia colegiana*/

#directivos-section {
  position: relative;
  height: 750px;
  background-image: url("../img/quienes-somos/backgroundpr.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  overflow: hidden;
  margin: 30px 0;
}

#directivos-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

#directivos-section .dir-content {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

#directivos-section .cd-item {
  flex-shrink: 0;
}

#directivos-section .cd-link {
  width: 230px;
  height: 545px;
  background-image: url("../img/quienes-somos/backgroundcd.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0 30px 0 30px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

#directivos-section .cd-link:hover {
  text-decoration: none;
}

#directivos-section .cd-text {
  text-align: center;
  color: white;
}

#directivos-section .cd-text div {
  font-family: var(--font-Montserrat);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#directivos-section .cd-text span {
  font-family: var(--font-Poppins);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-bluefour);
}

#directivos-section .arrow-1 {
  width: 43px;
  height: 560px;
  background-image: url("../img/quienes-somos/arrow1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

#directivos-section .pc-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
}

#directivos-section .pc-link {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

#directivos-section .pc-link:hover {
  text-decoration: none;
}

#directivos-section .pc-text {
  background-color: var(--color-bluetre);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 20px 20px;
  text-align: center;
  color: white;
  line-height: 1;
}

#directivos-section .pc-text:hover {
  cursor: pointer;
}

#directivos-section .pc-text div {
  font-family: var(--font-Montserrat);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
}

#directivos-section .pc-text span {
  font-family: var(--font-Poppins);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-bluefour);
}

#directivos-section .arrow-2 {
  width: 602px;
  height: 150px;
  background-image: url("../img/quienes-somos/arrowpr.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 30px auto;
}

#directivos-section .ce-container {
  background-image: url("../img/quienes-somos/backgroundpr2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  overflow: hidden;
  min-width: 650px;
  margin: 0 auto;
  padding: 25px 95px 50px 95px;
}

#directivos-section .ce-title {
  text-align: center;
  margin-bottom: 50px;
}

#directivos-section .ce-title span {
  background-color: white;
  color: var(--color-bluepr);
  font-family: var(--font-Montserrat);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 0 20px 0 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: inline-block;
}

#directivos-section .ce-grid {
  display: flex;
  gap: 10px;
  align-items: center;
}

#directivos-section .ce-col {
  flex: 1;
  color: white;
  font-family: var(--font-Montserrat);
  font-size: 16px;
  line-height: 1;
}

#directivos-section .ce-col-2 {
  border-left: 1px solid white;
  padding-left: 30px;
}

#directivos-section .ce-col strong {
  font-weight: 800;
  text-transform: uppercase;
  color: white;
}

#directivos-section .ce-col span {
  font-weight: 400;
  opacity: 0.9;
}

#comisiones-footer {
  position: relative;
  height: 700px;
  overflow: visible;
}

#comisiones-footer .com-background {
  position: relative;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    white 40%,
    white 100%
  );
  z-index: 1;
}

#comisiones-footer .com-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url("../img/quienes-somos/background_conse.png") center center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 7px 5px -5px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#comisiones-footer .com-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(-50px);
  z-index: 5;
}

#comisiones-footer .com-title {
  text-align: center;
  margin-bottom: 40px;
  z-index: 2;
  position: relative;
}

#comisiones-footer .com-title h2 {
  font-family: var(--font-Montserrat);
  font-size: 25px;
  font-weight: 900;
  color: white;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  line-height: 1.2;
}

#comisiones-footer .title-line {
  width: 150px;
  height: 5px;
  background-color: white;
  margin: 0 auto;
}

#comisiones-footer .cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 6;
  position: relative;
}

#comisiones-footer .card-container {
  position: relative;
}

#comisiones-footer .card-item {
  width: 243px;
  height: 318px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  transition: transform 0.3s ease;
  overflow: visible;
  position: relative;
  z-index: 7;
}

#comisiones-footer .card-shadow {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 20px;
  background: url("../img/quienes-somos/shadowcc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 4;
}

#comisiones-footer .card-1 {
  background: url("../img/quienes-somos/rounded_rectangle1.png") center center;
  background-size: cover;
}

#comisiones-footer .card-2 {
  background: url("../img/quienes-somos/rounded_rectangle2.png") center center;
  background-size: cover;
}

#comisiones-footer .card-3 {
  background: url("../img/quienes-somos/rounded_rectangle3.png") center center;
  background-size: cover;
}

#comisiones-footer .card-4 {
  background: url("../img/quienes-somos/rounded_rectangle4.png") center center;
  background-size: cover;
}

#comisiones-footer .card-content {
  text-align: center;
  padding: 20px;
  color: white;
}

#comisiones-footer .card-content h3 {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

#comisiones-footer .card-content p {
  font-family: var(--font-Lato);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

#comisiones-footer .card-link {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-bluefour);
  text-decoration: none;
}

#comisiones-footer .card-link:hover {
  text-decoration: underline;
}

#presidencia-section {
  position: relative;
  padding: 0;
  background-color: var(--color-white);
  overflow: hidden;
}

#presidencia-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#presidencia-section .pres-header {
  text-align: center;
  margin-bottom: 80px;
  background-color: var(--color-azula18);
  padding: 20px 0;
  line-height: 1.2;
}

#presidencia-section .pres-title {
  font-family: var(--font-opensans);
  font-size: 41px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  text-transform: uppercase;
}

#presidencia-section .title-highlight {
  font-weight: 800;
}

#presidencia-section .pres-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

#presidencia-section .pres-left {
  flex: 0 0 auto;
}

#presidencia-section .pres-img {
  width: 312px;
  height: 584px;
  object-fit: cover;
  display: block;
}

#presidencia-section .pres-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#presidencia-section .text-block {
  margin-bottom: 0;
}

#presidencia-section .pres-desc {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #4e4e4e;
  margin: 0;
}

#presidencia-section .pres-desc strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

#objetivo-section .obj-content {
  display: flex;
  width: 100%;
  padding: 20px 0;
}

#objetivo-section .obj-text-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#objetivo-section .obj-text {
  max-width: 550px;
  margin-left: auto;
  margin-right: 0px;
}

#objetivo-section .obj-title {
  font-family: var(--font-opensans);
  font-size: 41px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--color-white);
  background-image: url("../img/quienes-somos/background_obje.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 10px;
}

#objetivo-section .obj-desc {
  font-family: var(--font-Lato);
  font-size: 18px;
  line-height: 1.8;
  color: #4e4e4e;
}

#objetivo-section .obj-desc strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

#objetivo-section .obj-image {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0;
}

#objetivo-section .obj-img {
  width: 80%;
  height: auto;
}

#funciones-section {
  position: relative;
  padding: 40px 0;
  background-image: url("../img/quienes-somos/background_funtions.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: inset 0 7px 5px -5px rgba(0, 0, 0, 0.5);
}

#funciones-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#funciones-section .func-header {
  text-align: center;
  margin-bottom: 60px;
}

#funciones-section .func-title {
  font-family: var(--font-Poppins);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-azula18);
  margin: 0 0 30px 0;
  text-transform: uppercase;
}

#funciones-section .func-subtitle {
  font-family: var(--font-Lato);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: #4e4e4e;
  margin: 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

#funciones-section .func-subtitle strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

#funciones-section .func-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#funciones-section .func-img {
  width: 786px;
  height: 755px;
  object-fit: contain;
  display: block;
  max-width: 100%;
  height: auto;
}

#cr-section,
#coa-section,
#coa-functions-section,
#ce-section,
#etica-section,
#cdpd-section,
#cdpd-functions-section,
#presidencia-section,
#objetivo-section,
#funciones-section {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

#cr-section.show,
#coa-section.show,
#coa-functions-section.show,
#ce-section.show,
#etica-section.show,
#cdpd-section.show,
#cdpd-functions-section.show,
#presidencia-section.show,
#objetivo-section.show,
#funciones-section.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.pc-link.active .pc-text {
  background-color: #005262;
}

.pc-link.active .pc-text span {
  color: #01d5ff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.section-animated {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/*(CDP&D)*/

#cdpd-section {
  position: relative;
  background-color: var(--color-white);
}

#cdpd-section .cdpd-title-bar {
  background-color: var(--color-azula18);
  padding: 30px 0;
  text-align: center;
}

#cdpd-section .cdpd-title {
  font-family: var(--font-opensans);
  font-size: 34px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

#cdpd-section .title-highlight {
  font-weight: 800;
}

#cdpd-section .cdpd-content {
  position: relative;
  width: 100%;
  min-height: 870px;
  background-image: url("../img/quienes-somos/background_(CDP&D).png");
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
}

#cdpd-section .cdpd-text {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 65%;
  height: 58%;
  background-image: url("../img/quienes-somos/background_(CDP&D)_obje.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 80px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  border-top: 25px solid white;
  border-bottom: 25px solid white;
  border-left: 50px solid white;
}

#cdpd-section .text-block {
  margin-bottom: 0;
}

#cdpd-section .cdpd-description {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: white;
  margin: 0;
}

#cdpd-section .objectives-section {
  display: flex;
  flex-direction: column;
}

#cdpd-section .objectives-title {
  font-family: var(--font-Poppins);
  font-size: 36px;
  font-weight: 900;
  color: white;
  margin: 0;
  text-transform: uppercase;
}

#cdpd-section .objectives-description {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: white;
  margin: 0;
}

#cdpd-functions-section {
  position: relative;
  padding: 80px 0;
  min-height: 800px;
  background-image: url("../img/quienes-somos/background_(CDP&D)_funtions.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#cdpd-functions-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#cdpd-functions-section .functions-header {
  text-align: center;
  margin-bottom: 60px;
}

#cdpd-functions-section .functions-title {
  font-family: var(--font-opensans);
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin: 0;
  text-transform: uppercase;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#cdpd-functions-section .functions-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background-color: white;
}

#cdpd-functions-section .functions-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

#cdpd-functions-section .function-card {
  flex: 1;
  background-color: rgba(12, 103, 120, 0.8);
  border-radius: 50px 0 50px 0;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
}

#cdpd-functions-section .function-text {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  margin: 0;
}

#cdpd-functions-section .function-text strong {
  font-weight: 700;
}

/* (CE&G) */

#ce-section {
  position: relative;
  background-color: var(--color-white);
  padding: 0;
  overflow: hidden;
}

#ce-section .title-bar {
  background-color: var(--color-azula18);
  padding: 30px 0;
  text-align: center;
}

#ce-section .title {
  font-family: var(--font-opensans);
  font-size: 34px;
  font-weight: 400;
  color: white;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

#ce-section .highlight {
  font-weight: 800;
}

#ce-section .intro-text {
  background-color: white;
  padding: 60px 0;
  text-align: center;
}

#ce-section .intro-text p {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #545454;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
  text-align: initial;
}

#ce-section .intro-text strong {
  color: var(--color-bluetre);
}

#ce-section .content {
  display: flex;
  width: 100%;
  background-color: var(--color-white);
  padding: 10px 0;
}

#ce-section .image-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 50px;
}

#ce-section .ce-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

#ce-section .text-right {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#ce-section .text-content {
  max-width: 591px;
  margin-right: 200px;
  padding: 0 20px;
}

#ce-section .section-block {
  margin-bottom: 40px;
}

#ce-section .section-title {
  font-family: var(--font-Poppins);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-bluetre);
  text-transform: uppercase;
}

#ce-section .section-title::after {
  content: "";
  display: inline-block;
  width: 330px;
  height: 2px;
  background-color: var(--color-bluetre);
  margin-left: 15px;
  vertical-align: baseline;
}

#ce-section .section-desc {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #545454;
  margin: 0 0 15px 0;
}

#ce-section .section-desc strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

#ce-section .download-btn {
  margin-top: 30px;
}

#ce-section .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #2c98b9;
  color: var(--color-white);
  font-family: var(--font-Lato);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 45px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

#ce-section .btn-download:hover {
  text-decoration: none;
}

#ce-section .btn-download i {
  font-size: 14px;
}

#etica-section {
  position: relative;
  padding: 80px 0;
  background-image: url("../img/quienes-somos/background_etica.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  margin-top: 100px;
}

#etica-section .etica-header {
  margin-bottom: 60px;
}

#etica-section .etica-title {
  font-family: var(--font-opensans);
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin: 0 0 -5px 0;
  text-transform: uppercase;
}

#etica-section .title-line {
  width: 80px;
  height: 4px;
  background-color: white;
  margin: 0 auto 30px auto;
}

#etica-section .download-btn {
  margin-bottom: 0;
}

#etica-section .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #2c98b9;
  color: var(--color-white);
  font-family: var(--font-Lato);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 50px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

#etica-section .btn-download:hover {
  text-decoration: none;
}

#etica-section .etica-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

#etica-section .etica-img {
  width: 100%;
  max-width: 729px;
  height: auto;
}

/* (COA) */

#coa-section {
  padding: 0;
  background-color: #ffffff;
  position: relative;
}

#coa-section .title-bar {
  background-color: var(--color-azula18);
  padding: 30px 0;
  text-align: center;
}

#coa-section .title {
  font-family: var(--font-opensans);
  font-size: 34px;
  font-weight: 400;
  color: white;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

#coa-section .highlight {
  font-weight: 800;
}

#coa-section .coa-content {
  display: flex;
  width: 100%;
}

#coa-section .coa-text-container {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#coa-section .coa-text {
  max-width: 800px;
  margin-left: 360px;
  padding: 80px 20px;
}

#coa-section .intro-desc {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 40px 0;
}

#coa-section .intro-desc strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

#coa-section .section-block {
  margin-bottom: 0;
}

#coa-section .section-title {
  font-family: var(--font-opensans);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-bluetre);
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

#coa-section .section-desc {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}

#coa-section .section-desc strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

#coa-section .coa-image {
  width: 40%;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#coa-section .coa-img {
  width: 90%;
  height: auto;
}

#coa-functions-section {
  padding: 0;
  background-color: var(--color-bluetre);
  position: relative;
}

#coa-functions-section .functions-content {
  display: flex;
  width: 100%;
  min-height: 625px;
}

#coa-functions-section .functions-image {
  flex: 0 0 685px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

#coa-functions-section .functions-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to left, #006a7f, transparent);
  z-index: 1;
}

#coa-functions-section .functions-img {
  width: 685px;
  height: 100%;
  object-fit: cover;
}

#coa-functions-section .functions-text-container {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--color-bluetre);
}

#coa-functions-section .functions-text {
  width: 100%;
  padding: 60px;
}

#coa-functions-section .functions-title {
  font-family: var(--font-Poppins);
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin: 0 0 30px 0;
  text-transform: uppercase;
}

#coa-functions-section .functions-title::after {
  content: "";
  display: inline-block;
  width: 500px;
  height: 2px;
  background-color: var(--color-white);
  margin-left: 15px;
  vertical-align: baseline;
}

#coa-functions-section .functions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#coa-functions-section .function-item {
  display: flex;
  align-items: flex-start;
  gap: 0px;
}

#coa-functions-section .function-number {
  font-family: var(--font-Lato);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  flex-shrink: 0;
  min-width: 30px;
}

#coa-functions-section .function-desc {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  margin: 0;
}

/* CO */

#cr-section {
  padding: 0;
  background-color: #ffffff;
  position: relative;
}

#cr-section .title-bar {
  background-color: var(--color-azula18);
  padding: 30px 0;
  text-align: center;
  line-height: 1.2;
}

#cr-section .title {
  font-family: var(--font-opensans);
  font-size: 34px;
  font-weight: 400;
  color: white;
  margin: 0;
  text-transform: uppercase;
}

#cr-section .highlight {
  font-weight: 800;
}

#cr-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0px 60px 0px;
}

#cr-section .intro-text {
  max-width: 100%;
}

#cr-section .intro-desc {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 40px 0;
}

#cr-section .intro-desc strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

#cr-section .section-block {
  margin-bottom: 0;
}

#cr-section .section-title {
  font-family: var(--font-Poppins);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-bluetre);
  text-transform: uppercase;
}

#cr-section .section-desc {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  margin: 0;
}

#cr-section .section-desc strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

#cr-section .cr-content {
  display: flex;
  align-items: flex-start;
  padding: 40px 0 80px 0;
}

#cr-section .cr-image {
  flex: 0 0 621px;
  padding-left: 80px;
  display: flex;
  align-items: center;
}

#cr-section .cr-img {
  width: 621px;
  height: 404px;
  object-fit: contain;
}

#cr-section .functions-section {
  flex: 1;
  padding: 0 40px 0 100px;
}

#cr-section .functions-header {
  margin-bottom: 40px;
}

#cr-section .functions-title {
  font-family: var(--font-Poppins);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-bluetre);
  text-transform: uppercase;
  padding-left: 20px;
}

#cr-section .functions-title::after {
  content: "";
  display: inline-block;
  width: 440px;
  height: 2px;
  background-color: var(--color-bluetre);
  margin-left: 15px;
  vertical-align: baseline;
}

#cr-section .functions-subtitle {
  font-family: var(--font-Lato);
  font-size: 20px;
  font-weight: 600;
  color: #6a6a6a;
  margin: 0;
  text-transform: uppercase;
  padding-left: 20px;
  line-height: 1.2;
}

#cr-section .functions-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

#cr-section .function-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

#cr-section .function-bullet {
  font-size: 30px;
  color: var(--color-bluetre);
  flex-shrink: 0;
  margin-top: 2px;
}

#cr-section .function-desc {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

/* Marco legal */

#marco-legal-section {
  position: relative;
}

#marco-legal-section .marco-legal-header {
  background-color: var(--color-azula18);
  padding: 20px 0;
  text-align: center;
  margin: 50px 0;
}

#marco-legal-section .shadow-effect {
  position: absolute;
  top: -42.8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1920px;
  height: 20px;
  background-image: url("../img/quienes-somos/shadowmain.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

#marco-legal-section .marco-legal-title {
  font-family: var(--font-opensans);
  font-size: 41px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

#marco-legal-section .title-highlight {
  font-weight: 800;
}

#marco-legal-section .protocolizacion-section {
  position: relative;
  height: 461px;
  background-image: url("../img/marco-legal/background-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

#marco-legal-section .protocolizacion-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#marco-legal-section .protocolizacion-text {
  max-width: 600px;
}

#marco-legal-section .protocolizacion-subtitle {
  font-family: var(--font-opensans);
  font-size: 70px;
  font-weight: 800;
  color: var(--color-bluetre);
  margin: 0 0 40px 0;
  text-transform: uppercase;
  line-height: 1.1;
}

#marco-legal-section .protocolo-text {
  font-family: var(--font-JosefinSans);
  font-weight: 400;
  font-size: 45px;
}

#marco-legal-section .estatutos-text {
  font-family: var(--font-opensans);
}

#marco-legal-section .protocolizacion-btn {
  display: inline-block;
  background-color: var(--color-azula18);
  color: var(--color-white);
  font-family: var(--font-opensans);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 80px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

#marco-legal-section .marco-legal-images {
  padding-bottom: 50px;
  background-color: #ffffff;
}

#marco-legal-section .marco-legal-images .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#marco-legal-section .images-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

#marco-legal-section .image-item {
  flex: 0 0 auto;
}

#marco-legal-section .legal-img {
  width: 450px;
  height: 606px;
  object-fit: cover;
  display: block;
}

/*Documentos*/

.documentos-section {
  padding: 40px 0 80px 0;
  background-color: #f8f9fa;
  min-height: 800px;
}

.documentos-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
}

.documentos-sidebar {
  width: 300px;
  flex-shrink: 0;
}

.download-button {
  background-color: var(--color-blue9e);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-family: var(--font-Oswald);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  height: 100px;
}

.download-icon {
  width: 22px;
  height: 25px;
  object-fit: contain;
}

.categories-menu {
  background-color: white;
  overflow: hidden;
}

.category-item {
  border-bottom: 1px solid #e9ecef;
}

.category-item:last-child {
  border-bottom: none;
}

.category-header {
  background-color: var(--color-azula18);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-opensans);
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.category-header:hover,
.category-header.active {
  background-color: var(--color-azula18);
}

.category-header i {
  transition: transform 0.3s ease;
}

.triangle-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f8f9fa;
}

.category-submenu.open {
  max-height: 1000px;
}

.submenu-item:last-child {
  border-bottom: none;
}

.submenu-item a {
  display: block;
  padding: 12px 20px;
  color: #495057;
  text-decoration: none;
  font-family: var(--font-opensans);
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 400;
  background-color: #efefef;
  margin: 3px 0;
}

.submenu-item a:hover {
  color: #3097b6;
}
.submenu-item.active a {
  color: #3097b6;
  font-weight: 800;
}

.documentos-content {
  flex: 1;
}

.content-header {
  background-color: var(--color-blue9e);
  padding: 50px 30px;
  margin-bottom: 30px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-title {
  font-family: var(--font-opensans);
  font-size: 35px;
  font-weight: 500;
  color: white;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}

.title-highlight {
  font-weight: 900;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 0;
}

.document-card {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  box-shadow: none;
  transition: none;
  cursor: pointer;
  position: relative;
}

.document-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 218px;
  height: 230px;
  background-image: url("../img/documentos/shadow.png");
  background-size: cover;
  z-index: 0;
}

.document-card:hover {
  transform: none;
  box-shadow: none;
}

.document-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.pdf-image {
  width: 200px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.document-info {
  text-align: center;
}

.document-description {
  font-family: var(--font-Lato);
  font-size: 18px;
  color: #3f3f3f;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.no-documents {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  font-family: var(--font-opensans);
  font-size: 18px;
}

.documentos-section .shadow-effect {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1920px;
  height: 20px;
  background-image: url("../img/headerweb/shadow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 2;
}

/*Eventos-y-noticias*/

#eventos-noticias {
  padding: 40px 0 80px 0;
  background-color: var(--color-white);
  min-height: 800px;
}

.eventos-noticias-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 50px;
}

.eventos-noticias-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.eventos-noticias-categories-header {
  display: none;
  background-color: var(--color-azula18);
  color: white;
  padding: 20px;
  align-items: center;
  gap: 15px;
  font-family: var(--font-Oswald);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.eventos-noticias-categories-header i {
  font-size: 20px;
}

.eventos-noticias-menu {
  background-color: white;
  overflow: hidden;
}

.eventos-noticias-category-item {
  border-bottom: 1px solid #e9ecef;
}

.eventos-noticias-category-item:last-child {
  border-bottom: none;
}

.eventos-noticias-category-header {
  background-color: var(--color-azula18);
  color: white;
  padding: 15px 20px;
  font-family: var(--font-opensans);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.eventos-noticias-category-header:hover {
  background-color: var(--color-bluepr);
}

.eventos-noticias-submenu {
  background-color: #f8f9fa;
  display: none;
}

.eventos-noticias-category-item.open .eventos-noticias-submenu {
  display: block;
}

.eventos-noticias-submenu-item {
  margin: 3px 0;
}

.eventos-noticias-submenu-item a {
  display: block;
  padding: 12px 20px;
  color: #495057;
  text-decoration: none;
  font-family: var(--font-opensans);
  font-size: 14px;
  font-weight: 400;
  background-color: #efefef;
  transition: all 0.3s ease;
}

.eventos-noticias-submenu-item a:hover {
  color: var(--color-azula18);
}

.eventos-noticias-submenu-item.active a {
  color: var(--color-azula18);
  font-weight: 700;
}

.eventos-noticias-content {
  flex: 1;
}

.eventos-noticias-article {
  background-color: #f3f3f3;
  display: flex;
  overflow: visible;
  margin-bottom: 50px;
  align-items: center;
  padding: 20px 0;
  margin-left: 50px;
}

.eventos-noticias-article-image {
  width: 298px;
  height: 241px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 0;
  background-color: var(--color-white);
  margin-left: -50px;
  z-index: 0;
}

.eventos-noticias-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eventos-noticias-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--color-azula18);
  color: white;
  padding: 10px 15px;
  text-align: center;
  font-family: var(--font-Oswald);
  line-height: 1;
}

.eventos-noticias-day {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.eventos-noticias-month {
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.eventos-noticias-year {
  font-size: 12px;
  font-weight: 400;
  display: block;
}

.eventos-noticias-article-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.eventos-noticias-article-header {
  background-color: var(--color-bluea7f);
  color: white;
  padding: 15px 25px;
  margin: -30px -30px 20px -45px;
  z-index: 2;
}

.eventos-noticias-article-header h2 {
  font-family: var(--font-opensans);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.eventos-noticias-article-text {
  flex: 1;
  margin-bottom: 20px;
}

.eventos-noticias-article-text p {
  font-family: var(--font-opensans);
  font-size: 14px;
  line-height: 1.5;
  color: #2d4d64;
  margin: 0;
}

.eventos-noticias-article-footer {
  display: flex;
  justify-content: flex-end;
}

.eventos-noticias-read-more {
  background-color: var(--color-azula18);
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  font-family: var(--font-opensans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  position: absolute;
  bottom: -20px;
  right: 60px;
}

.eventos-noticias-read-more:hover {
  background-color: var(--color-bluepr);
  color: white;
  text-decoration: none;
}

.eventos-noticias-no-content {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  font-family: var(--font-opensans);
  font-size: 18px;
  font-weight: 400;
}

/*detalleNoticia*/

#detalle-noticia {
  background-color: #ffffff;
  min-height: 100vh;
}

#detalle-noticia .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.detalle-noticia-header {
  background-color: var(--color-azula18);
  padding: 30px 0;
  position: relative;
}

.detalle-noticia-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detalle-noticia-header .noticia-titulo {
  font-family: var(--font-opensans);
  font-size: 41px;
  font-weight: 400;
  color: white;
  margin: 0;
  text-transform: uppercase;
  flex: 1;
  line-height: 1;
  padding: 0 15px;
}

.detalle-noticia-header .btn-regresar {
  background-color: var(--color-white);
  color: var(--color-azula18);
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-opensans);
  font-weight: 400;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: inherit;
}

.detalle-noticia-header .btn-regresar i {
  font-size: 20px;
}

.detalle-noticia-content {
  padding: 60px 0;
}

.detalle-noticia-content .noticia-imagen {
  text-align: center;
  margin-bottom: 40px;
}

.detalle-noticia-content .noticia-imagen img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.noticia-info .noticia-meta {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.noticia-info .titulo-principal {
  flex: 1;
  margin: 0;
}

.noticia-info .titulo-principal h2 {
  font-family: var(--font-Poppins);
  font-size: 30px;
  font-weight: 700;
  color: #3d3d3d;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.noticia-info .fecha-compartir {
  display: flex;
  align-items: center;
  gap: 20px;
}

.noticia-info .fecha-publicacion {
  font-family: var(--font-Poppins);
  font-size: 18px;
  color: #838383;
  font-weight: 500;
  white-space: nowrap;
}

.noticia-info .botones-compartir {
  display: flex;
  align-items: center;
  gap: 12px;
}

.noticia-info .separador {
  width: 1px;
  height: 50px;
  background-color: #cccccc;
}

.noticia-info .share-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.noticia-info .compartir-icono {
  color: #666666;
  font-size: 16px;
  margin-right: 5px;
}

.noticia-info .btn-social {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.noticia-info .btn-social.facebook {
  background-color: #005a98;
}

.noticia-info .btn-social.twitter {
  background-color: #1ea3f2;
}

.noticia-info .btn-social.whatsapp {
  background-color: #1bd741;
  font-size: 26px;
}

.noticia-info .btn-social:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.noticia-descripcion {
  font-family: var(--font-Lato);
  font-size: 16px;
  line-height: 1.8;
  color: #616161;
  margin-bottom: 40px;
}

.noticia-descripcion p {
  margin-bottom: 20px;
}

.noticia-descripcion strong {
  color: var(--color-bluetre);
  font-weight: 700;
}

.archivo-url,
.archivo-adjunto {
  margin: 40px 0;
  text-align: center;
}

.btn-mas-info,
.btn-descargar {
  display: inline-block;
  background-color: var(--color-azula18);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-family: var(--font-opensans);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-mas-info:hover,
.btn-descargar:hover {
  background-color: var(--color-bluepr);
  text-decoration: none;
  transform: translateY(-2px);
}

.archivo-adjunto img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.comentarios-existentes {
  background-color: #f8f9fa;
  padding: 50px 0;
  border-top: 1px solid #e9ecef;
}

.comentarios-titulo {
  font-family: var(--font-Poppins);
  font-size: 30px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.comentario-item {
  background-color: white;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 4px solid #3d3d3d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comentario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.comentario-nombre {
  font-family: var(--font-Lato);
  font-size: 18px;
  font-weight: 700;
  color: #363636;
}

.comentario-fecha {
  font-family: var(--font-Lato);
  font-size: 14px;
  color: #363636;
}

.comentario-texto {
  font-family: var(--font-Lato);
  font-size: 16px;
  line-height: 1.6;
  color: #616161;
  margin: 0;
}

.formulario-comentarios {
  padding: 60px 0;
  background-color: white;
}

.form-titulo {
  font-family: var(--font-Poppins);
  font-size: 36px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-subtitulo {
  font-family: var(--font-Lato);
  font-size: 15px;
  color: #5a5a5b;
  margin-bottom: 20px;
}

.form-comentario {
  max-width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  width: 100%;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  font-family: var(--font-Arial);
  font-size: 15px;
  color: #000001;
  background-color: #e6e6e6;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-azula18);
  box-shadow: 0 0 0 3px rgba(0, 129, 168, 0.1);
}

.form-group textarea {
  min-height: 50px;
  max-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.btn-enviar {
  background-color: #04607b;
  color: white;
  padding: 13px 45px !important;
  border: none;
  border-radius: 50px;
  font-family: var(--font-Arial);
  font-weight: 600 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-enviar:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*galeria-fotografica*/

#galeria-hero {
  background-image: url("/assets/img/galeria/seccion/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  position: relative;
}

.galeria-hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.galeria-hero-content {
  display: flex;
  align-items: center;
  min-height: 400px;
}

.galeria-hero-left {
  flex: 1.8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.galeria-hero-logo img {
  max-width: 325px;
  height: auto;
}

.galeria-hero-text h1 {
  font-family: var(--font-JosefinSans);
  font-size: 45px;
  font-weight: 500;
  color: #000001;
  line-height: 1;
}

.galeria-hero-text h2 {
  font-family: var(--font-opensans);
  font-size: 40px;
  font-weight: 800;
  color: #2d8394;
  margin: 0;
  line-height: 1;
}

.galeria-hero-right {
  flex: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.galeria-hero-video {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#vimeo-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 16/11;
}
#galeria-fotografica {
  background-color: white;
  padding: 0;
}

.galeria-fotografica-header {
  background-color: var(--color-azula18);
  padding: 30px 0;
  text-align: center;
}

.galeria-fotografica-header h2 {
  font-family: var(--font-opensans);
  font-size: 41px;
  font-weight: 400;
  color: white;
  margin: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.galeria-fotografica-header h2 span {
  font-weight: 800;
}

.galeria-fotografica-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.galeria-fotografica-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 50px;
  column-gap: 25px;
  align-items: start;
}

.galeria-item {
  transition: transform 0.3s ease;
}

.galeria-card {
  background-color: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.galeria-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.galeria-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.galeria-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.galeria-date {
  position: absolute;
  bottom: 15px;
  left: 0px;
  background-color: var(--color-azula18);
  color: white;
  padding: 4px 15px;
  font-family: var(--font-Myriad);
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 200px;
}

.galeria-title {
  padding: 15px 25px;
  text-align: left;
  background-color: #0081a8;
  margin-top: 5px;
}

.galeria-title h3 {
  font-family: var(--font-Poppins);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.galeria-item a {
  text-decoration: none;
  color: inherit;
}

.galeria-item a:hover {
  text-decoration: none;
  color: inherit;
}

/*detalle-galeria*/

#detalle-galeria {
  background-color: #f8f9fa;
  padding: 0 0 40px 0;
  min-height: 100vh;
}

.detalle-galeria-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

#detalle-galeria .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#detalle-galeria .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detalle-galeria-header {
  background-color: var(--color-azula18);
  padding: 30px 0;
  position: relative;
}

.detalle-galeria-title h1 {
  font-family: var(--font-opensans);
  font-size: 41px;
  font-weight: 400;
  color: white;
  margin: 0;
  text-transform: uppercase;
  flex: 1;
  line-height: 1;
  padding: 0 15px;
}

.detalle-galeria-back a {
  background-color: var(--color-white);
  color: var(--color-azula18);
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-opensans);
  font-weight: 400;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: inherit;
}

#detalle-galeria .detalle-galeria-back i {
  font-size: 20px;
}

.detalle-galeria-back a:hover {
  text-decoration: none;
}

.detalle-galeria-content {
  background: transparent;
  padding: 40 0px;
}

.detalle-galeria-section {
  margin-bottom: 50px;
}

.detalle-galeria-section:last-child {
  margin-bottom: 0;
}

.detalle-galeria-section h2 {
  font-size: 32px;
  color: #3d3d3d;
  margin-bottom: 15px;
  font-weight: 600;
}

.detalle-galeria-section h3 {
  font-family: var(--font-Poppins);
  font-size: 23px;
  color: #3d3d3d;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.detalle-galeria-section p {
  font-family: var(--font-Poppins);
  font-size: 18px;
  color: #3d3d3d;
  margin-bottom: 25px;
  line-height: 1.2;
}

.detalle-galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.detalle-galeria-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  width: 253px;
  height: 275px;
}

.detalle-galeria-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 74, 74, 0.7);
  background-image: url("/assets/img/galeria/seccion/lupa.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.detalle-galeria-item:hover::before {
  opacity: 1;
}

.detalle-galeria-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.detalle-galeria-item img {
  width: 253px;
  height: 275px;
  transition: transform 0.3s ease;
  display: block;
}

.detalle-galeria-item:hover img {
  transform: scale(1.05);
}

.detalle-galeria-empty {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px dashed #dee2e6;
}

.detalle-galeria-empty p {
  font-size: 1.2rem;
  color: #6c757d;
  margin: 0;
}

.detalle-galeria-video-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detalle-galeria-video-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #3d3d3d;
}

.detalle-galeria-video-item h3 {
  font-family: var(--font-Poppins);
  color: #2b2b2b;
  margin-bottom: 10px;
  font-size: 20px;
}

.detalle-galeria-video-item p {
  font-family: var(--font-Lato);
  margin-bottom: 15px;
  color: #616161;
}

.detalle-galeria-video-link {
  font-family: var(--font-opensans);
  font-size: 14px;
  display: inline-block;
  background: var(--color-azula18);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.detalle-galeria-video-link:hover {
  background-color: var(--color-bluepr);
  color: white;
  text-decoration: none;
}

/*registro*/

#textReg1 {
  padding: 30px 0;
}

#textReg1 .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #006a7f;
}

#textReg2 .container-registro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 10px;
  background-color: var(--color-white);
}

#textReg2 .container-pagos {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 0;
  background-color: var(--color-white);
}

.titleDoc1 {
  font-family: var(--font-opensans);
  font-weight: 500;
  font-size: 41px;
  padding: 15px 0;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.titleReg2 {
  font-family: var(--font-Lato);
  font-weight: 400;
  font-size: 17px;
  color: #5e5e5e;
  text-align: center;
  padding: 10px 0;
}

#frmRegistro .gridone {
  display: grid;
  gap: 10px;
}

#frmRegistro .cols-3,
#frmRegistro .cols-email-inst {
  grid-template-columns: 1fr 1fr 1fr;
}

#frmRegistro .cols-email-inst .form-group:last-child {
  grid-column: 2 / 4;
}

#frmRegistro .cols-area-nivel {
  grid-template-columns: 1fr 1fr;
}

#frmRegistro .cols-documentos {
  grid-template-columns: 1fr 1fr;
}

#frmRegistro {
  overflow: hidden;
}

#frmRegistro .form-group {
  box-sizing: border-box;
  margin-bottom: 10px;
}

#frmRegistro .form-control {
  display: block;
  height: 62px;
  border-radius: 0;
  font-family: "Poppins", serif;
  font-size: 12px;
  font-weight: 400;
  color: #949494;
  width: 100%;
  background-color: #ececec;
  padding: 0;
  padding-left: 20px;
  box-sizing: border-box;
  width: 100% !important;
}

#frmRegistro input[type="submit"],
#frmRegistro input[type="reset"] {
  display: inline-block;
  height: 42px;
  background: url(/assets/img/submit.png) center no-repeat;
  color: #ffffff;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: 11px;
  width: 83px;
  text-align: center;
  font-weight: 400;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

#frmRegistro input[type="submit"]:hover,
#frmRegistro input[type="reset"]:hover {
  opacity: 0.8;
}

#frmRegistro .error input,
#frmRegistro .error select,
#frmRegistro .error textarea {
  border: solid 1px #000;
  background: rgba(255, 216, 217, 1);
  color: #000;
}

.frmRegistro input::-webkit-input-placeholder {
  color: #808080;
  opacity: 1;
}
.frmRegistro input:-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.frmRegistro input::-moz-placeholder {
  color: #808080;
  opacity: 1;
}
.frmRegistro input:-ms-input-placeholder {
  color: #808080;
  opacity: 1;
}

#frmRegistro select {
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("/assets/img/caret2.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 50%;
}

.contentArchivo {
  max-width: 576px;
  height: 166px;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 3px;
  background-color: #ececec;
}

.rowArchivo2 .contentArchivo,
.rowArchivo2 .btnAdjuntarCV {
  margin-left: auto;
}

.titleArchivo {
  color: #616161;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0.25px;
  text-align: center;
  text-transform: uppercase;
}

.subtitleArchivo {
  color: #808080;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  text-align: center;
  letter-spacing: 0.25px;
  margin-top: 3px;
  margin-bottom: 10px;
}

.cvAdjunto {
  background: url(/assets/img/registro/rojo.png);
  width: 329px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  color: #ffffff;
  border-radius: 25px;
}

.cvAdjunto.archivoAdjunto {
  background: url(/assets/img/registro/verde.png);
}

.cvAdjunto img {
  margin-right: 8px;
}

.btnAdjuntarCV {
  background: url(/assets/img/registro/subir.png) center no-repeat;
  background-size: cover;
  height: 57px;
  max-width: 576px;
  position: relative;
  cursor: pointer;
}

#btnAdjuntarCV1,
#btnAdjuntarCV2 {
  overflow: auto;
}

#btnAdjuntarCV1 input[type="file"],
#btnAdjuntarCV2 input[type="file"] {
  width: 100%;
  height: 57px;
  opacity: 0;
  cursor: pointer;
}

#textReg2 .section-factura {
  height: auto;
  background-image: url("/assets/img/registro/bg/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

#textReg2 .container-factura {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: transparent;
}

.contentPagos3 {
  padding: 80px 0 50px 0;
}

#formFactura {
  margin-right: auto;
  margin-left: auto;
}

#formFactura .row {
  margin: 0 -6.5px;
}

#formFactura div[class*="col-"] {
  padding: 0 6.5px;
}

#formFactura .form-group {
  margin-bottom: 10px;
}

#formFactura .form-control {
  display: block;
  border-radius: 0;
  font-family: "Lato", serif;
  font-size: 13.5px;
  color: #707070;
  box-shadow: inset 0 1px 1px transparent;
  padding: 6px 12px;
  width: 100%;
  background-color: var(--color-white);
}

.titlePagosMForm {
  text-align: center;
  color: #5a5a5a;
  font-family: var(--font-Lato);
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  position: relative;
  background-color: var(--color-white);
  padding: 10px 0;
}

.titlePagosMForm label {
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.titlePagosMForm .label-separator {
  width: 130px;
  height: 1.5px;
  background-color: #d0d0d0;
  display: block;
  margin: 10px auto;
  position: relative;
}

.titlePagosMForm .label-separator::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 3.5px;
  background-color: #006a7f;
}

.titlePagosMForm input[type="radio"] {
  opacity: 0;
}

.titlePagosMForm input[type="radio"] + i:after {
  content: "";
  position: absolute;
  top: 10px;
  left: -2px;
  width: 16px;
  height: 16px;
  background: url(/assets/img/registro/cuadro.png);
}

.titlePagosMForm input[type="radio"]:checked + i:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0px;
  width: 19px;
  height: 18px;
  background: url(/assets/img/registro/check.png);
  z-index: 2;
}

#dateFacturas {
  display: none;
}
#dateFacturas .separador {
  padding: 50px 0 0 0;
}
#formFactura .cols-razon-rfc,
#formFactura .cols-calle-nums,
#formFactura .cols-cuatro-iguales {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

#formFactura .cols-razon-rfc .form-group:first-child {
  grid-column: 1 / 3;
}
#formFactura .cols-razon-rfc .form-group:last-child {
  grid-column: 3 / 5;
}

#formFactura .cols-calle-nums .form-group:first-child {
  grid-column: 1 / 3;
}

#dateFacturas.open {
  display: block;
}

.textodatosPago {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #4e4e4e;
  text-align: center;
}

.tit1p {
  padding-bottom: 20px;
}

#textReg2 .textodatosPago strong {
  color: var(--color-bluetre);
}

.tit2p {
  padding-bottom: 10px;
  padding-top: 10px;
}

.cntCapcha {
  text-align: center;
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #5e5e5e;
  margin: 30px 0;
}

.cntCapcha label {
  font-weight: 400;
  font-size: 11px;
}

.cntCapcha .capcha {
  margin-right: auto;
  margin-left: auto;
  display: inline-block;
}

.cntCap {
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading {
  background-size: 60% auto;
  display: block;
  width: 100px;
  height: 100px;
  position: fixed;
  left: 50%;
  margin-left: -50px;
  top: 50%;
  margin-top: -50px;
  z-index: 99999 !important;
}
.basic-spinner {
  display: inline-block;
  margin: 0 auto;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/site-spinner-240.png);
  width: 100px;
  height: 100px;
  -webkit-animation: full-rotation 1s infinite linear;
  -moz-animation: full-rotation 1s infinite linear;
  animation: full-rotation 1s infinite linear;
}
.basic-spinner.isHidden {
  display: none;
}
.ua-ie-7 .basic-spinner,
.ua-ie-8 .basic-spinner,
.ua-ie-9 .basic-spinner {
  background-image: url(../images/site-spinner-100.gif);
}
@-webkit-keyframes full-rotation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes full-rotation {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes full-rotation {
  from {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes full-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*contacto*/
#formTop {
  padding: 40px 0;
  background: var(--color-white);
}

#formTop .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.frmContacto {
  width: 100%;
  background: white;
  padding: 40px 0;
}

.membership-header {
  background: #006a7f;
  color: white;
  text-align: center;
  padding: 10px 20px;
}

.membership-header h2 {
  margin: 0;
  font-family: var(--font-opensans);
  font-size: 41px;
  font-weight: 600;
}

.form-subtitle {
  font-family: var(--font-Poppins);
  text-align: center;
  color: #605f5f;
  font-size: 18px;
  margin: 30px 0;
  font-weight: 300;
}
.form-subtitle strong {
  font-weight: 600;
  color: #103a80;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  margin-bottom: 30px;
}

#formTop .form-control {
  display: block;
  height: 62px;
  border-radius: 0;
  font-family: "Poppins", serif;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  width: 100%;
  background-color: #ececec;
  padding: 0;
  padding-left: 20px;
  box-sizing: border-box;
  width: 100% !important;
}

#formTop .form-control.textarea {
  padding: 20px;
  height: 70px;
  max-height: 120px;
}

.form-control:focus {
  outline: none;
  border-color: #2c7a7b;
  background: white;
}

.textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.submit-container {
  text-align: center;
}

#formTop .btnEnviar {
  display: inline-block;
  height: 42px;
  background: url(/assets/img/submit.png) center no-repeat;
  color: #ffffff;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: 11px;
  width: 83px;
  text-align: center;
  font-weight: 400;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.btnEnviar:hover {
  background: #285e61;
}

.btnEnviar:disabled {
  background: #ccc;
  cursor: not-allowed;
}

#frmContacto input[type="submit"]:hover,
#frmContacto input[type="reset"]:hover {
  opacity: 0.8;
}
#frmContacto .error input,
#frmContacto .error textarea {
  border: solid 1px #000;
  background: rgba(255, 216, 217, 1);
  color: #000;
}
#frmContacto .has-error input {
  border-color: #a94442;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}

a#toTop {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  background: var(--color-bluemain);
  box-shadow: 0 0 3px 2px #fff;
  left: 40px;
  bottom: 65px;
  display: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 20;
}

a#toTop::before {
  content: "\f077";
  font-family: FontAwesome;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-align: center;
}
