.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: 900px;
    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-launch-section {
    padding: 50px 16px;
    min-height: 100vh;
}

.latest-launch-kicker {
    font-size: 22px;
    padding: 16px 22px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.latest-launch-image-box {
    width: min(330px, 88vw);
}

/* Products reviews */
.reviews-section {
    padding: 60px 20px;
    align-items: flex-start;
}

.reviews-header {
    margin-bottom: 32px;
}

.reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
}

.review-card {
    padding: 22px;
    border-radius: 20px;
}

.review-top {
    flex-direction: column;
    gap: 8px;
}

/* 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: 1000;
        font-size: clamp(30px, 2.2vw, 28px);
        letter-spacing: 1px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.15);
        padding: 14px;
        box-sizing: border-box;
        -webkit-text-stroke: 1px rgba(0,0,0,0.15);
    }
    .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-launch-section {
        min-height: 80vh;
        width: 100%;
        background: var(--color-white, #fff);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 70px 20px;
        box-sizing: border-box;
    }

    .latest-launch-content {
        width: 100%;
        max-width: 760px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .latest-launch-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .latest-launch-kicker {
        display: inline-block;
        background: linear-gradient(90deg, #ffc6de, #fff3a8, #cffff0, #d8b1ff);
        color: var(--color-black, #000);
        font-size: clamp(24px, 4vw, 34px);
        font-weight: 700;
        letter-spacing: 1px;
        padding: 18px 32px;
        border-radius: 24px;
        margin-bottom: 28px;
        text-align: center;
    }

    .latest-launch-text h2,
    .latest-launch-text p,
    .latest-launch-btn {
        display: none;
    }

    .latest-launch-image-box {
        width: min(400px, 80vw);
        aspect-ratio: 1 / 1;
        background: #e5e5e5;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .latest-launch-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


    /* 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); }

    /* Reviews Section */
    .reviews-section {
        min-height: 100vh;
        width: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #f7ecff 45%, #e8fff8 100%);
        display: flex;
        align-items: center;
        padding: 80px 6%;
        box-sizing: border-box;
    }

    .reviews-content {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .reviews-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
    }

    .reviews-kicker {
        display: inline-block;
        color: var(--color-black);
        background: var(--color-lilac, #d8b1ff);
        padding: 8px 16px;
        border-radius: 999px;
        font-size: 14px;
        margin-bottom: 14px;
    }

    .reviews-header h2 {
        font-size: clamp(32px, 5vw, 58px);
        margin: 0 0 16px;
        color: var(--color-black);
    }

    .reviews-header p {
        font-size: 17px;
        line-height: 1.6;
        color: #555;
        margin: 0;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .review-card {
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(0,0,0,.12);
        border-radius: 24px;
        padding: 26px;
        box-shadow: 0 18px 35px rgba(0,0,0,.10);
        transition: transform .25s ease, box-shadow .25s ease;
    }

    .review-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 42px rgba(0,0,0,.14);
    }

    .review-top {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .review-top h3 {
        font-size: 18px;
        margin: 0 0 4px;
        color: var(--color-black);
    }

    .review-top span {
        font-size: 13px;
        color: #777;
    }

    .review-stars {
        color: #111;
        font-size: 14px;
        margin: 0;
        white-space: nowrap;
    }

    .review-message {
        font-size: 15px;
        line-height: 1.7;
        color: #333;
        margin: 0 0 22px;
    }

    .review-footer {
        border-top: 1px solid rgba(0,0,0,.10);
        padding-top: 14px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .review-footer strong {
        font-size: 15px;
        color: var(--color-black);
    }

    .review-footer small {
        font-size: 12px;
        color: #777;
    }
}