
/*
	Theme Name: driveCreditly
	Text Domain: drivecreditly
	Version: 1.0
	Author: bricioweb
*/

/* --- GERAL --- */
body {
    background-color: #f0f4f8;
    overflow-x: hidden;
}

p {
    font-size: 16px;
    line-height: 28px;
    color: #475569;
}

body, h1, h2, h3, h4, label, input, button, select, textarea, p, ul, ol {
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4 {
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Destaques em Azul Claro */
h1 b, h2 b, h3 b, h4 b {
    color: #2563eb;
}

p, input, label, select, textarea, ul, ol {
    color: #334155;
}

header {
    background: #eef4fb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.header-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background: transparent;
    position: relative;
    z-index: 100;
}
.header-logo a {
    display: block;
}

/* --- BOTOES --- */
.button {
    margin-bottom: 0;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: #2563eb;
    background: linear-gradient(45deg, #1d4ed8 0%, #3b82f6 100%);
    color: #ffffff;
    outline: none;
    font-size: 15px;
    padding: 14px 30px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.30);
    color: #ffffff;
    background: linear-gradient(45deg, #1e40af 0%, #2563eb 100%);
}

.button-light-first {
    background: #ffffff !important;
    color: #1d4ed8 !important;
    box-shadow: 0 4px 14px 0 rgba(0,0,0, 0.1);
}
.button-light-first:hover {
    color: #1e40af !important;
    background: #f0f4ff !important;
}

.button-light:active,
.button-light:focus,
.button-light:hover {
    color: #1d4ed8;
    background-color: #ffffff;
}

.button-clear {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 17px;
    background: transparent;
    box-shadow: none;
    color: #2563eb;
    text-transform: none;
}
.button-clear:hover {
    background: transparent;
    box-shadow: none;
    text-decoration: underline;
    transform: none;
    color: #1d4ed8;
}

.button-icon {
    display: flex;
    align-items: center;
    grid-gap: 7px;
    justify-content: center;
}
.button-icon i {
    font-size: 16px;
}

.button-ghost {
    background: transparent !important;
    box-shadow: none !important;
    border: 2px solid rgba(255,255,255,0.35);
    color: #ffffff !important;
}
.button-ghost:hover {
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* --- MENU --- */
.header-menu ul.menu li a {
    padding: 13px 18px;
    font-size: 15px;
    height: 42px;
    display: flex;
    color: #334155;
    font-weight: 600;
    align-items: center;
    border-radius: 6px;
    transition: color 0.2s;
}
.header-menu ul.menu li a:hover {
    color: #1d4ed8;
}

.header-menu ul.menu li a.button {
    background: #2563eb;
    background: linear-gradient(45deg, #1d4ed8 0%, #3b82f6 100%);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.35);
    padding: 13px 25px;
    font-size: 14px;
    font-weight: bold;
    height: 42px;
    margin-left: 10px;
    color: #ffffff;
}
.header-menu ul.menu li a.button:hover {
    color: #fff;
}

.mb-20 {
    margin-bottom: 20px;
}

/* --- HERO --- */
.hero {
    background: #1e3a8a;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #172554 100%);
    height: auto;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 560px;
    height: 560px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(0px);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -12%;
    width: 520px;
    height: 520px;
    background: rgba(59, 130, 246, 0.12);
    border-radius: 50%;
}

.hero .grid-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.hero-content-center {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
    text-align: center;
}

.hero-info h1 {
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.08;
    font-size: 54px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.hero-info p {
    margin-bottom: 0;
    color: #bfdbfe;
    font-size: 18px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-button {
    margin-top: 35px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #bfdbfe;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
}

.hero-img,
.hero-img img,
.hero-img-mb,
.hero-img-dsk {
    display: none !important;
}

/* --- SECTIONS --- */
.header-logo img {
    width: 160px;
}

.section {
    padding: 90px 0;
}
.section p:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #1e3a8a;
}

.section-intro .section-title {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.section-intro p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.trust-line {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
    color: #1e40af;
    font-weight: 700;
    font-size: 13px;
    flex-wrap: wrap;
}
.trust-line span {
    background: #ffffff;
    border: 1px solid #dbeafe;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    padding: 10px 14px;
    border-radius: 999px;
}

/* --- BLOCOS DE BENEFICIOS --- */
.benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-top: 70px;
    align-items: stretch;
}

.benefits-item {
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #dbeafe;
    background: #ffffff;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.benefits-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(37, 99, 235, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    border-color: #93c5fd;
}

.benefits-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #1e293b;
    font-weight: 700;
    width: 100%;
}

.benefits-item p {
    font-size: 15px;
    line-height: 24px;
    color: #64748b;
    margin-bottom: 0;
    flex-grow: 1;
}

.benefits-item img {
    height: 70px;
    width: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 12px rgba(37, 99, 235, 0.15));
}

/* --- BLOG CALLOUT --- */
.section-blog {
    position: relative;
}
.section-blog img {
    width: 100%;
    position: relative;
}

.section-subtitle {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-callout {
    margin-top: -120px;
    background-color: #ffffff;
    position: relative;
    padding: 50px;
    border: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    text-align: center;
}
.blog-callout h3 {
    margin-bottom: 0;
}

/* --- SAFE SECTION --- */
.safe-box {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    text-align: left;
}
.safe-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.18);
    position: relative;
    flex: 0 0 52px;
}
.safe-icon::before {
    content: "\2713";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    font-size: 22px;
    color: #2563eb;
}
.safe-content .section-title {
    font-size: 26px;
}
.safe-content p {
    margin-bottom: 0;
}

/* --- DOWNLOAD SECTION --- */
.download {
    position: relative;
    margin-top: 80px;
}

.section-blue {
    background-color: #eff6ff;
}

.download-noimg {
    margin-top: 60px;
}
.download-card {
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    padding: 48px 42px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
.download-card::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
}
.download-card::after {
    content: '';
    position: absolute;
    left: -140px;
    bottom: -140px;
    width: 360px;
    height: 360px;
    background: rgba(59, 130, 246, 0.06);
    border-radius: 50%;
}

.download-card h2,
.download-card p,
.download-card .section-button {
    position: relative;
    z-index: 2;
}
.download-card p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.download-card .section-button {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.download-card .button-ghost {
    border-color: rgba(37, 99, 235, 0.35);
    color: #2563eb !important;
}
.download-card .button-ghost:hover {
    border-color: rgba(37, 99, 235, 0.55);
}

/* --- REVIEWS --- */
.reviews {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
}
.review-item {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #dbeafe;
    background: #ffffff;
}
.review-item p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
    color: #475569;
}

.review-head {
    display: flex;
    grid-gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}
.review-name {
    flex: 1;
}
.review-name b {
    display: block;
    font-size: 17px;
    margin-bottom: 3px;
    color: #1e3a8a;
}
.review-star {
    display: flex;
    grid-gap: 2px;
}
.review-star i {
    color: #f59e0b;
    font-size: 16px;
}

.review-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #3b82f6;
}
.review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- FOOTER --- */
footer {
    background-color: #0f172a;
    padding: 60px 0;
    color: #94a3b8;
}
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-right {
    display: flex;
}
.footer-right a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 5px;
    transition: background 0.3s;
}
.footer-right a:hover {
    background: #2563eb;
    color: #fff;
}
.footer-right a:last-child {
    padding-right: 0;
}

/* --- FAQ --- */
.faq {
    background-color: transparent;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    margin-bottom: 0;
}
.faq .accordion-title {
    border: 1px solid #dbeafe;
    background: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    color: #1e293b;
    outline: none;
    padding: 25px;
    transition: all 0.2s;
}

.accordion-title::before {
    font-weight: bold;
    color: #2563eb;
}

.faq :last-child>.accordion-content:last-child,
.faq :last-child:not(.is-active)>.accordion-title,
.faq .accordion-item:first-child>:first-child {
    border-radius: 8px;
}

.faq :last-child>.accordion-content:last-child,
.faq :last-child:not(.is-active)>.accordion-title {
    border-color: #dbeafe;
}

.faq .accordion-content {
    border: 1px solid #dbeafe;
    border-top: none;
    background: #f8fafc;
    color: #475569;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 25px;
    padding-top: 10px;
    line-height: 1.6;
}
.faq :last-child>.accordion-content:last-child {
    border-radius: 0 !important;
    border-bottom-right-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.faq li.is-active .accordion-title {
    border-radius: 0 !important;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
    border-bottom: none !important;
    color: #2563eb;
    background: #fff !important;
}

.bar-category {
    display: flex;
    background-color: #e0ecf8;
    justify-content: center;
    grid-gap: 5px;
    padding: 5px 0;
    border-top: 1px solid #d0def0;
}
.bar-category a {
    display: inline-block;
    padding: 8px 15px;
    color: #334155;
    font-size: 13px;
    border-radius: 4px;
    font-weight: 500;
}
.bar-category a:hover {
    background-color: #1d4ed8;
    color: #ffffff;
}

.header-logo {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}
.search-field {
    margin-bottom: 0;
    height: 46px;
    font-size: 14px;
    background-color: #ffffff;
    width: 280px;
    color: #334155;
    padding: 13px 20px;
    box-shadow: none;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    transition: all 0.2s;
    padding-right: 42px;
}
.search-field::placeholder {
    color: #94a3b8;
}
.search-field:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    border-color: #3b82f6;
    background: #ffffff;
    color: #334155;
    transition: none;
}

.search-mobile {
    margin-bottom: 20px;
}
.search-mobile input {
    width: 100% !important;
}

.header-search {
    position: relative;
}
.header-search i {
    position: absolute;
    right: 5px;
    top: 2px;
    cursor: pointer;
    color: #64748b;
    height: 42px;
    padding: 8px 14px;
}
.header-search i:hover {
    color: #1d4ed8;
}

.main {
    padding: 60px 0;
}

.wp-block-image {
    margin:40px 0;
}

/* --- CARDS DE ARTIGOS --- */
.articles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 25px;
}

