body{
    font-family: raleway;
}
.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%; }
}


.h1-style{
    font-size: 38px;
    color: rgb(0, 0, 93);
}

.h2-style{
    font-weight: lighter;
    font-size: 20px;
    color: #0073ff;
}

.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);
  }

.bg-nav{
    background-color: #f1f5f9;
}

.footer-bg{
    background-color: #070127;
}
/* beficiados section */
.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;
}   
.benefit-box {
    background-color: white; /* Fondo blanco */
    color: #002147; /* Azul marino */
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px;
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: transform 0.2s ease-in-out;
}

.benefit-box:hover {
    transform: translateY(-5px); /* Efecto de elevación al pasar el mouse */
}
/* Botones de desplazamiento */
.scroll-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.scroll-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 5px 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 5px;
}

.scroll-btn:hover {
    background: #0056b3;
}

/* 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;
    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,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #3f52f5;
    border-radius: 50%;
    top: auto;
    bottom: -50px;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    left: 60px;
}
.input-blue{
    background-color: #f1f5f9;
}


/* service */
.card-product{
    margin-bottom: 5px;
    background-color: white;
    height: 63%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out;
}
 
.card-product:hover{
    height: 70%;
    box-shadow: 0 10px 20px rgba(33, 0, 95, 0.3);
    transform: translateY(-10px);
}
.card-product img {
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .card-product:hover img {
    transform: scale(1.2);
  }

  /* 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 */
    .cajonredes{
        background-color: rgba(0, 26, 176, 0.4);
        align-content: center;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        width: 30px;
        height: auto;
        position: fixed;
        top: 20%;
        left: 0px;
        z-index: 1000;
        transition: width 0.5s ease-in-out, box-shadow 0.3s ease-in-out
    }
    .cajonredes:hover{
        background-color:rgba(0, 26, 176, 1);
        width: 50px;
    }
    .imgrd{
        margin-left: 0px;
        width: 35%;
        height: 35%;
        margin-bottom: 20px;
        transition: transform 0.5s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .fb{
        margin-left: 0px;
        width: 30%;
        height: 30%;
        margin-bottom: 20px;
        transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .cajonredes img:hover {
        transform: translateX(2px);
        transform: scale(1.3);
    }
    /* mkt */
    .mktcard{
        display: flex;
        min-height: 220px;
    }

    .mktcard img{
        align-content: center;
    }
    .bg-mkt{
        background-color: #16143d;
    }