@font-face {
    font-family: ProximaNova;
    src: url('../fonts/proximanova_regular.ttf');
    font-weight: normal;
}
@font-face {
    font-family: ProximaNova;
    src: url('../fonts/proximanova_bold.otf');
    font-weight: bold;
}

body {
    font-family: ProximaNova, sans-serif !important;
}

header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: white;
    z-index: 60;
    padding: 0 !important;
}
.header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.4rem 2.25rem;
    gap: 1rem;
    min-height: 70px;
    -webkit-box-pack: justify;
    -ms-flex-pack: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media screen and (width > 640px) {
    header {
        box-shadow: 0 4px 41px -5px rgba(128,154,211,.2);
        padding: 1.2rem 2rem;
    }
}

/* strip */
/* Core functionality */
#animated-text-strip{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    overflow: hidden;
}
#animated-text-strip .marquee {
    white-space: nowrap;
    animation: marquee 5s linear infinite;
    max-width: none;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/* Styles for the sake of the demonstration */
#animated-text-strip{
    background: linear-gradient(90deg, #000000 0%, #000000 100%);
    padding: 5px 0;
}
.marquee {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}
.marquee b {
    font-weight: 700;
    /* color: #F99207; */
    color: #F99207;
}
/* end of strip */

.btn, .btn:link, .btn:active, .btn:visited {
    border-radius: 41px;
    padding-top: 8px;
    padding-right: 28px;
    padding-bottom: 12px;
    padding-left: 28px;
    background: linear-gradient(90deg, #FFC226 0%, #F99207 100%);
    color: #fff;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}
.btn:hover {
    background: linear-gradient(90deg, #F99207 0%, #F99207 100%);
}

#promo {
    max-width: 1100px;
    margin-top: 65px;
}

#steps .main-container {
    max-width: 921px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 55px;
}

#steps .download-btn {
    background: black;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
}

#steps .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

#steps .section-title {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

#steps .step-number {
    width: 50px;
    height: 50px;
    background: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    margin: 0 auto 20px;
}

#steps .step-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

#steps .step-text strong {
    color: #333;
    font-weight: 600;
}

#steps .highlight {
    color: #667eea;
}

#steps .banner {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: bold;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#steps .download-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

#steps .qr-code {
    width: 120px;
    height: 120px;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
}

#steps .store-btn {
    background: black;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: transform 0.2s;
}

#steps .store-btn:hover {
    transform: scale(1.05);
    color: white;
}

#steps .store-icon {
    font-size: 24px;
}

@media (max-width: 768px) {
    #steps .main-container {
        padding: 0 25px;
        margin-top: 30px;
    }

    #steps .section-title {
        font-size: 24px;
    }

    #steps .download-btn {
        font-size: 16px;
        padding: 16px 40px;
    }
}

#collections.features-section {
    max-width: 1035px;
    margin: 0 auto;
    margin-top: 100px;
}

#collections .section-title {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

#collections .feature-card {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    overflow: visible;
    position: relative;
}

#collections .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#collections .video-container {
    background: linear-gradient(135deg, #FDB44B 0%, #FF9A00 100%);
    border-radius: 24px 24px 0 0;
    padding: 40px 20px 0;
    position: relative;
    overflow: visible;
    min-height: 250px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

#collections .phone-mockup {
    position: relative;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    z-index: 10;
}

#collections .phone-frame {
    border-radius: 40px;
    padding: 0;
}

#collections .phone-frame-img {
    position: absolute;
    top: 0px;
    left: -3px;
    z-index: 11;
    width: 246px;
    height: 494px;
}

#collections .phone-screen {
    border-radius: 40px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 9 / 18.5;
}

#collections .phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#collections .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#collections .feature-content {
    background: white;
    border-radius: 24px;
    padding: 100px 30px 15px;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

#collections .feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

#collections .feature-description {
    font-size: 16px;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

