.carousel{
    background-color: #d8b1ff;
    display: flex;
    height: 100%;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.carousel__viewport{ 
    overflow: hidden; 
    touch-action: pan-y; 
}
.carousel__track{
    display: flex; 
    transition: transform .45s ease;
    will-change: transform;
}
.carousel__slide{
    background: #d8b1ff;
    min-width:100%;
}
.carousel__slide img{
    display:block;
    height:100%; 
    object-fit: contain; 
    width:100%; 
}
.carousel__btn{
    background: rgba(0,0,0,.45); 
    border:0; 
    border-radius:999px;
    color:#fff; 
    cursor:pointer; 
    display:grid; 
    font-size:28px;
    height:88px; 
    place-items:center;
    position:absolute; 
    transform:translateY(-50%);
    top:50%; 
    width:44px; 
}
.prev{ left:10px; } 
.next{ right:10px; }
.carousel__dots{
    bottom:10px;
    display:flex; 
    gap:28px; 
    justify-content:center;
    left:0; 
    position:absolute; 
    right:0; 
}
.carousel__dot {
    background:transparent;
    border:0;
    color: #ccc;
    cursor: pointer;
    display:block;
    height: 80px;
    line-height:0;
    overflow:hidden;
    padding:0;
    width: 30px;
}
.carousel__dot[aria-current="true"] {
    transform: scale(1.25);
}
.carousel__dot svg{
    display:block;
    height:100%;
    width:100%;
}



/* Information boxes */
.information{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 30px 50px;
    box-sizing: border-box;
}
.information-box{
    position: relative;
    flex: 1;
    height: 450px;
    border-radius: 26px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
/* Background image */
.information-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Text */
.information-text{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    text-align: center;
    font-weight: 900;
    font-size: clamp(20px, 2.2vw, 44px);
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
    padding: 14px;
    box-sizing: border-box;
}
.information-text em{
    font-style: normal;
}

/* Hover */
.information-box{
    transition: transform .18s ease;
}

/* Working team */
.team-section {
    width: 100%;
    padding: 0 20px;
}   
.team-section h2 {
    background-color:#ffbee8;
    font-size: 32px;
    border-radius: 26px;
    height: 75px;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.workgroup {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    padding: 20px 0;
}
.workgroup div {
    flex: 1;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E2E3E1;
    font-size: 24px;
    text-align: center;
}

/* Latest release */
.latest-release {
    width: 35%;
    padding: 0 20px;
    margin: 0 auto;
}
.latest-release h2 {
    background: var(--gradient-main);
    font-size: 32px;
    border-radius: 26px;
    height: 75px;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.latest-release div {
    flex: 1;
    height: 400px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E2E3E1;
    font-size: 24px;
    text-align: center;
    margin: 20px auto;
}

/* Transitions */
/* Information boxes */
.information-box:hover{
    transform: translateY(-2px);
    transition: transform .18s ease;
}
/* Carousel */
.carousel__btn:hover{ background: rgba(216,117,255,.9); }

/* Navigation */
.navigation-menu{ will-change: transform; }
.navigation-menu:hover{ transform: translateZ(0) scale(1.05); }



@media (max-width: 600px) {
    /* Carousel */
    .carousel{
        background-color: var(--color-lilac);
        display: flex;
        height: 100%;
        margin: 0 auto;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }

    .carousel__viewport{
        overflow: hidden;
        touch-action: pan-y;
    }

    .carousel__track{
        display: flex;
        transition: transform .45s ease;
        will-change: transform;
    }

    .carousel__slide{
        background: var(--color-lilac);
        min-width: 100%;
    }

    .carousel__slide img{
        display: block;
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
    .carousel__btn{
        display: none;
    }
    .carousel__dots{
        bottom: 10px;
        display: flex;
        left: 0;
        gap: 18px;
        justify-content: center;
        position: absolute;
        right: 0;
    }
    .carousel__dot{
        background: transparent;
        border: 0;
        color: var(--color-white);
        cursor: pointer;
        display: block;
        height: 50px;
        line-height: 0;
        overflow: hidden;
        padding: 0;
        width: 20px;
    }
    .carousel__dot[aria-current="true"]{
        transform: scale(1.25);
    }
    .carousel__dot svg{
        display: block;
        height: 100%;
        width: 100%;
    }
    .main-insta{
        border-radius: 12px;
        overflow: hidden;
    }

    /* Information boxes */
    .information{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 10% 4%;
        box-sizing: border-box;
    }
    .information-box{
        position: relative;
        width: 100%;
        height: 170px;
        border-radius: 20px;
        overflow: hidden;
        display: block;
        text-decoration: none;
    }
    .information-box img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .information-text{
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--color-black);
        text-align: center;
        font-weight: 700;
        font-size: clamp(14px, 5vw, 15px);
        letter-spacing: 1px;
        text-shadow: 10px 12px 10px rgba(0,0,0,0.15);
        padding: 5px;
        box-sizing: border-box;
    }
    .information-text em{
        font-style: normal;
    }

    /* Promo slider móvil */
    .promo-slider {
        width: 100%;
        box-sizing: border-box;
    }

    .promo-slider__viewport {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .promo-slider__track {
        display: flex;
        width: 100%;
        transition: transform 0.6s ease-in-out;
        will-change: transform;
    }

    .promo-slide {
        min-width: 100%;
        flex: 0 0 100%;
        display: block;
        text-decoration: none;
    }

    .promo-slide img {
        width: 100%;
        height: 100%;
        object-fit:scale-down;
        display: block;
    }

    /* Latest release */
    .latest-release{
        width: 100%;
        padding: 16px 16px;
        margin: 0 auto;
    }

    .latest-release h2{
        background: linear-gradient(135deg, var(--color-pink), var(--color-cream), #cbffed);
        font-size: 22px;
        border-radius: 20px;
        height: 60px;
        align-self: center;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 12px;
    }

    .latest-release div{
        flex: 1;
        height: 260px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #E2E3E1;
        font-size: 18px;
        text-align: center;
        margin: 16px auto;
    }

    .information-box:hover{
        transform: translateY(-2px);
        transition: transform .18s ease;
    }
}



@media (min-width: 1024px) {
    /* Carousel */
    .carousel{
        background-color: #d8b1ff;
        display: flex;
        height: 100%;
        margin: 0 auto;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    .carousel__viewport{ 
        overflow: hidden; 
        touch-action: pan-y; 
    }
    .carousel__track{
        display: flex; 
        transition: transform .45s ease;
        will-change: transform;
    }
    .carousel__slide{
        background: #d8b1ff;
        min-width:100%;
    }
    .carousel__slide img{
        display:block;
        height:100%; 
        object-fit: contain; 
        width:100%; 
    }
    .carousel__btn{
        background: rgba(0,0,0,.45); 
        border:0; 
        border-radius:999px;
        color:#fff; 
        cursor:pointer; 
        display:grid; 
        font-size:28px;
        height:88px; 
        place-items:center;
        position:absolute; 
        transform:translateY(-50%);
        top:50%; 
        width:44px; 
    }
    .prev{ left:10px; } 
    .next{ right:10px; }
    .carousel__dots{
        bottom:10px;
        display:flex; 
        gap:28px; 
        justify-content:center;
        left:0; 
        position:absolute; 
        right:0; 
    }
    .carousel__dot {
        background:transparent;
        border:0;
        color: #ccc;
        cursor: pointer;
        display:block;
        height: 80px;
        line-height:0;
        overflow:hidden;
        padding:0;
        width: 30px;
    }
    .carousel__dot[aria-current="true"] {
        transform: scale(1.25);
    }
    .carousel__dot svg{
        display:block;
        height:100%;
        width:100%;
    }

    

/* Information boxes */
    .information{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;
        padding: 30px 50px;
        box-sizing: border-box;
    }
    .information-box{
        position: relative;
        flex: 1;
        height: 450px;
        border-radius: 26px;
        overflow: hidden;
        display: block;
        text-decoration: none;
    }
    /* Background image */
    .information-box img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    /* Text */
    .information-text{
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: black;
        text-align: center;
        font-weight: 900;
        font-size: clamp(20px, 2.2vw, 44px);
        letter-spacing: 1px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.15);
        padding: 14px;
        box-sizing: border-box;
    }
    .information-text em{
        font-style: normal;
    }

    /* Hover */
    .information-box{
        transition: transform .18s ease;
    }

    /* Working team */
    .promo-slider {
    width: 100%;
    box-sizing: border-box;
    }

    .promo-slider__viewport {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .promo-slider__track {
        display: flex;
        transition: transform 0.6s ease-in-out;
        will-change: transform;
    }

    .promo-slide {
        min-width: 100%;
        flex: 0 0 100%;
        display: block;
        text-decoration: none;
    }

    .promo-slide img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        display: block;
    }

    /* Latest release */
    .latest-release {
        width: 35%;
        padding: 30px 0;
        margin: 0 auto;
    }
    .latest-release h2 {
        background: var(--gradient-main);
        font-size: 32px;
        border-radius: 26px;
        height: 75px;
        align-self: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .latest-release div {
        flex: 1;
        height: 400px;
        width: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #E2E3E1;
        font-size: 24px;
        text-align: center;
        margin: 20px auto;
    }

    /* Transitions */
    /* Information boxes */
    .information-box:hover{
        transform: translateY(-2px);
        transition: transform .18s ease;
    }
    /* Carousel */
    .carousel__btn:hover{ background: rgba(216,117,255,.9); }

    /* Navigation */
    .navigation-menu{ will-change: transform; }
    .navigation-menu:hover{ transform: translateZ(0) scale(1.05); }
}