h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}
html, body {
  overflow-x: hidden;
  scroll-behavior: smooth !important;
}
.t1{
    font-weight: 900;
    font-size: 4.7rem !important;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.18);
    margin-bottom: 0.2rem;
    line-height: 1.05;
    letter-spacing: -1px;
    text-align: left;
    width: 100%;
}
.t2{
    font-weight: 800;
    color: #095BA7;
}
.t3{
    font-weight: 800;
    color: white;
    font-size: 2rem;
}
.qrt-1{
    background-color: white;
    width: 35%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #078FCD;
}
a:hover {
  color: white !important;
  text-decoration: none !important; 
}
/* .logo-hero{
    max-width: 40%;
} */
.btn1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    color: white;
    background: linear-gradient(45deg, #078FCD, #095BA7);
    border: none;
    padding: 10px 60px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,1.5,.5,1);
    box-shadow: 0 6px 24px rgba(9,91,167,0.18);
    margin: 0 0 1rem 0;
    width: 100%;
    /* letter-spacing: 1px; */
    text-align: center;
}

.btn1:hover {
    background: linear-gradient(45deg, #095BA7, #078FCD);
    box-shadow: 0 8px 32px rgba(9,91,167,0.22);
    transform: scale(1.04) translateY(-2px);
    color: #fff;
    letter-spacing: 1.5px;
}

/* Estilos actualizados para la sección hero */
.hero-section {
    /* min-height: 100vh; */
    background: linear-gradient(135deg, #095BA7 0%, #078FCD 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Control de imágenes del hero con media queries */
.hero-link {
    display: block;
    cursor: pointer;
    transition: opacity 0.3s;
}

.hero-link:first-of-type {
    display: block;
}

.hero-link:last-of-type {
    display: none;
}

.hero-img-desktop {
    display: block;
    width: 100%;
    height: auto;
}

.hero-img-mobile {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .hero-link:first-of-type {
        display: none;
    }
    
    .hero-link:last-of-type {
        display: block;
    }
    
    .hero-img-desktop {
        display: none;
    }
    
    .hero-img-mobile {
        display: block;
    }
}

.hero-link:hover {
    opacity: 0.9;
}

.hero-link img {
    display: block;
    width: 100%;
    height: auto;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/background-1.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
} */

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: calc(100vh - 80px);
    padding-top: 0;
}

.hero-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 3rem 3rem 3rem;
    gap: 1.3rem;
    position: relative;
    min-width: 320px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-column {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    min-height: 400px;
    height: 100%;
}

.image-composition {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-main {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.image-main:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-secondary {
    position: absolute;
    width: 45%;
    height: 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.image-secondary-1 {
    top: 0;
    right: 0;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.image-secondary-2 {
    bottom: 0;
    left: 0;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.image-secondary:hover {
    transform: rotate(0deg) scale(1.05);
}

.image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.logo-container {
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0.2rem 0 0.2rem 0;
    max-width: none;
    align-self: flex-start;
}

.logo-hero {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 0 0 0;
}

.hero-intro-text {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 1rem;
    text-align: left;
    max-width: 85%;
    text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}

.qrt-1 {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.7rem 1.7rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    width: fit-content;
    align-self: flex-start;
    margin: 0;
}

.t2 {
    font-weight: 800;
    color: #095BA7;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: 0;
}

.location-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    margin: 0;
    align-self: flex-start;
    gap: 0.5rem;
}

.fas.fa-map-marker-alt {
    color: white !important;
    font-size: 1.7rem;
    vertical-align: middle;
    margin-right: 0.3rem;
}

.t3 {
    font-weight: 700;
    color: white;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: 0;
    display: inline-block;
}

/* Navbar siempre visible y enlaces blancos */
.navbar, .navbar-light, .navbar.navbar-light, .navbar * {
    color: white !important;
}

.navbar {
    position: relative;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, #095BA7, #078FCD) !important;
    box-shadow: 0 4px 16px rgba(9,91,167,0.15) !important;
    border: none !important;
}

.navbar-brand, .navbar-nav .nav-link, .navbar-toggler, .navbar-toggler-icon {
    color: white !important;
    fill: white !important;
    border-color: white !important;
}

.navbar-toggler {
    background: none !important;
    border: 1.5px solid white !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

body {
    background: #095BA7;
}

/* Media queries actualizados */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    .hero-text-column {
        padding: 7rem 1.5rem 2rem 1.5rem;
        gap: 1rem;
        max-width: 100%;
    }
    .logo-container {
        max-width: 180px;
        padding: 1rem 1.2rem;
    }
   
    .fecha-ubicacion-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-text-column {
        padding: 1rem 1rem 1.5rem 1rem;
        gap: 0.7rem;
        max-width: 100%;
    }
    .logo-container {
        max-width: 100%;
        padding: 0.7rem 0.7rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .logo-hero {
        max-width: 120px;
    }
    .fecha-ubicacion-row {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
    .hero-section {
        padding-top: 0;
    }
    .hero-intro-text {
        text-align: center;
        max-width: 100%;
        margin-top: 0.7rem;
        font-size: 0.9rem;
    }
}

/* Elimino estilos de subcolumnas */
.hero-text-row, .hero-text-left, .hero-text-right { display: unset; flex-direction: unset; gap: unset; align-items: unset; margin-top: unset; }

/* Fecha y ubicación en una sola línea */
.fecha-ubicacion-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0.2rem 0 0.2rem 0;
}

/* Bloque de acciones (registro, fecha, ubicación) */
.acciones-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    margin-top: 1.2rem;
}

.fecha-ubicacion-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    margin: 0;
    width: 100%;
}

.qrt-1 {
    background: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    box-shadow: 0 2px 10px rgba(9,91,167,0.10);
    width: fit-content;
    margin: 0;
    display: flex;
    align-items: center;
    min-width: 160px;
    justify-content: center;
}

.t2 {
    font-weight: 900;
    color: #095BA7;
    font-size: clamp(1.1rem, 2vw, 0.2rem);
    margin: 0;
    text-align: center;
}

.location-container {
    background: linear-gradient(45deg, #078FCD, #095BA7);
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(9,91,167,0.10);
    margin: 0;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
}

.fas.fa-map-marker-alt {
    color: white !important;
    font-size: 1.3rem;
    vertical-align: middle;
    margin-right: 0.3rem;
}

.t3 {
    font-weight: 700;
    color: white;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin: 0;
    display: inline-block;
}

@media (max-width: 992px) {
    .acciones-block {
        width: 100%;
        align-items: stretch;
    }
    .fecha-ubicacion-row {
        flex-direction: column;
        gap: 0.7rem;
        align-items: stretch;
    }
}
@media (max-width: 768px) {
    .acciones-block {
        width: 100%;
        align-items: stretch;
    }
    .fecha-ubicacion-row {
        flex-direction: initial;
        gap: 0.5rem;
        align-items: stretch;
    }
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(9,91,167,0.10);
    margin: 0 0.15rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none !important;
}

.social-icon i {
    font-size: 1rem;
    line-height: 1;
    color: #222 !important;
    transition: color 0.2s;
}

.social-icon .fa-facebook-f { color: #1877f3 !important; }
.social-icon .fa-instagram { color: #e4405f !important; }
.social-icon .fa-twitter { color: #1da1f2 !important; }
.social-icon .fa-linkedin-in { color: #0077b5 !important; }

.social-icon:hover {
    background: #095BA7 !important;
}
.social-icon:hover i {
    color: #fff !important;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

@media (max-width: 992px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
@media (max-width: 576px) {
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Ajustes para el grid de la sección hero */
.hero-content.p-0 {
    padding: 0 !important;
}

.hero-text-column {
    min-width: 320px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
    .hero-text-column {
        max-width: 540px;
    }
    .hero-image-column {
        min-height: 500px;
    }
    .image-composition {
        min-height: 420px;
        max-width: 600px;
    }
}
@media (max-width: 992px) {
    .hero-text-column {
        max-width: 100%;
    }
    .hero-image-column {
        min-height: 320px;
    }
    .image-composition {
        min-height: 220px;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .row.align-items-center {
        min-height: 0;
    }
    .hero-image-column {
        min-height: 180px;
    }
    .image-composition {
        min-height: 120px;
    }
}

/* .row.align-items-center {
    min-height: 80vh;
} */

.socios-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.socios-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #095BA7;
}
.socios-title span {
  color: #078FCD;
  font-weight: 900;
}
.logo-socio {
  /* max-width: 120px;
  max-height: 70px; */
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(9,91,167,0.08);
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 17%;
  box-shadow: 0 4px 18px rgba(9, 91, 167, 0.18);
}
.logo-socio:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 18px rgba(9,91,167,0.18);
}
.swiper {
  width: 100%;
  padding: 1rem 0;
}

/* Estilos para la sección de detalles */
.detalles-swiper {
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(9,91,167,0.15);
  overflow: hidden;
}

.detalles-swiper .swiper-slide img {
  border-radius: 15px;
  display: block;
}

.detalles-section .col-lg-6:last-child img {
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(9,91,167,0.15);
}
.swiper-pagination-bullet {
  background: #078FCD;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #095BA7;
  opacity: 1;
}
.swiper-button-next, .swiper-button-prev {
  color: #095BA7;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(9,91,167,0.10);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: #078FCD;
  color: #fff;
  width: 40px;
  height: 40px;
}
@media (max-width: 992px) {
  .socios-title {
    text-align: center;
  }
  .btn1.mt-3 {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
/* @media (max-width: 576px) {
  .logo-socio {
    max-width: 80px;
    max-height: 40px;
    padding: 0.3rem 0.5rem;
  }
} */

.sobre-franjal-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.sobre-franjal-text {
  background: rgba(9,91,167,0.92);
  border-radius: 18px;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  box-shadow: 0 4px 24px rgba(9,91,167,0.07);
  color: #fff;
  max-width: 520px;
  margin-left: auto;
  margin-right: 0;
}
.sobre-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(9,91,167,0.18), 0 2px 8px rgba(0,0,0,0.18);
  border-left: 6px solid #078FCD;
  padding-left: 1rem;
}
.sobre-desc {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.sobre-collage-wrapper {
  position: relative;
  width: 370px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-img-collage {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(9,91,167,0.13);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.4,1.5,.5,1), box-shadow 0.25s;
}
.sobre-img-main {
    width: 329px;
    height: 243px;
    left: 60px;
    top: 60px;
    z-index: 2;
    transform: rotate(-4deg);
  }
  .sobre-img-sec1 {
    width: 216px;
    height: 138px;
    left: -38px;
    top: -20px;
    z-index: 1;
    transform: rotate(8deg);
  }
  .sobre-img-sec2 {
    width: 204px;
    height: 148px;
    right: 215px;
    bottom: -54px;
    z-index: 2;
    transform: rotate(6deg);
  }
.sobre-img-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sobre-img-collage:hover {
  transform: scale(1.06) rotate(0deg);
  box-shadow: 0 12px 36px rgba(9,91,167,0.22);
  z-index: 3;
}
@media (max-width: 992px) {
  .sobre-franjal-text {
    padding: 2rem 1.2rem;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
  }
  .sobre-collage-wrapper {
    width: 260px;
    height: 210px;
  }
  .sobre-img-main {
    width: 150px;
    height: 110px;
    left: 40px;
    top: 40px;
  }
  .sobre-img-sec1, .sobre-img-sec2 {
    width: 90px;
    height: 70px;
  }
}
@media (max-width: 576px) {
  .sobre-title {
    font-size: 1.3rem;
    padding-left: 0.5rem;
  }
  .sobre-collage-wrapper {
    width: 98vw;
    height: 120px;
    min-width: 180px;
  }
  .sobre-img-main {
    width: 145px;
    height: 143px;
    left: 150px;
    top: 30px;
  }
  .sobre-img-sec1, .sobre-img-sec2 {
    width: 118px;
    height: 89px;
  }
  .sobre-img-sec1 {
    left: 95px;
    top: -28px;
}
}

.sobre-franjal-bg-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sobre-franjal-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('img/sobre-franjal.jpg') center/cover no-repeat;
  filter: blur(10px) brightness(0.7);
  opacity: 0.35;
  z-index: 1;
}
.sobre-franjal-bg-section .container {
  position: relative;
  z-index: 2;
}
.sobre-franjal-text {
  background: rgba(9,91,167,0.92);
  border-radius: 18px;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  box-shadow: 0 4px 24px rgba(9,91,167,0.07);
  color: #fff;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.sobre-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(9,91,167,0.18), 0 2px 8px rgba(0,0,0,0.18);
  border-left: 6px solid #078FCD;
  padding-left: 1rem;
}
.sobre-desc {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
@media (max-width: 992px) {
  .sobre-franjal-text {
    padding: 2rem 1.2rem;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
  }
}
@media (max-width: 576px) {
  .sobre-title {
    font-size: 1.3rem;
    padding-left: 0.5rem;
  }
}

/* Animaciones de entrada */
.animate-fadein-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 1.1s ease-out 0.2s forwards;
}
.animate-fadein-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 1.1s ease-out 0.2s forwards;
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: none;
  }
}

.grupo-fuerte-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.grupo-fuerte-logo {
  max-width: 100%;
  background: #095BA7;
  border-radius: 18px;
  padding: 0.7rem;
  box-shadow: 0 2px 12px rgba(9,91,167,0.10);
}
.grupo-fuerte-icons-box {
  background: #095ba7;
  border-radius: 18px;
  padding: 1.2rem 2.2rem;
  box-shadow: 0 4px 24px rgba(9,91,167,0.07);
  gap: 2.5rem;
}
.grupo-fuerte-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 120px;
  margin: 0 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.grupo-fuerte-icon-item i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(9,91,167,0.18);
}
.grupo-fuerte-icon-item span {
  margin-top: 0.2rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.grupo-fuerte-icon-item:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 8px 24px rgba(9,91,167,0.18);
}
.grupo-fuerte-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #3a6bb2;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.grupo-fuerte-title span {
  font-weight: 900;
  color: #095BA7;
}
.grupo-fuerte-list {
  font-size: 1.1rem;
  color: #3a6bb2;
  margin: 0;
  padding: 0;
  line-height: 2.1;
  font-weight: 500;
}
@media (max-width: 992px) {
  .grupo-fuerte-logo {
    max-width: 240px;
    max-height: 60px;
    padding: 0.4rem;
  }
  .grupo-fuerte-icons-box {
    gap: 1.2rem;
    padding: 1rem 0.7rem;
  }
  .grupo-fuerte-icon-item {
    min-width: 90px;
    font-size: 1rem;
  }
  .grupo-fuerte-icon-item i {
    font-size: 1.7rem;
  }
}
@media (max-width: 576px) {
  .grupo-fuerte-section {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .grupo-fuerte-title {
    font-size: 1.1rem;
  }
  .grupo-fuerte-icons-box {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.7rem 0.2rem;
  }
}

.sinergia-section {
  position: relative;
  background: #095BA7;
  border-radius: 18px;
  padding: 3rem 3rem;
  overflow: hidden;
}
.sinergia-bg {
  display: none;
}
.sinergia-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
.sinergia-title span {
  color: #fff;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(9,91,167,0.18);
}
.sinergia-list {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  padding-left: 1.2rem;
}
.sinergia-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.sinergia-collage-wrapper {
  position: relative;
  width: 320px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sinergia-img-diamond {
  position: absolute;
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(9,91,167,0.13);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.4,1.5,.5,1), box-shadow 0.25s;
}
.sinergia-img-main {
  left: 0;
  top: 10px;
  z-index: 2;
  transform: rotate(-15deg);
}
.sinergia-img-sec {
  right: 0;
  top: 10px;
  z-index: 1;
  transform: rotate(15deg);
}
.sinergia-img-diamond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); */
}
.sinergia-img-diamond:hover {
  transform: scale(1.07) rotate(0deg);
  box-shadow: 0 12px 36px rgba(9,91,167,0.22);
  z-index: 3;
}
.sinergia-logo-text {
  margin-top: 2.2rem;
}
.sinergia-logo {
  max-width: 50%;
  /* background: #fff; */
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 2px 12px rgba(9,91,167,0.10);
}
.sinergia-destacado {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 0.7rem;
  font-weight: 400;
}
.sinergia-destacado b {
  color: #ffe066;
  font-weight: 900;
}
@media (max-width: 992px) {
  .sinergia-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .sinergia-collage-wrapper {
    width: 220px;
    height: 120px;
  }
  .sinergia-img-diamond {
    width: 90px;
    height: 90px;
  }
  .sinergia-logo {
    max-width: 240px;
    padding: 0.2rem;
    justify-content: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-wid1h: 576px) {
  .sinergia-section {
    padding: 1.2rem 0.2rem 1rem 0.2rem;
  }
  .sinergia-title {
    font-size: 1.1rem;
    text-align: center;
  }
  .sinergia-collage-wrapper {
    width: 120px;
    height: 60px;
  }
  .sinergia-img-diamond {
    width: 100px;
    height: 100px;
  }
  .sinergia-img-sec {
    right: 53px;
    top: -20px;
}
.sinergia-img-main {
  left: 54px;
  top: -15px;

}

}

.contacto-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.contacto-logo {
    max-width: 100%;
    border-radius: 18px;
    padding: 1.2rem;
    box-shadow: 0 2px 12px rgba(9, 91, 167, 0.10);
    border: 1px solid #095BA7;
}
.contacto-invita {
  color: #095BA7;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1.2rem;
}
.contacto-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(9,91,167,0.07);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.contacto-title {
  color: #095BA7;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
.contacto-form .form-control {
  border-radius: 12px;
  border: 1.5px solid #e0e6ed;
  font-size: 1.05rem;
  padding: 0.9rem 1.1rem;
  background: #f7faff;
  color: #095BA7;
  box-shadow: none;
  transition: border-color 0.2s;
}
.contacto-form .form-control:focus {
  border-color: #078FCD;
  outline: none;
  box-shadow: 0 0 0 2px #078FCD22;
}
.contacto-form textarea.form-control {
  min-height: 110px;
  resize: vertical;
}
.btn1.w-100 {
  width: 100%;
  margin-top: 0.5rem;
}

/* Estilos para formularios de registro */
.formulario-asistencia-section,
.formulario-galardones-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.registro-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(9,91,167,0.07);
  padding: 2.5rem;
}

.registro-title {
  color: #095BA7;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 3px solid #078FCD;
  padding-bottom: 1rem;
}

.registro-form .form-group {
  margin-bottom: 1.2rem;
}

.registro-form .row {
  margin-left: -8px;
  margin-right: -8px;
}

.registro-form .row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.registro-form .row .form-group {
  margin-bottom: 1.2rem;
}

.registro-form label {
  color: #095BA7;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  display: block;
}

.registro-input {
  border-radius: 12px;
  border: 1.5px solid #e0e6ed;
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  background: #f7faff;
  color: #095BA7;
  box-shadow: none;
  transition: all 0.2s;
  width: 100%;
}

.registro-input:focus {
  border-color: #078FCD;
  outline: none;
  box-shadow: 0 0 0 3px rgba(7,143,205,0.15);
  background: #fff;
}

.registro-input::placeholder {
  color: #95a5a6;
}

.registro-form .form-check {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.registro-form .form-check-input {
  margin-top: 0.3rem;
  cursor: pointer;
}

.registro-form .form-check-label {
  color: #095BA7;
  font-weight: 400;
  cursor: pointer;
  margin-left: 0.5rem;
}

.registro-link-pdf {
  color: #078FCD !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.registro-link-pdf:hover {
  color: #095BA7 !important;
}

.registro-link-pdf i {
  font-size: 0.9rem;
}

/* Botón de registro en sección detalles */
.btn-registro-detalles {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  background: linear-gradient(45deg, #078FCD, #095BA7);
  border: none;
  padding: 14px 50px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,1.5,.5,1);
  box-shadow: 0 4px 16px rgba(9,91,167,0.18);
  text-decoration: none;
  display: inline-block;
}

.btn-registro-detalles:hover {
  background: linear-gradient(45deg, #095BA7, #078FCD);
  box-shadow: 0 6px 20px rgba(9,91,167,0.25);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* Botón de enviar registro */
.btn-enviar-registro {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  background: linear-gradient(45deg, #078FCD, #095BA7);
  border: none;
  padding: 12px 40px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,1.5,.5,1);
  box-shadow: 0 4px 16px rgba(9,91,167,0.18);
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.btn-enviar-registro:hover {
  background: linear-gradient(45deg, #095BA7, #078FCD);
  box-shadow: 0 6px 20px rgba(9,91,167,0.25);
  transform: translateY(-2px);
  color: #fff;
}

/* Sección de información de registro */
.registro-info {
  padding: 2rem;
}

.registro-info-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #095BA7;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.registro-info-title span {
  color: #078FCD;
  font-weight: 900;
}

.registro-info-text {
  color: #3a6bb2;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.registro-info-text strong {
  color: #095BA7;
  font-weight: 700;
}

@media (max-width: 992px) {
  .registro-form {
    padding: 2rem 1.5rem;
  }
  
  .registro-info {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .registro-info-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .registro-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .formulario-asistencia-section,
  .formulario-galardones-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .registro-form {
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }
  
  .registro-title {
    font-size: 1.3rem;
    padding-bottom: 0.8rem;
  }
  
  .registro-info {
    padding: 1rem;
  }
  
  .registro-info-title {
    font-size: 1.5rem;
  }
  
  .registro-info-text {
    font-size: 1rem;
    text-align: left;
  }
  
  .btn-enviar-registro {
    font-size: 15px;
    padding: 10px 30px;
  }
}
@media (max-width: 992px) {
  .contacto-logo {
    max-width: 110px;
    padding: 0.7rem;
  }
  .contacto-form {
    max-width: 100%;
    padding: 1.2rem 0.7rem;
  }
}
@media (max-width: 576px) {
  .contacto-section {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .contacto-logo {
    max-width: 240px;
    padding: 0.3rem;
  }
  .contacto-form {
    padding: 0.7rem 0.2rem;
  }
}

.footer-franjal {
  position: relative;
  background: linear-gradient(90deg, #2d5fa8 60%, #095BA7 100%);
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  z-index: 2;
}
.footer-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('img/footer-bg.svg'), url('img/footer-bg.png'); /* Puedes usar un SVG o PNG de red/conexiones */
  background-size: cover;
  background-position: right center;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}
.footer-franjal .container {
  position: relative;
  z-index: 2;
}
.footer-franjal span, .footer-franjal a {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.footer-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  margin-right: 0.7rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #ffe066;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-franjal .social-icon {
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  margin: 0 0.1rem;
  background: #fff;
  color: #095BA7 !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(9,91,167,0.10);
}
.footer-franjal .social-icon i {
  color: #095BA7 !important;
}
.footer-franjal .social-icon:hover {
  background: #095BA7;
  color: #fff !important;
}
.footer-franjal .social-icon:hover i {
  color: #fff !important;
}
@media (max-width: 768px) {
  .footer-franjal .row {
    flex-direction: column;
    text-align: center;
  }
  .footer-franjal .footer-social {
    margin-top: 0.7rem;
    justify-content: center;
  }
}

/* Estilos para la galería de logos */
.logo-gallery {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #f1f3f4 50%, #e9ecef 75%, #f8f9fa 100%);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border: 1px solid #dee2e6;
}

.logo-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(9,91,167,0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(7,143,205,0.04) 0%, transparent 40%);
    border-radius: 15px;
    pointer-events: none;
}

.logo-gallery .container {
    position: relative;
    z-index: 2;
}

.logo-gallery img {
    transition: transform 0.3s ease-in-out;
    max-height: 120px;
    object-fit: contain;
    /* filter: grayscale(100%); */
}

.logo-gallery img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
    z-index: 1;
}

.logo-gallery .col-lg-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-gallery .img-container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.logo-gallery .img-container:hover {
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.12),
        0 2px 6px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: #ced4da;
}

/* Responsive para la galería */
@media (max-width: 768px) {
    .logo-gallery {
        padding: 3rem 0;
        margin: 2rem 0;
        border-radius: 12px;
    }
    
    .logo-gallery .img-container {
        padding: 20px;
        border-radius: 8px;
    }
}

/* Estilos para los modales de logos */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    border-radius: 15px 15px 0 0;
}

.modal-title {
    color: #333;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.modal-body h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-body p {
    color: #666;
    line-height: 1.6;
}

.modal-body ul {
    list-style-type: none;
    padding-left: 0;
}

.modal-body ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.modal-body ul li:last-child {
    border-bottom: none;
}

.modal-body img {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.img-container {
    cursor: pointer;
    transition: all 0.3s ease;
}

.img-container:hover {
    transform: scale(1.05);
}

/* Estilos para el botón de cierre del modal */
.modal .close {
    font-size: 1.5rem;
    color: #666;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.modal .close:hover {
    opacity: 1;
    color: #333;
}

/* Estilos para el fondo del modal */
.modal-backdrop.show {
    opacity: 0.8;
}

/* Animaciones de scroll */
.animate-on-scroll {
    opacity: 0;
    transition: all 1s ease-out;
}

.animate-fadein-left {
    transform: translateX(-40px);
}

.animate-fadein-right {
    transform: translateX(40px);
}

.animate-fadein-up {
    transform: translateY(40px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* Ajustes específicos para cada tipo de animación */
.sobre-franjal-text.animated {
    transition-delay: 0.2s;
}

.sobre-collage-wrapper.animated {
    transition-delay: 0.4s;
}

.grupo-fuerte-icons-box.animated {
    transition-delay: 0.2s;
}

.grupo-fuerte-list.animated {
    transition-delay: 0.3s;
}

.sinergia-title.animated {
    transition-delay: 0.2s;
}

.sinergia-list.animated {
    transition-delay: 0.3s;
}

.sinergia-collage-wrapper.animated {
    transition-delay: 0.4s;
}

.sinergia-logo-text.animated {
    transition-delay: 0.5s;
}

.contacto-form.animated {
    transition-delay: 0.2s;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
  ul.navbar-nav {
    background: linear-gradient(45deg, #095BA7, #078FCD) !important;
    /* width: 100vh; */
    padding: 0% 14%;
    border-bottom: 1px solid white !important;
    
}
    .animate-fadein-left,
    .animate-fadein-right {
        transform: translateX(0);
        transform: translateY(20px);
    }
    
    .animate-on-scroll {
        transition-duration: 0.8s;
    }
    .t1 {
      font-size: 3rem !important;
  }
  .logo-hero{

    max-width: 240%;
}
h2.sinergia-title.mb-4.animate-on-scroll.animated {
  text-align: center;
}
div#navbarNav {
  width: 100vh;
}
.nav-1{
  margin: 0 !important;
}
}
.nav-1{
  margin-left: auto;
  margin-right: auto;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  font-size: 23px !important;
}
.swiper-button-prev {
  width: 42px !important;
}
.swiper-button-next {
  width: 42px !important;
}

/* Ajuste de tamaño de logos en el slider para móvil */
@media (max-width: 575.98px) {
  .socios-swiper .logo-socio {
    width: 40% !important;
    max-width: 220px;
    margin: 9px auto;
    display: block;
}
  .socios-swiper .swiper-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 3000;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(9,91,167,0.18);
  font-size: 2.2rem;
  transition: box-shadow 0.2s;
  animation: whatsapp-bounce 1.5s infinite;
  cursor: pointer;
}
.whatsapp-float:hover {
  box-shadow: 0 12px 36px rgba(37,211,102,0.25), 0 2px 8px rgba(9,91,167,0.10);
  background: #1ebe5d;
  transform: scale(1.13) rotate(-6deg);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
@keyframes whatsapp-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  40% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-6px);
  }
  80% {
    transform: translateY(0);
  }
}

.navbar-social-icons {
  position: fixed;
  top: 18px;
  right: 32px;
  z-index: 3001;
  gap: 0.7rem;
  background: none;
}
@media (max-width: 991.98px) {
  .navbar-social-icons {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .navbar.fixed-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 999;
    background: linear-gradient(45deg, #095BA7, #078FCD) !important;
    box-shadow: 0 6px 24px rgba(9,91,167,0.13);
    transition: box-shadow 0.3s, background 0.3s;
  }
}
/* ANIMACIÓN DE SECCIONES */
/* Animación de entrada desde arriba */
.from-top {
  opacity: 0;
  transform: translateY(-30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.from-top.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animación de entrada desde abajo */
.from-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.from-bottom.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animación de entrada desde la izquierda */
.from-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.from-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Animación de entrada desde la derecha */
.from-right {
  opacity: 0;
  transform: translateX(30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.from-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Animación de entrada desde arriba al inicio */
.from-top-initial {
  opacity: 0;
  transform: translateY(-30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.from-top-initial.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animación de entrada desde abajo al inicio */
.from-bottom-initial {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.from-bottom-initial.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animación de entrada desde la izquierda al inicio */
.from-left-initial {
  opacity: 0;
  transform: translateX(-30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.from-left-initial.active {
  opacity: 1;
  transform: translateX(0);
}

/* Animación de entrada desde la derecha al inicio */
.from-right-initial {
  opacity: 0;
  transform: translateX(30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.from-right-initial.active {
  opacity: 1;
  transform: translateX(0);
}

/* Cursor tracking elegante */
.cursor-tracker {
    position: fixed;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, rgba(9,91,167,0.8), rgba(7,143,205,0.8));
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-tracker.hover {
    transform: scale(2);
    background: linear-gradient(45deg, rgba(9,91,167,0.6), rgba(7,143,205,0.6));
}

.cursor-tracker.click {
    transform: scale(0.8);
    background: linear-gradient(45deg, rgba(9,91,167,1), rgba(7,143,205,1));
}

/* Ocultar cursor tracking en móviles */
@media (max-width: 768px) {
    .cursor-tracker {
        display: none;
    }
}

@media (max-width: 991.98px) {
  .navbar {
    position: relative;
    z-index: 2200;
    min-height: 70px;
  }
  
  .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    left: -100%;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: transparent;
    z-index: 2000;
    padding-top: 70px;
    padding-left: 0;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
    margin: 0 !important;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .navbar-collapse.collapsing {
    left: -100%;
  }
  
  .navbar-collapse.show {
    display: block !important;
    left: 0;
  }
  
  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
    margin-left: 0 !important;
    padding-left: 1.5rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-left: 0 !important;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
  }
  
  .navbar-toggler {
    z-index: 2100;
    position: relative;
  }
}