/* ==========================================================
   WISHLLY MOBILE LANDING
========================================================== */

:root {

    --primary: #8515FC;
    --secondary: #F1C0DD;
    --accent: #A8DADC;

    --background: #F5F7FB;

    --text: #2B2B2B;
    --text-light: #6E6E73;

    --white: #FFFFFF;

    --radius: 26px;

    --shadow:
        0 20px 60px rgba(0, 0, 0, .12);

    --gradient:
        linear-gradient(135deg,
            #8515FC 0%,
            #A8DADC 55%,
            #F1C0DD 100%);

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;

    background: var(--background);

    color: var(--text);

}



/* ==========================================================
   MOBILE PAGE
========================================================== */

#mobilePage {

    width: 100%;

}



/* ==========================================================
   HERO
========================================================== */

.mobile-app {

    background: var(--gradient);

    padding: 20px 20px 60px;

    border-radius: 0 0 35px 35px;

}



/* ==========================================================
   CARD
========================================================== */

.hero-card {

    background: white;

    border-radius: 30px;

    padding: 24px 25px;

    box-shadow: var(--shadow);

    text-align: center;

}



/* ==========================================================
   LOGO
========================================================== */

.logo {

    width: 130px;

    display: block;

    margin: auto;

    margin-bottom: 12px;

    filter:
        drop-shadow(0 12px 25px rgba(133, 21, 252, .25));

}



/* ==========================================================
   TITULO
========================================================== */

.hero-card h1 {

    font-size: 36px;

    font-weight: 800;

    color: #222;

    margin-top: 2px;

}



/* ==========================================================
   SUBTITULO
========================================================== */

.hero-card h2 {

    margin-top: 10px;

    font-size: 28px;

    line-height: 1.35;

    font-weight: 700;

}



/* ==========================================================
   DESCRIPCION
========================================================== */

.hero-description {

    margin: 18px auto;

    max-width: 320px;

    font-size: 17px;

    color: #666;

    line-height: 1.9;

}



/* ==========================================================
   FEATURES
========================================================== */

.features {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 16px;

}

.feature {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 18px;

    border-radius: 18px;

    background: white;

    border: 1px solid #ECECEC;

    transition: .30s;

}

.feature span {

    font-size: 34px;

}

.feature p {

    font-size: 18px;

    font-weight: 600;

}



/* ==========================================================
   BOTON
========================================================== */

.download-button {

    display: block;

    margin-top: 20px;

    background: linear-gradient(135deg,
            #8515FC,
            #C254FF,
            #A8DADC);

    color: white;

    text-decoration: none;

    padding: 20px;

    border-radius: 70px;

    font-size: 20px;

    font-weight: 700;

    box-shadow:
        0 18px 35px rgba(133, 21, 252, .28);

    transition: .30s;

}

.download-button:hover {

    transform: translateY(-4px);

    box-shadow:
        0 24px 45px rgba(133, 21, 252, .35);

}



/* ==========================================================
   PLAY STORE
========================================================== */

.playstore-text {

    margin-top: 14px;

    color: #666;

    font-size: 14px;

}

/* ==========================================================
   COMO FUNCIONA
========================================================== */

.how-it-works {

    padding: 60px 22px;

}

.how-it-works h2 {

    text-align: center;

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 40px;

}

.steps {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.step-card {

    background: white;

    border-radius: 22px;

    padding: 28px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    text-align: center;

}

.step-number {

    width: 60px;

    height: 60px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #8515FC,
            #A8DADC);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 18px;

}

.step-card h3 {

    font-size: 24px;

    margin-bottom: 12px;

}

.step-card p {

    color: #666;

    line-height: 1.8;

}

/* ==========================================================
   CONFIANZA
========================================================== */

.trust-section {

    padding: 10px 22px 60px;

}

.trust-section h2 {

    text-align: center;

    font-size: 30px;

    margin-bottom: 35px;

}

.trust-card {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.trust-item {

    background: white;

    border-radius: 22px;

    padding: 22px;

    display: flex;

    gap: 18px;

    align-items: flex-start;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.emoji {

    font-size: 34px;

}

.trust-item h3 {

    margin-bottom: 8px;

    font-size: 22px;

}

.trust-item p {

    color: #666;

    line-height: 1.7;

}

/* ==========================================================
   FOOTER
========================================================== */

.footer {

    background: #202020;

    color: white;

    padding: 45px 25px;

    text-align: center;

}

.footer a {

    display: block;

    color: white;

    text-decoration: none;

    margin: 12px 0;

    font-weight: 500;

    transition: .25s;

}

.footer a:hover {

    color: #F1C0DD;

}

.footer p {

    margin-top: 30px;

    color: #BFBFBF;

    line-height: 1.8;

}

/* ==========================================================
   BADGE
========================================================== */

.badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 16px;

    border-radius: 50px;

    background: #F4EDFF;

    color: #8515FC;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 12px;

}

/* ==========================================================
   QUICK TRUST
========================================================== */

.quick-trust {

    display: flex;

    justify-content: space-around;

    margin-top: 22px;

    margin-bottom: 12px;

}

.quick-trust div {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

}

.quick-trust span {

    font-size: 12px;

    color: #777;

    font-weight: 600;

}

/* ==========================================================
   PERFECTO PARA
========================================================== */

.occasions {

    padding: 20px 22px 60px;

}

.occasions h2 {

    text-align: center;

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 35px;

}

.occasion-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.occasion-card {

    background: white;

    border-radius: 22px;

    padding: 24px 18px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .25s;

}

.occasion-card:active {

    transform: scale(.97);

}

.icon {

    font-size: 40px;

    margin-bottom: 12px;

}

.occasion-card span {

    display: block;

    font-weight: 600;

    font-size: 16px;

}

/* ==========================================================
   PHONE SHOWCASE
========================================================== */

.phone-showcase {

    margin: 35px 0 20px;

}

.phone-showcase h3 {

    margin-bottom: 18px;

    font-size: 22px;

    font-weight: 700;

}

.phone-slider {

    position: relative;

    width: 240px;

    height: 490px;

    margin: auto;

    overflow: hidden;

}

.phone-slider img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 30px;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, .18);

    opacity: 0;

    transform: scale(.92);

    transition: .45s;

}

.phone-slider img.active {

    opacity: 1;

    transform: scale(1);

}

.slider-dots {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 18px;

}

.slider-dots span {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #D8D8D8;

    transition: .30s;

}

.slider-dots span.active {

    background: #8515FC;

    width: 28px;

    border-radius: 20px;

}

/* ==========================================================
   APP PREVIEW
========================================================== */

.app-preview {

    margin: 35px 0 40px;

}

.app-preview h3 {

    text-align: center;

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 20px;

}

.appSwiper {

    width: 100%;

    padding: 20px 0 50px;

}

.swiper-slide {

    display: flex;
    justify-content: center;
    align-items: center;

    transition: .35s;

}

.swiper-slide img {

    width: 220px;

    border-radius: 28px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .18);

    user-select: none;

    -webkit-user-drag: none;

}

.swiper-slide:not(.swiper-slide-active) {

    transform: scale(.85);

    opacity: .45;

}

.swiper-slide-active {

    transform: scale(1);

    opacity: 1;

}

.swiper-pagination-bullet {

    background: #BBB;

    opacity: 1;

}

.swiper-pagination-bullet-active {

    background: #8515FC;

}