:root {
    --unity-blue: #00e5ff;
    --unity-magenta: #ff00c1;
    --dark-bg: #020617;
}

html,
body {
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    scroll-behavior: smooth;
}

.shadow-logo {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

header {
    padding-top: 140px !important;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: linear-gradient(90deg, var(--unity-blue), var(--unity-magenta));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.btn-download {
    background: linear-gradient(90deg, var(--unity-blue), var(--unity-magenta));
    transition: all 0.3s ease;
}

.btn-download:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    transform: scale(1.05);
}

.gradient-border-box {
    border: 1px solid transparent;
    background: linear-gradient(#020617, #020617) padding-box,
        linear-gradient(90deg, var(--unity-blue), var(--unity-magenta)) border-box;
}

.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
}

.section-light {
    background-color: #ffffff !important;
    color: #0f172a !important;
}

.section-light .text-gray-500 {
    color: #64748b !important;
}

.card-service-light {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.card-service-light:hover {
    background: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

.section-off-white {
    background-color: #f1f5f9 !important;
    color: #1e293b !important;
}

.card-system-white {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-system-white:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    transform: scale(1.02);
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

.hover\:border-blue-500\/50:hover {
    border-color: rgba(0, 229, 255, 0.5) !important;
}

.hover\:border-magenta-500\/50:hover {
    border-color: rgba(255, 0, 193, 0.5) !important;
}

.transition {
    transition: all 0.3s ease-in-out;
}

.bg-magenta-500\/20 {
    background-color: rgba(255, 0, 193, 0.2);
}

.from-cyan-400 {
    --tw-gradient-from: #00e5ff;
}

.to-magenta-500 {
    --tw-gradient-to: #ff00c1;
}

.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hover\:border-cyan-400:hover {
    border-bottom-color: var(--unity-blue) !important;
    background: rgba(0, 229, 255, 0.03);
}

.hover\:border-magenta-500:hover {
    border-bottom-color: var(--unity-magenta) !important;
    background: rgba(255, 0, 193, 0.03);
}

footer {
    margin-bottom: 0;
    padding-bottom: 150px !important;
    padding-bottom: env(safe-area-inset-bottom, 100px);
}


@media (max-width: 768px) {
    #contato .grid {
        grid-template-columns: 1fr !important;
        padding-bottom: 40px;
    }

    body {
        padding-bottom: 200px !important;
    }

    #contato a {
        min-height: 100px;
        justify-content: center;
    }

    #contato span.text-lg {
        font-size: 1.25rem !important;
        white-space: nowrap;
    }
}