@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #020617;
    --card-bg: rgba(15, 23, 42, 0.45);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(6, 182, 212, 0.3);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-cyan: #06b6d4;
    --accent-blue: #3b82f6;
    --accent-teal: #14b8a6;
    --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #1d4ed8 100%);
    --gradient-glow: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Animated Glows */
.bg-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.glow-sphere-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, rgba(59, 130, 246, 0.1) 70%);
    top: -100px;
    left: -100px;
    animation: float-glow-1 25s infinite alternate ease-in-out;
}

.glow-sphere-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue) 0%, rgba(20, 184, 166, 0.1) 70%);
    bottom: -200px;
    right: -100px;
    animation: float-glow-2 30s infinite alternate ease-in-out;
}

.glow-sphere-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-teal) 0%, rgba(6, 182, 212, 0.05) 70%);
    top: 40%;
    left: 60%;
    animation: float-glow-3 20s infinite alternate ease-in-out;
}

@keyframes float-glow-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.2); }
}

@keyframes float-glow-2 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-100px, -120px) scale(0.9); }
}

@keyframes float-glow-3 {
    0% { transform: translate(0, 0) scale(0.9); }
    100% { transform: translate(-80px, 100px) scale(1.1); }
}

/* Layout Elements */
header {
    width: 100%;
    padding: 40px 24px 20px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    user-select: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: drop-pulse 3s infinite alternate ease-in-out;
}

.logo-icon svg {
    transform: rotate(45deg);
    fill: var(--text-primary);
    width: 22px;
    height: 22px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.85rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

@keyframes drop-pulse {
    0% { transform: rotate(-45deg) scale(1); box-shadow: 0 0 15px rgba(6, 182, 212, 0.4); }
    100% { transform: rotate(-45deg) scale(1.08); box-shadow: 0 0 30px rgba(6, 182, 212, 0.7); }
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px 24px 80px;
    z-index: 10;
}

/* Glassmorphism Card */
.status-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    max-width: 680px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.4), transparent);
}

.status-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: 0 30px 60px -10px rgba(6, 182, 212, 0.12), 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px);
}

/* Badge 'Em Construção' */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--accent-cyan);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 0.5; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
    70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
    100% { transform: scale(0.9); opacity: 0.5; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

/* Headings */
h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.85rem;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Call to Action Grid / Forms */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 24px -6px rgba(6, 182, 212, 0.4);
    transition: var(--transition-bounce);
    width: 100%;
    max-width: 320px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(6, 182, 212, 0.6);
    filter: brightness(1.08);
}

.btn-primary svg {
    transition: var(--transition-bounce);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Micro Ativo Partnership Widget */
.developer-widget {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.developer-widget p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.developer-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    text-decoration: none;
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 480px;
}

.developer-card:hover {
    background: rgba(6, 182, 212, 0.04);
    border-color: rgba(6, 182, 212, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dev-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    width: 100%;
}

.logo-microativo {
    height: 38px;
    object-fit: contain;
    transition: var(--transition-bounce);
}

.developer-card:hover .logo-microativo {
    transform: scale(1.05);
}

.dev-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
}

.dev-name {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.2px;
}

.dev-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    width: 100%;
}

.dev-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.dev-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-cyan);
    fill: none;
}

.developer-card:hover .dev-contact-item {
    color: var(--text-primary);
}

.dev-contact-item:hover {
    color: var(--accent-cyan) !important;
}

/* Footer & Waves */
footer {
    width: 100%;
    position: relative;
    z-index: 5;
    background: transparent;
    pointer-events: none;
}

.waves-container {
    width: 100%;
    height: 120px;
    min-height: 100px;
    max-height: 150px;
    margin-bottom: -7px; /* Fix line gap */
    position: relative;
}

.waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Wave Animations */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Footer Bottom Brand Details */
.footer-text {
    background-color: #01040f;
    padding: 24px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    pointer-events: auto;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    header {
        padding: 24px 16px 12px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    main {
        padding: 10px 16px 60px;
    }
    
    .status-card {
        padding: 40px 24px;
        border-radius: var(--radius-lg);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .developer-widget {
        margin-top: 36px;
        padding-top: 30px;
    }
    
    .developer-card {
        padding: 20px;
    }
    
    .dev-contacts {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .waves-container {
        height: 60px;
        min-height: 60px;
    }
}
