/*=====================================================================
    CONTENDENCIA.ONLINE
    INICIO
    Mobile First
======================================================================*/


/*=====================================================================
    HERO
======================================================================*/

.hero-home{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #FFFFFF 0%,
        #F8FAFD 60%,
        #EEF3F8 100%
    );

    padding:90px 0;

}

.hero-home::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(255,115,0,.05);

    right:-260px;

    top:-260px;

}

.hero-home::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(11,29,58,.05);

    left:-220px;

    bottom:-220px;

}

.hero-home .container{

    position:relative;

    z-index:2;

}



/*=====================================================================
    GRID
======================================================================*/

.hero-home .container{

    display:grid;

    gap:70px;

    align-items:center;

}



/*=====================================================================
    TEXTO
======================================================================*/

.hero-content{

    text-align:center;

}

.hero-badge{

    display:inline-flex;

    padding:10px 22px;

    background:rgba(255,115,0,.12);

    color:#FF7300;

    border-radius:999px;

    font-weight:700;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:clamp(2.5rem,7vw,4.8rem);

    color:#0B1D3A;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-content h1 span{

    color:#FF7300;

}

.hero-content p{

    max-width:620px;

    margin:auto;

    font-size:1.15rem;

    color:#2C3E50;

    margin-bottom:40px;

}



/*=====================================================================
    BOTÓN
======================================================================*/

.hero-content .btn{

    padding:18px 38px;

    border-radius:999px;

    background:#0B1D3A;

    color:white;

    font-weight:700;

    transition:.35s;

}

.hero-content .btn:hover{

    background:#FF7300;

    transform:translateY(-6px);

}



/*=====================================================================
    COLLAGE
======================================================================*/

.hero-collage{

    position:relative;

    width:100%;

    max-width:650px;

    aspect-ratio:1;

    margin:auto;

}



/*=====================================================================
    LOGO
======================================================================*/

.logo-center{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:220px;

    height:220px;

    border-radius:50%;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:
    0 30px 70px rgba(11,29,58,.15);

    z-index:100;

}

.logo-center img{

    width:80%;

}



/*=====================================================================
    PRODUCTOS
======================================================================*/

.item{

    position:absolute;

    width:120px;

    height:120px;

    border-radius:24px;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:

    0 18px 45px rgba(11,29,58,.10);

    transition:.35s;

}

.item img{

    width:80%;

    height:80%;

    object-fit:contain;

}

.item:hover{

    transform:translateY(-10px) scale(1.05);

}
/*=====================================================================
    POSICIÓN DE LOS PRODUCTOS
======================================================================*/

.item1{

    top:0;

    left:50%;

    transform:translateX(-50%) rotate(-8deg);

}

.item2{

    top:18%;

    right:0;

    transform:rotate(8deg);

}

.item3{

    bottom:18%;

    right:2%;

    transform:rotate(-12deg);

}

.item4{

    bottom:0;

    left:50%;

    transform:translateX(-50%) rotate(6deg);

}

.item5{

    bottom:18%;

    left:2%;

    transform:rotate(10deg);

}

.item6{

    top:18%;

    left:0;

    transform:rotate(-10deg);

}



/*=====================================================================
    EFECTO PREMIUM
======================================================================*/

.item{

    overflow:hidden;

    cursor:pointer;

}

.item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        135deg,

        rgba(255,255,255,.45),

        transparent

    );

    opacity:0;

    transition:.35s;

}

.item:hover::before{

    opacity:1;

}

.item:hover{

    box-shadow:

    0 25px 60px rgba(11,29,58,.18);

}



/*=====================================================================
    EFECTO FLOTANTE
======================================================================*/

.item1{

    animation:float1 5s ease-in-out infinite;

}

.item2{

    animation:float2 6s ease-in-out infinite;

}

.item3{

    animation:float3 5.5s ease-in-out infinite;

}

.item4{

    animation:float4 6.5s ease-in-out infinite;

}

.item5{

    animation:float5 5.8s ease-in-out infinite;

}

.item6{

    animation:float6 6.2s ease-in-out infinite;

}



@keyframes float1{

0%,100%{

transform:translateX(-50%) translateY(0) rotate(-8deg);

}

50%{

transform:translateX(-50%) translateY(-12px) rotate(-6deg);

}

}



@keyframes float2{

0%,100%{

transform:translateY(0) rotate(8deg);

}

50%{

transform:translateY(-10px) rotate(12deg);

}

}



@keyframes float3{

0%,100%{

transform:translateY(0) rotate(-12deg);

}

50%{

transform:translateY(-14px) rotate(-8deg);

}

}



@keyframes float4{

0%,100%{

transform:translateX(-50%) translateY(0) rotate(6deg);

}

50%{

transform:translateX(-50%) translateY(-10px) rotate(3deg);

}

}



@keyframes float5{

0%,100%{

transform:translateY(0) rotate(10deg);

}

50%{

transform:translateY(-12px) rotate(6deg);

}

}



@keyframes float6{

0%,100%{

transform:translateY(0) rotate(-10deg);

}

50%{

transform:translateY(-10px) rotate(-5deg);

}

}



/*=====================================================================
    RESPONSIVE TABLET
======================================================================*/

@media(max-width:991px){

.hero-home{

padding:70px 0;

}

.logo-center{

width:180px;

height:180px;

}

.item{

width:95px;

height:95px;

}

}



/*=====================================================================
    RESPONSIVE MÓVIL
======================================================================*/

@media(max-width:767px){

.hero-home{

padding:50px 0;

}

.hero-home .container{

gap:50px;

}

.logo-center{

width:145px;

height:145px;

}

.item{

width:72px;

height:72px;

border-radius:18px;

}

.hero-content h1{

font-size:2.2rem;

}

.hero-content p{

font-size:1rem;

padding:0 10px;

}

.hero-content .btn{

width:100%;

max-width:300px;

margin:auto;

}

}