* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #050816;
    --bg-secondary: #020617;
    --surface: rgba(255,255,255,.055);
    --surface-strong: rgba(255,255,255,.08);
    --text: #ffffff;
    --muted: rgba(255,255,255,.62);
    --border: rgba(255,255,255,.10);
    --primary: #00c2ff;
    --secondary: #ff7a00;

    --footer-bg: #0b0b0d;
    --footer-text: rgba(255,255,255,.62);
    --footer-muted: rgba(255,255,255,.42);
    --footer-title: #ffffff;
    --footer-border: rgba(255,255,255,.08);
    --footer-logo-filter: brightness(0) invert(1);
}

body.theme-blue-orange {
    --bg: #050816;
    --bg-secondary: #020617;
    --surface: rgba(255,255,255,.055);
    --surface-strong: rgba(255,255,255,.08);
    --text: #ffffff;
    --muted: rgba(255,255,255,.62);
    --border: rgba(255,255,255,.10);
    --primary: #00c2ff;
    --secondary: #ff7a00;

    --footer-bg: #0b0b0d;
    --footer-text: rgba(255,255,255,.62);
    --footer-muted: rgba(255,255,255,.42);
    --footer-title: #ffffff;
    --footer-border: rgba(255,255,255,.08);
    --footer-logo-filter: brightness(0) invert(1);
}

body.theme-white-orange {
    --bg: #f7f4ef;
    --bg-secondary: #ffffff;
    --surface: rgba(255,255,255,.78);
    --surface-strong: rgba(255,255,255,.92);
    --text: #111827;
    --muted: rgba(17,24,39,.62);
    --border: rgba(17,24,39,.10);
    --primary: #ff7a00;
    --secondary: #ffb000;

    --footer-bg: #fff7ed;
    --footer-text: rgba(17,24,39,.68);
    --footer-muted: rgba(17,24,39,.46);
    --footer-title: #111827;
    --footer-border: rgba(17,24,39,.10);
    --footer-logo-filter: none;
}

body.theme-white-blue-orange {
    --bg: #f8fbff;
    --bg-secondary: #ffffff;
    --surface: rgba(255,255,255,.78);
    --surface-strong: rgba(255,255,255,.92);
    --text: #0f172a;
    --muted: rgba(15,23,42,.62);
    --border: rgba(15,23,42,.10);
    --primary: #00a8ff;
    --secondary: #ff7a00;

    --footer-bg: #eef7ff;
    --footer-text: rgba(15,23,42,.68);
    --footer-muted: rgba(15,23,42,.46);
    --footer-title: #0f172a;
    --footer-border: rgba(15,23,42,.10);
    --footer-logo-filter: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background .35s ease, color .35s ease;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.header-content {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--text);
    text-decoration: none;
}

.logo-area img {
    max-height: 58px;
    max-width: 190px;
    object-fit: contain;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
}

.logo-area strong {
    display: block;
    font-size: 16px;
}

.logo-area span {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.logo-only div:not(.logo-mark) {
    display: none;
}

.site-menu {
    display: flex;
    gap: 22px;
    align-items: center;
}

.site-menu a {
    position: relative;
    padding: 10px 4px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: .25s;
}

.site-menu a:hover {
    color: var(--primary);
}

.site-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: .3s ease;
}

.site-menu a:hover::after {
    width: 100%;
}

.menu-pill {
    padding: 11px 20px !important;
    border-radius: 999px;
    background: color-mix(in srgb, var(--text) 10%, transparent);
    border: 1px solid var(--border);
}

.menu-pill::after {
    display: none;
}

.top-mini-bar {
    background: color-mix(in srgb, var(--bg-secondary) 96%, transparent);
    border-bottom: 1px solid var(--border);
}

.top-mini-content {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-mini-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-mini-links a,
.top-mini-links button {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: .25s;
}

.top-mini-links a:hover,
.top-mini-links button:hover {
    color: var(--text);
}

.theme-switch {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--text) 8%, transparent);
    border: 1px solid var(--border);
}

.theme-switch button {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--text) 45%, transparent);
    cursor: pointer;
}

