#menu15 .container-fluid .logo .img-responsive {
  max-width: 100px;
  height: auto;
  padding: 15px;
}

#menu15 {
  padding: 0;
}

#slider10 .container-fluid {
  padding: 0;
}

#filtro7 {
  margin-top: 60px;
}

#slider7 {
  display: none;
}

/* MAIN 1 */
#titulo2 .cabecera_fullwidth {
  background-image: url(../../img/demopro/titleimg1.png);
  background-size: cover;
  display: flex;
  width: 100%;
  height: 759px;
  align-items: flex-end;
}

#titulo2 .cabecera_fullwidth .opacidad {
  background-color: rgba(0, 0, 0, 0.0);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#titulo2 .container .container-txt {
  bottom: 300px;
}

#titulo2 .titulo {
  color: var(--Primary-OFFwhite, #eaedf2);
  font-size: 96px;
}

#titulo2 .subtitulo {
  color: var(--Primary-OFFwhite, #eaedf2);
  font-size: 24px;
}

/* BLOG 1 */
#blog1 {
  background-color: rgba(255, 255, 255, 0.8);
}

#blog1 .container {
  width: 95vw;
  margin-top: 140px;
}

#blog1 .col-xs-10 {
  grid-template: auto auto / 1fr 1fr 1fr;
  grid-template-areas:
    "section1 section1 section2"
    "section3 section4 section5";
  gap: 40px;
  width: 100%;
  margin: 0 auto;
}

#blog1 section {
  display: flex;
  flex-direction: column;
}

#blog1 section:nth-child(1) {
  grid-area: section1;
}

#blog1 section:nth-child(2) {
  grid-area: section2;
}

#blog1 section:nth-child(3) {
  grid-area: section3;
}

#blog1 section:nth-child(4) {
  grid-area: section4;
}

#blog1 section:nth-child(5) {
  grid-area: section5;
}

#blog1 section:nth-child(1),
#blog1 section:nth-child(2) {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 600px;
  padding: 0;
}

#blog1 section:nth-child(1) .row,
#blog1 section:nth-child(2) .row {
  margin: 0;
  height: 600px;
}

#blog1 section:nth-child(1) .contImg,
#blog1 section:nth-child(2) .contImg {
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

#blog1 section:nth-child(1) .contImg img,
#blog1 section:nth-child(2) .contImg img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

#blog1 section:nth-child(3) .contImg img,
#blog1 section:nth-child(4) .contImg img,
#blog1 section:nth-child(5) .contImg img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

#blog1 section:nth-child(1) .titulo,
#blog1 section:nth-child(2) .titulo {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 2;
  transition: all 0.3s ease;
}

#blog1 section .titulo h2 {
  font-family: "Barlow Condensed";
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
}

#blog1 section .descripcion,
#blog1 section .footer {
  padding: 0 50px;
}

#blog1 section .titulo h2 {
  text-align: center;
}

#blog1 section:nth-child(1) .titulo h2,
#blog1 section:nth-child(2) .titulo h2 {
  color: #eaedf2;
  text-align: center;
  transition: all 0.4s ease;
}

#blog1 section:nth-child(1) .descripcion,
#blog1 section:nth-child(1) .footer,
#blog1 section:nth-child(2) .descripcion,
#blog1 section:nth-child(2) .footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.4s ease;
  z-index: 3;
  background: transparent;
  border-radius: 20px;
}

#blog1 section:nth-child(2) .descripcion,
#blog1 section:nth-child(2) .footer {
  padding: 0 50px;
}

#blog1 section:nth-child(1) .descripcion,
#blog1 section:nth-child(2) .descripcion,
#blog1 section:nth-child(3) .descripcion,
#blog1 section:nth-child(4) .descripcion,
#blog1 section:nth-child(5) .descripcion {
  text-align: center;
  margin-bottom: 20px;
}

#blog1 section:nth-child(1):hover .contImg::after,
#blog1 section:nth-child(2):hover .contImg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  transition: all 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

#blog1 section:nth-child(1):hover .titulo,
#blog1 section:nth-child(2):hover .titulo {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background: transparent;
  text-align: center;
  padding: 0 15px;
}

#blog1 section:nth-child(1):hover .titulo h2,
#blog1 section:nth-child(2):hover .titulo h2 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

#blog1 section:nth-child(1):hover .descripcion,
#blog1 section:nth-child(1):hover .footer,
#blog1 section:nth-child(2):hover .descripcion,
#blog1 section:nth-child(2):hover .footer {
  visibility: visible;
  transform: translateY(0);
}

#blog1 section:nth-child(1):hover .descripcion,
#blog1 section:nth-child(2):hover .descripcion {
  bottom: 150px;
}

#blog1 section:nth-child(1):hover .footer,
#blog1 section:nth-child(2):hover .footer {
  bottom: 100px;
}

/* BANNER SENCILLO 1 */

#banner-sencillo {
  display: flex;
  padding: 104px 36px 104px 42px;
  justify-content: flex-end;
  align-items: center;
}

