:root {
    --bg-page: #e9eef5;
    --bg-surface: #ffffff;
    --text-main: #1b2a3a;
    --text-muted: #5f7288;
    --brand-500: #0d67ca;
    --brand-600: #0a56ac;
    --brand-700: #084385;
    --accent-500: #f3d417;
    --accent-600: #e6c700;
    --line-soft: rgba(15, 41, 72, 0.12);
    --shadow-soft: 0 16px 36px rgba(15, 52, 99, 0.12);
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.55;
    color: var(--text-main);
    background: var(--bg-page);
}

.container {
    width: min(1200px, 100% - 40px);
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.96) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(12, 60, 120, 0.11);
    box-shadow: 0 8px 20px rgba(16, 56, 102, 0.08);
}

.header::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #1a78e8 0%, #0f63c7 52%, #2d95ff 100%);
    opacity: 0.95;
}

.header .container {
    min-height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #eaf3ff 0%, #d8e9ff 100%);
    box-shadow: inset 0 0 0 1px rgba(10, 86, 172, 0.12), 0 6px 14px rgba(27, 94, 178, 0.16);
    font-size: 20px;
}

.logo-text {
    color: #0e4f98;
    font-weight: 800;
    font-size: 35px;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #2f4b67;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
    color: #0b4e95;
    background: rgba(13, 103, 202, 0.08);
    transform: translateY(-1px);
}

.nav a[aria-current="page"] {
    color: #0a4d92;
    background: rgba(13, 103, 202, 0.14);
    box-shadow: inset 0 0 0 1px rgba(13, 103, 202, 0.16);
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 74px 0 58px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.16), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.12), transparent 38%),
        linear-gradient(135deg, #1068ca 0%, #1e79e3 48%, #5e9fe9 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 48vw;
    height: 48vw;
    border-radius: 50%;
    border: 22px solid rgba(4, 44, 97, 0.14);
    pointer-events: none;
}

.hero::before {
    top: -28vw;
    left: -18vw;
}

.hero::after {
    right: -24vw;
    bottom: -26vw;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    max-width: 860px;
    margin: 0 auto 16px;
}

.hero-content > p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.94);
}

.search-box {
    max-width: 860px;
    margin: 34px auto 0;
}

.search-shell {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(20, 60, 103, 0.5);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.search-input-wrap {
    flex: 1;
    background: #f3f6fb;
    border-radius: 14px;
    min-height: 72px;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5b6f86;
    margin-bottom: 4px;
    font-weight: 700;
}

.search-input-wrap input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 28px;
    font-weight: 700;
    color: #1e334b;
    text-transform: uppercase;
}

.search-input-wrap input::placeholder {
    color: #8a99a9;
    font-size: 22px;
}

.search-input-wrap input:focus {
    outline: none;
}

.search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 214px;
    min-height: 72px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--accent-500) 0%, #f0cd05 100%);
    color: #17334f;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 24px rgba(229, 201, 0, 0.28);
}

.search-submit.is-loading {
    cursor: wait;
    opacity: 0.95;
}

.search-submit:disabled {
    pointer-events: none;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    animation: button-spin 0.9s linear infinite;
}

@keyframes button-spin {
    to {
        transform: rotate(360deg);
    }
}