#collections .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    #collections .feature-card {
        margin: 10px;
        margin-bottom: 30px;
    }

    #collections .feature-title {
        font-size: 24px;
    }

    #collections .feature-description {
        font-size: 15px;
    }

    #collections .video-container {
        min-height: 350px;
        padding: 20px 15px;
    }

    #collections .phone-mockup {
        max-width: 240px;
    }
}

#benefits.benefits-section {
    max-width: 1050px;
    margin: 0 auto;
    margin-top: 55px;
    padding: 0 20px;
}

#benefits .benefits-container {
    background: linear-gradient(135deg, #FDB44B 0%, #FF9A00 100%);
    border-radius: 32px;
    padding: 30px 40px 40px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

#benefits .benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

#benefits .benefits-header > img {
    width: 100%;
    max-width: 500px;
}

#benefits .benefits-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

#benefits .benefits-header .subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #0052CC;
    text-transform: uppercase;
}

#benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
    perspective: 1000px;
}

#benefits .benefit-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    transform: rotateZ(-5deg);
}

#benefits .benefit-card:nth-child(2) {
    transform: rotateZ(3deg);
}

#benefits .benefit-card:nth-child(3) {
    transform: rotateZ(-4deg);
}

#benefits .benefit-card:nth-child(4) {
    transform: rotateZ(5deg);
}

#benefits .benefit-card:hover {
    transform: rotateZ(0deg) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

#benefits .benefit-card:nth-child(2):hover {
    transform: rotateZ(0deg) translateY(-5px);
}

#benefits .benefit-card:nth-child(3):hover {
    transform: rotateZ(0deg) translateY(-5px);
}

#benefits .benefit-card:nth-child(4):hover {
    transform: rotateZ(0deg) translateY(-5px);
}

#benefits .benefit-icon {
    position: absolute;
    font-size: 60px;
    z-index: 1;
}
#benefits .benefit-icon > img {
    max-width: 115px;
    height: auto;
}

#benefits .benefit-card:nth-child(1) .benefit-icon {
    bottom: -35px;
    right: 10px;
}

#benefits .benefit-card:nth-child(2) .benefit-icon {
    top: -20px;
    left: -10px;
}

#benefits .benefit-card:nth-child(3) .benefit-icon {
    bottom: -55px;
    right: 0px;
}

#benefits .benefit-card:nth-child(4) .benefit-icon {
    top: -55px;
    right: 10px;
}

#benefits .benefit-content {
    position: relative;
    z-index: 2;
}

#benefits .benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

#benefits .benefit-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

#benefits .cta-button {
    display: flex;
    justify-content: center;
}

#benefits .btn-star {
    background: black;
    color: white;
    padding: 16px 90px;
    border-radius: 50px;
    font-size: 26px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

#benefits .btn-star:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (max-width: 768px) {
    #benefits .benefits-container {
        padding: 40px 25px;
    }

    #benefits .benefits-header h2 {
        font-size: 26px;
    }

    #benefits .benefits-header .subtitle {
        font-size: 22px;
    }

    #benefits .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    #benefits .benefit-card {
        padding: 25px 20px;
    }

    #benefits .benefit-icon {
        font-size: 50px;
    }

    #benefits .benefit-title {
        font-size: 16px;
    }

    #benefits .benefit-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #benefits .benefits-grid {
        grid-template-columns: 1fr;
    }

    #benefits .benefits-header h2 {
        font-size: 22px;
    }

    #benefits .benefits-header .subtitle {
        font-size: 18px;
    }
}

#collaborations.collaborations-section {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 0 20px;
    text-align: center;
}

#collaborations .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 60px;
}

#collaborations .brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(69px, 69px));
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
}

#collaborations .brand-logo {
    width: 69px;
    height: 63px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 10px;
    text-align: center;
    padding: 6px;
}