.theme-switch button:nth-child(1) {
    background: linear-gradient(135deg, #00c2ff, #ff7a00);
}

.theme-switch button:nth-child(2) {
    background: linear-gradient(135deg, #ffffff, #ff7a00);
}

.theme-switch button:nth-child(3) {
    background: linear-gradient(135deg, #ffffff, #00c2ff, #ff7a00);
}

.cliente-topo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cliente-nome {
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

.btn-perfil {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--text) 8%, transparent);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    transition: .3s;
}

.btn-perfil:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.btn-sair {
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    opacity: 0.7;
}

.btn-sair:hover {
    opacity: 1;
}

.btn-whatsapp,
.btn-primary {
    display: inline-block;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 800;
    border: none;
}

.hero {
    padding: 110px 0 80px;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--primary) 22%, transparent), transparent 34%),
        radial-gradient(circle at bottom right, color-mix(in srgb, var(--secondary) 20%, transparent), transparent 32%),
        var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 22px;
    color: var(--text);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 32px;
}

.hero-card {
    min-height: 420px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, transparent), color-mix(in srgb, var(--secondary) 12%, transparent)),
        var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 35px 100px rgba(0,0,0,.20);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 25%, transparent);
    right: -80px;
    top: -80px;
}

.hero-card::after {
    content: "PromoCreative";
    position: absolute;
    bottom: 35px;
    left: 35px;
    font-size: 34px;
    font-weight: 900;
    color: color-mix(in srgb, var(--text) 86%, transparent);
}

.section {
    padding: 80px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.section-head h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--text);
}

.section-head p {
    color: var(--muted);
    line-height: 1.6;
}

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

.public-card {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, transparent), color-mix(in srgb, var(--secondary) 8%, transparent)),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    min-height: 220px;
    box-shadow: 0 24px 70px rgba(0,0,0,.12);
}

.public-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 18px;
}

.public-card .icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-weight: 900;
    color: #fff;
}

.public-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
}

.public-card p {
    color: var(--muted);
    line-height: 1.7;
}

.cta {
    padding: 80px 0;
}

.cta-box {
    border-radius: 34px;
    padding: 54px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, transparent), color-mix(in srgb, var(--secondary) 12%, transparent)),
        var(--surface);
    border: 1px solid var(--border);
    text-align: center;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text);
}

.cta-box p {
    color: var(--muted);
    margin-bottom: 28px;
}

/* ===== FOOTER PREMIUM ADAPTÁVEL AO TEMA ===== */

.site-footer {
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--primary) 10%, transparent), transparent 34%),
        radial-gradient(circle at bottom right, color-mix(in srgb, var(--secondary) 9%, transparent), transparent 34%),
        var(--footer-bg) !important;
    color: var(--footer-text) !important;
    border-top: 1px solid var(--footer-border) !important;
    padding: 72px 0 28px !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-col h3 {
    color: var(--footer-title) !important;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 900;
    margin-bottom: 22px;
}

.footer-logo img {
    max-height: 72px;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: var(--footer-logo-filter);
}

.footer-text {
    max-width: 330px;
    color: var(--footer-text) !important;
    line-height: 1.8;
    font-size: 15px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 13px;
    padding: 0;
}

.footer-links a {
    color: var(--footer-text) !important;
    text-decoration: none;
    transition: .25s;
}

.footer-links a:hover {
    color: var(--primary) !important;
}

.footer-social {
    display: flex;
    gap: 13px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--footer-title) 8%, transparent);
    border: 1px solid var(--footer-border);
    color: var(--footer-title) !important;
    text-decoration: none;
    transition: .25s;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
}

.footer-divider {
    width: min(1180px, calc(100% - 40px));
    height: 1px;
    margin: 54px auto 24px;
    background: var(--footer-border);
}

.footer-bottom {
    text-align: center;
    color: var(--footer-muted) !important;
    font-size: 12px;
    letter-spacing: 1px;
}

.footer-dev {
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--footer-muted) !important;
}

.footer-dev strong {
    display: inline-block;
    margin-top: 8px;
    color: var(--secondary) !important;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Compatibilidade com footer antigo */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

.copy {
    text-align: center;
    padding: 18px;
    color: var(--footer-muted);
    border-top: 1px solid var(--footer-border);
    font-size: 13px;
}

/* MODAL ÁREA DO CLIENTE */
.client-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .78);
    backdrop-filter: blur(14px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.client-modal.active {
    display: flex;
}

.client-modal-box {
    width: 100%;
    max-width: 440px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--primary) 18%, transparent), transparent 35%),
        radial-gradient(circle at bottom right, color-mix(in srgb, var(--secondary) 15%, transparent), transparent 35%),
        #07111f;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 35px 100px rgba(0,0,0,.45);
    padding: 38px;
    position: relative;
    animation: modalIn .35s ease;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.modal-logo {
    margin-bottom: 18px;
}

