/* =========================
   RESET GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* =========================
   BACKGROUND GALÁXIA
========================= */
body {
    background-image: url("assets/galaxy-bg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;

    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    gap: 60px;
}

.hero-content {
    max-width: 560px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.2;
}

.hero h1 span {
    color: #ff8fb8;
}

.hero-text {
    margin-top: 18px;
    font-size: clamp(1rem, 3.8vw, 1.15rem);
    opacity: 0.95;
}

.emphasis {
    font-weight: 500;
    opacity: 1;
}

/* =========================
   IMAGEM / LOGO / CORAÇÃO
========================= */
.hero-image img {
    width: min(90vw, 520px);
    height: auto;
    filter:
        drop-shadow(0 0 50px rgba(255,140,190,0.9))
        drop-shadow(0 0 100px rgba(155,124,255,0.6));
}

/* Portal – versão menor e fluida */
.portal-heart {
    width: min(60vw, 360px);
    animation: slow-float 6s ease-in-out infinite;
}

@keyframes slow-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}

/* =========================
   BOTÃO
========================= */
.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #ff8fb8, #9b7cff);
    border-radius: 40px;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-primary:hover {
    transform: scale(1.06);
    box-shadow: 0 0 30px rgba(255,140,190,0.8);
}

/* =========================
   SEÇÕES PADRÃO
========================= */
.section {
    padding: clamp(70px, 10vw, 110px) 8%;
    text-align: center;
}

.section + .section {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.section-desc {
    max-width: 780px;
    margin: 25px auto 0;
    font-size: clamp(1rem, 3.6vw, 1.15rem);
}

/* =========================
   PORTAL – SEÇÕES ORGÂNICAS
========================= */
.portal-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 110px 8%;
}

.portal-section.reverse {
    flex-direction: row-reverse;
}

.portal-item img {
    width: min(80vw, 300px);
    filter: drop-shadow(0 0 40px rgba(255,140,190,0.4));
    transition: transform .6s ease;
}

.portal-item img:hover {
    transform: scale(1.04);
}

.portal-text {
    max-width: 520px;
}

.portal-text h2 {
    margin-bottom: 18px;
}

/* Divisor suave */
.soft-divider {
    height: 120px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.03),
        transparent
    );
}

/* =========================
   LISTA EMOCIONAL
========================= */
.checklist {
    list-style: none;
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
}

.checklist li {
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff8fb8;
}

/* =========================
   CARDS / PLAYLISTS
========================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    margin-top: 45px;
}

.card {
    background: rgba(255,255,255,0.08);
    padding: 34px;
    border-radius: 26px;
    transition: transform .3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

/* =========================
   CTA / FOOTER
========================= */
.cta {
    background: rgba(0,0,0,0.35);
}

footer {
    padding: 30px;
    text-align: center;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.45);
}

/* =========================
   ANIMAÇÕES — UNIFICADAS
========================= */

/* Fallback (sem JS) */
.animate,
.reveal {
    opacity: 1;
    transform: none;
}

/* Com JS ativo */
.js .animate,
.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.9s ease;
}

.js .animate.show,
.js .reveal.active {
    opacity: 1;
    transform: none;
}

/* Direções */
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.zoom-in { transform: scale(0.92); }

/* Delays */
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }
.delay-4 { transition-delay: .6s; }
.delay-5 { transition-delay: .75s; }
.delay-6 { transition-delay: .9s; }

/* =========================
   RESPONSIVIDADE REAL
========================= */

