.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 40;
}

.mobile-menu.is-active {
    display: block;
}


.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    text-align: center;
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 1;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: white;
}


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

/*btns with hover*/
.btnsColor{
    background-color: #004AAD;
}

.btnsColor:hover{
    transform: scale(1.05);
    background-color: #7ED957;
    transition: background-color 0.3s;
}
/*btns without hover*/
.btnsColorFixed{
    background-color: #004AAD;
}

.btnsColorFixed:hover{
    background-color: #7ED957;
    transition: background-color 0.3s;
}



.text-color-green{
    color:#7ED957 ;
}
.text-color-blue{
    color: #004AAD;
}

.text-header-color{
    color: #222222;
}

.text-header-color:hover{
    color: #004AAD;
    transition: color 0.3s;
}

.background-color-green{
    background-color:#7ED957 ;
}

.background-color-blue{
    background-color: #004AAD;
}

.text-color-footer{
    color: #eeeeee;
}

.text-color-footer:hover{
    color: #7ED957;
    transition: color 0.3s;
}

/* Estilos personalizados para la sección de video */
.video-container {
    position: relative;
    padding-bottom: 95%; /* Altura mayor para móvil (relación 4:3) */
    width: 100%;
  }
  
  @media (min-width: 1024px) { /* Aplicar solo en desktop */
    .video-container {
      padding-bottom: 56.25%; /* Altura original para desktop (16:9) */
    }
  }
  
  .video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
  }


@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
    #menu-toggle {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .desktop-menu {
        display: none !important;
    }
}