:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --navy: #0f172a;
    --soft: #f6f8fc;
    --muted: #64748b;
    --border: #e2e8f0;
    --green: #14b8a6;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--navy);
    background: #fff;
    padding-top: 76px;
}

a {
    text-decoration: none;
}

.navbar {
    min-height: 76px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--green));
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .22);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 0;
    box-shadow: 0 12px 30px rgba(37, 99, 235, .22);
}

.btn-primary:hover {
    filter: brightness(.96);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0 80px;
    background:
        radial-gradient(circle at 12% 10%, rgba(37, 99, 235, .12), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(20, 184, 166, .12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .08);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .12);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    line-height: .98;
    letter-spacing: -2.5px;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 20px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 690px;
}

.hero-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 34px;
    padding: 36px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .12);
    animation: floatIn .7s ease both;
}

.security-circle {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), var(--primary));
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero-panel h2 {
    font-weight: 850;
    margin-bottom: 14px;
}

.hero-panel p,
.hero-panel li {
    color: var(--muted);
    line-height: 1.7;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 680px;
}

.trust-row div {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.trust-row strong {
    display: block;
    font-size: 18px;
}

.trust-row span {
    color: var(--muted);
    font-size: 14px;
}

.section-light {
    padding: 86px 0;
    background: var(--soft);
}

.section-white {
    padding: 86px 0;
    background: #fff;
}

.page-section {
    padding: 86px 0;
    min-height: 70vh;
    background:
        radial-gradient(circle at 15% 5%, rgba(37, 99, 235, .08), transparent 28%),
        #fff;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 24px;
}

.section-heading h1,
.section-heading h2,
.section-title {
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 900;
    letter-spacing: -1.6px;
}

.section-heading p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.service-card,
.post-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
    color: var(--navy);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
    transition: .25s ease;
}

.service-card:hover,
.post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, .35);
    box-shadow: 0 28px 70px rgba(37, 99, 235, .13);
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, .09);
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 20px;
}

.service-card h3,
.post-card h3 {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 850;
}

.service-card p,
.post-card p {
    color: var(--muted);
    line-height: 1.7;
}

.post-card span {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

.post-card small {
    color: var(--muted);
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.content-card,
.side-card,
.form-card,
.info-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
}

.article-card {
    max-width: 900px;
}

.content-card h1 {
    font-size: clamp(34px, 4.4vw, 58px);
    font-weight: 900;
    letter-spacing: -1.6px;
    margin-bottom: 20px;
}

.rich-content {
    color: #334155;
    line-height: 1.85;
    font-size: 18px;
}

.rich-content h2,
.rich-content h3 {
    color: var(--navy);
    margin-top: 32px;
    font-weight: 850;
}

.side-card {
    position: sticky;
    top: 96px;
}

.side-card h3 {
    font-size: 20px;
    font-weight: 850;
    margin-bottom: 18px;
}

.side-card a {
    display: block;
    color: var(--muted);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.side-card a:hover {
    color: var(--primary);
}

.form-card .form-control {
    min-height: 52px;
    border-radius: 16px;
    border-color: var(--border);
    padding: 12px 15px;
}

.form-card textarea.form-control {
    min-height: 150px;
}

.form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(37, 99, 235, .12);
}

.info-box {
    margin-top: 28px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(20, 184, 166, .08));
}

.info-box p {
    color: var(--muted);
    margin-bottom: 0;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-list div {
    display: flex;
    gap: 18px;
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
}

.feature-list strong {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(15, 23, 42, .06);
}

.feature-list span {
    font-weight: 700;
}

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    margin-bottom: 16px;
}

.footer h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 850;
    margin-bottom: 14px;
}

.footer a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 9px;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 34px;
    padding-top: 24px;
    font-size: 14px;
    color: #94a3b8;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 70px;
    }

    .hero-section {
        padding: 64px 0;
    }

    .trust-row,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .side-card {
        position: static;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 42px;
    }

    .content-card,
    .side-card,
    .form-card {
        padding: 24px;
        border-radius: 24px;
    }

    .trust-row div {
        padding: 16px;
    }
}
.article-card {
    max-width: 900px;
    overflow: hidden;
}

.post-image-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin: 22px 0 26px;
}

.post-featured-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.drs-cookie-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    display: none;
    animation: drsSlideIn .35s ease;
}

.drs-cookie-card {
    width: 360px;
    background: #0f172a;
    color: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
}

.drs-cookie-card strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.drs-cookie-card p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #cbd5f5;
    margin: 0;
}

.drs-cookie-card a {
    color: #60a5fa;
    text-decoration: underline;
}

.drs-cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

.drs-cookie-accept,
.drs-cookie-reject {
    border: none;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.drs-cookie-accept {
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: #fff;
}

.drs-cookie-reject {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.drs-cookie-hide {
    opacity: 0;
    transform: translateY(10px);
    transition: all .25s ease;
}

@keyframes drsSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@media (max-width: 480px) {
    .drs-cookie-modal {
        right: 10px;
        left: 10px;
        bottom: 10px;
    }

    .drs-cookie-card {
        width: 100%;
    }
}
.form-consent {
    margin-top: 20px;
}

.consent-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.consent-box input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #cbd5f5;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: all .2s ease;
}

/* checked */
.consent-box input:checked + .checkmark {
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    border-color: transparent;
}

/* ícone check */
.consent-box input:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* texto */
.consent-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.consent-text a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.consent-text a:hover {
    text-decoration: underline;
}
.checkmark {
    transform: scale(1);
}

.consent-box input:checked + .checkmark {
    transform: scale(1.05);
}
.home-posts .post-card {
    overflow: hidden;
    min-height: 100%;
}

.home-posts .post-card-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    margin-bottom: 16px;
}
.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.78);
}

.footer-contact-info strong {
    color: #fff;
    font-weight: 700;
}

.footer-contact-info a {
    color: #7dd3fc;
    text-decoration: none;
}

.footer-contact-info a:hover {
    text-decoration: underline;
}
.contact-page .content-card,
.contact-page .side-card {
    border-radius: 28px;
}

.contact-highlight {
    margin-top: 26px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(20,184,166,.08));
    border: 1px solid rgba(37,99,235,.12);
}

.contact-highlight strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-highlight span {
    color: #64748b;
}

.contact-info-card h3 {
    margin-bottom: 22px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-of-type {
    border-bottom: 0;
}

.contact-item > span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #eef4ff;
    color: #2563eb;
    font-weight: 900;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: #0f172a;
    margin-bottom: 3px;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    margin: 0;
    color: #64748b;
}

.mini-feature-card {
    height: 100%;
    padding: 26px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 50px rgba(15,23,42,.06);
}

.mini-feature-card strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    background: #eef4ff;
    color: #2563eb;
    margin-bottom: 18px;
}

.mini-feature-card h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.mini-feature-card p {
    color: #64748b;
    margin: 0;
}
.quote-page .content-card,
.quote-page .form-card {
    border-radius: 30px;
}

.quote-info-card {
    position: sticky;
    top: 110px;
}

.quote-info-card h2 {
    font-weight: 900;
    letter-spacing: -0.5px;
}

.quote-steps {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.quote-steps div {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.quote-steps strong {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #2563eb;
    background: #eef4ff;
    flex-shrink: 0;
}

.quote-steps span {
    color: #0f172a;
    font-weight: 700;
}

.quote-security {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(20,184,166,.08));
    border: 1px solid rgba(37,99,235,.12);
}

.quote-security strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
    margin-bottom: 6px;
}

.quote-security p {
    color: #64748b;
    margin: 0;
}