#banner-sencillo .container {
  max-width: 95vw;
  padding: 0;
}

#banner-sencillo .row {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  background: var(--Primary-Blue3, #002060);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 0 0;
}

#banner-sencillo .col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  padding: 40px 40px;
  margin: 0;
  width: 50%;
}

#banner-sencillo .col-md-4 h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: white;
}

#banner-sencillo .col-md-4 p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: white;
  opacity: 0.95;
}

#banner-sencillo .container .col-md-8 {
  width: 55vw;
  height: 400px;
  flex-shrink: 0;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(270deg, rgba(0, 32, 96, 0.0) 36.02%, #002060 100%), url(../../img/demopro/bannerImg.jpg) lightgray 50% / cover no-repeat;
  background-blend-mode: normal, multiply;
  mix-blend-mode: luminosity;
}

#banner-sencillo .col-md-4 button {
  border-radius: 6px;
  background-color: #ff6900;
}

/*  Blog Entrada */
#blog_entrada3 .nube_categorias+ul li {
  display: none;
}

#blog_entrada3 .container,
#blog_entrada3 .row,
#blog_entrada3 .col-xs-12,
#blog_entrada3 .col-sm-12,
#blog_entrada3 .col-md-12,
#blog_entrada3 .col-lg-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#blog_entrada3 .card_blog .titulo_card {
  position: absolute;
  top: -4%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
  text-align: center;
  padding: 0 20px;
  font-size: 64px;
  width: 100%;
}

#blog_entrada3 .card_blog .imagen img {
  width: 1185px;
  height: 472px;
  max-width: 100%;
}

#blog_entrada3 .card_blog .fecha {
  margin-top: 40px;
  align-items: center;
}

#blog_entrada3 .card_blog p img {
  width: 1189px;
  height: 595px;
}



/* BLOG RECIENTES 3 */

#blog_recientes3 .container-fluid {
  background-color: rgba(255, 255, 255, 0);
  display: flex;
  justify-content: center;
}

#blog_recientes3 .container-fluid .row {
  max-width: 1537px;
  width: 100%;
}

#blog_recientes3 article {
  width: 100%;
  height: 100%;
}

#blog_recientes3 article .tr03 {
  width: 100%;
  height: auto;
  min-height: 600px;
  padding: 0;
}

#blog_recientes3 article .tr03 .row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#blog_recientes3 article .tr03 .row .img-responsive {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 544 / 400;
  object-fit: cover;
  border-radius: 8px;
}

#blog_recientes3 article .tr03 .row .titulo_card {
  text-align: center;
  font-size: 28px;
  margin-top: 15px;
  width: 100%;
  padding: 0 15px;
}

#blog_recientes3 article .tr03 .row .fecha {
  text-align: center;
  font-size: 16px;
  margin-top: 15px;
  width: 100%;
  padding: 0 15px;
}

#blog_recientes3 .texto {
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  padding: 10px 20px 0px 20px;
  font-size: 18px;
  text-align: center;
  width: 100%;
}

/* Swiper Container */
#blog_recientes3 .slider-blog-1 {
  position: relative;
  padding-left: 100px;
  overflow: hidden;
  width: 100%;
}

#blog_recientes3 .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

#blog_recientes3 .swiper-slide {
  width: auto;
  height: auto;
}

/* Navigation Arrows - Both on Left Side */
#blog_recientes3 .swiper-button-prev,
#blog_recientes3 .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #e8e8e8;
  border-radius: 50%;
  left: 20px;
  right: auto;
  margin-top: 0;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#blog_recientes3 .swiper-button-prev:hover,
#blog_recientes3 .swiper-button-next:hover {
  background-color: #d0d0d0;
}

#blog_recientes3 .swiper-button-prev {
  transform: translateY(calc(-50% - 35px));
}

#blog_recientes3 .swiper-button-next {
  transform: translateY(calc(-50% + 35px));
}

#blog_recientes3 .swiper-button-prev::after,
#blog_recientes3 .swiper-button-next::after {
  font-size: 20px;
  color: #333;
  font-weight: bold;
}

#blog_recientes3 .swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

#blog_recientes3 .swiper-pagination {
  display: none;
}

/* Card styling - removed border and shadow */
#blog_recientes3 .card_blog {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

/* Remove hover effects on links */
#blog_recientes3 a {
  text-decoration: none;
  display: block;
}

#blog_recientes3 a:hover .card_blog {
  box-shadow: none;
  transform: none;
}