#collaborations .brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Estilos específicos para marcas */
/* #collaborations .brand-bershka {
    background: black;
    color: white;
}

#collaborations .brand-sephora {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

#collaborations .brand-primor {
    background: black;
    color: white;
}

#collaborations .brand-barcelo {
    background: #999;
    color: white;
}

#collaborations .brand-lacoste {
    background: white;
    color: #2d5f2e;
    border: 2px solid #2d5f2e;
}

#collaborations .brand-bmw {
    background: #0052CC;
    color: white;
}

#collaborations .brand-guess {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

#collaborations .brand-burberry {
    background: #1a472a;
    color: white;
}

#collaborations .brand-lancome {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

#collaborations .brand-desigual {
    background: black;
    color: white;
}

#collaborations .brand-quiksilver {
    background: white;
    color: #333;
    border: 2px solid #333;
}

#collaborations .brand-redbull {
    background: #FF0000;
    color: white;
}

#collaborations .brand-nike {
    background: black;
    color: white;
}

#collaborations .brand-kiehls {
    background: black;
    color: white;
}

#collaborations .brand-alibaba {
    background: #FF6B00;
    color: white;
}

#collaborations .brand-adidas {
    background: black;
    color: white;
} */

@media (max-width: 768px) {
    #collaborations .section-title {
        font-size: 24px;
        margin-bottom: 60px;
    }

    #collaborations .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(69px, 69px));
        gap: 15px;
    }

    #collaborations .brand-logo {
        width: 69px;
        height: 69px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    #collaborations .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    #collaborations .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(69px, 69px));
        gap: 12px;
    }

    #collaborations .brand-logo {
        width: 69px;
        height: 69px;
        font-size: 9px;
    }
}

#influencers.influencers-section {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 100px;
}

#influencers .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
}

#influencers .slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

#influencers .slider-nav {
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 40px;
    color: #333;
}

#influencers .slider-nav:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

#influencers .slider-nav:active {
    transform: scale(0.95);
}

#influencers .slider-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    height: 325px;
}

#influencers .slider {
    display: flex;
    transition: transform 0.5s ease-out;
    gap: 20px;
    width: 100%;
}

#influencers .influencer-card {
    flex: 0 0 calc(20% - 16px);
    background: white;
    border-radius: 16px;
    padding: 25px 10px;;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    min-width: 0;
}

#influencers .influencer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

#influencers .influencer-card > a {
    text-decoration: none;
}

#influencers .influencer-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 4px solid #f0f0f0;
}

#influencers .influencer-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

#influencers .influencer-handle {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

#influencers .btn-seguir {
    background: black;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

#influencers .btn-seguir:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 1024px) {
    #influencers .influencer-card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 768px) {
    #influencers .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    #influencers .influencer-card {
        flex: 0 0 calc(33.333% - 14px);
        padding: 20px;
    }

    #influencers .influencer-avatar {
        width: 100px;
        height: 100px;
    }

    #influencers .influencer-name {
        font-size: 16px;
    }

    #influencers .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #influencers .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    #influencers .influencer-card {
        flex: 0 0 calc(50% - 10px);
        padding: 18px;
    }

    #influencers .influencer-avatar {
        width: 80px;
        height: 80px;
    }

    #influencers .influencer-name {
        font-size: 14px;
    }

    #influencers .influencer-handle {
        font-size: 12px;
    }

    #influencers .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    #influencers .slider-container {
        gap: 10px;
    }
}

.testimonials-cover {
    background: url('../img/bg.png');
    background-size: cover;
    background-position: center;
}

#testimonials.testimonials-section {
    max-width: 1050px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 0 20px;
    position: relative;
}

#testimonials .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 200px;
}

#testimonials .testimonials-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    flex-wrap: wrap;
}

#testimonials .phone-mockup {
    width: 220px;
    height: 440px;
    position: relative;
    flex-shrink: 0;
}

#testimonials .phone-mockup:nth-child(1) {
    z-index: 1;
    margin-top: -300px;
}

#testimonials .phone-mockup:nth-child(2) {
    z-index: 2;
    margin-top: -150px;
}

#testimonials .phone-mockup:nth-child(3) {
    z-index: 1;
}

#testimonials .phone-frame {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    cursor: pointer;
}