.quote-form-card {
    padding: 34px;
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.form-title {
    margin-bottom: 26px;
}

.form-title span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.form-title h2 {
    font-weight: 900;
    margin-bottom: 8px;
}

.form-title p {
    color: #64748b;
    margin: 0;
}

.quote-form-card .form-label {
    font-weight: 800;
    color: #0f172a;
}

.quote-form-card .form-control {
    min-height: 52px;
    border-radius: 16px;
    border-color: #dbe4f0;
    background: #fff;
}

.quote-form-card textarea.form-control {
    min-height: 150px;
}

.quote-form-card .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.quote-captcha {
    margin: 20px 0;
}

.form-note {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 991px) {
    .quote-info-card {
        position: static;
    }

    .quote-form-card {
        padding: 24px;
    }
}
/* Blog moderno Data Reset */
.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 72px;
    background:
        radial-gradient(circle at 12% 12%, rgba(37, 99, 235, .16), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(20, 184, 166, .14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.blog-hero::before,
.blog-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.blog-hero::before {
    width: 380px;
    height: 380px;
    left: -160px;
    bottom: -180px;
    background: rgba(37, 99, 235, .08);
}

.blog-hero::after {
    width: 260px;
    height: 260px;
    right: -80px;
    top: 60px;
    background: rgba(20, 184, 166, .10);
}

.blog-hero .container {
    position: relative;
    z-index: 1;
}

.blog-hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    animation: floatIn .7s ease both;
}

.blog-hero-content h1 {
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 1;
    letter-spacing: -2.5px;
    font-weight: 950;
    margin-bottom: 22px;
}

.blog-hero-content p {
    max-width: 780px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.75;
}

.blog-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.blog-hero-stats {
    max-width: 820px;
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.blog-hero-stats div {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 24px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(15,23,42,.07);
    animation: blogCardIn .65s ease both;
}

.blog-hero-stats strong {
    display: block;
    color: var(--navy);
    font-size: 22px;
    font-weight: 950;
}

.blog-hero-stats span {
    color: var(--muted);
    font-size: 14px;
}

.blog-page {
    padding: 74px 0 92px;
    background: #fff;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(15,23,42,.10);
    animation: floatIn .75s ease both;
}

.blog-featured-image {
    min-height: 430px;
    background: var(--soft);
    overflow: hidden;
}

.blog-featured-image img,
.blog-card-image img,
.single-post-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

.blog-featured-card:hover .blog-featured-image img,
.blog-card:hover .blog-card-image img {
    transform: scale(1.045);
    filter: saturate(1.08);
}

.blog-featured-content {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-pill {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .12);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 16px;
}

.blog-featured-content h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.06;
    letter-spacing: -1.3px;
    font-weight: 950;
    margin-bottom: 18px;
}

.blog-featured-content h2 a,
.blog-card h3 a {
    color: var(--navy);
}

.blog-featured-content h2 a:hover,
.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-featured-content p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    margin-top: 16px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-meta span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--green));
}

.blog-read-more {
    display: inline-flex;
    width: fit-content;
    margin-top: 24px;
    color: var(--primary);
    font-weight: 900;
}

.blog-section-title {
    max-width: 760px;
    margin: 72px auto 30px;
    text-align: center;
}

.blog-section-title h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 950;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.blog-section-title p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.blog-grid > div {
    animation: blogCardIn .65s ease both;
}

.blog-grid > div:nth-child(2) {
    animation-delay: .06s;
}

.blog-grid > div:nth-child(3) {
    animation-delay: .12s;
}

.blog-grid > div:nth-child(4) {
    animation-delay: .18s;
}

.blog-card {
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 52px rgba(15,23,42,.07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    border-color: rgba(37, 99, 235, .32);
    box-shadow: 0 28px 76px rgba(37,99,235,.14);
}

.blog-card-image {
    display: block;
    height: 218px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4ff, #ecfeff);
}

.blog-card-body {
    padding: 24px;
}

.blog-card h3 {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 950;
    margin-bottom: 12px;
}

.blog-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.single-post-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 44px;
    background:
        radial-gradient(circle at 14% 8%, rgba(37,99,235,.13), transparent 32%),
        radial-gradient(circle at 86% 10%, rgba(20,184,166,.11), transparent 30%),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.single-post-heading {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    animation: floatIn .65s ease both;
}

.single-post-heading h1 {
    font-size: clamp(36px, 5.2vw, 68px);
    line-height: 1.02;
    letter-spacing: -2px;
    font-weight: 950;
    margin-bottom: 20px;
}

.single-post-heading p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.75;
    max-width: 780px;
    margin: 0 auto;
}

.single-post-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.single-post-categories a,
.blog-tags a {
    display: inline-flex;
    color: var(--primary);
    background: rgba(37,99,235,.08);
    border: 1px solid rgba(37,99,235,.13);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 850;
}

.single-post-meta {
    justify-content: center;
    margin-top: 22px;
}

.single-post-image {
    max-width: 1060px;
    height: 470px;
    margin: 44px auto 0;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--border);
    box-shadow: 0 28px 80px rgba(15,23,42,.12);
    background: var(--soft);
    animation: blogCardIn .75s ease both;
}

.single-post-body {
    padding: 62px 0 90px;
    background: #fff;
}

.blog-content-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
}

.blog-article-card {
    max-width: none;
}

.blog-article-card .rich-content {
    font-size: 19px;
    line-height: 1.9;
}

.blog-article-card .rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 22px;
    margin: 22px 0;
}

.blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.blog-tags strong {
    color: var(--navy);
}

.blog-cta-box {
    margin-top: 38px;
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 20%, rgba(37,99,235,.12), transparent 32%),
        linear-gradient(135deg, rgba(37,99,235,.08), rgba(20,184,166,.08));
    border: 1px solid rgba(37,99,235,.13);
}

.blog-cta-box h2 {
    font-weight: 950;
    letter-spacing: -.8px;
    margin-bottom: 10px;
}

.blog-cta-box p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.blog-sidebar p {
    color: var(--muted);
    line-height: 1.7;
}

.blog-sidebar .sidebar-button {
    display: block;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 850;
    margin: 18px 0 10px;
    border-bottom: 0;
}

.blog-sidebar .sidebar-link {
    text-align: center;
    color: var(--primary);
    font-weight: 850;
    border-bottom: 0;
}

@keyframes blogCardIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.985);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 991px) {
    .blog-featured-card,
    .blog-content-layout {
        grid-template-columns: 1fr;
    }

    .blog-featured-image {
        min-height: 320px;
    }

    .single-post-image {
        height: 360px;
        border-radius: 28px;
    }

    .blog-hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .blog-hero {
        padding: 62px 0 48px;
    }

    .blog-hero-content h1,
    .single-post-heading h1 {
        letter-spacing: -1.2px;
    }

    .blog-featured-content,
    .blog-card-body {
        padding: 24px;
    }

    .blog-featured-image,
    .blog-card-image {
        height: 230px;
        min-height: 230px;
    }

    .single-post-image {
        height: 250px;
        border-radius: 24px;
    }

    .blog-article-card .rich-content {
        font-size: 17px;
    }
}
/* Página individual do post - Data Reset */
.single-blog-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 44px;
    background:
        radial-gradient(circle at 12% 8%, rgba(37,99,235,.14), transparent 30%),
        radial-gradient(circle at 88% 16%, rgba(20,184,166,.13), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.single-blog-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -190px;
    bottom: -220px;
    border-radius: 999px;
    background: rgba(37,99,235,.08);
    pointer-events: none;
}

.single-blog-hero .container {
    position: relative;
    z-index: 1;
}

.single-blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 28px;
}

.single-blog-breadcrumb a {
    color: #2563eb;
    font-weight: 700;
}

.single-blog-breadcrumb strong {
    max-width: 420px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #64748b;
    font-weight: 600;
}

.single-blog-heading {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    animation: floatIn .7s ease both;
}

.single-blog-cats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.single-blog-cats a,
.single-blog-tags a {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    background: rgba(37,99,235,.08);
    border: 1px solid rgba(37,99,235,.13);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 850;
}

.single-blog-heading h1 {
    font-size: clamp(36px, 5.2vw, 70px);
    line-height: 1.02;
    letter-spacing: -2.2px;
    font-weight: 950;
    margin: 0 auto 22px;
}

.single-blog-heading p {
    max-width: 820px;
    margin: 0 auto;
    color: #64748b;
    font-size: 20px;
    line-height: 1.75;
}