/* Responsive */
@media (max-width: 1200px) {
  #titulo2 .titulo {
    font-size: 70px;
  }

  #titulo2 .subtitulo {
    font-size: 28px;
  }

  #banner-sencillo {
    padding: 104px 36px 250px 42px;
  }

  #banner-sencillo .row {
    flex-direction: column;
    height: auto;
  }

  #banner-sencillo .container .col-md-8 {
    order: -1;
    width: 100%;
    height: 300px;
    border-radius: 8px 8px 8px 8px;
    background: linear-gradient(180deg, rgba(0, 32, 96, 0.0) 0%, #002060 100%), url(../../img/demopro/bannerImg.jpg) lightgray 50% / cover no-repeat;
  }

  #banner-sencillo .col-md-4 {
    width: 100%;
    padding: 50px 50px;
  }

  #banner-sencillo .col-md-4 h2 {
    font-size: 42px;
  }

  #banner-sencillo .col-md-4 p {
    font-size: 23px;
  }

  #banner-sencillo .col-md-4 button {
    width: 250px;
  }

  #blog1 section:nth-child(1),
  #blog1 section:nth-child(2) {
    overflow: visible;
    position: static;
    height: auto;
  }

  #blog1 section:nth-child(1) .contImg,
  #blog1 section:nth-child(2) .contImg {
    height: auto;
    position: static;
    padding: 0 15px;
  }

  #blog1 section:nth-child(1) .contImg img,
  #blog1 section:nth-child(2) .contImg img {
    height: 300px;
  }

  #blog1 section:nth-child(1) .titulo,
  #blog1 section:nth-child(2) .titulo {
    position: static;
    visibility: visible;
    padding: 0;
    margin: 20px 0;
  }

  #blog1 section:nth-child(1) .titulo h2,
  #blog1 section:nth-child(2) .titulo h2 {
    color: black;
  }

  #blog1 section:nth-child(1) .descripcion,
  #blog1 section:nth-child(1) .footer,
  #blog1 section:nth-child(2) .descripcion,
  #blog1 section:nth-child(2) .footer {
    position: static;
    visibility: visible;
    transform: none;
    padding: 10px 0;
    background: transparent;
    padding: 0 50px;
  }

  #blog1 section:nth-child(1):hover .contImg::after,
  #blog1 section:nth-child(2):hover .contImg::after {
    content: none;
  }

  #blog1 section:nth-child(1):hover .titulo,
  #blog1 section:nth-child(2):hover .titulo {
    position: static;
    transform: none;
  }

  #blog1 section:nth-child(1):hover .titulo h2,
  #blog1 section:nth-child(2):hover .titulo h2 {
    text-shadow: none;
  }


  #blog_recientes3 .slider-blog-1 {
    padding-left: 80px;
  }

  #blog_recientes3 article .tr03 {
    min-height: 550px;
  }

  #blog_recientes3 article .tr03 .row .titulo_card {
    font-size: 24px;
  }

  #blog_recientes3 article .tr03 .row .fecha,
  #blog_recientes3 .texto {
    font-size: 16px;
  }

  #blog_recientes3 .swiper-button-prev,
  #blog_recientes3 .swiper-button-next {
    width: 45px;
    height: 45px;
  }

}

@media (max-width: 768px) {
  #titulo2 .titulo {
    font-size: 52px;
  }

  #titulo2 .subtitulo {
    font-size: 20px;
  }

  #banner-sencillo .col-md-4 h2 {
    font-size: 32px;
  }

  #banner-sencillo .col-md-4 p {
    font-size: 16px;
  }

  #banner-sencillo .col-md-4 button {
    width: 250px;
  }

  #blog_recientes3 .slider-blog-1 {
    padding-left: 60px;
  }

  #blog_recientes3 article .tr03 {
    min-height: 500px;
  }

  #blog_recientes3 .contTitulo .titulo {
    font-size: 22px;
  }

  #blog_recientes3 article .tr03 .row .fecha,
  #blog_recientes3 .texto {
    font-size: 14px;
  }

  #blog_recientes3 .swiper-button-prev,
  #blog_recientes3 .swiper-button-next {
    width: 40px;
    height: 40px;
    left: 10px;
  }

  #blog_recientes3 .swiper-button-prev::after,
  #blog_recientes3 .swiper-button-next::after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  #titulo2 .titulo {
    font-size: 42px;
  }

  #titulo2 .subtitulo {
    font-size: 18px;
  }

  #blog1 section .titulo h2 {
    font-size: 24px;
  }

  #blog1 section .descripcion,
  #blog1 section .footer {
    font-size: 16px;
  }

  #banner-sencillo {
    padding: 50px 20px 150px 20px;
  }

  #banner-sencillo .col-md-4 h2 {
    font-size: 28px;
  }

  #banner-sencillo .col-md-4 p {
    font-size: 16px;
  }

  #banner-sencillo .col-md-4 button {
    width: 250px;
  }

  #blog_recientes3 .slider-blog-1 {
    padding-left: 50px;
  }

  #blog_recientes3 article .tr03 {
    min-height: 450px;
  }

  #blog_recientes3 .contTitulo .titulo {
    font-size: 20px;
  }

  #blog_recientes3 article .tr03 .row .fecha {
    font-size: 12px;
  }

  #blog_recientes3 .texto {
    font-size: 14px;
    padding: 10px 10px 0px 10px;
  }
}