.single .articles {
    grid-template-columns: 1fr 1fr 1fr;
}

.article {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}
.article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    border-color: #93c5fd;
}

.article-title {
    padding: 20px;
}
.article-title h3 {
    margin-bottom: 10px;
    margin-top: 5px;
}
.article-title h3 a {
    display: block;
    color: #1e293b;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.article-title h3 a:hover {
    color: #2563eb;
    text-decoration: none;
}
.article-meta {
    color: #94a3b8;
    font-size: 13px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.article-meta span {
    display: flex;
    align-items: center;
    grid-gap: 5px;
}
.article-meta span i {
    margin-top: 1px;
}
.article-more {
    margin-top: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}
.article-more a {
    display: flex;
    align-items: center;
    grid-gap: 4px;
    font-size: 14px;
    font-weight: bold;
    color: #2563eb;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.article-more a i {
    margin-top: 1px;
    line-height: 10px;
}
.article .article-category {
    grid-gap: 5px;
    display: flex;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}
.article .article-category .article-category-item {
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
    color: #2563eb;
    display: none;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 6px 10px;
    text-transform: uppercase;
}
.article .article-category .article-category-item:first-child {
    display: inline-block;
}
.article .article-category .article-category-item:hover {
    background-color: #2563eb;
    color: #fff;
}

.article-thumb a {
    display: block;
}
.article-thumb figure:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.article-thumb figure {
    height: 180px;
    width: 100%;
    margin: 0;
    overflow: hidden;
}
.article-thumb figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.articles-related {
    border-top: 1px solid #e2e8f0;
    margin-top: 50px;
    padding-top: 40px;
}

.headline {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headline h3,
.headline h2 {
    font-size: 28px;
    margin-bottom: 0;
    color: #1e293b;
}

.main-sections {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
}

/* DESTAQUES */
.articles-featured .article {
    border:none;
}

.articles-featured .article-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 30px;
}
.articles-featured .article-title h3 {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.3;
}
.articles-featured .article-thumb figure {
    height: 400px;
}
.articles-featured .article-meta {
    color: #cbd5e1;
}

.articles-featured .article-category .article-category-item:hover,
.articles-featured .article-category .article-category-item {
    color: #ffffff;
    background-color: #2563eb;
    border: none;
}
.articles-featured .article-thumb figure:hover img {
    opacity: 1;
    transform: scale(1.05);
}
.articles-featured .article:hover figure img {
    opacity: 1;
}

.articles-featured .article-thumb figure:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height:100%;
    content: '';
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.main-headline {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.main-headline p {
    margin-bottom: 0;
    font-size: 16px;
    margin-top: 10px;
}
.main-headline h1 {
    font-size: 36px;
    margin-bottom: 0;
    line-height: 1.2;
}

.fetch {
    margin-top: 40px;
}

.button.loading {
    opacity: 0.7 !important;
    cursor: not-allowed;
    background-color: #cbd5e1 !important;
}

/* --- SINGLE POST --- */
.single-article-content p,
.single-article-content ul,
.single-article-content ol {
    font-size: 18px;
    color: #334155;
    line-height: 1.8;
}

.single-article-content ul,
.single-article-content ol  {
    margin: 30px 0;
    margin-left: 50px;
    display: grid;
    grid-auto-columns: 1fr;
    grid-gap: 15px;
}
.single-article-content ul br,
.single-article-content ol br {
    display: none;
}
.single-article-content p {
    margin-bottom: 25px;
}

.single-article-content p a,
.single-article-content ul a,
.single-article-content ol a {
    color: #2563eb;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: rgba(37, 99, 235, 0.3);
    text-underline-offset: 3px;
}
.single-article-content p a:hover,
.single-article-content ul a:hover,
.single-article-content ol a:hover {
    text-decoration: none !important;
    background-color: rgba(37, 99, 235, 0.1);
}

.single-article-title h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
}
.single-article-title p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #64748b;
    line-height: 1.6;
}