.single-blog-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    color: #64748b;
    font-size: 14px;
}

.single-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(226,232,240,.92);
    box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.single-blog-meta span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
}

.single-blog-cover {
    max-width: 1120px;
    height: 500px;
    margin: 46px auto 0;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid #e2e8f0;
    background: #f6f8fc;
    box-shadow: 0 30px 90px rgba(15,23,42,.14);
    animation: blogCardIn .75s ease both;
}

.single-blog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease, filter .5s ease;
}

.single-blog-cover:hover img {
    transform: scale(1.035);
    filter: saturate(1.08);
}

.single-blog-main {
    padding: 70px 0 96px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.single-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 30px;
    align-items: start;
}

.single-blog-article {
    min-width: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 34px;
    padding: 40px;
    box-shadow: 0 24px 76px rgba(15,23,42,.08);
}

.single-blog-summary {
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 10% 10%, rgba(37,99,235,.10), transparent 32%),
        linear-gradient(135deg, rgba(37,99,235,.07), rgba(20,184,166,.07));
    border: 1px solid rgba(37,99,235,.13);
}

.single-blog-summary strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
    margin-bottom: 8px;
}

.single-blog-summary p {
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

.single-blog-content {
    font-size: 19px;
    line-height: 1.95;
    color: #334155;
}

.single-blog-content > *:first-child {
    margin-top: 0;
}

.single-blog-content h2 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.18;
    letter-spacing: -.8px;
    font-weight: 950;
    margin-top: 42px;
    margin-bottom: 16px;
    color: #0f172a;
}

.single-blog-content h3 {
    font-size: 25px;
    line-height: 1.25;
    font-weight: 900;
    margin-top: 34px;
    margin-bottom: 12px;
    color: #0f172a;
}

.single-blog-content p {
    margin-bottom: 20px;
}

.single-blog-content a {
    color: #2563eb;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-blog-content ul,
.single-blog-content ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.single-blog-content li {
    margin-bottom: 10px;
}

.single-blog-content blockquote {
    margin: 34px 0;
    padding: 26px 28px;
    border-left: 5px solid #2563eb;
    border-radius: 22px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.65;
}

.single-blog-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 26px;
    margin: 30px auto;
    box-shadow: 0 18px 54px rgba(15,23,42,.10);
}

.single-blog-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    margin: 28px 0;
    font-size: 16px;
}

.single-blog-content th,
.single-blog-content td {
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
}

.single-blog-content th {
    background: #f1f5f9;
    color: #0f172a;
}

.single-blog-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid #e2e8f0;
}

.single-blog-tags strong {
    color: #0f172a;
}

.single-blog-author {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 34px;
    padding: 24px;
    border-radius: 26px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.single-blog-author-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    font-weight: 950;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    box-shadow: 0 14px 32px rgba(37,99,235,.20);
}

.single-blog-author strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
    margin-bottom: 5px;
}

.single-blog-author p {
    margin: 0;
    color: #64748b;
    line-height: 1.65;
}

.single-blog-cta {
    margin-top: 36px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 16%, rgba(255,255,255,.22), transparent 28%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.single-blog-cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -140px;
    border-radius: 999px;
    background: rgba(20,184,166,.28);
}

.single-blog-cta > * {
    position: relative;
    z-index: 1;
}

.single-blog-cta .eyebrow {
    background: rgba(255,255,255,.10);
    color: #bfdbfe;
    border-color: rgba(255,255,255,.14);
}

.single-blog-cta h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 950;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.single-blog-cta p {
    max-width: 760px;
    color: #cbd5e1;
    line-height: 1.75;
    font-size: 17px;
}

.single-blog-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.single-blog-cta .btn-outline-primary {
    color: #fff;
    border-color: rgba(255,255,255,.45);
}

.single-blog-cta .btn-outline-primary:hover {
    color: #0f172a;
    background: #fff;
    border-color: #fff;
}

.single-blog-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 18px;
}

.single-blog-side-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 20px 60px rgba(15,23,42,.07);
}

.single-blog-side-card h3 {
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 10px;
    color: #0f172a;
}

.single-blog-side-card p {
    color: #64748b;
    line-height: 1.7;
}

.side-primary-btn {
    display: block;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 999px;
    padding: 13px 18px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(37,99,235,.20);
}

.side-primary-btn:hover {
    color: #fff;
    filter: brightness(.96);
}

.side-info-list {
    display: grid;
    gap: 12px;
}

.side-info-list div {
    padding: 15px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.side-info-list strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 3px;
}

.side-info-list span {
    color: #64748b;
    font-size: 14px;
}

.related-posts-list {
    display: grid;
    gap: 14px;
}

.related-posts-list a {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    align-items: center;
    color: #0f172a;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.related-posts-list a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.related-posts-list img {
    width: 78px;
    height: 62px;
    object-fit: cover;
    border-radius: 16px;
    background: #f1f5f9;
}

.related-posts-list strong {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    color: #0f172a;
}

.related-posts-list small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
}

@media (max-width: 991px) {
    .single-blog-layout {
        grid-template-columns: 1fr;
    }

    .single-blog-sidebar {
        position: static;
    }

    .single-blog-cover {
        height: 360px;
        border-radius: 28px;
    }

    .single-blog-article {
        padding: 30px;
        border-radius: 28px;
    }
}

@media (max-width: 575px) {
    .single-blog-hero {
        padding: 52px 0 32px;
    }

    .single-blog-heading h1 {
        letter-spacing: -1.2px;
    }

    .single-blog-heading p {
        font-size: 17px;
    }

    .single-blog-cover {
        height: 245px;
        border-radius: 24px;
        margin-top: 30px;
    }

    .single-blog-article {
        padding: 22px;
        border-radius: 24px;
    }

    .single-blog-content {
        font-size: 17px;
        line-height: 1.85;
    }

    .single-blog-summary,
    .single-blog-author,
    .single-blog-cta,
    .single-blog-side-card {
        padding: 22px;
        border-radius: 22px;
    }

    .single-blog-author {
        flex-direction: column;
    }

    .single-blog-breadcrumb strong {
        max-width: 240px;
    }
}
/* Página de serviços - Data Reset */
.services-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 70px;
    background:
        radial-gradient(circle at 12% 10%, rgba(37,99,235,.15), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(20,184,166,.13), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.services-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -170px;
    bottom: -210px;
    border-radius: 999px;
    background: rgba(37,99,235,.08);
    pointer-events: none;
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    animation: floatIn .7s ease both;
}

.services-hero-content h1 {
    font-size: clamp(38px, 5.4vw, 74px);
    line-height: 1;
    letter-spacing: -2.4px;
    font-weight: 950;
    margin-bottom: 24px;
}

.services-hero-content p {
    max-width: 820px;
    margin: 0 auto;
    color: #64748b;
    font-size: 20px;
    line-height: 1.75;
}

.services-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.services-trust-row {
    max-width: 860px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.services-trust-row div {
    padding: 22px;
    border-radius: 24px;
    text-align: center;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(226,232,240,.92);
    box-shadow: 0 18px 50px rgba(15,23,42,.07);
    backdrop-filter: blur(12px);
    animation: blogCardIn .7s ease both;
}

.services-trust-row strong {
    display: block;
    color: #0f172a;
    font-size: 22px;
    font-weight: 950;
}

.services-trust-row span {
    color: #64748b;
    font-size: 14px;
}

.services-page {
    padding: 78px 0 92px;
    background: #fff;
}

.services-section-heading {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.services-section-heading h2 {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 950;
    letter-spacing: -1.6px;
    line-height: 1.06;
    margin-bottom: 14px;
}

.services-section-heading p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
}

.services-grid > div {
    animation: blogCardIn .65s ease both;
}

.services-grid > div:nth-child(2) {
    animation-delay: .06s;
}

.services-grid > div:nth-child(3) {
    animation-delay: .12s;
}

.modern-service-card {
    height: 100%;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(15,23,42,.07);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.modern-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(37,99,235,.34);
    box-shadow: 0 30px 80px rgba(37,99,235,.14);
}

.modern-service-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    color: #0f172a;
}

