:root {
    --bg: #050712;
    --bg-alt: #080b1c;
    --primary: #5a8cff;
    --secondary: #b45bff;
    --text: #f5f7ff;
    --muted: #9aa0c2;
    --danger: #ff4d8b;
    --radius-lg: 18px;
    --radius-pill: 999px;
    --shadow-neon: 0 0 25px rgba(90, 140, 255, 0.7);
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #151b3a 0, #050712 45%, #02030a 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(90, 140, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(180, 91, 255, 0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(90, 140, 255, 0.35), transparent 60%),
        radial-gradient(circle at 90% 100%, rgba(180, 91, 255, 0.4), transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1400px, 100% - 8rem);
    margin-inline: auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(5, 7, 18, 0.98), rgba(5, 7, 18, 0.7));
    border-bottom: var(--border-glass);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 40% 60% 30% 70%;
    background: radial-gradient(circle at 30% 30%, #aaf0ff 0, #5a8cff 25%, #b45bff 70%, #050712 100%);
    box-shadow: 0 0 22px rgba(106, 190, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050712;
    font-weight: 700;
    font-size: 0.9rem;
}

.logo-text-main {
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.logo-text-sub {
    font-size: 0.7rem;
    color: var(--muted);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

nav a {
    font-size: 0.9rem;
    color: var(--muted);
    position: relative;
    transition: color 0.2s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.22s ease;
}

nav a:hover {
    color: var(--text);
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-chip {
    font-size: 0.7rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, rgba(90, 140, 255, 0.18), rgba(180, 91, 255, 0.2));
    border: 1px solid rgba(149, 189, 255, 0.5);
    color: #d6e2ff;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    color: #050712;
    box-shadow: 0 0 18px rgba(90, 140, 255, 0.9);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 26px rgba(142, 112, 255, 0.95);
    filter: brightness(1.08);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(149, 189, 255, 0.7);
    background: rgba(5, 7, 18, 0.8);
    color: var(--text);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.btn-outline:hover {
    background: linear-gradient(120deg, rgba(90, 140, 255, 0.18), rgba(180, 91, 255, 0.22));
    box-shadow: 0 0 18px rgba(106, 190, 255, 0.4);
    transform: translateY(-1px);
}

.hero {
    padding: 5rem 0 3.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.95fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(106, 190, 255, 0.55);
    background: rgba(5, 7, 18, 0.8);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #d9e2ff;
    margin-bottom: 1.1rem;
}

.hero-kicker i {
    color: #a3f7ff;
}

.hero-title {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 0.9rem;
}

.hero-title span.gradient {
    background: linear-gradient(120deg, #7fd5ff, #5a8cff, #f08fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 0.98rem;
    color: var(--muted);
    max-width: 32rem;
    margin-bottom: 1.7rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 1.8rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-meta span strong {
    color: #e2e7ff;
}

.hero-right {
    position: relative;
}

.hero-card {
    position: relative;
    padding: 1.8rem 1.6rem;
    border-radius: 28px;
    background: radial-gradient(circle at 0% 0%, rgba(122, 214, 255, 0.22), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(240, 143, 255, 0.26), transparent 50%),
                linear-gradient(145deg, rgba(9, 11, 34, 0.98), rgba(6, 9, 26, 0.96));
    border: 1px solid rgba(149, 189, 255, 0.4);
    box-shadow:
        0 22px 60px rgba(6, 9, 26, 0.95),
        0 0 40px rgba(90, 140, 255, 0.55);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.hero-card-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #dfe6ff;
}

.status-pill {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(40, 211, 109, 0.16);
    color: #7dffb5;
    border: 1px solid rgba(125, 255, 181, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7dffb5;
    box-shadow: 0 0 8px rgba(125, 255, 181, 1);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.3rem;
}

.metric-card {
    padding: 0.75rem 0.9rem;
    border-radius: 16px;
    background: rgba(5, 7, 18, 0.9);
    border: 1px solid rgba(149, 189, 255, 0.45);
}

.metric-label {
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1rem;
    font-weight: 600;
}

.metric-chip {
    margin-top: 0.25rem;
    font-size: 0.65rem;
    color: #a3f7ff;
}

.hero-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.2rem;
}

.stack-pill {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(12, 16, 46, 0.9);
    border: 1px solid rgba(149, 189, 255, 0.4);
    color: #dbe4ff;
}


section {
    padding: 3.5rem 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.1rem;
}

.section-kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.section-title {
    font-size: 1.6rem;
}

.section-description {
    font-size: 0.86rem;
    color: var(--muted);
    max-width: 28rem;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.service-card {
    position: relative;
    padding: 1.3rem 1.2rem;
    border-radius: 22px;
    background: radial-gradient(circle at 0 0, rgba(90, 140, 255, 0.22), transparent 55%),
                linear-gradient(150deg, rgba(7, 9, 28, 0.97), rgba(6, 7, 24, 0.98));
    border: 1px solid rgba(149, 189, 255, 0.45);
    box-shadow: 0 18px 40px rgba(5, 7, 18, 0.9);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(176, 133, 255, 0.9);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(176, 133, 255, 0.55);
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    background: radial-gradient(circle at 30% 30%, #aaf0ff 0, #5a8cff 40%, #b45bff 100%);
    color: #050712;
    box-shadow: 0 0 18px rgba(106, 190, 255, 0.9);
}

.service-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.service-text {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 0.9rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.7rem;
}

.service-tag {
    padding: 0.18rem 0.6rem;
    border-radius: var(--radius-pill);
    background: rgba(12, 16, 46, 0.9);
    border: 1px solid rgba(149, 189, 255, 0.4);
    color: #dbe4ff;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.4rem;
    align-items: center;
}

.about-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.about-highlight {
    padding: 0.9rem 0.9rem;
    border-radius: 16px;
    background: rgba(5, 7, 18, 0.95);
    border: 1px solid rgba(149, 189, 255, 0.45);
    font-size: 0.8rem;
}

.about-highlight strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: #e2e7ff;
}

.about-card {
    padding: 1.4rem 1.4rem 1.2rem;
    border-radius: 22px;
    background: radial-gradient(circle at 0 0, rgba(90, 140, 255, 0.2), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(180, 91, 255, 0.25), transparent 55%),
                linear-gradient(160deg, rgba(9, 11, 34, 0.98), rgba(6, 9, 26, 0.96));
    border: 1px solid rgba(149, 189, 255, 0.45);
    box-shadow: 0 22px 60px rgba(6, 9, 26, 0.96);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(5, 7, 18, 0.9);
    border: 1px solid rgba(149, 189, 255, 0.4);
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
    color: #d1ddff;
}

.about-row {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.about-row i {
    color: #a3f7ff;
    margin-top: 0.15rem;
}

.about-row strong {
    color: #e2e7ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.2rem;
    align-items: flex-start;
}

.contact-card {
    padding: 1.6rem 1.4rem;
    border-radius: 24px;
    background: radial-gradient(circle at 0 0, rgba(90, 140, 255, 0.2), transparent 55%),
                linear-gradient(160deg, rgba(8, 10, 31, 0.98), rgba(6, 7, 24, 0.98));
    border: 1px solid rgba(149, 189, 255, 0.5);
    box-shadow: 0 22px 60px rgba(6, 9, 26, 0.96);
}

.contact-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.8rem;
    color: #d1ddff;
}

input,
textarea,
select {
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(149, 189, 255, 0.5);
    background: rgba(5, 7, 18, 0.9);
    color: var(--text);
    font-family: inherit;
    font-size: 0.86rem;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(154, 160, 194, 0.7);
}

input:focus,
textarea:focus,
select:focus {
    border-color: #b45bff;
    box-shadow: 0 0 0 1px rgba(180, 91, 255, 0.6), 0 0 18px rgba(180, 91, 255, 0.5);
    background: rgba(5, 7, 18, 1);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.form-footer {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-note {
    font-size: 0.75rem;
    color: var(--muted);
    max-width: 14rem;
}

.form-note strong {
    color: #e2e7ff;
}

.form-message {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    display: none;
}

.form-message.success {
    color: #7dffb5;
}

.form-message.error {
    color: var(--danger);
}

.contact-side {
    padding: 1.6rem 1.4rem;
    border-radius: 24px;
    background: rgba(5, 7, 18, 0.97);
    border: 1px solid rgba(149, 189, 255, 0.45);
}

.contact-side h3 {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.contact-side p {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    font-size: 0.84rem;
    color: var(--muted);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-list i {
    color: #a3f7ff;
}

footer {
    border-top: 1px solid rgba(149, 189, 255, 0.2);
    padding: 1.4rem 0 1.8rem;
    margin-top: 1.8rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
}

.whatsapp-float {
    position: fixed;
    right: 1.6rem;
    bottom: 1.6rem;
    z-index: 60;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    background: radial-gradient(circle at 20% 0%, #b8ffe2 0, #25D366 30%, #128C7E 80%);
    color: #04110a;
    font-size: 0.86rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 22px rgba(37, 211, 102, 0.85);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 1);
}

.whatsapp-badge {
    position: absolute;
    top: -0.4rem;
    right: 0.2rem;
    background: #ffce52;
    color: #181204;
    border-radius: 999px;
    font-size: 0.65rem;
    padding: 0.1rem 0.45rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .hero {
        padding-top: 3rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-right {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .nav ul {
        display: none;
    }

    .nav-cta {
        gap: 0.5rem;
    }

    .badge-chip {
        display: none;
    }

    .container {
        width: min(100% - 2rem, 720px);
    }

    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-btn span.label {
        display: none;
    }

    .whatsapp-btn {
        padding: 0.7rem;
        border-radius: 999px;
    }
}

/* ═══════════════════════════════════════════════
   MINI KANBAN — hero card
═══════════════════════════════════════════════ */
.mini-kanban {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.mini-col-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.mini-card {
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    background: rgba(5, 7, 18, 0.9);
    border: 1px solid rgba(149, 189, 255, 0.35);
    font-size: 0.72rem;
    color: #dbe4ff;
    margin-bottom: 0.35rem;
}

.mini-card.accent {
    border-color: rgba(180, 91, 255, 0.6);
    color: #e4b3ff;
    background: rgba(180, 91, 255, 0.1);
}

.mini-card.green {
    border-color: rgba(125, 255, 181, 0.5);
    color: #7dffb5;
    background: rgba(40, 211, 109, 0.08);
}

/* ═══════════════════════════════════════════════
   ADD-ONS
═══════════════════════════════════════════════ */
.section-addons {
    background: radial-gradient(ellipse at 50% 0%, rgba(90,140,255,0.09) 0%, transparent 65%);
}

.addon-kicker {
    color: #b45bff;
}

.addons-showcase {
    padding: 1.6rem 1.5rem 1.5rem;
    border-radius: 28px;
    background: radial-gradient(circle at 0 0, rgba(90, 140, 255, 0.12), transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(180, 91, 255, 0.1), transparent 45%),
                linear-gradient(160deg, rgba(8, 10, 31, 0.92), rgba(5, 7, 18, 0.96));
    border: 1px solid rgba(149, 189, 255, 0.35);
    box-shadow: 0 22px 60px rgba(5, 7, 18, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.addons-showcase-head {
    margin-bottom: 1.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(149, 189, 255, 0.18);
}

.addons-showcase-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #a3c4ff;
    margin-bottom: 0.35rem;
}

.addons-showcase-hint {
    font-size: 0.84rem;
    color: var(--muted);
    max-width: 42rem;
    line-height: 1.55;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.addon-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 1.35rem 1.2rem 1.15rem;
    border-radius: 20px;
    background: radial-gradient(circle at 0 0, rgba(90, 140, 255, 0.15), transparent 55%),
                linear-gradient(150deg, rgba(7, 9, 28, 0.97), rgba(6, 7, 24, 0.98));
    border: 1px solid rgba(149, 189, 255, 0.38);
    box-shadow: 0 12px 32px rgba(5, 7, 18, 0.88);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.addon-card:hover {
    transform: translateY(-4px);
    border-color: rgba(149, 189, 255, 0.7);
    box-shadow: 0 24px 56px rgba(0,0,0,0.85), 0 0 28px rgba(90,140,255,0.3);
}

.addon-card--highlight {
    border-color: rgba(180, 91, 255, 0.55);
    background: radial-gradient(circle at 0 0, rgba(180, 91, 255, 0.2), transparent 55%),
                linear-gradient(150deg, rgba(10, 7, 32, 0.98), rgba(6, 7, 24, 0.98));
    box-shadow: 0 16px 40px rgba(5, 7, 18, 0.88), 0 0 32px rgba(180, 91, 255, 0.18);
}

.addon-card--highlight:hover {
    border-color: rgba(180, 91, 255, 0.9);
    box-shadow: 0 24px 56px rgba(0,0,0,0.85), 0 0 36px rgba(180, 91, 255, 0.45);
}

.addon-popular-tag {
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 0.25rem 0.9rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #050712;
    white-space: nowrap;
}

.addon-card-top {
    flex: 1;
}

.addon-icon-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.addon-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #aaf0ff 0, #5a8cff 40%, #b45bff 100%);
    color: #050712;
    font-size: 1rem;
    box-shadow: 0 0 16px rgba(106, 190, 255, 0.8);
}

.addon-icon--purple {
    background: radial-gradient(circle at 30% 30%, #f0b3ff 0, #b45bff 50%, #7a3bcc 100%);
    box-shadow: 0 0 16px rgba(180, 91, 255, 0.8);
}

.addon-icon--green {
    background: radial-gradient(circle at 30% 30%, #b8ffe2 0, #25D366 50%, #128C7E 100%);
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.7);
}

.addon-icon--amber {
    background: radial-gradient(circle at 30% 30%, #fff3b0 0, #ffc84a 50%, #c97a00 100%);
    box-shadow: 0 0 16px rgba(255, 200, 74, 0.65);
}

.addon-badge-pill {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    background: rgba(90,140,255,0.15);
    border: 1px solid rgba(149,189,255,0.4);
    color: #a3c4ff;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.addon-badge-pill--purple {
    background: rgba(180,91,255,0.15);
    border-color: rgba(210,140,255,0.4);
    color: #e0b3ff;
}

.addon-title {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    color: #e8eeff;
    line-height: 1.35;
}

.addon-plan-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.addon-plan-tag {
    font-size: 0.62rem;
    padding: 0.18rem 0.5rem;
    border-radius: var(--radius-pill);
    background: rgba(12, 16, 46, 0.85);
    border: 1px solid rgba(149, 189, 255, 0.35);
    color: #b8c8f0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.addon-plan-tag--pro {
    background: rgba(90, 140, 255, 0.14);
    border-color: rgba(90, 140, 255, 0.45);
    color: #a3c4ff;
}

.addon-plan-tag--enterprise {
    background: rgba(180, 91, 255, 0.14);
    border-color: rgba(180, 91, 255, 0.45);
    color: #d4b0ff;
}

.addon-text {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.addon-features {
    list-style: none;
    display: grid;
    gap: 0.38rem;
    font-size: 0.76rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.addon-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.addon-features li i {
    color: #7dffb5;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.addon-card-foot {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 0.95rem;
    margin-top: auto;
    border-top: 1px solid rgba(149,189,255,0.15);
}

.addon-price-wrap {
    display: flex;
    flex-direction: column;
}

.addon-price-label {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.addon-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e8eeff;
    line-height: 1.1;
}

.addon-price-unit {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--muted);
}

.btn-sm {
    padding: 0.42rem 1rem;
    font-size: 0.75rem;
    width: 100%;
}

/* Banner combo */
.addon-combo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 1.8rem;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(90,140,255,0.18) 0%, rgba(180,91,255,0.18) 100%);
    border: 1px solid rgba(180,91,255,0.4);
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.addon-combo-tag {
    display: inline-block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #c8a3ff;
    margin-bottom: 0.25rem;
}

.addon-combo-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e8eeff;
    margin-bottom: 0.25rem;
}

.addon-combo-sub {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════
   FLUXO
═══════════════════════════════════════════════ */
.section-fluxo {
    background: radial-gradient(ellipse at 50% 100%, rgba(180,91,255,0.08) 0%, transparent 60%);
}

.fluxo-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}

.fluxo-step {
    flex: 1;
    min-width: 160px;
    padding: 1.4rem 1.2rem;
    border-radius: 20px;
    background: radial-gradient(circle at 0 0, rgba(90,140,255,0.14), transparent 60%),
                linear-gradient(150deg, rgba(8,10,30,0.98), rgba(6,7,24,0.98));
    border: 1px solid rgba(149,189,255,0.35);
    text-align: center;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}

.fluxo-step:hover {
    border-color: rgba(149,189,255,0.7);
    box-shadow: 0 0 28px rgba(90,140,255,0.22);
    transform: translateY(-3px);
}

.fluxo-num {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.fluxo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #aaf0ff 0, #5a8cff 40%, #b45bff 100%);
    color: #050712;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.9rem;
    font-size: 1.1rem;
    box-shadow: 0 0 18px rgba(106,190,255,0.7);
}

.fluxo-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e7ff;
    margin-bottom: 0.4rem;
}

.fluxo-text {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

.fluxo-arrow {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    padding-top: 2.5rem;
    color: rgba(149,189,255,0.4);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   PLANOS
═══════════════════════════════════════════════ */
.section-planos {
    background: radial-gradient(ellipse at 50% 0%, rgba(90,140,255,0.07) 0%, transparent 60%);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
    align-items: start;
    margin-bottom: 1.2rem;
}

.plano-card {
    display: flex;
    flex-direction: column;
    padding: 1.6rem 1.4rem;
    border-radius: 24px;
    background: radial-gradient(circle at 0 0, rgba(90,140,255,0.15), transparent 55%),
                linear-gradient(150deg, rgba(7,9,28,0.98), rgba(6,7,24,0.98));
    border: 1px solid rgba(149,189,255,0.35);
    box-shadow: 0 18px 40px rgba(5,7,18,0.88);
    position: relative;
}

.plano-card--featured {
    border-color: rgba(90,140,255,0.7);
    background: radial-gradient(circle at 0 0, rgba(90,140,255,0.22), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(180,91,255,0.18), transparent 50%),
                linear-gradient(150deg, rgba(8,10,30,0.99), rgba(6,7,24,0.99));
    box-shadow: 0 18px 40px rgba(5,7,18,0.88), 0 0 36px rgba(90,140,255,0.2);
}

.plano-featured-tag {
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 0.25rem 0.9rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #050712;
    white-space: nowrap;
}

.plano-head {
    margin-bottom: 1.2rem;
}

.plano-kicker {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.plano-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.plano-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e8eeff;
    line-height: 1;
}

.plano-price-unit {
    font-size: 0.8rem;
    color: var(--muted);
}

.plano-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

.plano-features {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
    flex: 1;
}

.plano-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.plano-features li i.fa-check {
    color: #7dffb5;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.plano-feature--off {
    opacity: 0.38;
}

.plano-feature--off i.fa-xmark {
    color: var(--danger);
    margin-top: 0.15rem;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.plano-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.planos-note {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    opacity: 0.7;
}

/* Hint de preço no aside de contato */
.contact-plano-hint {
    margin-top: 1.4rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: rgba(90,140,255,0.08);
    border: 1px solid rgba(149,189,255,0.3);
    text-align: center;
}

.contact-plano-hint-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.contact-plano-hint-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e8eeff;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.contact-plano-hint-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--muted);
}

.contact-plano-hint-sub {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════
   RESPONSIVO — NOVOS BLOCOS
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .addons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .addons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .addons-showcase {
        padding: 1.25rem 1.1rem 1.1rem;
    }

    .planos-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 440px;
        margin-inline: auto;
    }

    .fluxo-steps {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .fluxo-arrow {
        display: none;
    }
}

@media (max-width: 720px) {
    .addons-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .addons-showcase {
        padding: 1rem 0.85rem;
        border-radius: 20px;
    }

    .addon-card-foot {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .btn-sm {
        width: auto;
    }

    .addon-combo-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .fluxo-steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .mini-kanban {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