.single-article-thumb figure {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
}
.single-article-thumb figure img {
    width: 100%;
    height: auto;
}

.single-article-thumb {
    margin-bottom: 40px;
}
.single-article-thumb figure figcaption {
    margin-top: 15px;
    font-style: italic;
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
}

.single-article-wrap-meta {
    font-size: 15px;
    display: flex;
    align-items: center;
    grid-gap: 15px;
}
.single-article-wrap-meta span {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    background: #eff6ff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 13px;
    color: #475569;
}

.single-article-wrap-meta span svg {
    width: 16px;
    stroke: #475569;
    stroke-width: 2;
    margin-top: -1px;
}

.single-article-meta {
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 40px;
}

.single-article-meta-item.user {
    margin-bottom: 15px;
    font-size: 18px;
}
.single-article-meta-item.user a {
    color: #1e3a8a;
    font-weight: 800;
    text-decoration: none;
}
.single-article-meta-item.user a:hover {
    color: #2563eb;
}

.bar-category-mobile {
    color: #ffffff;
    padding: 13px 10px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: center;
    grid-gap: 7px;
}
.dropdown-pane {
    width: 100% !important;
    border: none;
    background-color: #1e3a8a;
}
.dropdown-pane a {
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.single-article-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: 40px;
    color: #1e3a8a;
}
.single-article-content h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 30px;
}