.modern-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.modern-service-number {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: #eef4ff;
    color: #2563eb;
    font-weight: 950;
}

.modern-service-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    box-shadow: 0 14px 30px rgba(37,99,235,.18);
    transition: transform .25s ease;
}

.modern-service-card:hover .modern-service-icon {
    transform: rotate(8deg) scale(1.05);
}

.modern-service-card h3 {
    font-size: 23px;
    line-height: 1.22;
    font-weight: 950;
    margin-bottom: 13px;
}

.modern-service-card p {
    color: #64748b;
    line-height: 1.72;
    margin-bottom: 24px;
}

.modern-service-read {
    margin-top: auto;
    color: #2563eb;
    font-weight: 900;
}

.services-process-section {
    padding: 86px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(37,99,235,.08), transparent 30%),
        #f8fafc;
}

.services-process-section h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
}

.services-process-section p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.services-process-grid div {
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 54px rgba(15,23,42,.07);
}

.services-process-grid strong {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 17px;
    background: #eef4ff;
    color: #2563eb;
    margin-bottom: 18px;
    font-weight: 950;
}

.services-process-grid h3 {
    font-size: 21px;
    font-weight: 950;
    margin-bottom: 8px;
}

.services-process-grid p {
    font-size: 16px;
    margin: 0;
}

.services-final-cta {
    padding: 88px 0;
    background: #fff;
}

.services-final-card {
    position: relative;
    overflow: hidden;
    max-width: 1050px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 36px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 16%, rgba(255,255,255,.22), transparent 28%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    box-shadow: 0 30px 90px rgba(15,23,42,.18);
}

.services-final-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: -150px;
    border-radius: 999px;
    background: rgba(20,184,166,.28);
}

.services-final-card > * {
    position: relative;
    z-index: 1;
}

.services-final-card .eyebrow {
    color: #bfdbfe;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.14);
}

.services-final-card h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -1.4px;
    margin-bottom: 16px;
}

.services-final-card p {
    max-width: 760px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.75;
}

.services-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.services-final-card .btn-outline-primary {
    color: #fff;
    border-color: rgba(255,255,255,.45);
}

.services-final-card .btn-outline-primary:hover {
    color: #0f172a;
    background: #fff;
    border-color: #fff;
}

/* Página individual de serviço */
.single-service-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 54px;
    background:
        radial-gradient(circle at 12% 8%, rgba(37,99,235,.15), transparent 32%),
        radial-gradient(circle at 88% 12%, rgba(20,184,166,.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.single-service-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -220px;
    border-radius: 999px;
    background: rgba(37,99,235,.08);
}

.single-service-hero .container {
    position: relative;
    z-index: 1;
}

.single-service-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 28px;
}

.single-service-breadcrumb a {
    color: #2563eb;
    font-weight: 750;
}

.single-service-breadcrumb strong {
    max-width: 420px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #64748b;
}

.single-service-heading {
    max-width: 1010px;
    margin: 0 auto;
    text-align: center;
    animation: floatIn .7s ease both;
}

.single-service-heading h1 {
    font-size: clamp(38px, 5.4vw, 74px);
    line-height: 1;
    letter-spacing: -2.3px;
    font-weight: 950;
    margin-bottom: 22px;
}

.single-service-heading p {
    max-width: 820px;
    margin: 0 auto;
    color: #64748b;
    font-size: 20px;
    line-height: 1.75;
}

.single-service-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.single-service-panel {
    max-width: 920px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.single-service-panel div {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(226,232,240,.92);
    box-shadow: 0 18px 50px rgba(15,23,42,.07);
    text-align: center;
}

.single-service-panel strong {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 17px;
    background: #eef4ff;
    color: #2563eb;
    font-weight: 950;
}

.single-service-panel span {
    color: #0f172a;
    font-weight: 850;
}

.single-service-main {
    padding: 72px 0 96px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.single-service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 30px;
    align-items: start;
}

.single-service-article {
    min-width: 0;
    padding: 40px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 24px 76px rgba(15,23,42,.08);
}

.single-service-summary {
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 10% 10%, rgba(37,99,235,.10), transparent 32%),
        linear-gradient(135deg, rgba(37,99,235,.07), rgba(20,184,166,.07));
    border: 1px solid rgba(37,99,235,.13);
}

.single-service-summary strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
    margin-bottom: 8px;
}

.single-service-summary p {
    margin: 0;
    color: #64748b;
    line-height: 1.75;
}

.single-service-content {
    font-size: 19px;
    line-height: 1.95;
    color: #334155;
}

.single-service-content > *:first-child {
    margin-top: 0;
}

.single-service-content h2 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.18;
    letter-spacing: -.8px;
    font-weight: 950;
    margin-top: 42px;
    margin-bottom: 16px;
    color: #0f172a;
}

.single-service-content h3 {
    font-size: 25px;
    line-height: 1.25;
    font-weight: 900;
    margin-top: 34px;
    margin-bottom: 12px;
    color: #0f172a;
}

.single-service-content p {
    margin-bottom: 20px;
}

.single-service-content a {
    color: #2563eb;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-service-content ul,
.single-service-content ol {
    padding-left: 24px;
    margin-bottom: 24px;
}

.single-service-content li {
    margin-bottom: 10px;
}

.single-service-content blockquote {
    margin: 34px 0;
    padding: 26px 28px;
    border-left: 5px solid #2563eb;
    border-radius: 22px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.65;
}

.single-service-cta {
    margin-top: 38px;
    padding: 34px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 16%, rgba(255,255,255,.22), transparent 28%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    position: relative;
    overflow: hidden;
}

.single-service-cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -140px;
    border-radius: 999px;
    background: rgba(20,184,166,.28);
}

.single-service-cta > * {
    position: relative;
    z-index: 1;
}

.single-service-cta .eyebrow {
    color: #bfdbfe;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.14);
}

.single-service-cta h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 950;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.single-service-cta p {
    color: #cbd5e1;
    line-height: 1.75;
    font-size: 17px;
}

.single-service-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.single-service-cta .btn-outline-primary {
    color: #fff;
    border-color: rgba(255,255,255,.45);
}

.single-service-cta .btn-outline-primary:hover {
    color: #0f172a;
    background: #fff;
    border-color: #fff;
}

.single-service-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 18px;
}

.single-service-side-card {
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(15,23,42,.07);
}

.single-service-side-card h3 {
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 10px;
    color: #0f172a;
}

.single-service-side-card p {
    color: #64748b;
    line-height: 1.7;
}

.service-side-steps {
    display: grid;
    gap: 12px;
}