.search-submit:hover {
    background: linear-gradient(135deg, #ffe64b 0%, #f6d81b 100%);
}

.search-trust-bar {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-pill,
.recaptcha-badge-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    min-height: 36px;
    padding: 8px 14px;
    background: rgba(16, 53, 96, 0.5);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    color: #ebf4ff;
    font-size: 12px;
    font-weight: 600;
}

.trust-icon {
    font-size: 14px;
}

.recaptcha-mark {
    position: relative;
    width: 18px;
    height: 18px;
}

.recaptcha-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dot-blue {
    top: 0;
    left: 0;
    background: #4285f4;
}

.dot-red {
    top: 0;
    right: 0;
    background: #ea4335;
}

.dot-yellow {
    bottom: 0;
    right: 0;
    background: #fbbc05;
}

.dot-green {
    bottom: 0;
    left: 0;
    background: #34a853;
}

.recaptcha-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.recaptcha-copy strong {
    font-size: 11px;
}

.recaptcha-copy span {
    font-size: 10px;
    color: rgba(235, 244, 255, 0.76);
}

.stats {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.stat {
    min-width: 160px;
    text-align: center;
    position: relative;
}

.stat strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
}

.stat p {
    margin-top: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.btn {
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-weight: 700;
    padding: 12px 24px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
}

.btn-primary:hover {
    background: #f55a20;
    box-shadow: 0 10px 20px rgba(245, 90, 32, 0.22);
}

.btn-outline {
    background: transparent;
    color: var(--brand-600);
    border: 2px solid rgba(10, 86, 172, 0.34);
}

.btn-outline:hover {
    background: var(--brand-600);
    color: #fff;
}

.btn-large {
    padding: 14px 32px;
    font-size: 17px;
}

.resultado-section {
    width: min(1160px, calc(100% - 40px));
    margin: 34px auto;
}

.upgrade-section {
    background: linear-gradient(180deg, #fff7ea 0%, #fffefb 100%);
    border: 1px solid rgba(245, 90, 32, 0.18);
}

.upgrade-copy {
    color: #3f5368;
    margin-bottom: 16px;
}

.servicos,
.features,
.diferenciais,
.cta-final,
.faq {
    padding: 78px 0;
}

.servicos {
    background: var(--bg-surface);
}

.features {
    background: #f5f8fc;
}

.diferenciais {
    background: var(--bg-surface);
}

.faq {
    background: #f5f8fc;
}

.servicos h2,
.features h2,
.diferenciais h2,
.faq h2,
.cta-final h2 {
    text-align: center;
    color: #123e6d;
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.15;
}

.servicos h2 {
    margin-bottom: 10px;
}

.features h2,
.diferenciais h2,
.faq h2 {
    margin-bottom: 40px;
}

.subtitle {
    margin: 12px auto 48px;
    max-width: 760px;
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
}

.cards-grid,
.features-grid,
.diferenciais-grid {
    display: grid;
    gap: 24px;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.features-grid,
.diferenciais-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.feature-item,
.difer-item,
.faq-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(14, 53, 100, 0.08);
}

.card {
    padding: 28px;
    border: 1px solid var(--line-soft);
    text-align: center;
}

.card.featured {
    border-color: rgba(245, 90, 32, 0.35);
    background: linear-gradient(180deg, rgba(255, 244, 238, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
}

.badge {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    padding: 5px 11px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-feature {
    font-size: 36px;
    margin-bottom: 10px;
}

.card h3 {
    color: #163c68;
    font-size: 24px;
}

.card-desc {
    color: var(--text-muted);
    margin: 10px 0 16px;
}

.price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    color: var(--brand-600);
    font-weight: 800;
    font-size: 34px;
    margin-bottom: 20px;
}

.badge-price {
    background: #eef4fb;
    color: #5f7288;
    border-radius: 999px;
    font-size: 11px;
    padding: 4px 10px;
}

.feature-item,
.difer-item {
    padding: 24px;
}

.feature-item h4,
.difer-item h4 {
    font-size: 19px;
    color: #184c81;
    margin-bottom: 8px;
}

.feature-item p,
.difer-item p {
    color: var(--text-muted);
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    background: linear-gradient(135deg, #0f68cb 0%, #0a57ad 100%);
}

.cta-final {
    color: #fff;
    text-align: center;
    padding: 74px 0;
    background: linear-gradient(140deg, #0c5fbd 0%, #094a95 100%);
}

.cta-final h2 {
    color: #ffffff;
    margin-bottom: 14px;
}

.cta-final p {
    margin: 0 auto 30px;
    max-width: 700px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.faq-list {
    max-width: 860px;
    margin: 44px auto 0;
}

.faq-item {
    padding: 20px 22px;
    border-left: 4px solid #ff6b35;
    margin-bottom: 14px;
}

.faq-item h4 {
    color: #184c81;
    margin-bottom: 6px;
    font-size: 18px;
}

.faq-item p {
    color: var(--text-muted);
}

.footer {
    background: linear-gradient(180deg, #1e4457 0%, #18394a 100%);
    color: #eff5f8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(320px, 1fr);
    gap: 24px;
    align-items: center;
    padding: 44px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-copy h3 {
    color: #f5df1a;
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-newsletter-copy p {
    color: rgba(239, 245, 248, 0.88);
}

.footer-newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
}

.footer-newsletter-form input {
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0 16px;
    background: rgba(16, 43, 57, 0.62);
    color: #fff;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.footer-newsletter-button {
    min-height: 52px;
    border: none;
    border-radius: 14px;
    background: #f5df1a;
    color: #113049;
    font-weight: 700;
    padding: 0 22px;
    cursor: pointer;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 34px;
    padding: 42px 0;
}

.footer-brand-block h5,
.footer-section h5 {
    color: #f5df1a;
    margin-bottom: 16px;
}

.footer-brand {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #f5df1a;
    background: rgba(245, 223, 26, 0.16);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-text strong {
    color: #fff;
    font-size: 26px;
}

.footer-brand-text span,
.footer-hours,
.footer-brand-block p,
.footer-section a,
.footer-section p {
    color: rgba(239, 245, 248, 0.9);
}

.footer-hours {
    margin-top: 16px;
    display: grid;
    gap: 6px;
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-section a {
    text-decoration: none;
}

.footer-section a:hover {
    color: #f5df1a;
}

.footer-bottom {
    background: rgba(10, 30, 40, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0 24px;
    text-align: center;
    color: rgba(239, 245, 248, 0.88);
    font-size: 14px;
}

.contato-page {
    background: #eef2f7;
    padding: 46px 0 60px;
}

.contato-hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 30px;
    align-items: start;
}

.contato-copy h1 {
    color: #133f6d;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.14;
    margin-bottom: 12px;
}

.contato-copy p {
    color: #4f6278;
    margin-bottom: 14px;
}

.contato-copy ul {
    margin-left: 18px;
    color: #35506d;
    display: grid;
    gap: 8px;
}

.contato-form-card {
    background: #fff;
    border: 1px solid rgba(17, 63, 109, 0.1);
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(15, 48, 88, 0.08);
    padding: 24px;
}

.contato-form-card h2 {
    color: #174c83;
    margin-bottom: 14px;
}

.contato-form {
    display: grid;
    gap: 10px;
}

.contato-form label {
    color: #1c436b;
    font-size: 13px;
    font-weight: 700;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    border: 1px solid rgba(25, 68, 112, 0.2);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: #1b3550;
    background: #fff;
}

.contato-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #1d7ae6;
    box-shadow: 0 0 0 3px rgba(29, 122, 230, 0.14);
}

.contato-form .btn {
    margin-top: 4px;
    width: fit-content;
}

.contato-feedback {
    min-height: 24px;
    margin-top: 2px;
    color: #385775;
    font-weight: 600;
}

.contato-feedback-success {
    color: #12623a;
}

.contato-feedback-error {
    color: #a52b2b;
}

.contato-faq-block {
    margin-top: 56px;
}

.contato-faq-block h2 {
    text-align: center;
    color: #133f6d;
    font-size: clamp(30px, 3.2vw, 42px);
    margin-bottom: 8px;
}

.contato-faq-subtitle {
    text-align: center;
    color: #5f748c;
    margin-bottom: 24px;
}

.contato-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contato-faq-card {
    background: #fff;
    border: 1px solid rgba(17, 63, 109, 0.14);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(15, 48, 88, 0.05);
}

.contato-faq-card h3 {
    color: #164978;
    margin-bottom: 10px;
}

.contato-faq-card ul {
    margin-left: 18px;
    color: #3f5770;
    display: grid;
    gap: 8px;
}

.resultado-box {
    background: #fff;
    border: 1px solid rgba(13, 103, 202, 0.2);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.resultado-box h2 {
    color: #153e6b;
    margin-bottom: 12px;
}

.resultado-info {
    background: #f4f7fb;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
}

.resultado-info p {
    margin-bottom: 6px;
}

.resultado-info strong {
    color: #134f90;
}

.relatorio-container {
    max-width: 980px;
    margin: 0 auto;
}

.relatorio-header {
    color: #fff;
    padding: 30px;
    border-radius: 18px 18px 0 0;
    text-align: center;
    background: linear-gradient(135deg, #0c63c4 0%, #0a4f9d 100%);
}

.relatorio-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.relatorio-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 14px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.92);
}

.relatorio-chip {
    margin-top: 10px;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.16);
}

.relatorio-subtitle {
    margin-top: 8px;
    opacity: 0.94;
}

.relatorio-placa {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 23px;
    font-weight: 800;
}

.relatorio-meta {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.relatorio-meta span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    padding: 7px 11px;
    font-size: 13px;
}

.relatorio-section {
    background: #fff;
    border-left: 1px solid rgba(13, 103, 202, 0.16);
    border-right: 1px solid rgba(13, 103, 202, 0.16);
    border-bottom: 1px solid rgba(13, 103, 202, 0.16);
    padding: 22px;
}

.relatorio-section:last-child {
    border-radius: 0 0 18px 18px;
}

.relatorio-section h3 {
    color: #134679;
    font-size: 21px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    font-size: 22px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.info-item {
    background: #f4f8fd;
    border-left: 4px solid #0f67c9;
    border-radius: 10px;
    padding: 14px;
}

.info-item-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #607791;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-item-value {
    color: #21384f;
    font-size: 16px;
    font-weight: 700;
    word-break: break-word;
}

.empty-state {
    color: #63788f;
}

.lista-items {
    list-style: none;
}

.lista-items li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e6edf6;
}

.lista-items li:last-child {
    border-bottom: none;
}

.item-label {
    color: #324a63;
}

.item-value {
    color: #1a4f87;
    font-weight: 700;
}

.status-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

.status-ativo,
.status-paga {
    background: #e7f8ef;
    color: #14653b;
}

.status-inativo {
    background: #fde8eb;
    color: #91223b;
}

.status-naopaga {
    background: #fff6da;
    color: #885f00;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 6px 12px;
    background: #edf4ff;
    color: #194a80;
    font-weight: 700;
    font-size: 13px;
}

.tag-success {
    background: #e8f7ef;
    color: #15653b;
}

.tag-warning {
    background: #fff1e3;
    color: #9b4f09;
}

.fipe-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.fipe-card {
    border: 1px solid #d7e4f2;
    border-radius: 12px;
    padding: 14px;
    background: #f8fbff;
}

.fipe-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.fipe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mini-label {
    display: block;
    font-size: 11px;
    color: #63798f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #24394f;
}

.recomendacao-box {
    border: 1px solid #f3cd5b;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff6d8 0%, #ffefb9 100%);
    color: #7d5b0a;
    padding: 14px;
}

.recomendacao-box h4 {
    margin-bottom: 4px;
}

.confidence-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: #e1e7ef;
    margin-top: 10px;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, #f15f36 0%, #f3d417 45%, #1ea85b 100%);
}

.alert-danger {
    background: #fdecef;
    border-left-color: #d14f6f;
}

.alert-success {
    background: #e8f8ef;
    border-left-color: #23a15b;
}

.alert-warning {
    background: #fff6da;
    border-left-color: #e2b739;
}

.relatorio-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #f6f9fd;
}

@media print {
    .header,
    .servicos,
    .features,
    .diferenciais,
    .cta-final,
    .faq,
    .footer,
    .search-box,
    .stats {
        display: none !important;
    }

    .resultado-section,
    .relatorio-container,
    .relatorio-section,
    .relatorio-header {
        margin: 0;
        box-shadow: none;
        border-radius: 0;
    }
}