/* Tablets e celulares */
@media (max-width: 900px) {

    body {
        background-attachment: scroll;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 90px;
    }

    .hero-image {
        margin-top: 50px;
    }

    .hero-image img,
    .portal-heart {
        width: 80vw;
    }

    .portal-section,
    .portal-section.reverse {
        flex-direction: column;
        text-align: center;
        padding: 80px 6%;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {

    .btn-primary {
        width: 100%;
        max-width: 320px;
        padding: 18px;
    }

    .card {
        padding: 26px;
    }

    .section {
        padding: 80px 6%;
    }
}

/* =========================
   BOTÃO LOGIN TOPO
========================= */
.login-top {
    position: fixed;
    top: 26px;
    right: 32px;
    z-index: 999;
}

.btn-login {
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg,#ff8fb8,#9b7cff);
    box-shadow: 0 0 20px rgba(255,140,190,0.6);
}

/* MOBILE */
@media (max-width: 600px) {
    .login-top {
        top: 16px;
        right: 16px;
    }
}


/* =========================
   HEADER FLUTUANTE MINIMAL
========================= */

.floating-header {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    pointer-events: none;
}

.floating-actions {
    display: flex;
    gap: 16px;
    pointer-events: auto;
}

/* BOTÕES */
.floating-btn {
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    cursor: pointer;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.04);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 28px rgba(255,140,190,0.45);
}

/* BOTÃO PRINCIPAL */
.floating-btn.primary {
    background: linear-gradient(135deg, #ff8fb8, #9b7cff);
    color: #000;
    font-weight: 600;
}

.floating-btn.primary:hover {
    box-shadow: 0 0 40px rgba(255,140,190,0.9);
}

/* LOGOUT */
.floating-btn.logout {
    color: #ffb3c7;
}

/* BADGE DO CARRINHO */
.cart-badge {
    margin-left: 6px;
    background: #ff8fb8;
    color: #000;
    padding: 3px 8px;
    font-size: 0.7rem;
    border-radius: 10px;
}

/* =========================
   ANIMAÇÕES DE ENTRADA
========================= */

.animate-header {
    opacity: 0;
    transform: translateY(-10px);
    animation: headerFade 0.9s ease forwards;
}

.animate-header.delay-1 { animation-delay: .15s; }
.animate-header.delay-2 { animation-delay: .3s; }

@keyframes headerFade {
    to {
        opacity: 1;
        transform: none;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .floating-header {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    .floating-actions {
        gap: 12px;
    }

    .floating-btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }
}
/* =========================
   RESET GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* =========================
   BACKGROUND GALÁXIA
========================= */
body {
    background-image: url("assets/galaxy-bg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;

    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    gap: 60px;
}

.hero-content {
    max-width: 560px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.2;
}

.hero h1 span {
    color: #ff8fb8;
}

.hero-text {
    margin-top: 18px;
    font-size: clamp(1rem, 3.8vw, 1.15rem);
    opacity: 0.95;
}

.emphasis {
    font-weight: 500;
    opacity: 1;
}

/* =========================
   IMAGEM / LOGO / CORAÇÃO
========================= */
.hero-image img {
    width: min(90vw, 520px);
    height: auto;
    filter:
        drop-shadow(0 0 50px rgba(255,140,190,0.9))
        drop-shadow(0 0 100px rgba(155,124,255,0.6));
}

/* Portal – versão menor e fluida */
.portal-heart {
    width: min(60vw, 360px);
    animation: slow-float 6s ease-in-out infinite;
}

@keyframes slow-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0); }
}

/* =========================
   BOTÃO
========================= */
.btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #ff8fb8, #9b7cff);
    border-radius: 40px;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

.btn-primary:hover {
    transform: scale(1.06);
    box-shadow: 0 0 30px rgba(255,140,190,0.8);
}

/* =========================
   SEÇÕES PADRÃO
========================= */
.section {
    padding: clamp(70px, 10vw, 110px) 8%;
    text-align: center;
}

.section + .section {
    border-top: 1px solid rgba(255,255,255,0.04);
}

.section-desc {
    max-width: 780px;
    margin: 25px auto 0;
    font-size: clamp(1rem, 3.6vw, 1.15rem);
}

/* =========================
   PORTAL – SEÇÕES ORGÂNICAS
========================= */
.portal-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 110px 8%;
}

.portal-section.reverse {
    flex-direction: row-reverse;
}

.portal-item img {
    width: min(80vw, 300px);
    filter: drop-shadow(0 0 40px rgba(255,140,190,0.4));
    transition: transform .6s ease;
}

.portal-item img:hover {
    transform: scale(1.04);
}

