/* CSS Root */
:root {
    --brand-primary: #1770bb;
    --brand-accent: #17e2e9;
    --brand-ink: #0c3a62;
    --brand-tint: rgba(23, 112, 187, 0.08);
    --brand-400: #2d82d5;
}

* {
    padding: 0;
    margin: 0;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Helvetica, sans-serif;
    color: #454545;
}

.btn-user-area {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 0;
    background: transparent;
    color: #0f4f92;
    box-shadow: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-user-area:hover,
.btn-user-area:focus {
    transform: translateY(-1px);
    border-color: rgba(15, 79, 146, 0.45);
    color: #0b3f75;
    box-shadow: 0 0 0 6px rgba(15, 79, 146, 0.08);
}

.btn-user-area i {
    font-size: 1.35rem;
}

/* Sobrescritas do Bootstrap */
.btn {
    --bs-btn-padding-y: 0.75rem;
    --bs-btn-padding-x: 1.5rem;
    border-radius: 0.75rem;
}

.btn-primary {
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
}

.form-control:focus {
    box-shadow: 0 0 0 1px #C1DDF5 !important;
    transition: none;
}

.invalid {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-danger) !important;
}

/* Novas classes CSS */
.fw-extra-bold {
    font-weight: 800 !important;
}

/* 40px */
.rounded-6 {
    border-radius: 2.5rem;
}

/* Shimmer effect */
.shimmer {
    position: relative;
    overflow: hidden;
    background: #f6f7f8;
    }

.shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f6f7f8 0%, #e9ecef 50%, #f6f7f8 100%);
    animation: shimmer 1.5s infinite;
    opacity: 0.7;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* CSS padrão do Blazor */
.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}
.blazor-error-boundary::after {
    content: "An error has occurred."
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Landing page */
.text-brand-primary {
    color: var(--brand-primary) !important;
}

.text-brand-ink {
    color: var(--brand-ink) !important;
}

.border-brand-primary {
    border-color: var(--brand-primary) !important;
}

.text-bg-brand-soft {
    color: var(--brand-ink) !important;
    background: var(--brand-tint) !important;
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand-primary);
    --bs-btn-border-color: var(--brand-primary);
    --bs-btn-hover-bg: #13609f;
    --bs-btn-hover-border-color: #13609f;
    --bs-btn-focus-shadow-rgb: 23, 112, 187;
    --bs-btn-active-bg: #0f5790;
    --bs-btn-active-border-color: #0f5790;
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}


.brand-logo {
    display: block;
    max-height: 40px;
}

.brand-text {
    font-weight: 700;
    font-size: medium;
    color: var(--brand-primary) !important;
}

.brand-link {
    color: var(--brand-primary) !important;
}

.brand-link:hover,
.brand-link:focus {
    color: #0f5790 !important;
}

.navbar .btn {
    --bs-btn-padding-y: 0.3rem;
    --bs-btn-padding-x: 1rem;
}

.navbar .btn-brand {
    --bs-btn-padding-x: 1.1rem !important;
}

.landing-nav {
    gap: 1rem;
}

.landing-nav .nav-link {
    padding: 0.5rem 0.75rem;
    color: var(--brand-ink) !important;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.landing-nav .nav-link:hover,
.landing-nav .nav-link:focus {
    color: var(--brand-primary) !important;
    background-color: rgba(23, 112, 187, 0.12);
}

.landing-nav .nav-link.active {
    color: #fff !important;
    background-color: var(--brand-primary);
    box-shadow: 0 0.5rem 1rem rgba(12, 58, 98, 0.1);
}

.landing-section {
    scroll-margin-top: 96px;
}

.bg-gradient {
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.hero-metric {
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(12, 58, 98, 0.04);
}

.hero-metric-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--brand-accent) 0%, rgba(23, 226, 233, 0.3) 55%, transparent 100%);
    box-shadow: 0 0 0 4px rgba(23, 226, 233, 0.15);
}

