body{
    font-family: raleway;
}
body p{
    text-align: justify;
}

#indicador-foto{
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin-inline: 8px;
}

.bg-core{
    background: linear-gradient(to right,#3f52f5,#3fa9f5);
    color: white;
}
.bg-btn {
    width: 200px;
    background: radial-gradient(circle at left, #3f52f5, rgb(66, 176, 255));
    color: white;
    border-radius: 30px;
    padding: 10px;
    text-align: center;
    border: none;
    cursor: pointer;

}

.bg-btn:hover {
    color: white;
    background-size: 200% 100%;
    background-position: 0% 50%;
    animation: moveGradient 2s linear;
    
}

@keyframes moveGradient {
    0% { background-position: 0% 80%; }
    50% { background-position: 100% 80%; }
    100% { background-position: 0% 80%; }
}
.numb{
    font-family: helvetica;
}

.section-bg{
    background-color: #11047a;
}

.h1-style{
    font-size: 50px;
    color: rgb(0, 0, 93);
}

.h2-style{
    font-weight: lighter;
    font-size: 20px;
    color: #0073ff;
}
.bg-benefit{
    width: 80%;
    height: auto;
    background: linear-gradient(blue, rgb(66, 176, 255));
    border-radius: 10%;
}
.bg-benefit{
    width: 100%;
    height: auto;
    background: radial-gradient(circle at left, blue, rgb(66, 176, 255));
    border-top-left-radius: 50px;  
    border-bottom-left-radius: 50px;  
    border-top-right-radius: 50px;  
    border-bottom-right-radius: 50px;
    padding: 50px;
}      

.img-hover {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .img-hover:hover {
    transform: scale(1.02);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); 
  }
  .item-hover {
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .item-hover:hover {
    transform: scale(1.01);
  }

.service-card {
    height: 100%;
    background: white;
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.service-card p {
    width: 80%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
}

.service-card i {
    margin-top: -60px;
    font-size: 2rem;
    float: right;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover i {
    transform: translateX(5px);
}

h3{
    font-size: 35px;
}
.bg-nav{
    background-color: #f1f5f9;
}

.footer-bg{
    background-color: #070127;
}
/* modulos index */
.scroll-container {
    height: auto;
    overflow-x: auto; 
    scroll-behavior: smooth;
    gap: 20px; 
    padding: 10px;
}
.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.scroll-btn-index
{
    background:rgb(14, 133, 253,0.5);
    border: 0px;
    width: 50px;
    height: 50px;
    margin: 3px;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}
.scroll-btn-index img
{
    width: 45%;
    height: 45%;
}
.scroll-btn-index:hover
{
    transform: scale(1.04);
    background:rgb(14, 133, 253);    
}


/* mktp section*/
.integration-logos {
    max-width: 100%;
    height: auto;
    padding: 10px;
    filter: grayscale(100%);
    opacity: 40%;
    transition: all 0.4s ease-in-out; /* Agrega una transici¨®n suave */
}

.integration-logos:hover {
    opacity: 100%;
    transform: scale(1.05);
    filter: grayscale(0%);
}


.card-index{
    margin-bottom: 5px;
    background-color: white;
    height: 100%;
    min-height: 300px; 
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 0px;
    transition: transform 0.5s ease-in-out;
}

.card-index:hover {
    transform: translateY(-3px);
}

/* core */

.card-core{
    margin-bottom: 5px;
    background-color: #f1f5f9;
    height: 100%;
    min-height: 300px; 
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 0px;
    transition: transform 0.5s ease-in-out;
}

.card-core:hover {
    transform: translateY(-3px);
}

.cardYT{
    transition: transform 0.5s ease-in-out;
}
.cardYT:hover {
    transform: translateY(-5px);
}
.carousel-control-prev-style,
.carousel-control-next-style {
    width: 40px;
    height: 40px;
    background: #3f52f5;
    border-radius: 50%;
    top: auto;
    bottom: -50px;
}

.carousel-control-prev-style {
    left: 10px;
}

.carousel-control-next-style {
    left: 60px;
}
.input-blue{
    background-color: #f1f5f9;
}

/* nosotros */


/* service */
    .card-product{
        width: 100%;
        height: 80%;
        transition: transform 0.5s ease-in-out;
        position: relative;
        padding-bottom: 40px; /* Asegura espacio para el botÃ³n */
    }
    
    .card-product:hover{
        width: 100%;
        transform: translateY(-5px);
    }


    .btn-product {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    
  /* btn whatsapp */
  .icono-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .icono-whatsapp:hover {
    transform: scale(1.05);
    }
    
  /* btn redes */
  .icono-redes {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .icono-redes:hover {
    transform: scale(1.05);
    }


    /* mkt */
    .mktcard{
        box-shadow: 0 0 8px rgba(0,0,0,0.2);
        border: 0px;
        display: flex;
        min-height: 250px;
        margin: 12px;
    }
    .bg-mkt{
        background-color: #16143d;
        min-height: 65px;
    }


    /* cash */
    #appPreview {
        border: 10px solid white;
        border-radius: 15px;
        background-color: #3498db;
        position: relative;
        width: 60%;
        height: auto;
        transition: background 0.3s ease-in-out;
    }
    .color-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: inline-block;
        margin: 5px;
        transition: transform 0.2s ease;
    }

    .color-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 0 8px rgba(0,0,0,0.2);
    }

    #preview {
        transition: background-color 0.3s ease;
    }
    
    /* scroll find */
    .container-scroll {
        height: 330px; 
        overflow-y: auto; 
        scroll-behavior: smooth;
        gap: 8px; 
        padding: 5px;
        display: flex;
        flex-direction: column; 
    }
    .container-scroll::-webkit-scrollbar {
        width: 8px; 
    }
    .container-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .container-scroll::-webkit-scrollbar-thumb {
        background: linear-gradient(to bottom, #7209b7, #480ca8); 
        border-radius: 10px;
    }
    .container-scroll::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(to bottom, #5a0b8e, #3b087a);
    }
    .indicadorcard:hover{
        background-color: #f1f5f9;
    }
    .indicadorcard i{
        transition: background  0.3s ease;
    }
    .indicadorcard h4{
        background: all 0.6s ease;
    }
    .indicadorcard:hover h4{
        color: #7209b7;
    }
    .indicadorcard:hover i{
        background: linear-gradient(to bottom, #7209b7, #480ca8);
        transform: scale(1.03);
    }

    /* mapa intecativo */
    .mapa path{
        fill: rgb(107, 163, 192,0.3);
        stroke-width: 1.5px;
        stroke: white;
    }
    
    #MXBCS, #MXBCN, #MXTAM, #MXTAB, #MXCOA, #MXNLE, #MXROO, #MXCAM, #MXCHP, #MXYUC, #MXVER, #MXSIN, #MXJAL, #MXMIC, #MXOAX, #MXMEX, #MXQUE, #MXGUA, #MXCMX, #MXAGU, #MXMOR {
        fill: #11047A;
        transform-origin: center;
        transition: transform 0.1s ease-out, filter 0.6s ease-out,;
        transition: fill 0.3s ease-out;
    }

    #MXBCS:hover, #MXBCN:hover, #MXTAM:hover, #MXTAB:hover, #MXCOA:hover, #MXNLE:hover, #MXROO:hover, #MXCAM:hover, #MXCHP:hover, #MXYUC:hover, #MXVER:hover, #MXSIN:hover, #MXJAL:hover, #MXMIC:hover, #MXOAX:hover, #MXMEX:hover, #MXQUE:hover, #MXGUA:hover, #MXCMX:hover, #MXAGU:hover, #MXMOR:hover {
        fill: #0084FF ;
        transform: translateY(-.5px);
        filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    }

    .tooltipmap {
        position: absolute;
        background: rgba(0, 28, 70, 0.8);
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        border: white solid 2px;
        font-size: 16px;
        display: none;
        pointer-events: none; /* Evita que interfiera con otros elementos */
        white-space: nowrap;
    }
    
    .acordeon-info i{
        width: 30px; 
        height: 30px;
        background: #32A4F9;
        color: white;
        font-weight: bold;
      }
      
      
      /* practicas */
      .container-scroll-practicas {
        height: 335px; 
        overflow-y: auto; 
        scroll-behavior: smooth;
        gap: 8px; 
        padding: 5px;
        display: flex;
        flex-direction: column; 
        }
        .container-scroll-practicas::-webkit-scrollbar {
            width: 8px; 
        }
        .container-scroll-practicas::-webkit-scrollbar-track {
            background:rgb(67, 80, 255,.28);
            border-radius: 10px;
        }
        .container-scroll-practicas::-webkit-scrollbar-thumb {
            background:rgb(67, 80, 255,.8); 
            border-radius: 10px;
        }
        .container-scroll-practicas::-webkit-scrollbar-thumb:hover {
            background: #4350ff; 
        }
        .indicadorcard-areas:hover{
            background-color: #f1f5f9;
        }
        .indicadorcard-areas i{
            width: 10px; 
            height: 90%; 
            background-color: rgb(67, 80, 255,.28);
            transition: background  0.3s ease;
        }
        .indicadorcard-areas h4{
            background: all 0.6s ease;
        }
        .indicadorcard-areas:hover h4{
            color: #4350ff;
        }
        .indicadorcard-areas:hover i{
            background: #4350ff;
            transform: scale(1.03);
        }
    
        .feature-icon {
            cursor: default;
            font-size: 80px;
            color: #007bff;
            transition: transform 0.5s ease-in-out;
        }

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