.modal-logo img {
    max-height: 52px;
    max-width: 190px;
}

.client-modal-box h2 {
    font-size: 30px;
    margin-bottom: 8px;
    color: #fff;
}

.client-modal-box p {
    color: rgba(255,255,255,.62);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-form-group {
    margin-bottom: 16px;
}

.modal-form-group label {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-form-group input {
    width: 100%;
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 0 16px;
    outline: none;
}

.modal-form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 12%, transparent);
}

.modal-login-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    margin-top: 8px;
}

.modal-help {
    display: block;
    text-align: center;
    margin-top: 18px;
    color: rgba(255,255,255,.62);
    text-decoration: none;
    font-size: 14px;
}

.modal-help:hover {
    color: #fff;
}

/* ANIMAÇÕES */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.hero h1.show {
    animation: premiumText .9s ease forwards;
}

.hero-card.show {
    animation: floatCard 5s ease-in-out infinite;
}

@keyframes premiumText {
    from {
        letter-spacing: -6px;
        filter: blur(8px);
    }
    to {
        letter-spacing: -2px;
        filter: blur(0);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .header-content {
        height: auto;
        padding: 20px 0;
        flex-direction: column;
    }

    .site-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-mini-content {
        height: auto;
        padding: 10px 0;
        gap: 10px;
        flex-direction: column;
    }

    .top-mini-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .hero-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .theme-switch {
        margin-top: 5px;
    }

    .site-menu a {
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-text {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-content {
        display: block;
    }
}

.footer-dev {
    text-align: center;
    margin-top: 15px;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--footer-muted);
}

.footer-dev strong {
    display: inline-block;
    margin-top: 6px;
    font-size: 14px;
    color: var(--secondary);
    letter-spacing: 1px;


}






.footer-payments {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 12px;
    align-items: center;
}

.footer-payments img {
    height: 26px;
    opacity: 0.85;
    filter: grayscale(30%);
    transition: .3s ease;
}

.footer-payments img:hover {
    transform: translateY(-4px) scale(1.08);
    opacity: 1;
    filter: none;
}

.hero {
    padding: 100px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 54px;
    line-height: 1.1;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    margin: 20px 0;
    color: var(--muted);
    max-width: 500px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 380px;
    width: 100%;
    animation: float 4s ease-in-out infinite;
}

/* ANIMAÇÃO TOP */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.hero-mascot-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-mascot-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(0,194,255,.35), transparent 58%),
        radial-gradient(circle at 70% 40%, rgba(255,122,0,.35), transparent 55%);
    filter: blur(18px);
    animation: mascotGlow 5s ease-in-out infinite;
}

.hero-mascot {
    position: relative;
    z-index: 2;
    width: min(430px, 100%);
    filter: drop-shadow(0 35px 80px rgba(0,0,0,.45));
    animation: mascotFloat 4.5s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform .15s ease;
    user-select: none;
    pointer-events: auto;
}

.hero-mascot-ring {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 2px solid rgba(0,194,255,.35);
    border-right-color: rgba(255,122,0,.55);
    border-bottom-color: rgba(255,122,0,.25);
    animation: mascotRing 12s linear infinite;
}

.hero-mascot-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 18px var(--primary);
    animation: sparkMove 3s ease-in-out infinite;
}

.hero-mascot-spark.s1 {
    top: 20%;
    left: 15%;
}

.hero-mascot-spark.s2 {
    right: 10%;
    bottom: 28%;
    background: var(--secondary);
    box-shadow: 0 0 18px var(--secondary);
    animation-delay: 1s;
}

.hero-mascot-spark.s3 {
    right: 22%;
    top: 12%;
    animation-delay: 1.8s;
}

@keyframes mascotFloat {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    50% {
        transform: translateY(-18px) rotateZ(-1deg);
    }
}

@keyframes mascotGlow {
    0%, 100% {
        opacity: .75;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes mascotRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes sparkMove {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: .55;
    }
    50% {
        transform: translateY(-22px) scale(1.35);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .hero-mascot {
        width: min(340px, 100%);
    }

    .hero-mascot-ring,
    .hero-mascot-glow {
        width: 330px;
        height: 330px;
    }
}



.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 25px 60px rgba(0,0,0,.4));
    animation: mascotFloatClean 4s ease-in-out infinite;
}