.portal-text {
    max-width: 520px;
}

.portal-text h2 {
    margin-bottom: 18px;
}

/* Divisor suave */
.soft-divider {
    height: 120px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.03),
        transparent
    );
}

/* =========================
   LISTA EMOCIONAL
========================= */
.checklist {
    list-style: none;
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
}

.checklist li {
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff8fb8;
}

/* =========================
   CARDS / PLAYLISTS
========================= */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    margin-top: 45px;
}

.card {
    background: rgba(255,255,255,0.08);
    padding: 34px;
    border-radius: 26px;
    transition: transform .3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

/* =========================
   CTA / FOOTER
========================= */
.cta {
    background: rgba(0,0,0,0.35);
}

footer {
    padding: 30px;
    text-align: center;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.45);
}

/* =========================
   ANIMAÇÕES — UNIFICADAS
========================= */

/* Fallback (sem JS) */
.animate,
.reveal {
    opacity: 1;
    transform: none;
}

/* Com JS ativo */
.js .animate,
.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.9s ease;
}

.js .animate.show,
.js .reveal.active {
    opacity: 1;
    transform: none;
}

/* Direções */
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.zoom-in { transform: scale(0.92); }

/* Delays */
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }
.delay-4 { transition-delay: .6s; }
.delay-5 { transition-delay: .75s; }
.delay-6 { transition-delay: .9s; }

/* =========================
   RESPONSIVIDADE REAL
========================= */

