/********** Template CSS **********/
:root {
    --primary: #053466;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
    --yellow: #FEFD03;
}

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');

.textsimsa {
    margin-left: 12px; 
    font-family: 'Merriweather', serif;
}
i {
    color: var(--primary);
}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.hoverbtn:hover{
    background-color: #F5F5F5;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}

.text-black {
    color: #000000;
}
/*** politicas ***/
.skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 400px;
  gap: 20px;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: 1s;
}

.each {
  background: #f1f3f6;
  box-shadow: inset 0 0 5px rgba(55, 84, 170, 0),
    inset 0 0 10px rgba(255, 255, 255, 0), 5px 5px 9px rgba(55, 84, 170, 0.15),
    -5px -5px 11px white, inset 0px 0px 2px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.2s ease-in-out;
  height: 190px;
  width: 190px;
  border-radius: 30px;
  font-family: Arial, Helvetica, sans-serif;
  border: 5px solid #eaeef5;
}

.skills:hover .each {
  box-shadow: inset 4px 4px 7px rgba(55, 84, 170, 0.15),
    inset -4px -4px 10px white, 0px 0px 2px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.2s ease-in-out;
}

.each .box {
  padding: 16px;
}

.css .box {
  text-align: right;
}

.js .box {
  margin-top: 40px;
}

.ng .box {
  margin-top: 40px;
  text-align: right;
}

.each .box .contentp h2 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 6px;
}

.each .box .contentp p {
  font-size: 12px;
  margin: 0;
}

.html .box .contentp i {
  margin-top: 40px;
}

.css .box .contentp i {
  font-size: 30px;
  margin-left: 100px;
  margin-top: 40px;
}

.js .box .contentp i {
  margin-bottom: 20px;
}

.ng .box .contentp i {
  margin-bottom: 20px;
}

.each .box .contentp i {
  font-size: 30px;
}

.centerp {
  position: absolute;
  height: 160px;
  width: 160px;
  background: #f1f3f6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border-radius: 108px;
  box-shadow: inset 0 0 5px rgba(55, 84, 170, 0),
    inset 0 0 10px rgba(255, 255, 255, 0), 5px 5px 9px rgba(55, 84, 170, 0.15),
    -5px -5px 11px white, inset 0px 0px 2px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.2s ease-in-out;
  border: 10px solid #e8edf5;
}

.centerp .box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.accordion-item {
    margin-bottom: 16px;
    border-radius: 20px;
    border: none;
}	
.accordion-button {
    border: 1px solid black;
    border-radius: 20px;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: rgba(0, 123, 255, 0.25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: rgba(0, 123, 255, 0.25);
}
/*** politicas END***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-logo {
    width: 100px; /* Ajusta el tamaño según tu logo */
    height: 100px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2); /* Aumenta ligeramente el tamaño */
        opacity: 0.8;         /* Reduce la opacidad */
    }
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:last-child {
    margin-right: 0px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Acreditaciones ***/
.image-container {
        position: relative;
    }

    .overlay-icon {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        transition: 0.3s ease;
    }

    .image-container:hover .overlay-icon {
        opacity: 1;
        cursor: pointer;
    }
.hover-shadow img{
    transition: 0.3s ease;
}
.hover-shadow:hover img {
        filter: brightness(40%);
        cursor: pointer;
    }
/*** Acreditaciones ***/
/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 0.6) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/banner.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--primary);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}

/* slideclients*/

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); }
}

.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 960px;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slidec {
    height: 100px;
    width: 250px;
}

/*End slideclients*/
/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}
.btn-play-video {
    border: none;
    outline: none !important;
    background-color: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}


.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: #FFFFFF;
}


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--yellow);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--yellow);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.yellow {
    color: var(--yellow);
}
p {
    text-align: justify!important;
}
span {
    text-align: justify!important;
}
/*
.wcu{
    background-image: url(../img/vectorfondo.png);
    background-color: #b5dcff;
    
} */