.service-side-steps div {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.service-side-steps strong {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eef4ff;
    color: #2563eb;
}

.service-side-steps span {
    color: #0f172a;
    font-size: 14px;
    font-weight: 750;
}

.other-services-list {
    display: grid;
    gap: 12px;
}

.other-services-list a {
    display: block;
    padding: 14px;
    border-radius: 18px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: .2s ease;
}

.other-services-list a:hover {
    transform: translateX(4px);
    border-color: rgba(37,99,235,.35);
    background: #eef4ff;
}

.other-services-list strong {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 4px;
}

.other-services-list span {
    color: #2563eb;
    font-size: 13px;
    font-weight: 850;
}

.single-service-related {
    padding: 86px 0;
    background: #fff;
}

@media (max-width: 991px) {
    .services-trust-row,
    .single-service-panel,
    .single-service-layout {
        grid-template-columns: 1fr;
    }

    .services-process-grid {
        grid-template-columns: 1fr;
    }

    .single-service-sidebar {
        position: static;
    }

    .single-service-article {
        padding: 30px;
        border-radius: 28px;
    }
}

@media (max-width: 575px) {
    .services-hero,
    .single-service-hero {
        padding: 58px 0 42px;
    }

    .services-hero-content h1,
    .single-service-heading h1 {
        letter-spacing: -1.2px;
    }

    .services-hero-content p,
    .single-service-heading p {
        font-size: 17px;
    }

    .modern-service-link {
        padding: 24px;
    }

    .services-final-card,
    .single-service-article,
    .single-service-summary,
    .single-service-cta,
    .single-service-side-card {
        padding: 22px;
        border-radius: 24px;
    }

    .single-service-breadcrumb strong {
        max-width: 240px;
    }

    .single-service-content {
        font-size: 17px;
        line-height: 1.85;
    }
}
/* Página Sobre - Data Reset */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 72px;
    background:
        radial-gradient(circle at 12% 8%, rgba(37,99,235,.15), transparent 32%),
        radial-gradient(circle at 88% 16%, rgba(20,184,166,.13), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -170px;
    bottom: -220px;
    border-radius: 999px;
    background: rgba(37,99,235,.08);
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 1020px;
    margin: 0 auto;
    text-align: center;
    animation: floatIn .7s ease both;
}

.about-hero-content h1 {
    font-size: clamp(38px, 5.4vw, 74px);
    line-height: 1;
    letter-spacing: -2.4px;
    font-weight: 950;
    margin-bottom: 24px;
}

.about-hero-content p {
    max-width: 840px;
    margin: 0 auto;
    color: #64748b;
    font-size: 20px;
    line-height: 1.75;
}

.about-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.about-hero-cards {
    max-width: 900px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-hero-cards div {
    padding: 22px;
    border-radius: 24px;
    text-align: center;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(226,232,240,.92);
    box-shadow: 0 18px 50px rgba(15,23,42,.07);
    backdrop-filter: blur(12px);
    animation: blogCardIn .7s ease both;
}

.about-hero-cards strong {
    display: block;
    color: #0f172a;
    font-size: 22px;
    font-weight: 950;
}

.about-hero-cards span {
    color: #64748b;
    font-size: 14px;
}

.about-story {
    padding: 88px 0;
    background: #fff;
}

.about-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: start;
}

.about-story-text {
    padding: 42px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 24px 76px rgba(15,23,42,.08);
}

.about-story-text h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
    letter-spacing: -1.5px;
    font-weight: 950;
    margin-bottom: 22px;
}

.about-story-text p {
    color: #475569;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-story-panel {
    position: sticky;
    top: 100px;
    padding: 32px;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 12%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    box-shadow: 0 28px 80px rgba(15,23,42,.18);
    overflow: hidden;
}

.about-story-panel::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -110px;
    bottom: -130px;
    border-radius: 999px;
    background: rgba(20,184,166,.26);
}

.about-story-panel > * {
    position: relative;
    z-index: 1;
}

.about-panel-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    color: #fff;
    font-weight: 950;
    margin-bottom: 22px;
    box-shadow: 0 16px 34px rgba(37,99,235,.24);
}

.about-story-panel h3 {
    font-size: 26px;
    font-weight: 950;
    margin-bottom: 12px;
}

.about-story-panel p {
    color: #cbd5e1;
    line-height: 1.75;
}

.about-panel-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.about-panel-list div {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.about-panel-list strong {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #bfdbfe;
    background: rgba(255,255,255,.10);
}

.about-panel-list span {
    color: #fff;
    font-size: 14px;
    font-weight: 750;
}

.about-method {
    padding: 88px 0;
    background:
        radial-gradient(circle at 10% 18%, rgba(37,99,235,.08), transparent 30%),
        #f8fafc;
}

.about-section-heading {
    max-width: 780px;
    margin: 0 auto 36px;
    text-align: center;
}

.about-section-heading h2 {
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.06;
    letter-spacing: -1.6px;
    font-weight: 950;
    margin-bottom: 14px;
}

.about-section-heading p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
}

.about-method-grid > div {
    animation: blogCardIn .65s ease both;
}

.about-method-card {
    height: 100%;
    padding: 28px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(15,23,42,.07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.about-method-card:hover {
    transform: translateY(-7px);
    border-color: rgba(37,99,235,.34);
    box-shadow: 0 30px 80px rgba(37,99,235,.14);
}

.about-method-card strong {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: #eef4ff;
    color: #2563eb;
    margin-bottom: 20px;
    font-weight: 950;
}

.about-method-card h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 950;
    margin-bottom: 10px;
}

.about-method-card p {
    color: #64748b;
    line-height: 1.72;
    margin: 0;
}

.about-values {
    padding: 88px 0;
    background: #fff;
}

.about-values-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
}

.about-values-layout h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
    letter-spacing: -1.5px;
    font-weight: 950;
    margin-bottom: 18px;
}

.about-values-layout p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.about-values-list {
    display: grid;
    gap: 16px;
}

.about-values-list > div {
    display: flex;
    gap: 16px;
    padding: 22px;
    border-radius: 26px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 40px rgba(15,23,42,.05);
}

.about-values-list > div > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    font-weight: 950;
}

.about-values-list h3 {
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 6px;
}

.about-values-list p {
    margin: 0;
    font-size: 16px;
    color: #64748b;
    line-height: 1.65;
}

.about-services-preview {
    padding: 88px 0;
    background: #f8fafc;
}

.about-final-cta {
    padding: 88px 0;
    background: #fff;
}

.about-final-card {
    position: relative;
    overflow: hidden;
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 36px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 16%, rgba(255,255,255,.22), transparent 28%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    box-shadow: 0 30px 90px rgba(15,23,42,.18);
}

.about-final-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: -150px;
    border-radius: 999px;
    background: rgba(20,184,166,.28);
}

.about-final-card > * {
    position: relative;
    z-index: 1;
}

.about-final-card .eyebrow {
    color: #bfdbfe;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.14);
}

.about-final-card h2 {
    max-width: 820px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -1.4px;
    margin-bottom: 16px;
}

.about-final-card p {
    max-width: 760px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.75;
}

.about-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.about-final-card .btn-outline-primary {
    color: #fff;
    border-color: rgba(255,255,255,.45);
}

.about-final-card .btn-outline-primary:hover {
    color: #0f172a;
    background: #fff;
    border-color: #fff;
}

@media (max-width: 991px) {
    .about-hero-cards,
    .about-story-layout,
    .about-values-layout {
        grid-template-columns: 1fr;
    }

    .about-story-panel {
        position: static;
    }
}

@media (max-width: 575px) {
    .about-hero {
        padding: 58px 0 42px;
    }

    .about-hero-content h1,
    .about-story-text h2,
    .about-values-layout h2,
    .about-final-card h2 {
        letter-spacing: -1.2px;
    }

    .about-hero-content p {
        font-size: 17px;
    }

    .about-story-text,
    .about-story-panel,
    .about-method-card,
    .about-values-list > div,
    .about-final-card {
        padding: 22px;
        border-radius: 24px;
    }

    .about-values-list > div {
        flex-direction: column;
    }
}
/* Home moderna - Data Reset */
.home-hero-new {
    position: relative;
    overflow: hidden;
    padding: 96px 0 80px;
    background:
        radial-gradient(circle at 12% 10%, rgba(37,99,235,.16), transparent 32%),
        radial-gradient(circle at 88% 16%, rgba(20,184,166,.14), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.home-hero-new::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -180px;
    bottom: -230px;
    border-radius: 999px;
    background: rgba(37,99,235,.08);
    pointer-events: none;
}

.home-hero-new .container {
    position: relative;
    z-index: 1;
}

.home-hero-content-new {
    animation: floatIn .7s ease both;
}

.home-hero-content-new h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -2.6px;
    font-weight: 950;
    margin-bottom: 24px;
}

.home-hero-content-new p {
    max-width: 750px;
    color: #64748b;
    font-size: 20px;
    line-height: 1.75;
}

