*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, p, ul {
    margin: 0;
}

ul {
    padding: 0;
}

#player, #player *, #player *::before, #player *::after {
    box-sizing: content-box;
}

#player img {
    max-width: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: var(--bg2);
    color: var(--txt);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

main img, footer img {
    max-width: 100%;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: .015em;
    line-height: 1.15;
}

.container {
    width: min(1160px, 100% - 2.5rem);
    margin-inline: auto;
}

.sec {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 8rem) 0;
    scroll-margin-top: calc(var(--nav-h) - 1px);
}

.sec::before,
.sec::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sec::before {
    z-index: -3;
}

.sec::after {
    z-index: -2;
}

#inicio::before {
    background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 100%);
}

#inicio::after {
    background:
        radial-gradient(900px 500px at 15% 0%, rgba(255, 255, 255, .10), transparent 60%),
        radial-gradient(700px 500px at 100% 100%, rgba(0, 0, 0, .30), transparent 60%);
}

main > section#download,
main > section#extra-features,
main > section#news,
main > section#camera {
    --txt: #14141c;
    --glass: color-mix(in srgb, #14141c 5%, transparent);
    --glass-strong: color-mix(in srgb, #14141c 10%, transparent);
    --glass-border: color-mix(in srgb, #14141c 14%, transparent);
    --muted: color-mix(in srgb, #14141c 72%, transparent);
    --shadow: 0 24px 60px -24px rgba(0, 0, 0, .14);
}

main > section#download::before,
main > section#extra-features::before,
main > section#news::before,
main > section#camera::before {
    background: var(--bg-light);
}

main > section#download::after,
main > section#extra-features::after,
main > section#news::after,
main > section#camera::after {
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%,
            color-mix(in srgb, var(--bg1) 7%, transparent), transparent 60%),
        radial-gradient(ellipse 60% 50% at 100% 100%,
            color-mix(in srgb, var(--bg2) 5%, transparent), transparent 60%);
}

main > section#download .card,
main > section#extra-features .card,
main > section#news .card,
main > section#camera .card {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(20, 20, 28, .08);
}

main > section#features::before {
    background: var(--bg1);
}

main > section#features::after {
    background-image:
        linear-gradient(
            color-mix(in srgb, var(--bg1) 85%, transparent),
            color-mix(in srgb, var(--bg1) 92%, transparent)
        ),
        var(--photo-features);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

main > section#team::before {
    background: var(--bg2);
}

main > section#team::after {
    background-image:
        linear-gradient(
            color-mix(in srgb, var(--bg2) 85%, transparent),
            color-mix(in srgb, var(--bg2) 92%, transparent)
        ),
        var(--photo-team);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

main > section#chat::before {
    background: var(--bg1);
}

main > section#chat::after {
    background-image:
        linear-gradient(
            color-mix(in srgb, var(--bg1) 85%, transparent),
            color-mix(in srgb, var(--bg1) 92%, transparent)
        ),
        var(--photo-chat);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

main > section#contact::before {
    background: var(--bg2);
}

main > section#contact::after {
    background-image:
        linear-gradient(
            color-mix(in srgb, var(--bg2) 85%, transparent),
            color-mix(in srgb, var(--bg2) 92%, transparent)
        ),
        var(--photo-contact);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.sec-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.sec-title {
    font-size: clamp(2.2rem, 5.2vw, 3.6rem);
    line-height: 1.12;
    color: var(--txt);
    letter-spacing: .01em;
}

.sec-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    border-radius: 3px;
    margin: 1.1rem auto 0;
    background: currentColor;
    opacity: .55;
}

.sec-title.left {
    text-align: left;
}

.sec-title.left::after {
    margin-left: 0;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    box-shadow: var(--shadow);
}

.prose {
    font-size: 1.075rem;
    color: var(--muted);
}

.prose p + p {
    margin-top: 1rem;
}

.prose a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose img {
    border-radius: 12px;
    height: auto;
}

.prose table {
    width: 100%;
    margin: 1.25rem 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--glass-border) !important;
    border-radius: 14px;
    overflow: hidden;
    background: color-mix(in srgb, var(--txt) 4%, transparent);
    font-size: .98rem;
}

.prose th,
.prose td {
    padding: .85rem 1.1rem;
    text-align: left;
    vertical-align: top;
    color: var(--txt);
    border: 0 !important;
    border-bottom: 1px solid var(--glass-border) !important;
}