.container-photos {
  display: flex;
  /*height: 720px;*/
  
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 16px;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.img-wrapper {
  background-color: lightGray;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /*cursor: pointer;  Cambia el cursor a manito */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.img-wrapper:hover img {
  transform: scale(1.05);
  /* filter: brightness(40%);  Oscurece la imagen */
}

/* Grid spans */
.span-2-1 {
  grid-column: span 2;
  grid-row: span 1;
}

.span-1-4 {
  grid-column: span 1;
  grid-row: span 4;
}

.span-2-2 {
  grid-column: span 2;
  grid-row: span 2;
}

.span-1-2 {
  grid-column: span 1;
  grid-row: span 2;
}

.span-3-2 {
  grid-column: span 3;
  grid-row: span 2;
}
.span-1-1 {
  grid-column: span 1;
  grid-row: span 1;
}

/* .view-icon {
  position: absolute;
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* evita que bloquee el clic 
} */

/* .img-wrapper:hover .view-icon {
  opacity: 1;
} */

.modal-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6); /* negro semitransparente */
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  font-family: 'Segoe UI', sans-serif;
  text-align: left;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
@media (max-width: 576px) {
  /* Aquí van tus estilos especiales para móviles */
  .text-minimized {
    font-size: 11px!important;
  }


  .grid {
    grid-template-columns: repeat(1, 1fr) !important;
    grid-template-rows: auto;
    gap: 12px;
    padding: 10px;
  }

  .img-wrapper {
    width: 100% !important;
    grid-column: span 1 !important;
    grid-row: auto !important;
    height: 250px; /* o el alto que desees para móviles */
  }

  .img-wrapper img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }

  /* .view-icon {
    font-size: 1.5rem;
  } */

  .modal-caption {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .pe-5 {
  padding-right: 1rem !important; 
    }

   a.ps-5 {
    padding-left: 0.5rem !important; /* antes era 3rem (ps-5) */
    font-size: 0.9rem;
    color: #ffffff; /* o el color que desees */
  }
  .img_conoce {	
        height: 480px;
        width: auto;
    }
    .service-item .service-detail {
    position: relative;
    height: auto;
  }

  .service-item .service-title {
    position: relative;
    padding: 20px;
    top: 0;
    transform: none;
    height: auto;
  }

  .service-item .service-text {
    position: relative;
    top: 0 !important;
    height: auto;
    padding: 20px;
    overflow: visible;
    background: rgba(2, 36, 91, .9);
    margin-bottom: 10px;
  }

  .service-item .service-text::before {
    display: none;
  }

  .service-item:hover .service-title,
  .service-item:hover .service-text {
    top: 0;
  }
}

@media (min-width: 577px) {
  /* Aquí van los estilos para tablets, laptops y pantallas grandes */
  .container-photos {
  display: flex;
  height: 720px;
  
  align-items: center;
  justify-content: center;
}
    .img_conoce {	
        width: 400px;
    }
}

/* WORKING HERE */
.youtube-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw; /* Hacemos el video más ancho que la pantalla */
  height: 120vh; /* Y más alto también */
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  border: 0;
}

.overlay-div {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.video-content-container {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-shadow: 1px 1px 3px #000;
}

.gradient-border-responsive {
  background: linear-gradient(45deg, gold, royalblue);
  padding: 8px;
  border-radius: 60% 40% 70% 30% / 50% 30% 70% 50%;;
  width: 100%;
  max-width: 400px; /* tamaño máximo opcional */
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60% 40% 70% 30% / 50% 30% 70% 50%;;
  display: block;
}

.gradient-border-responsive2 {
  background: linear-gradient(88deg, gold, royalblue);
  padding: 8px;
  border-radius: 63% 37% 21% 76% / 65% 75% 25% 34%; /* forma irregular */
  width: 100%;
  max-width: 400px; /* tamaño máximo opcional */
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image-responsive2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 63% 37% 21% 76% / 65% 75% 25% 34%;
  display: block;
}

.experience-box {
  background: linear-gradient(88deg, gold, royalblue); /* borde degradado */
  padding: 8px; /* ancho del borde */
  border-radius: 20px;
  display: inline-block;
}

.experience-content {
  border-radius: 16px;
  padding: 2rem 2rem;
  width: 180px; /* más ancho */
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .align-items-767 {
    align-items: center;
    justify-content: center;
  }
}

/*CSS PAGINA EMPLEADO*/
/* Color personalizado para el título principal */
.text-navy {
    color: #0b1a30; /* Un azul marino muy oscuro, similar al de tu imagen */
}

/* Espaciado de letras para el subtítulo rojo */
.tracking-wide {
    letter-spacing: 1px;
}

/* Estilos de la Insignia Roja flotante */
.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-radius: 4px;
    z-index: 10;
}

/* Ajustes de responsividad para pantallas más pequeñas (móviles) */
@media (max-width: 991.98px) {
    .experience-badge {
        left: -15px; /* Evita que se salga demasiado de la pantalla en tablets */
        top: 15px;
        width: 120px;
        height: 120px;
    }
    .experience-badge .display-4 {
        font-size: 2.5rem; /* Ajusta el tamaño del número en móviles */
    }
    .experience-badge span:last-child {
        font-size: 0.85rem !important; /* Ajusta el texto inferior en móviles */
    }
}

@media (max-width: 575.98px) {
    .experience-badge {
        left: 0; /* Lo alinea al ras de la imagen en teléfonos pequeños */
        top: 0;
        border-radius: 4px 0 4px 0;
    }
}

/* Efecto hover suave para el botón */
.btn-danger.transition-all {
    transition: all 0.3s ease-in-out;
}
.btn-danger.transition-all:hover {
    background-color: #053466; /* Un tono un poco más oscuro al pasar el mouse */
    transform: translateY(-2px);
}