/* ============================================================
   Sublimmee Personalizados — Styles
   Visual: Artesanal Premium (sem clichês de IA)
   ============================================================ */

/* --- Font helpers (complementam Tailwind config) --- */
.font-cinzel,
.font-ultra,
.font-oi,
.font-pinyon,
.font-lato { font-family: 'Manrope', sans-serif; }
.font-mono { font-family: 'IBM Plex Mono', monospace; }

/* --- Cards: sólidos, quentes, sem glassmorphism --- */
.glass-card {
    background: #ffffff;
    border: 1px solid #dce5e8;
    box-shadow: 0 18px 60px rgba(13, 38, 48, 0.08);
}

.glass-dark {
    background: #173744;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Custom scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f4f7f8;
}

::-webkit-scrollbar-thumb {
    background: #173744;
    border-radius: 9999px;
}

/* --- Animação suave de destaque (sem glow neon) --- */
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

.pulse-neon {
    animation: gentleFloat 4s infinite ease-in-out;
}

body {
    color: #14272f;
    background: #f4f7f8;
}

.brand-logo {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    background: #ffffff;
}

.footer-logo {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
}

.hero-studio::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 42%, rgba(97, 216, 54, 0.1), transparent 26%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    color: #61d836;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-brand-mark {
    position: absolute;
    right: 2rem;
    top: 50%;
    width: min(31vw, 25rem);
    transform: translateY(-50%) rotate(2deg);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 32px 80px rgba(4, 19, 25, 0.35);
}

.hero-brand-mark img {
    width: 100%;
    border-radius: 10px;
}

.hero-brand-mark span {
    display: block;
    padding-top: 0.8rem;
    color: #a9bac1;
    font: 600 0.66rem/1 'IBM Plex Mono', monospace;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.bg-emerald-900,
.bg-emerald-950,
.bg-slate-900 {
    background-color: #173744 !important;
}

.border-emerald-100,
.border-emerald-200 {
    border-color: #dce5e8 !important;
}

.text-emerald-700,
.text-emerald-800 {
    color: #173744 !important;
}

.text-emerald-100,
.text-emerald-200,
.text-emerald-300 {
    color: #c4d1d6 !important;
}

.from-emerald-900 {
    --tw-gradient-from: #173744 !important;
}

.to-brand-dark {
    --tw-gradient-to: #0d2630 !important;
}

.rounded-3xl {
    border-radius: 1rem !important;
}

button,
a {
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #61d836;
}

#three-container canvas {
    cursor: grab;
}

#three-container canvas:active {
    cursor: grabbing;
}

@media (max-width: 1023px) {
    .hero-brand-mark {
        display: none;
    }
}

/* --- Accessibility: reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