.prose th + th,
.prose td + td {
    border-left: 1px solid var(--glass-border) !important;
}

.prose tr:last-child td {
    border-bottom: 0 !important;
}

.prose th,
.prose thead td {
    font-weight: 600;
    letter-spacing: .02em;
    background: color-mix(in srgb, var(--txt) 10%, transparent);
}

.prose tbody tr {
    transition: background .2s;
}

.prose tbody tr:hover {
    background: color-mix(in srgb, var(--txt) 7%, transparent);
}

@media (max-width: 700px) {
    .prose table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

.panel {
    padding: clamp(1.75rem, 4vw, 3rem);
}

.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    background: rgba(8, 8, 12, .45);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .35s var(--ease), box-shadow .35s var(--ease);
}

.nav.scrolled {
    background: rgba(8, 8, 12, .85);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    min-width: 0;
}

.brand img {
    height: 48px;
    width: auto;
    border-radius: 10px;
}

.brand span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu {
    display: flex;
    align-items: center;
    gap: .2rem;
    list-style: none;
}

.menu a {
    display: block;
    padding: .55rem 1rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, .75);
    font-size: .92rem;
    font-weight: 500;
    transition: color .25s, background .25s;
}

.menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.menu a.active {
    color: #fff;
    background: rgba(255, 255, 255, .14);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, .08);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .3s var(--ease), opacity .2s;
}

.nav.open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }

    .menu {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
        padding: 1rem 1.25rem 1.5rem;
        background: rgba(8, 8, 12, .96);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity .25s var(--ease), transform .25s var(--ease);
    }

    .menu a {
        padding: .85rem 1rem;
        border-radius: 12px;
        font-size: 1rem;
    }

    .nav.open .menu {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

#inicio {
    padding: 0;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow i {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .45;
    animation: flutuar 18s var(--ease) infinite alternate;
}

.hero-glow i:nth-child(1) {
    width: 42vw;
    height: 42vw;
    left: -10vw;
    top: -10vw;
    background: var(--bg1);
}

.hero-glow i:nth-child(2) {
    width: 36vw;
    height: 36vw;
    right: -8vw;
    bottom: -12vw;
    background: rgba(255, 255, 255, .18);
    animation-delay: -6s;
}

@keyframes flutuar {
    to {
        transform: translate3d(6vw, 4vw, 0) scale(1.15);
    }
}

.player-wrap {
    width: 100%;
    margin-top: var(--nav-h);
    height: calc(100svh - var(--nav-h));
}

#player {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0;
    display: block;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.app-copy .prose {
    margin-top: 1.5rem;
}

.stores {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2.25rem;
}

.stores a {
    display: block;
    transition: transform .3s var(--ease), filter .3s;
}

.stores a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .35));
}

.stores img {
    height: 54px;
    width: auto;
}

.phone {
    position: relative;
    width: min(290px, 78vw);
    aspect-ratio: 9 / 19;
    margin: auto;
    padding: 12px;
    border-radius: 46px;
    background: #0b0b10;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, .08),
        0 0 0 9px rgba(0, 0, 0, .35),
        0 50px 90px -30px rgba(0, 0, 0, .7);
    animation: boiar 6s ease-in-out infinite;
}

.phone::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    translate: -50% 0;
    width: 88px;
    height: 24px;
    border-radius: 20px;
    background: #0b0b10;
    z-index: 2;
}

@keyframes boiar {
    50% {
        transform: translateY(-12px);
    }
}

.phone-screen {
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(165deg, var(--bg1), var(--bg2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    padding: 2.5rem 1.25rem;
    text-align: center;
    color: #fff;
}

.phone-screen img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .6);
}

.phone-screen strong {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
}

.eq {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 26px;
}

.eq b {
    width: 4px;
    border-radius: 2px;
    background: #fff;
    opacity: .85;
    animation: eq 1s ease-in-out infinite;
}

.eq b:nth-child(2) { animation-delay: -.2s; }
.eq b:nth-child(3) { animation-delay: -.45s; }
.eq b:nth-child(4) { animation-delay: -.7s; }
.eq b:nth-child(5) { animation-delay: -.3s; }

@keyframes eq {
    0%, 100% { height: 25%; }
    50%      { height: 100%; }
}

.play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
}