#testimonials .phone-frame-img {
    position: absolute;
    width: 101%;
    height: 101%;
    left: -0.5%;
    top: -0.5%;
    z-index: 2;
}

#testimonials .phone-play-button {
    position: absolute; top: 50%; left: 50%; 
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border: none;
    cursor: pointer;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: none;
    opacity: 0.65;
    z-index: 10;
}

#testimonials .phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 18px;
    background: white;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

#testimonials .phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#testimonials .video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#testimonials .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#testimonials .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 11px;
    text-align: center;
    padding: 15px;
    flex-direction: column;
    gap: 8px;
}

#testimonials .play-button {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    backdrop-filter: blur(4px);
}

@media (max-width: 1024px) {
    .testimonials-cover {
        background: url(../img/bg_mobile.png);
    }

    #testimonials .testimonials-container {
        height: 550px;
    }

    #testimonials .phone-mockup:nth-child(1) {
        margin-top: 0;
    }

    #testimonials .phone-mockup:nth-child(2) {
        margin-top: 0;
    }

    #testimonials .phone-mockup:nth-child(2) {
        transform: translateX(calc(-50% - 120px));
    }

    #testimonials .phone-mockup:nth-child(4) {
        transform: translateX(calc(-50% + 120px));
    }

    #testimonials .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    #testimonials .orange-stripe-1 {
        width: 300px;
        height: 70px;
        left: -30px;
    }

    #testimonials .orange-stripe-2 {
        width: 250px;
        height: 60px;
        right: -20px;
    }
}

@media (max-width: 768px) {
    #testimonials .testimonials-container {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 20px 0;
    }

    #testimonials .phone-mockup {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 auto;
        width: 200px;
        height: 400px;
    }

    #testimonials .phone-mockup:nth-child(3) {
        width: 200px;
        height: 400px;
    }

    #testimonials .orange-stripe {
        display: none;
    }

    #testimonials .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    #testimonials .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    #testimonials .phone-mockup {
        width: 170px;
        height: 340px;
    }
}

.highlight {
    color: #FFC33B;
    font-weight: bold;
}
.flex {
    display: flex;
}
.clear {
    clear: both;
}
.relative {
    position: relative;
}

footer {
    margin-top: 100px;
    grid-area: footer;
    background: #F1F1F2;
    padding: 2rem 0;
    color: #757577;

    font-weight: 600;
    font-style: Semibold;
    font-size: 16px;
}
footer a {
    text-decoration: none;
    color: #757577;
}
footer > div {
    font-weight: 500;
    display: grid;
    -webkit-box-pack: justify;
    justify-content: space-between;
    grid-template-areas: "privacy social copyright";
    --screen-max-width: 1024px;
    max-width: min(var(--screen-max-width),100vw);
    width: 100%;
    padding: 0 var(--screen-padding);
    margin: auto;
}

#app.modal {
    --bs-modal-width: 900px;
}
#app button {
    position: absolute;
    right: 15px;
}
#app h1 {
    margin-top: 85px;
    font-weight: 800;
    font-style: Extrabold;
    font-size: 24px;
    color: #1C1C1C;
}
#app .text {
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    color: #C3CBD9;
}
#app h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    color: #757577;
}
#app .qr {
    width: 100%;
    max-width: 157px;
}
#app .ios, #app .android {
    width: 100%;
    max-width: 168px;
}

.d-desktop { display: block; }
.d-mobile { display: none; }
@media (max-width: 575.98px) {
.d-desktop { display: none; }
.d-mobile { display: inline; }

    .btn, .btn:link, .btn:active, .btn:visited {
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
    }

    #promo {
        margin-top: 15px;
        text-align: center;
    }

    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    #app {
        text-align: center;
    }
    #app img {
        max-height: 250px;
    }
    #app h1 {
        margin-top: 15px;
        font-size: 20px;
    }
    #app .text {
        font-size: 18px;
    }
    #app .container {
        margin-top: 10px !important;
        margin-bottom: 20px;
    }
    #app a {
        text-decoration: none;
    }

}