.home-hero-actions-new {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.home-hero-trust-new {
    max-width: 760px;
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-hero-trust-new div {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(226,232,240,.92);
    box-shadow: 0 18px 50px rgba(15,23,42,.07);
    backdrop-filter: blur(12px);
}

.home-hero-trust-new strong {
    display: block;
    color: #0f172a;
    font-size: 20px;
    font-weight: 950;
}

.home-hero-trust-new span {
    color: #64748b;
    font-size: 14px;
}

.home-security-panel {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 36px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(226,232,240,.95);
    box-shadow: 0 30px 90px rgba(15,23,42,.13);
    backdrop-filter: blur(14px);
    animation: blogCardIn .75s ease both;
}

.home-security-panel::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -110px;
    bottom: -130px;
    border-radius: 999px;
    background: rgba(20,184,166,.16);
}

.home-security-panel > * {
    position: relative;
    z-index: 1;
}

.home-security-top {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.home-security-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    font-size: 26px;
    font-weight: 950;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    box-shadow: 0 16px 36px rgba(37,99,235,.24);
}

.home-security-top span {
    display: block;
    color: #64748b;
    font-size: 14px;
}

.home-security-top strong {
    display: block;
    color: #0f172a;
    font-size: 19px;
    font-weight: 950;
}

.home-security-panel h2 {
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -.8px;
    font-weight: 950;
    margin-bottom: 24px;
}

.home-security-list {
    display: grid;
    gap: 13px;
}

.home-security-list div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.home-security-list strong {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eef4ff;
    color: #2563eb;
    font-weight: 950;
}

.home-security-list span {
    color: #0f172a;
    font-weight: 750;
    font-size: 14px;
}

.home-problems-section,
.home-services-new,
.home-blog-new {
    padding: 88px 0;
    background: #fff;
}

.home-services-new {
    background: #f8fafc;
}

.home-section-heading {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.home-section-heading h2 {
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1.06;
    letter-spacing: -1.7px;
    font-weight: 950;
    margin-bottom: 14px;
}

.home-section-heading p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
}

.home-problem-card {
    height: 100%;
    padding: 28px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(15,23,42,.07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    animation: blogCardIn .65s ease both;
}

.home-problem-card:hover {
    transform: translateY(-7px);
    border-color: rgba(37,99,235,.34);
    box-shadow: 0 30px 80px rgba(37,99,235,.14);
}

.home-problem-card strong {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: #eef4ff;
    color: #2563eb;
    font-weight: 950;
    margin-bottom: 20px;
}

.home-problem-card h3 {
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 10px;
}

.home-problem-card p {
    color: #64748b;
    line-height: 1.72;
    margin: 0;
}

.home-process-new {
    padding: 88px 0;
    background:
        radial-gradient(circle at 10% 18%, rgba(37,99,235,.08), transparent 30%),
        #fff;
}

.home-process-new h2 {
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.06;
    letter-spacing: -1.6px;
    font-weight: 950;
    margin-bottom: 18px;
}

.home-process-new p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
}

.home-process-list-new {
    display: grid;
    gap: 16px;
}

.home-process-list-new > div {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 46px rgba(15,23,42,.06);
}

.home-process-list-new strong {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #eef4ff;
    color: #2563eb;
    font-weight: 950;
}

.home-process-list-new h3 {
    font-size: 21px;
    font-weight: 950;
    margin-bottom: 6px;
}

.home-process-list-new p {
    margin: 0;
    font-size: 16px;
}

.home-authority-new {
    padding: 88px 0;
    background: #f8fafc;
}

.home-authority-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 36px;
    align-items: center;
    padding: 46px;
    border-radius: 38px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 26px 84px rgba(15,23,42,.09);
}

.home-authority-card h2 {
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.06;
    letter-spacing: -1.6px;
    font-weight: 950;
    margin-bottom: 18px;
}

.home-authority-card p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.home-authority-list {
    display: grid;
    gap: 14px;
}

.home-authority-list div {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.home-authority-list strong {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
}

.home-authority-list span {
    color: #0f172a;
    font-weight: 800;
}

.home-final-cta-new {
    padding: 88px 0;
    background: #fff;
}

.home-final-card-new {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 38px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 16%, rgba(255,255,255,.22), transparent 28%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    box-shadow: 0 30px 90px rgba(15,23,42,.18);
}

.home-final-card-new::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -130px;
    bottom: -160px;
    border-radius: 999px;
    background: rgba(20,184,166,.28);
}

.home-final-card-new > * {
    position: relative;
    z-index: 1;
}

.home-final-card-new .eyebrow {
    color: #bfdbfe;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.14);
}

.home-final-card-new h2 {
    max-width: 900px;
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -1.6px;
    margin-bottom: 16px;
}

.home-final-card-new p {
    max-width: 780px;
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.75;
}

.home-final-actions-new {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.home-final-card-new .btn-outline-primary {
    color: #fff;
    border-color: rgba(255,255,255,.45);
}

.home-final-card-new .btn-outline-primary:hover {
    color: #0f172a;
    background: #fff;
    border-color: #fff;
}

@media (max-width: 991px) {
    .home-hero-trust-new,
    .home-authority-card {
        grid-template-columns: 1fr;
    }

    .home-security-panel {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .home-hero-new {
        padding: 62px 0 48px;
    }

    .home-hero-content-new h1,
    .home-section-heading h2,
    .home-process-new h2,
    .home-authority-card h2,
    .home-final-card-new h2 {
        letter-spacing: -1.2px;
    }

    .home-hero-content-new p {
        font-size: 17px;
    }

    .home-security-panel,
    .home-problem-card,
    .home-process-list-new > div,
    .home-authority-card,
    .home-final-card-new {
        padding: 22px;
        border-radius: 24px;
    }

    .home-process-list-new > div {
        flex-direction: column;
    }
}
/* Header/Menu moderno - sem alterar logo nem cor do header */
.navbar {
    transition: box-shadow .25s ease, transform .25s ease;
}

.main-nav-modern {
    position: relative;
}

.main-nav-modern .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 15px !important;
    border-radius: 999px;
    color: #334155 !important;
    font-weight: 750;
    font-size: 15px;
    transition: color .22s ease, background .22s ease, transform .22s ease;
}

.main-nav-modern .nav-link::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    transform: scale(.82);
    opacity: 0;
    transition: opacity .22s ease, transform .22s ease;
}

.main-nav-modern .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.main-nav-modern .nav-link:hover {
    color: #2563eb !important;
    transform: translateY(-1px);
}

.main-nav-modern .nav-link:hover::before,
.main-nav-modern .nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.main-nav-modern .nav-link:hover::after,
.main-nav-modern .nav-link.active::after {
    transform: scaleX(1);
}

.main-nav-modern .nav-link.active {
    color: #2563eb !important;
    font-weight: 900;
}

.main-nav-modern .nav-link > * {
    position: relative;
    z-index: 1;
}

.header-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 18px 10px 22px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 14px 30px rgba(37, 99, 235, .22);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.header-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.28), transparent 28%),
        linear-gradient(135deg, rgba(20,184,166,.75), rgba(37,99,235,0));
    opacity: 0;
    transition: opacity .25s ease;
}

.header-cta-btn span,
.header-cta-btn strong {
    position: relative;
    z-index: 1;
}

.header-cta-btn strong {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    font-size: 16px;
    line-height: 1;
    transition: transform .22s ease, background .22s ease;
}

.header-cta-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, .30);
    filter: brightness(.98);
}

.header-cta-btn:hover::before,
.header-cta-btn.active::before {
    opacity: 1;
}

.header-cta-btn:hover strong {
    transform: translateX(3px);
    background: rgba(255,255,255,.24);
}

.header-cta-btn.active {
    color: #fff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, .32);
}