.about {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 2.5rem;
    align-items: center;
}

.about-logo {
    display: grid;
    place-items: center;
}

.about-logo img {
    max-height: 220px;
    width: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .4));
}

@media (max-width: 800px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about-logo {
        order: -1;
    }
}

.narrow {
    max-width: 880px;
    margin-inline: auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.4rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .35s var(--ease), background .35s, border-color .35s;
}

.news-card:hover {
    transform: translateY(-6px);
    background: var(--glass-strong);
    border-color: color-mix(in srgb, var(--txt) 28%, transparent);
}

.news-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(0, 0, 0, .25);
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}

.news-card:hover .news-thumb img {
    transform: scale(1.06);
}

.news-body {
    padding: 1.15rem 1.25rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    flex: 1;
}

.news-date {
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.news-body h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .88rem;
    font-weight: 600;
    opacity: .85;
}

.news-card:hover .news-more ion-icon {
    transform: translateX(4px);
}

.news-more ion-icon {
    transition: transform .3s var(--ease);
}

.news-msg {
    grid-column: 1 / -1;
    padding: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.skeleton {
    min-height: 280px;
    position: relative;
    overflow: hidden;
    background: #e8ecf3;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .75) 50%, transparent 70%);
    animation: brilho 1.4s infinite;
}

@keyframes brilho {
    from { transform: translateX(-100%); }
    to   { transform: translateX(100%); }
}

.embed {
    padding: 10px;
    overflow: hidden;
}

.embed iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: calc(var(--radius) - 8px);
    background: rgba(0, 0, 0, .25);
}

.embed-chat iframe {
    height: 540px;
}

.embed-video iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 260px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
}

.contact-card {
    padding: 2.25rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    transition: transform .35s var(--ease), background .35s;
}

a.contact-card:hover {
    transform: translateY(-6px);
    background: var(--glass-strong);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin-bottom: .6rem;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
}

.contact-label {
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-value {
    font-weight: 600;
    font-size: 1.08rem;
    word-break: break-word;
}

.footer {
    background: #08080c;
    color: #fff;
    padding: 3.5rem 0 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 52px;
    width: auto;
    border-radius: 10px;
}

.footer-brand span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
}

.social {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1.75rem;
}

.social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: background .3s, transform .3s var(--ease);
}

.social a:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-3px);
}

.copy {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
}

.wa {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 115;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 6px;
    padding-right: 6px;
    border-radius: 999px;
    background: #16c060;
    color: #fff;
    box-shadow: 0 14px 34px -10px rgba(22, 192, 96, .7);
    transition: padding .35s var(--ease), transform .3s var(--ease);
}

.wa:hover {
    transform: translateY(-3px);
}

.wa-icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    background: rgba(0, 0, 0, .12);
    flex-shrink: 0;
}

.wa-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #16c060;
    animation: pulso 2.2s ease-out infinite;
}

@keyframes pulso {
    from {
        transform: scale(1);
        opacity: .9;
    }

    to {
        transform: scale(1.7);
        opacity: 0;
    }
}

.wa-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width .45s var(--ease);
}

.wa-text small {
    font-size: .75rem;
    opacity: .9;
}

.wa-text strong {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .wa {
        padding-right: 1.4rem;
    }

    .wa-text {
        max-width: 260px;
    }
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.js .reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

main > section#download,
main > section#extra-features,
main > section#news,
main > section#camera {
    color: #14141c;
}

main > section#download .sec-title,
main > section#extra-features .sec-title,
main > section#news .sec-title,
main > section#camera .sec-title {
    color: #14141c;
}

main > section#download .prose,
main > section#extra-features .prose,
main > section#news .prose,
main > section#camera .prose {
    color: rgba(20, 20, 28, .82);
}

main > section#download .prose a,
main > section#extra-features .prose a,
main > section#news .prose a,
main > section#camera .prose a {
    color: #0b0b10;
}

main > section#news .news-body h3 {
    color: #14141c;
}

main > section#news .news-date {
    color: rgba(20, 20, 28, .6);
}

main > section#news .news-more {
    color: #14141c;
}

main > section#news .card.skeleton {
    background: #e8ecf3;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(20, 20, 28, .08);
}

main > section#news .card.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        transparent 30%,
        rgba(255, 255, 255, .75) 50%,
        transparent 70%
    );
    animation: brilho 1.4s infinite;
}