:root {
    --bg-color: #050810;
    --text-color: #f0f0f0;
    --primary-color: #ffffff;
    --card-bg: rgba(26, 26, 26, 0.4);
    --border-color: #1a1a1a;
    --highlight-color: #00e5ff; /* Azul-ciano neon */
    --card-shadow: rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle, #0c182c 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Base de Transição para todos os elementos */
* {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(5, 8, 16, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    top: 0;
    z-index: 1000;
    border-image: linear-gradient(to right, transparent, var(--highlight-color), transparent) 1;
}

.logo img {
    height: 125px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--highlight-color));
    pointer-events: none;
}

.dashboard-btn, .cta-btn, .contratar-btn {
    background-color: transparent;
    color: var(--highlight-color);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--highlight-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.dashboard-btn:hover, .cta-btn:hover, .contratar-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--highlight-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--highlight-color), 0 0 30px var(--highlight-color);
}

.hero-section {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Roboto Mono', monospace;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px var(--highlight-color);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #a0a0a0;
    max-width: 800px;
}

.plan-card {
    background-color: var(--card-bg);
    border: 2px solid var(--highlight-color);
    border-radius: 20px;
    padding: 40px;
    width: clamp(300px, 80%, 400px);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    margin: 0 auto;
    position: relative;
}

.plan-card h2 {
    font-family: 'Roboto Mono', monospace;
    font-size: 2.5em;
    color: var(--highlight-color);
    text-shadow: 0 0 5px var(--highlight-color);
    margin-top: 0;
}

.spec-list {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 40px;
    display: grid;
    gap: 15px;
}

.spec-item {
    display: flex;
    align-items: center;
}

.spec-item .icon {
    color: var(--highlight-color);
    margin-right: 10px;
    font-size: 1.5em;
    text-shadow: 0 0 5px var(--highlight-color);
}

.spec-item p {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
}

.preco {
    font-family: 'Roboto Mono', monospace;
    font-size: 3.5em;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 20px 0;
}

.preco span {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-color);
}

.about-us-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.about-us-section h2 {
    font-family: 'Roboto Mono', monospace;
    font-size: 2.5em;
    color: var(--highlight-color);
    text-shadow: 0 0 5px var(--highlight-color);
}

.about-us-section p {
    color: #a0a0a0;
    font-size: 1em;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(image_f905f7.png) no-repeat center center;
    background-size: cover;
    opacity: 0.08; /* Ajuste a opacidade para ficar sutil */
    z-index: -1;
}

footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
    font-family: 'Montserrat', sans-serif;
    color: #a0a0a0;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }
    .hero-title {
        font-size: 2.5em;
    }
}