.modern-toggler {
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    padding: 9px 11px;
    box-shadow: 0 10px 24px rgba(15,23,42,.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.modern-toggler:focus {
    box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.modern-toggler:hover {
    transform: translateY(-1px);
    border-color: rgba(37,99,235,.25) !important;
    box-shadow: 0 14px 30px rgba(15,23,42,.09);
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 24px 70px rgba(15,23,42,.10);
    }

    .main-nav-modern {
        gap: 6px !important;
    }

    .main-nav-modern .nav-item {
        width: 100%;
    }

    .main-nav-modern .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 13px 16px !important;
        border-radius: 16px;
    }

    .main-nav-modern .nav-link::before {
        inset: 0;
        border-radius: 16px;
    }

    .main-nav-modern .nav-link::after {
        left: 16px;
        right: auto;
        width: 34px;
        bottom: 7px;
        transform-origin: left;
    }

    .header-cta-btn {
        width: 100%;
        margin-top: 8px;
        justify-content: space-between;
        min-height: 50px;
        border-radius: 18px;
    }
}

@media (max-width: 575px) {
    .navbar {
        min-height: 70px;
    }

    .navbar-collapse {
        border-radius: 20px;
        padding: 14px;
    }

    .main-nav-modern .nav-link {
        font-size: 15px;
    }

    .header-cta-btn {
        font-size: 15px;
    }
}
.faq-accordion {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.faq-accordion .accordion-button {
    padding: 20px 22px;
    border-radius: 22px;
    color: #0f172a;
    font-weight: 900;
    font-size: 17px;
    background: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #2563eb;
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(20,184,166,.08));
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.faq-accordion .accordion-body {
    padding: 0 22px 22px;
    color: #64748b;
    line-height: 1.75;
    font-size: 17px;
}

.faq-accordion .accordion-body p {
    margin-bottom: 0;
}

.faq-accordion .accordion-button::after {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background-color: #eef4ff;
    background-position: center;
    background-size: 16px;
    transition: transform .25s ease, background-color .25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-color: rgba(37,99,235,.12);
}

@media (max-width: 575px) {
    .faq-accordion .accordion-button {
        padding: 18px;
        font-size: 16px;
    }

    .faq-accordion .accordion-body {
        padding: 0 18px 18px;
        font-size: 16px;
    }
}
.footer-bottom-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    margin: 0;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.footer-social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    border-color: rgba(255,255,255,.20);
    box-shadow: 0 14px 34px rgba(37,99,235,.24);
}

@media (max-width: 575px) {
    .footer-bottom-modern {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-social-icons {
        margin-top: 6px;
    }
}
.footer-social-icons a i {
    font-size: 17px;
    line-height: 1;
}
.footer-social-icons a:hover i {
    transform: scale(1.08);
}

.footer-social-icons a i {
    transition: transform .22s ease;
}
.cpf-optional-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.cpf-optional-check input {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
}

.cpf-cnpj-input.cpf-disabled,
.cpf-cnpj-input:disabled {
    background: #dbe1ea !important;
    border-color: #cbd5e1 !important;
    color: #64748b !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .04);
}

.cpf-cnpj-input.cpf-disabled::placeholder,
.cpf-cnpj-input:disabled::placeholder {
    color: #64748b !important;
}
.orcamento-success-section {
    padding: 130px 0 90px;
    background:
        radial-gradient(circle at 15% 10%, rgba(37, 99, 235, .10), transparent 34%),
        radial-gradient(circle at 85% 20%, rgba(20, 184, 166, .10), transparent 30%),
        #f8fafc;
}

.orcamento-success-card {
    max-width: 780px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 58px);
    border: 1px solid #e2e8f0;
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 10%, rgba(37, 99, 235, .10), transparent 32%),
        radial-gradient(circle at 82% 20%, rgba(20, 184, 166, .10), transparent 32%),
        rgba(255,255,255,.96);
    box-shadow: 0 28px 90px rgba(15, 23, 42, .12);
    text-align: center;
}

.orcamento-success-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    color: #fff;
    font-size: 30px;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    box-shadow: 0 18px 45px rgba(37, 99, 235, .25);
}

.orcamento-success-card h1 {
    margin: 12px 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -1.4px;
    color: #0f172a;
}

.orcamento-success-card p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.75;
}

.orcamento-protocolo-box {
    margin: 28px auto;
    padding: 20px 24px;
    max-width: 430px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(20,184,166,.08));
    border: 1px solid rgba(37,99,235,.18);
}

.orcamento-protocolo-box span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}

.orcamento-protocolo-box strong {
    display: block;
    color: #2563eb;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 950;
    letter-spacing: .04em;
}

.orcamento-success-note {
    font-size: 15px !important;
    color: #94a3b8 !important;
}

.orcamento-success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.cpf-optional-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.cpf-optional-check input {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
}

.cpf-cnpj-input.cpf-disabled,
.cpf-cnpj-input:disabled {
    background: #dbe1ea !important;
    border-color: #cbd5e1 !important;
    color: #64748b !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .04);
}

.cpf-cnpj-input.cpf-disabled::placeholder,
.cpf-cnpj-input:disabled::placeholder {
    color: #64748b !important;
}

@media (max-width: 575px) {
    .orcamento-success-actions .btn {
        width: 100%;
    }
}
/* v49 - protocolo clicável após solicitação de orçamento */
.orcamento-protocolo-link-box{display:grid;place-items:center;gap:8px}.orcamento-protocolo-link{text-decoration:none;display:inline-flex;align-items:center;justify-content:center}.orcamento-protocolo-link strong{color:#0b4ea2!important;transition:.2s}.orcamento-protocolo-link:hover strong{text-decoration:underline;transform:translateY(-1px)}

/* v58 - Blog SEO/GEO: imagens proporcionais sem corte em banners editoriais */
.blog-featured-image,
.blog-card-image,
.single-blog-cover,
.single-post-image,
.post-image-wrap {
    background:
        radial-gradient(circle at 12% 12%, rgba(37, 99, 235, .10), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.blog-featured-image,
.blog-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-featured-image img,
.blog-card-image img,
.single-blog-cover img,
.single-post-image img,
.post-featured-image,
.post-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
}

.blog-featured-card:hover .blog-featured-image img,
.blog-card:hover .blog-card-image img,
.single-blog-cover:hover img {
    transform: none !important;
    filter: saturate(1.04);
}

.blog-featured-image {
    min-height: 430px;
    padding: 0;
}

.blog-card-image {
    min-height: 230px;
    height: 230px;
    padding: 0;
}

.single-blog-cover {
    height: auto !important;
    max-width: 1120px;
    padding: 0;
}

.single-blog-cover img {
    height: auto !important;
    max-height: none !important;
}

.post-featured-image {
    height: auto !important;
    max-height: none !important;
}

@media (max-width: 991px) {
    .blog-featured-image {
        min-height: auto;
    }

    .blog-featured-image img {
        height: auto;
    }

    .single-blog-cover {
        height: auto !important;
        border-radius: 28px;
    }
}

@media (max-width: 575px) {
    .blog-card-image {
        height: auto;
        min-height: auto;
    }

    .blog-card-image img {
        height: auto;
    }

    .single-blog-cover {
        margin-top: 28px;
        border-radius: 22px;
    }
}

/* v59 - Blog: imagens sem corte e sem áreas vazias fixas nos cards */
.blog-featured-card {
    align-items: center;
}

.blog-featured-image,
.blog-card-image {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    display: block !important;
    background: #f3f8ff;
    overflow: hidden;
}

.blog-featured-image img,
.blog-card-image img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: unset !important;
    object-position: center !important;
    display: block !important;
    transform: none !important;
}

.blog-featured-card:hover .blog-featured-image img,
.blog-card:hover .blog-card-image img {
    transform: none !important;
    filter: saturate(1.04);
}

.blog-card-image {
    border-bottom: 1px solid rgba(148, 163, 184, .20);
}

.blog-load-more-wrap {
    display: grid;
    place-items: center;
    gap: 10px;
    margin-top: 46px;
    text-align: center;
}

.blog-load-more {
    min-width: 220px;
    box-shadow: 0 18px 46px rgba(37, 99, 235, .14);
}

.blog-load-more:disabled {
    opacity: .72;
    cursor: wait;
}

.blog-load-more-hint {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* v59 - compartilhamento do post */
.single-blog-share {
    margin: 38px 0 24px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.single-blog-share strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 4px;
}

.single-blog-share p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.single-blog-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: flex-end;
}

.single-blog-share-actions a,
.single-blog-share-actions button {
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-weight: 850;
    font-size: 13px;
    padding: 10px 13px;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.single-blog-share-actions a:hover,
.single-blog-share-actions button:hover,
.single-blog-share-actions button.copied {
    transform: translateY(-2px);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, .18);
}

/* v59 - categorias e tags com melhor indexação visual */
.taxonomy-hero {
    padding: 92px 0 44px;
    text-align: center;
    background:
        radial-gradient(circle at 16% 8%, rgba(37, 99, 235, .10), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(20, 184, 166, .10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.taxonomy-hero .container {
    max-width: 920px;
}

.taxonomy-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -1.8px;
    color: var(--navy);
    margin: 12px 0 16px;
}

.taxonomy-hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    margin: 0 auto;
    max-width: 780px;
}

.taxonomy-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.taxonomy-page,
.taxonomy-posts {
    padding: 44px 0 92px;
    background: #fff;
}

.taxonomy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.taxonomy-card {
    min-height: 235px;
    border: 1px solid rgba(148, 163, 184, .26);
    border-radius: 28px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(240,249,255,.82));
    box-shadow: 0 18px 52px rgba(15, 23, 42, .07);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.taxonomy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, .35);
    box-shadow: 0 26px 70px rgba(37, 99, 235, .14);
}