.cta-card {
    position: relative;
    border-radius: 1.35rem;
    background: linear-gradient(135deg, rgba(230, 242, 255, 0.72), #ffffff 70%);
    border: 1px solid rgba(23, 112, 187, 0.1);
    box-shadow: 0 1rem 2.25rem -1.5rem rgba(12, 58, 98, 0.26);
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    inset: -120px 45% auto -80px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(23, 226, 233, 0.18), transparent 70%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}

.cta-card-header {
    position: relative;
    border-radius: 999px;    
    color: var(--brand-primary);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    z-index: 1;
}

.cta-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-card-title,
.cta-card-subtitle,
.cta-card-highlight {
    position: relative;
    z-index: 1;
}

.cta-card-subtitle {
    line-height: 1.55;
}

.cta-card-highlight {
    color: var(--brand-ink);
}

.cta-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.cta-contact .cta-chip {
    flex: 1 1 220px;
}

.cta-chip {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(12, 58, 98, 0.06);
    box-shadow: 0 0.75rem 2rem -1.6rem rgba(12, 58, 98, 0.23);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.cta-chip:hover,
.cta-chip:focus {
    transform: translateY(-2px);
    box-shadow: 0 1.2rem 2.6rem -1.7rem rgba(12, 58, 98, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.cta-chip.muted {
    background: rgba(12, 58, 98, 0.03);
}

.cta-chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: radial-gradient(circle at 25% 25%, rgba(23, 226, 233, 0.35), transparent 60%), rgba(23, 112, 187, 0.08);
    color: var(--brand-primary);
    font-size: 1.3rem;
}

.cta-chip-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    color: var(--brand-ink);
}

.cta-form {
    position: relative;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(12, 58, 98, 0.06);
    box-shadow: 0 0.85rem 2.4rem -1.6rem rgba(12, 58, 98, 0.28);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.cta-form .form-floating > label {
    color: rgba(12, 58, 98, 0.64);
}

.cta-form .form-floating > .form-control {
    border-radius: 0.85rem;
    border: 1px solid rgba(12, 58, 98, 0.1);
    box-shadow: none;
}

.cta-form .form-floating > .form-control:focus {
    border-color: rgba(23, 112, 187, 0.38);
    box-shadow: 0 0 0 0.18rem rgba(23, 112, 187, 0.13);
}

.cta-form button.btn {
    padding-block: 0.85rem;
    border-radius: 999px;
}

.cta-form .validation-message,
.cta-form .text-danger {
    margin-top: 0.35rem;
}

.cta-form p.small {
    color: rgba(12, 58, 98, 0.75);
}

.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 1rem 2.5rem -1.2rem rgba(12, 58, 98, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    z-index: 1030;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus {
    transform: translateY(-4px);
    background: #1ebe57;
    box-shadow: 0 1.5rem 3rem -1.2rem rgba(12, 58, 98, 0.55);
    color: #fff !important;
}

@media (max-width: 575.98px) {
    .whatsapp-fab {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .cta-chip {
        flex-direction: row;
    }
}

@media (max-width: 991.98px) {
    .cta-contact .cta-chip {
        flex: 1 1 100%;
    }
}

.skeleton {
    height: 12px;
    background: #e2e8f0;
    border-radius: 8px;
}

.skeleton-brand {
    background: linear-gradient(90deg, var(--brand-400), var(--brand-tint));
}

.chip {
    height: 24px;
    width: 72px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-accent) 25%, #ffffff);
}

.mock-glow {
    position: absolute;
    inset: -140px -90px -170px -90px;
    border-radius: 320px;
    background:
        radial-gradient(65% 80% at 68% 28%, rgba(81, 144, 231, 0.72), transparent 72%),
        radial-gradient(55% 70% at 28% 62%, rgba(23, 226, 233, 0.6), transparent 78%),
        linear-gradient(140deg, rgba(23, 112, 187, 0.55), rgba(23, 226, 233, 0.28));
    filter: blur(42px);
    opacity: 1;
    mix-blend-mode: screen;
    z-index: 0;
}


.device-mock {
    position: relative;
    width: clamp(100px, 28vw, 480px);
    margin-inline: auto;
}

.device-mock .card {
    position: relative;
    z-index: 1;
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.ratio-9x19 {
    aspect-ratio: 9 / 18;
}

.hero-visual {
    width: 100%;
}

.hero-mockup-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0.75rem 1.75rem rgba(12, 58, 98, 0.14));
}

@media (min-width: 992px) {
    .device-mock {
        margin-inline: 0;
    }
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(1.5rem, 2.8vw, 1.85rem);
    gap: 1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(12, 58, 98, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    box-shadow: 0 1rem 2.5rem -1.6rem rgba(12, 58, 98, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(23, 226, 233, 0.2), rgba(81, 144, 231, 0.1), transparent 70%);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.5rem 3rem -1.4rem rgba(12, 58, 98, 0.4);
}

.feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: radial-gradient(circle at 25% 25%, rgba(23, 226, 233, 0.45), transparent 60%), var(--brand-tint);
    color: var(--brand-primary);
    font-size: 1.6rem;
}

.feature-card-title {
    color: var(--brand-ink);
}

.feature-card-desc {
    line-height: 1.6;
}

.pricing-card {
    position: relative;
    height: 100%;
    padding: 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(12, 58, 98, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 1.25rem 3rem -1.6rem rgba(12, 58, 98, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card.premium {
    border: 1px solid rgba(23, 112, 187, 0.4);
    box-shadow: 0 1.5rem 3.25rem -1.5rem rgba(23, 112, 187, 0.35);
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(23, 226, 233, 0.18), rgba(81, 144, 231, 0.1), transparent 70%);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.75rem 3.5rem -1.4rem rgba(12, 58, 98, 0.38);
}

.pricing-card-body {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-subtitle {
    line-height: 1.5;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-ink);
}

.pricing-card-features .feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 25% 25%, rgba(23, 226, 233, 0.35), transparent 60%), rgba(23, 112, 187, 0.08);
    color: var(--brand-primary);
    font-size: 1.2rem;
}

.faq-card {
    position: relative;
    padding: 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(12, 58, 98, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 1rem 2.5rem -1.5rem rgba(12, 58, 98, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(23, 226, 233, 0.18), rgba(81, 144, 231, 0.08), transparent 70%);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.5rem 3rem -1.4rem rgba(12, 58, 98, 0.38);
}

.faq-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 30%, rgba(23, 226, 233, 0.35), transparent 60%), var(--brand-tint);
    color: var(--brand-primary);
    font-size: 1.5rem;
}

.faq-card-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(12, 58, 98, 0.6);
}

.faq-card-answer {
    line-height: 1.6;
}

.hero-grid {
    width: 100%;
}

.hero-copy {
    flex: 1 1 420px;
    max-width: 520px;
}

.hero-visual {
    flex: 1.3 1 520px;
    min-width: 0;
}

@media (max-width: 576px) {
    .hero-visual {
        width: 100%;
        overflow: hidden;
    }

    .device-mock {
        width: 100%;
        max-width: 360px;
    }

    .hero-mockup-img {
        width: 100%;
        max-width: 360px;
        transform: none;
    }
}

@media (min-width: 1200px) {
    .hero-copy {
        max-width: 560px;
    }
}