@keyframes mascotFloatClean {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-mascot-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(0,194,255,.28), transparent 60%),
        radial-gradient(circle at 70% 40%, rgba(255,122,0,.28), transparent 58%);
    filter: blur(18px);
    animation: mascotGlow 5s ease-in-out infinite;
}

.mascot-ring {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    border: 2px solid rgba(0,194,255,.30);
    border-right-color: rgba(255,122,0,.55);
    animation: mascotRing 12s linear infinite;
}

.mascot-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 16px var(--primary);
    animation: mascotDot 3s ease-in-out infinite;
}

.dot-1 {
    top: 22%;
    left: 18%;
}

.dot-2 {
    right: 15%;
    bottom: 30%;
    background: var(--secondary);
    box-shadow: 0 0 16px var(--secondary);
    animation-delay: 1s;
}

.hero-mascot {
    position: relative;
    z-index: 2;
}

@keyframes mascotGlow {
    0%, 100% { opacity: .7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes mascotRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes mascotDot {
    0%, 100% { transform: translateY(0) scale(1); opacity: .55; }
    50% { transform: translateY(-18px) scale(1.35); opacity: 1; }
}






.apple-loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(0,194,255,.12), transparent 36%),
        radial-gradient(circle at 70% 70%, rgba(255,122,0,.10), transparent 34%),
        #050816;
    transition: opacity .65s ease, visibility .65s ease;
}

.apple-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.apple-loader-card {
    position: relative;
    width: 280px;
    display: grid;
    justify-items: center;
    gap: 28px;
}

.apple-loader-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(0,194,255,.22), transparent 58%),
        radial-gradient(circle at 70% 40%, rgba(255,122,0,.22), transparent 58%);
    filter: blur(24px);
    animation: appleGlow 5s ease-in-out infinite;
}

.apple-loader-logo {
    position: relative;
    z-index: 2;
    max-width: 210px;
    max-height: 82px;
    object-fit: contain;
    animation: appleLogo 1.9s ease-in-out infinite;
    filter: drop-shadow(0 24px 50px rgba(0,0,0,.45));
}

.apple-loader-line {
    position: relative;
    z-index: 2;
    width: 180px;
    height: 3px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.10);
}

.apple-loader-line span {
    display: block;
    width: 45%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #00c2ff, #ff7a00);
    animation: appleLine 1.25s ease-in-out infinite;
}

@keyframes appleLogo {
    0%, 100% { transform: scale(1); opacity: .82; }
    50% { transform: scale(1.035); opacity: 1; }
}

@keyframes appleGlow {
    0%, 100% { transform: scale(1); opacity: .72; }
    50% { transform: scale(1.12); opacity: 1; }
}

@keyframes appleLine {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(250%); }
}.whatsapp-atendimento {    position: fixed;    right: 25px;    bottom: 25px;    background: linear-gradient(135deg, #25D366, #1ebe5d);    color: #fff;    padding: 12px 18px;    border-radius: 50px;    display: flex;    align-items: center;    gap: 10px;    font-size: 15px;    font-weight: 600;    text-decoration: none;    z-index: 9999;    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);    transition: all 0.3s ease;    animation: wppPulse 2s infinite;}.whatsapp-atendimento i {    font-size: 20px;}.whatsapp-atendimento:hover {    transform: scale(1.05);    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);}/* Animação suave */@keyframes wppPulse {    0% {        transform: scale(1);    }    50% {        transform: scale(1.04);    }    100% {        transform: scale(1);    }}/* Mobile */@media (max-width: 768px) {    .whatsapp-atendimento {        right: 15px;        bottom: 15px;        padding: 10px 14px;        font-size: 14px;    }}.whatsapp-atendimento {    position: fixed !important;    right: 25px !important;    bottom: 25px !important;    left: auto !important;    background: linear-gradient(135deg, #25D366, #1ebe5d);    color: #fff !important;    padding: 12px 18px;    border-radius: 50px;    display: flex;    align-items: center;    gap: 10px;    font-size: 14px;    font-weight: 600;    text-decoration: none;    z-index: 99999;    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);    animation: wppPulse 2s infinite;}.whatsapp-atendimento i {    font-size: 18px;}/* animação */@keyframes wppPulse {    0% { transform: scale(1); }    50% { transform: scale(1.05); }    100% { transform: scale(1); }}