/* Tablets e celulares */
@media (max-width: 900px) {

    body {
        background-attachment: scroll;
        background-size: contain;
        background-repeat: repeat-y;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 90px;
    }

    .hero-image {
        margin-top: 50px;
    }

    .hero-image img,
    .portal-heart {
        width: 80vw;
    }

    .portal-section,
    .portal-section.reverse {
        flex-direction: column;
        text-align: center;
        padding: 80px 6%;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {

    .btn-primary {
        width: 100%;
        max-width: 320px;
        padding: 18px;
    }

    .card {
        padding: 26px;
    }

    .section {
        padding: 80px 6%;
    }
}

/* =========================
   BOTÃO LOGIN TOPO
========================= */
.login-top {
    position: fixed;
    top: 26px;
    right: 32px;
    z-index: 999;
}

.btn-login {
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg,#ff8fb8,#9b7cff);
    box-shadow: 0 0 20px rgba(255,140,190,0.6);
}

/* MOBILE */
@media (max-width: 600px) {
    .login-top {
        top: 16px;
        right: 16px;
    }
}


/* =========================
   HEADER FLUTUANTE MINIMAL
========================= */

.floating-header {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    pointer-events: none;
}

.floating-actions {
    display: flex;
    gap: 16px;
    pointer-events: auto;
}

/* BOTÕES */
.floating-btn {
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    cursor: pointer;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.04);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 28px rgba(255,140,190,0.45);
}

/* BOTÃO PRINCIPAL */
.floating-btn.primary {
    background: linear-gradient(135deg, #ff8fb8, #9b7cff);
    color: #000;
    font-weight: 600;
}

.floating-btn.primary:hover {
    box-shadow: 0 0 40px rgba(255,140,190,0.9);
}

/* LOGOUT */
.floating-btn.logout {
    color: #ffb3c7;
}

/* BADGE DO CARRINHO */
.cart-badge {
    margin-left: 6px;
    background: #ff8fb8;
    color: #000;
    padding: 3px 8px;
    font-size: 0.7rem;
    border-radius: 10px;
}

/* =========================
   ANIMAÇÕES DE ENTRADA
========================= */

.animate-header {
    opacity: 0;
    transform: translateY(-10px);
    animation: headerFade 0.9s ease forwards;
}

.animate-header.delay-1 { animation-delay: .15s; }
.animate-header.delay-2 { animation-delay: .3s; }

@keyframes headerFade {
    to {
        opacity: 1;
        transform: none;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .floating-header {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    .floating-actions {
        gap: 12px;
    }

    .floating-btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }
}
/* =========================
   AUTH MODAL – SCROLL FIX
========================= */

#authModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 10000;
}

/* CAIXA DO MODAL */
.auth-box {
    width: 100%;
    max-width: 420px;
    max-height: 90vh;

    background: rgba(20,20,30,0.95);
    border-radius: 22px;
    padding: 22px;

    display: flex;
    flex-direction: column;

    overflow: hidden; /* IMPORTANTE */
}

/* ÁREA QUE REALMENTE ROLA */
.auth-scroll {
    overflow-y: auto;
    padding-right: 6px;
}

/* SCROLL SUAVE */
.auth-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.auth-scroll::-webkit-scrollbar {
    width: 6px;
}

.auth-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

/* FECHAR */
.auth-close {
    align-self: flex-end;
    font-size: 1.4rem;
    cursor: pointer;
    color: #fff;
    margin-bottom: 8px;
}

/* INPUTS DO MODAL */
.auth-box input,
.auth-box select {
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9rem;
}

/* BOTÃO DO MODAL */
.auth-box button {
    margin-top: 14px;
    padding: 14px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    background: linear-gradient(135deg, #ff8fb8, #9b7cff);
    color: #000;
}

/* LINKS */
.auth-box p {
    margin-top: 14px;
    text-align: center;
    font-size: 0.85rem;
    cursor: pointer;
    opacity: 0.85;
}

/* MOBILE */
@media (max-width: 600px) {
    .auth-box {
        max-width: 92%;
        max-height: 88vh;
    }
}
/* =========================
   TRAVA SCROLL DO FUNDO
========================= */

body.modal-open {
    overflow: hidden;
    touch-action: none;
}

/* =========================
   AUTH MODAL – FIX DEFINITIVO
========================= */

#authModal {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 10000;
}

/* CAIXA */
.auth-box {
    width: 100%;
    max-width: 420px;
    max-height: 90vh;

    background: rgba(20,20,30,0.96);
    border-radius: 22px;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

/* ÁREA QUE ROLA */
.auth-scroll {
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* MOBILE */
@media (max-width: 600px) {
    .auth-box {
        max-width: 92%;
        max-height: 88vh;
    }
}

/* MODAL BASE */
.account-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* CAIXA */
.account-box {
    background: #fff;
    width: 95%;
    max-width: 420px;
    max-height: 85vh;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    animation: scaleIn .35s ease;
}

/* FECHAR */
.account-close {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
}

/* TABS */
.account-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border-radius: 12px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-weight: 600;
}

.tab-btn.active {
    background: #111;
    color: #fff;
}

/* CONTEÚDO */
.tab-content {
    display: none;
    overflow-y: auto;
    max-height: 60vh;
    padding-right: 5px;
}

.tab-content.active {
    display: block;
}

/* CONTA */
.account-info p {
    margin-bottom: 8px;
}

.account-btn {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 12px;
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.account-btn.logout {
    background: #c0392b;
}

/* CARRINHO */
.cart-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cart-item img {
    width: 60px;
    border-radius: 10px;
}

.cart-footer {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* ANIMAÇÃO */
@keyframes scaleIn {
    from { transform: scale(.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* MOBILE */
@media (max-width: 480px) {
    .account-box {
        max-height: 90vh;
    }
}

/* ===============================
   BOTÕES DO HEADER
   =============================== */

header button {
    position: relative;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
    overflow: hidden;
}

/* EFEITO DE BRILHO */
header button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,.35),
        transparent 70%
    );
    opacity: 0;
    transform: translateX(-100%);
    transition: transform .6s ease, opacity .4s ease;
}

/* HOVER */
header button:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 10px 28px rgba(255,255,255,.15);
}

header button:hover::before {
    transform: translateX(100%);
    opacity: 1;
}

/* CLIQUE */
header button:active {
    transform: scale(.96);
}

/* DIFERENCIA O BOTÃO CARRINHO */
header button:last-child {
    background: rgba(255,255,255,0.18);
}

/* MOBILE */
@media (max-width: 768px) {
    header button {
        padding: 10px 18px;
        font-size: 13px;
    }
}