.single-article-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.single-article-tools svg {
    width: 25px;
    height: auto;
    margin-top: -1px;
}
.single-article-tools button {
    display: flex;
    align-items: center;
    grid-gap: 7px;
    color: #64748b;
    cursor: pointer;
    font-size: 16px;
    background: transparent;
    border: none;
}
.single-article-tools button:hover {
    color: #2563eb;
}

.single-article-category {
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.single-article-category a {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}
.single-article-category a:hover {
    background-color: #2563eb;
    color: #fff;
}

.main-blog {
    padding-top: 40px;
}

.busca-tipos {
    margin-top: 15px;
    display: flex;
    align-items: center;
    grid-gap: 20px;
}
.busca-tipos label {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
}
.busca-tipos label input {
    margin: 0 !important;
    cursor: pointer;
    height: auto !important;
    vertical-align: -1px !important;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .reviews {
        grid-template-columns: 1fr;
    }
    .benefits {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px;
    }

    .hero-info h1 {
        font-size: 44px;
    }
    .hero-content-center {
        padding: 30px 0;
    }
}

@media (max-width: 744px) {
    .hero {
        min-height: 520px;
        padding: 30px 0;
        text-align: center;
    }
    .hero-info h1 {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 14px;
    }
    .hero-info p {
        font-size: 15px;
        line-height: 24px;
    }
    .hero-cta {
        gap: 10px;
    }
    .hero-cta .button {
        width: 100%;
    }
    .section-button {
        margin-top: 22px;
    }
    .section {
        padding: 60px 0;
    }
    section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .section-blog {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .benefits {
        grid-template-columns: 1fr;
        margin-top: 50px;
        grid-gap: 20px;
    }
    .benefits-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 30px 25px;
        height: auto;
    }
    .benefits-item h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }
    .benefits-item p {
        font-size: 14px;
        line-height: 22px;
    }
    .benefits-item img {
        height: 55px;
        margin-bottom: 0;
        margin-right: 25px;
    }
    .benefits-content {
        flex: 1;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 18px;
        line-height: 1.2;
    }
    .fix-center {
        text-align: center;
    }

    .safe-box {
        flex-direction: column;
        text-align: center;
    }
    .safe-content .section-title {
        font-size: 22px;
    }

    .download-card {
        padding: 36px 22px;
    }
    .download-card .section-button .button {
        width: 100%;
    }

    .faq {
        margin-top: 40px;
    }
    .faq .accordion-title {
        font-size: 16px;
        padding-right: 40px;
        line-height: 1.4;
    }

    header, footer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer-right a {
        padding: 0;
        margin: 0 8px;
    }
}