.taxonomy-card span {
    display: inline-flex;
    color: var(--primary);
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.taxonomy-card strong {
    display: block;
    color: var(--navy);
    font-size: 23px;
    font-weight: 950;
    line-height: 1.15;
    margin-bottom: 10px;
}

.taxonomy-card p {
    color: var(--muted);
    line-height: 1.62;
    margin-bottom: 14px;
}

.taxonomy-card small {
    color: var(--primary);
    font-weight: 900;
}

.taxonomy-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 32px;
    background: linear-gradient(135deg, #ffffff, #f2f8ff);
    box-shadow: 0 22px 70px rgba(15, 23, 42, .08);
}

.taxonomy-cloud a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, .18);
    background: #fff;
    color: var(--navy);
    text-decoration: none;
    font-weight: 850;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.taxonomy-cloud a:hover {
    transform: translateY(-2px);
    background: var(--primary);
    color: #fff;
}

.taxonomy-cloud span {
    min-width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(37, 99, 235, .10);
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
}

.taxonomy-cloud a:hover span {
    background: rgba(255,255,255,.18);
    color: #fff;
}

@media (max-width: 991px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .taxonomy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .single-blog-share {
        align-items: flex-start;
        flex-direction: column;
    }

    .single-blog-share-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .taxonomy-grid {
        grid-template-columns: 1fr;
    }

    .taxonomy-hero {
        padding-top: 64px;
    }

    .single-blog-share-actions a,
    .single-blog-share-actions button {
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }
}

/* v60 - ajustes finais do Blog: destaque proporcional, compartilhamento discreto */
.blog-featured-card {
    align-items: center !important;
}

.blog-featured-image {
    align-self: center !important;
    height: auto !important;
    min-height: 0 !important;
    background: transparent !important;
}

.blog-featured-image img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: unset !important;
    display: block !important;
}

.blog-featured-content {
    padding: clamp(28px, 3vw, 38px) !important;
}

.blog-featured-content h2 {
    font-size: clamp(30px, 2.7vw, 40px) !important;
    line-height: 1.07 !important;
    letter-spacing: -1px !important;
    margin-bottom: 14px !important;
}

.blog-featured-content p {
    font-size: clamp(15.5px, 1.15vw, 17px) !important;
    line-height: 1.62 !important;
}

.blog-featured-content .blog-meta {
    margin-top: 12px !important;
}

.blog-featured-content .blog-read-more {
    margin-top: 10px !important;
}

.single-blog-share.is-compact {
    position: relative;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    margin: 28px 0 18px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.single-blog-share-trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-weight: 900;
    font-size: 14px;
    line-height: 1;
    padding: 12px 16px;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.single-blog-share-trigger:hover,
.single-blog-share.is-open .single-blog-share-trigger {
    transform: translateY(-1px);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 18px 42px rgba(37, 99, 235, .20);
}

.single-blog-share-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 15;
    width: min(280px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(.98);
    transition: opacity .18s ease, transform .18s ease;
}

.single-blog-share.is-open .single-blog-share-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.single-blog-share-menu a,
.single-blog-share-menu button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--navy);
    font-size: 14px;
    font-weight: 850;
    text-align: left;
    text-decoration: none;
    padding: 11px 12px;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.single-blog-share-menu a i,
.single-blog-share-menu button i {
    width: 20px;
    color: var(--primary);
    text-align: center;
}

.single-blog-share-menu a:hover,
.single-blog-share-menu button:hover,
.single-blog-share-menu button.copied {
    background: rgba(37, 99, 235, .08);
    color: var(--primary);
    transform: translateX(2px);
    box-shadow: none;
}

@media (max-width: 991px) {
    .blog-featured-card {
        align-items: stretch !important;
    }

    .blog-featured-content {
        padding: 30px !important;
    }

    .blog-featured-content h2 {
        font-size: clamp(28px, 7vw, 38px) !important;
    }

    .single-blog-share.is-compact {
        align-items: flex-end !important;
    }
}

@media (max-width: 575px) {
    .single-blog-share.is-compact {
        justify-content: flex-start !important;
    }

    .single-blog-share-menu {
        right: auto;
        left: 0;
    }
}

/* v61 - ajustes finais: destaque sem espaços, CTA e cupom de orçamento */
.blog-featured-card {
    align-items: stretch !important;
    background: #fff !important;
}
.blog-featured-image {
    height: 100% !important;
    min-height: clamp(360px, 31vw, 500px) !important;
    background: #f4f8ff !important;
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
}
.blog-featured-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}
.blog-card-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
}
.cupom-input.cpf-disabled,
.form-control.cpf-disabled {
    background: #f1f5f9 !important;
    color: #64748b !important;
    cursor: not-allowed;
}
@media (max-width: 991px) {
    .blog-featured-card { grid-template-columns: 1fr !important; }
    .blog-featured-image { height: auto !important; min-height: 0 !important; }
    .blog-featured-image img { height: auto !important; object-fit: contain !important; }
}


/* v62 - ajustes finais do Blog e cupom discreto no orçamento */
.blog-featured-card {
    align-items: stretch !important;
    background: #fff !important;
}
.blog-featured-card .blog-featured-image {
    display: flex !important;
    align-items: stretch !important;
    justify-content: stretch !important;
    height: 100% !important;
    min-height: clamp(380px, 32vw, 520px) !important;
    background: #eef6ff !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}
.blog-featured-card .blog-featured-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}
.blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.018) !important;
}
.orcamento-cupom-compact {
    margin-top: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(37, 99, 235, .15);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37,99,235,.045), rgba(255,255,255,.96));
    box-shadow: 0 14px 34px rgba(15, 23, 42, .04);
}
.orcamento-cupom-compact .form-label {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}
.orcamento-cupom-compact .input-group-text,
.orcamento-cupom-compact .form-control,
.orcamento-cupom-compact .btn {
    min-height: 39px;
    border-color: rgba(148, 163, 184, .35);
}
.orcamento-cupom-compact .input-group-text {
    background: #fff;
    color: #2563eb;
    border-radius: 14px 0 0 14px;
}
.orcamento-cupom-compact .form-control {
    font-size: 14px;
    font-weight: 750;
}
.orcamento-cupom-remove {
    width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 14px 14px 0 !important;
}
.orcamento-cupom-check {
    font-size: 12px !important;
    color: #64748b;
}
@media (max-width: 991px) {
    .blog-featured-card .blog-featured-image {
        height: auto !important;
        min-height: 0 !important;
    }
    .blog-featured-card .blog-featured-image img {
        height: auto !important;
        min-height: 0 !important;
        object-fit: contain !important;
    }
    .orcamento-cupom-compact { margin-top: 2px; }
}