@media (max-width: 744px) {
    .articles {
        grid-template-columns: 1fr 1fr;
    }
    .single .articles {
        grid-template-columns: 1fr 1fr;
    }
    .single .articles .article:last-child {
        display: none;
    }
    .articles-featured .article-thumb figure:after {
        background: linear-gradient(0deg, rgba(15, 23, 42, 1) 20%, rgba(15, 23, 42, 0) 100%);
    }
}

.header-topbar-mobile {
    display: none;
}
.mob-download a {
    display: block;
    margin-bottom: 15px;
    background-color: #2563eb !important;
    font-size: 15px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

@media (max-width: 639px) {
    .wp-block-table {
        overflow-x:auto;
    }
    .header-topbar-mobile {
        display: flex;
        align-items: center;
        background-color: #eef4fb;
        border-bottom: 1px solid #dbeafe;
        height: 70px;
    }
    .header-topbar-mobile-logo {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-topbar-mobile-logo img {
        height: 40px;
    }
    .header-topbar-mobile-menu {
        color: #334155;
        padding: 10px 20px;
        font-size: 24px;
    }
    .header-search-mob, .header-menu-mob {
        display: block !important;
    }
    #canvasMobile .search-field {
        width: 100% !important;
    }
    .header-search-mob {
        margin-bottom: 25px;
    }
    .header-menu-mob {
        display: grid !important;
        grid-template-columns: 1fr;
    }
    .header-menu-mob ul {
        display: grid;
        grid-template-columns: 1fr;
    }
    #canvasMobile .header-menu ul.menu li a {
        margin: 5px 0 !important;
        outline: none !important;
        text-align: center !important;
        justify-content: center;
        color: #ffffff;
        font-size: 18px;
    }
    .off-canvas {
        background-color: #1e3a8a;
        padding: 25px;
    }
    .js-off-canvas-overlay {
        background: rgba(15, 23, 42, 0.8);
    }
    .off-canvas.is-transition-overlap.is-open {
        box-shadow: none !important;
    }

    .single .articles {
        grid-template-columns: 1fr;
    }
    .single .articles .article:last-child {
        display: block;
    }
    .main-headline {
        padding: 20px 0;
    }
    .main {
        padding: 30px 0;
    }
    .main-headline h1,
    .headline h2,
    .headline h3 {
        font-size: 24px;
    }
    .articles {
        grid-template-columns: 1fr;
    }
    .articles-featured .article-thumb figure {
        height: 250px;
    }
    .article-title h3 a,
    .articles-featured .article-title h3 {
        font-size: 18px;
        line-height: 1.4;
    }
    .article-thumb figure {
        height: 200px;
    }

    .single-article-title h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .single-article-tools {
        margin-bottom: 20px;
    }
    .single-article-title p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    .single-article-meta {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .single-article-content h2 {
        font-size: 26px;
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .single-article-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    .single-article-category a {
        padding: 6px 14px;
        font-size: 13px;
    }
    .single-article-content ul, .single-article-content ol {
        margin-left: 20px;
    }
    .articles-related {
        margin-top: 40px;
        padding-top: 30px;
    }

    .single-article-wrap-meta .single-article-meta-item:nth-child(5),
    .single-article-wrap-meta .single-article-meta-item:nth-child(4) {
        display: none !important;
    }
    .single-article-meta-item.user {
        margin-bottom: 10px;
        font-size: 16px;
    }
}

footer,
footer p {
    color: #94a3b8;
}
.footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
}

.footer-nav .menu {
    justify-content: center;
    margin: 30px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}
.footer-nav .menu li a {
    color: #e2e8f0;
    font-weight: 500;
}
.footer-nav .menu li a:hover {
    color: #60a5fa;
}

.footer-job {
    display: flex;
    align-items: center;
    grid-gap: 40px;
    justify-content: center;
    font-size: 13px;
}
.footer-job a {
    color: #fff;
    font-size: 20px;
    line-height: 10px;
}
.footer-social {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

.main-page {
    margin: 40px 0;
}
.main-page .wp-block-table {
    margin: 40px 0;
}
.main-page .wp-block-table td {
    padding: 20px;
    border-color: #e2e8f0;
}
.main-page h2 {
    font-size: 32px;
    display: block;
    margin: 40px 0 25px;
    color: #1e293b;
}

@media (max-width: 744px) {
    .wp-block-table {
        overflow-x:auto;
    }
    .footer-nav .menu {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* --- AUTOCOMPLETE --- */
.autocomplete {
    margin-bottom: 50px;
}
.autocomplete ul {
    display:none !important;
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    margin: 0;
    list-style: none;
    max-height: 226px;
    overflow-y: scroll;
    box-sizing: border-box;
    padding: 0;
    z-index: 10;
    list-style: none;
    border-radius: 12px;
    background-color: #fff;
    border: none;
    box-shadow: 0px 10px 40px -5px rgba(0, 0, 0, 0.15);
    outline: 0;
    transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    -webkit-transition: opacity .15s ease-in-out;
}
.autocomplete input {
    height: 60px;
    border-radius: 50px;
    padding: 15px 25px;
    padding-right: 60px;
    margin-top: 10px;
    font-size: 18px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 0;
    transition: all 0.3s;
    border: 1px solid #dbeafe;
}
.busca-field {
    position: relative;
}
.busca-field img {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 22px;
}
.autocomplete input:focus {
    border-color: #3b82f6;
    transition: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}
.autocomplete mark {
    color: #2563eb;
    font-weight: bold;
    background-color: transparent;
}
.autocomplete p {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    color: #aaa;
    margin-bottom: 0;
    font-size: 15px;
    text-align: center;
    background: #f5f5f5;
}
.autocomplete p .not-found {
    padding: 10px 0;
}

.autocomplete ul li {
    cursor: pointer;
    color: #1e293b;
    padding: 12px 25px;
    font-size: 16px;
    border-bottom: 1px solid #f1f5f9;
}
.autocomplete ul li:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

.autocomplete-p {
    margin-bottom: 25px;
}

.autoComplete_wrapper {
    position: relative;
}
.autoComplete_wrapper i {
    top: 18px;
    position: absolute;
    right: 25px;
    font-size: 24px;
    color: #94a3b8;
}

.header-menu-mobile,
.header-search-mobile {
    display: none;
}

@media (max-width: 1000px) {
    .header-menu-mobile,
    .header-search-mobile {
        display: block;
        color: #334155;
        font-size: 24px;
        cursor: pointer;
    }
    .header-search,
    .header-menu {
        display: none;
    }
}

/* ==========================================================
   FIXES (ALINHAMENTO)
========================================================== */

.fix-center {
    text-align: center !important;
}
.fix-center .section-title,
.fix-center p {
    margin-left: auto !important;
    margin-right: auto !important;
}
.fix-center p {
    max-width: 820px;
}
.fix-center .section-button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.fix-center .section-button .button {
    display: inline-flex;
}

.section-button.text-center {
    display: flex !important;
    justify-content: center !important;
}

.footer {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px;
}

.footer-nav .menu {
    justify-content: center !important;
}

.footer-info,
.footer-info p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 744px) {
    .fix-center p { max-width: 100% !important; }
    .footer { gap: 12px; }
}

/* =========================================================================
   FORCA REMOCAO DE BORDA/FUNDO EM ANUNCIOS, IFRAMES E CODIGOS EMBUTIDOS
========================================================================= */
.single-article-content iframe,
.single-article-content ins,
.single-article-content embed,
.single-article-content .code-block,
.single-article-content .wp-block-embed,
ins.adsbygoogle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: block !important;
}

/* ==========================================================
   REMOVER FUNDO BRANCO DE ANUNCIOS (AD INSERTER E ADSENSE)
========================================================== */
.code-block,
.code-block iframe,
.ad-inserter,
ins.adsbygoogle,
ins.adsbygoogle iframe,
ins.adsbygoogle[data-ad-status="filled"],
.google-auto-placed,
.wp-block-embed iframe {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.single-article-content iframe {
    background-color: transparent !important;
}
