/* =========================================================
   CULTIVANDO DINHEIRO - HOME.CSS
   Layout principal do site institucional
   Autor: Lucas Marçal Freitas
   ========================================================= */

/* =========================================================
   01 - VARIÁVEIS
   ========================================================= */
:root {
    --cd-primary: #139f4b;
    --cd-primary-dark: #064e2c;
    --cd-primary-hover: #0f7f3f;
    --cd-primary-soft: #e8f8ef;
    --cd-lime: #b8f05a;
    --cd-lime-soft: #f1fbdc;

    --cd-dark: #101828;
    --cd-title: #182230;
    --cd-text: #344054;
    --cd-muted: #667085;
    --cd-light: #f7faf9;
    --cd-white: #ffffff;
    --cd-border: #e5e7eb;
    --cd-border-soft: rgba(229, 231, 235, .72);

    --cd-danger: #ef4444;
    --cd-warning: #f59e0b;
    --cd-info: #0ea5e9;
    --cd-purple: #8b5cf6;

    --cd-shadow-sm: 0 8px 24px rgba(16, 24, 40, .06);
    --cd-shadow: 0 18px 50px rgba(16, 24, 40, .08);
    --cd-shadow-lg: 0 28px 80px rgba(16, 24, 40, .13);

    --cd-radius-sm: 14px;
    --cd-radius: 24px;
    --cd-radius-lg: 34px;

    --cd-transition: all .24s ease;
}

/* =========================================================
   02 - RESET / BASE
   ========================================================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--cd-light);
    color: var(--cd-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

::selection {
    background: var(--cd-primary);
    color: #fff;
}

/* =========================================================
   03 - ESTRUTURA GLOBAL
   ========================================================= */
.cd-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.cd-section {
    padding: 82px 0;
    position: relative;
}

.cd-section-soft {
    background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
}

.cd-section-white {
    background: #fff;
}

.cd-section-head {
    text-align: center;
    margin-bottom: 38px;
}

.cd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--cd-primary-soft);
    color: var(--cd-primary-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cd-title {
    margin: 14px 0 10px;
    font-size: clamp(26px, 4vw, 46px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -1.5px;
    color: var(--cd-title);
}

.cd-title span {
    color: var(--cd-primary);
}

.cd-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--cd-muted);
    font-size: 14px;
    line-height: 1.75;
}

.cd-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

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

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

/* =========================================================
   04 - BOTÕES
   ========================================================= */
.cd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    transition: var(--cd-transition);
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.cd-btn-primary {
    background: var(--cd-primary);
    color: #fff;
    box-shadow: 0 16px 32px rgba(19, 159, 75, .25);
}

.cd-btn-primary:hover {
    background: var(--cd-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(19, 159, 75, .32);
}

.cd-btn-white {
    background: #fff;
    color: var(--cd-dark);
    border: 1px solid var(--cd-border);
}

.cd-btn-white:hover {
    color: var(--cd-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--cd-shadow-sm);
}

.cd-btn-dark {
    background: var(--cd-dark);
    color: #fff;
}

.cd-btn-dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================================
   05 - CARDS GERAIS
   ========================================================= */
.cd-card,
.service-card,
.post-card,
.testimonial-card,
.feature-card,
.module-card,
.step-card {
    background: #fff;
    border: 1px solid var(--cd-border);
    border-radius: var(--cd-radius);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .04);
    transition: var(--cd-transition);
}

.cd-card:hover,
.service-card:hover,
.post-card:hover,
.testimonial-card:hover,
.feature-card:hover,
.module-card:hover,
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cd-shadow);
}

.reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   06 - HEADER / MENU
   ========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 72px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, .75);
    transition: var(--cd-transition);
}

.site-header.scrolled {
    height: 64px;
    box-shadow: 0 14px 36px rgba(16, 24, 40, .08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand strong {
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -.5px;
    color: var(--cd-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--cd-text);
    font-size: 12px;
    font-weight: 850;
    transition: var(--cd-transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--cd-primary-soft);
    color: var(--cd-primary-dark);
}

.nav-menu .login-link {
    background: var(--cd-primary);
    color: #fff;
    padding-inline: 16px;
    box-shadow: 0 12px 26px rgba(19, 159, 75, .22);
}

.nav-menu .login-link:hover {
    background: var(--cd-primary-dark);
    color: #fff;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown ul {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 215px;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--cd-border);
    box-shadow: var(--cd-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--cd-transition);
    list-style: none;
}

.nav-dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown ul a {
    width: 100%;
    border-radius: 12px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--cd-border);
    font-size: 24px;
    color: var(--cd-dark);
    cursor: pointer;
    transition: var(--cd-transition);
}

.mobile-toggle:hover {
    background: var(--cd-primary-soft);
    color: var(--cd-primary-dark);
}

/* =========================================================
   07 - HERO
   ========================================================= */
.cd-hero {
    min-height: 100vh;
    padding: 128px 0 76px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(184, 240, 90, .25), transparent 32%),
        radial-gradient(circle at 85% 25%, rgba(19, 159, 75, .16), transparent 30%),
        linear-gradient(135deg, #f8fffb 0%, #eefbf4 100%);
}

.cd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 24, 40, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 40, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 54px;
    align-items: center;
}

.hero-copy h1 {
    margin: 16px 0 16px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: .96;
    font-weight: 950;
    letter-spacing: -2.8px;
    color: var(--cd-dark);
}

.hero-copy h1 span {
    color: var(--cd-primary);
}

.hero-copy p {
    max-width: 650px;
    margin: 0 0 26px;
    color: var(--cd-muted);
    font-size: 16px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-proof div {
    font-size: 12px;
    color: var(--cd-muted);
}

.hero-proof strong {
    display: block;
    color: var(--cd-dark);
    font-size: 15px;
    font-weight: 950;
}

.hero-dashboard {
    position: relative;
    padding: 20px;
    border-radius: var(--cd-radius-lg);
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .95);
    box-shadow: var(--cd-shadow);
}

.hero-dashboard::before,
.hero-dashboard::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: rgba(184, 240, 90, .22);
    filter: blur(4px);
    z-index: -1;
}

.hero-dashboard::before {
    top: -18px;
    right: -18px;
}

.hero-dashboard::after {
    bottom: -18px;
    left: -18px;
    background: rgba(19, 159, 75, .14);
}

.dash-window {
    background: #fff;
    border: 1px solid var(--cd-border);
    border-radius: 26px;
    padding: 20px;
}

.dash-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dash-head strong {
    font-size: 13px;
    font-weight: 950;
}

.dash-status {
    color: var(--cd-primary-dark);
    background: var(--cd-primary-soft);
    font-size: 10px;
    font-weight: 950;
    padding: 6px 9px;
    border-radius: 999px;
}

.dash-balance {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #052e16, #0f7a38);
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.dash-balance::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .11);
}

.dash-balance small {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
}

.dash-balance h3 {
    margin: 3px 0;
    font-size: 31px;
    font-weight: 950;
    letter-spacing: -1px;
}

.dash-balance span {
    font-size: 11px;
    color: #bbf7d0;
    font-weight: 800;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dash-mini {
    padding: 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--cd-border);
    transition: var(--cd-transition);
}

.dash-mini:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--cd-shadow-sm);
}

.dash-mini i {
    color: var(--cd-primary);
    font-size: 18px;
}

.dash-mini span {
    display: block;
    margin-top: 8px;
    color: var(--cd-muted);
    font-size: 10px;
    font-weight: 800;
}

.dash-mini strong {
    display: block;
    font-size: 15px;
    font-weight: 950;
}

/* =========================================================
   08 - BENEFÍCIOS / STATS
   ========================================================= */
.benefit-card,
.stat-card {
    padding: 22px;
    height: 100%;
}

.benefit-icon,
.stat-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--cd-primary-soft);
    color: var(--cd-primary);
    font-size: 22px;
    margin-bottom: 14px;
}

.benefit-card h3,
.stat-card h3 {
    font-size: 16px;
    font-weight: 950;
    margin: 0 0 8px;
    color: var(--cd-title);
}

.benefit-card p,
.stat-card p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12.5px;
    line-height: 1.65;
}

.stat-number {
    display: block;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1.4px;
    color: var(--cd-primary-dark);
    margin-bottom: 8px;
}

/* =========================================================
   09 - POSTS RECENTES
   ========================================================= */
.post-card {
    overflow: hidden;
    height: 100%;
}

.post-thumb {
    height: 156px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #e5e7eb;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.post-card:hover .post-thumb img {
    transform: scale(1.06);
}

.post-body {
    padding: 17px;
}

.post-date {
    display: block;
    margin-bottom: 7px;
    color: var(--cd-muted);
    font-size: 10px;
    font-weight: 800;
}

.post-body h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.28;
    font-weight: 950;
    color: var(--cd-title);
}

.post-body p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12px;
    line-height: 1.55;
}

.post-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 13px;
    color: var(--cd-primary-dark);
    font-size: 12px;
    font-weight: 950;
}

/* =========================================================
   10 - MÓDULOS / SERVIÇOS
   ========================================================= */
.service-card,
.module-card {
    padding: 20px;
    height: 100%;
}

.service-icon,
.module-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--cd-primary-soft);
    color: var(--cd-primary);
    font-size: 21px;
    margin-bottom: 13px;
}

.service-card h3,
.module-card h3 {
    margin: 0 0 7px;
    font-size: 15px;
    font-weight: 950;
    color: var(--cd-title);
}

.service-card p,
.module-card p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12px;
    line-height: 1.6;
}

.module-card.compact {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.module-card.compact .module-icon {
    flex: 0 0 42px;
    margin-bottom: 0;
}

/* =========================================================
   11 - CTA
   ========================================================= */
.cta-banner {
    padding: 46px 30px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 20% 20%, rgba(184, 240, 90, .25), transparent 28%),
        radial-gradient(circle at 80% 90%, rgba(255, 255, 255, .14), transparent 30%),
        linear-gradient(135deg, #052e16, #16a34a);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--cd-shadow-lg);
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: .5;
}

.cta-banner > * {
    position: relative;
    z-index: 2;
}

.cta-banner .cd-kicker {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.cta-banner h2 {
    margin: 10px 0;
    font-size: clamp(26px, 4vw, 43px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -1.3px;
}

.cta-banner p {
    max-width: 700px;
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.65;
}

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

/* =========================================================
   12 - POR QUE ESCOLHER
   ========================================================= */
.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    overflow: hidden;
}

.why-image {
    min-height: 420px;
    background: url('../img/why-us-bg.jpg') center/cover;
}

.why-list {
    padding: 34px;
}

.why-item {
    display: flex;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid var(--cd-border);
}

.why-item:last-child {
    border-bottom: 0;
}

.why-item i {
    flex: 0 0 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--cd-primary-soft);
    color: var(--cd-primary);
}

.why-item h3 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 950;
    color: var(--cd-title);
}

.why-item p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================================================
   13 - APP / RECURSOS
   ========================================================= */
.app-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 50px;
    align-items: center;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}

.app-feature {
    padding: 15px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--cd-border);
    transition: var(--cd-transition);
}

.app-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--cd-shadow-sm);
}

.app-feature i {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--cd-primary-soft);
    color: var(--cd-primary);
    margin-bottom: 10px;
}

.app-feature strong {
    display: block;
    font-size: 12px;
    font-weight: 950;
    color: var(--cd-title);
}

.app-feature span {
    display: block;
    margin-top: 4px;
    color: var(--cd-muted);
    font-size: 11px;
    line-height: 1.45;
}

.phone-mockup {
    width: 290px;
    margin: 0 auto;
    filter: drop-shadow(0 28px 42px rgba(16, 24, 40, .18));
}

/* =========================================================
   14 - TIMELINE / COMO FUNCIONA
   ========================================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    padding: 20px;
    position: relative;
    height: 100%;
}

.step-number {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--cd-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 14px;
}

.step-card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 950;
    color: var(--cd-title);
}

.step-card p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12px;
    line-height: 1.6;
}

/* =========================================================
   15 - DEPOIMENTOS
   ========================================================= */
.testimonial-card {
    padding: 20px;
    height: 100%;
}

.stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 12px;
}

.testimonial-card p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12px;
    line-height: 1.65;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 18px;
}

.testimonial-profile img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-profile strong {
    display: block;
    font-size: 13px;
    font-weight: 950;
    color: var(--cd-title);
}

.testimonial-profile span {
    display: block;
    color: var(--cd-muted);
    font-size: 11px;
}

/* =========================================================
   16 - FAQ
   ========================================================= */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--cd-border);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .035);
}

.faq-item h3 {
    margin: 0 0 7px;
    font-size: 14px;
    font-weight: 950;
    color: var(--cd-title);
}

.faq-item p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12.5px;
    line-height: 1.6;
}

/* =========================================================
   17 - FOOTER
   ========================================================= */
.site-footer {
    background: #f6f8fa;
    padding: 70px 0 26px;
    color: var(--cd-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .65fr .65fr .85fr;
    gap: 34px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.footer-brand strong {
    color: var(--cd-dark);
    font-size: 18px;
    font-weight: 950;
}

.footer-text {
    max-width: 420px;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #fff;
    border: 1px solid var(--cd-border);
    color: var(--cd-primary);
    transition: var(--cd-transition);
}

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

.footer-col h4 {
    color: var(--cd-dark);
    font-size: 14px;
    font-weight: 950;
    margin: 0 0 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a,
.footer-col p {
    color: var(--cd-muted);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--cd-primary-dark);
}

.footer-bottom {
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid var(--cd-border);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
}

.footer-bottom strong,
.footer-bottom a {
    color: var(--cd-dark);
    font-weight: 900;
}

.footer-bottom a:hover {
    color: var(--cd-primary-dark);
}

/* =========================================================
   18 - SCROLL TOP / PRELOADER
   ========================================================= */
.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--cd-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--cd-transition);
    z-index: 99;
    box-shadow: 0 14px 30px rgba(19, 159, 75, .26);
}

.scroll-top i {
    font-size: 25px;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--cd-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader:before {
    content: "";
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 4px solid #e5e7eb;
    border-top-color: var(--cd-primary);
    animation: cdSpin .75s linear infinite;
}

@keyframes cdSpin {
    to {
        transform: rotate(360deg);
    }
}

body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

/* =========================================================
   19 - RESPONSIVO
   ========================================================= */
@media (max-width: 1199px) {
    .cd-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        display: block;
        padding: 14px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid var(--cd-border);
        box-shadow: var(--cd-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--cd-transition);
        max-height: calc(100vh - 96px);
        overflow-y: auto;
    }

    body.menu-open .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        border-radius: 14px;
        padding: 13px 14px;
    }

    .nav-dropdown ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        margin: 4px 0 8px 12px;
        min-width: auto;
    }

    .nav-dropdown.open ul {
        display: block;
    }

    .hero-grid,
    .why-grid,
    .app-grid,
    .cd-grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-dashboard {
        max-width: 520px;
    }

    .why-image {
        min-height: 280px;
    }

    .app-grid {
        gap: 34px;
    }

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

@media (max-width: 767px) {
    .cd-section {
        padding: 58px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .cd-container {
        width: min(100% - 24px, 1180px);
    }

    .site-header {
        height: 62px;
    }

    .site-header.scrolled {
        height: 58px;
    }

    .brand img {
        width: 32px;
        height: 32px;
    }

    .brand strong {
        font-size: 14px;
    }

    .mobile-toggle {
        width: 38px;
        height: 38px;
        font-size: 22px;
        border-radius: 12px;
    }

    .nav-menu {
        top: 68px;
        left: 12px;
        right: 12px;
    }

    .cd-hero {
        min-height: auto;
        padding: 96px 0 46px;
    }

    .hero-copy h1 {
        font-size: 38px;
        letter-spacing: -1.7px;
    }

    .hero-copy p {
        font-size: 13.5px;
        line-height: 1.62;
    }

    .hero-actions .cd-btn {
        width: 100%;
    }

    .hero-proof {
        gap: 12px;
    }

    .hero-proof div {
        width: calc(50% - 6px);
        font-size: 11px;
    }

    .hero-dashboard {
        padding: 13px;
        border-radius: 26px;
    }

    .dash-window {
        padding: 15px;
        border-radius: 22px;
    }

    .dash-balance {
        padding: 15px;
        border-radius: 18px;
    }

    .dash-balance h3 {
        font-size: 25px;
    }

    .dash-mini {
        padding: 11px;
        border-radius: 15px;
    }

    .dash-mini strong {
        font-size: 13px;
    }

    .cd-title {
        font-size: 27px;
        letter-spacing: -1px;
    }

    .cd-subtitle {
        font-size: 12.5px;
    }

    .cd-grid-3,
    .cd-grid-4,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .post-thumb {
        height: 142px;
    }

    .service-card,
    .module-card,
    .benefit-card,
    .stat-card,
    .testimonial-card,
    .step-card {
        padding: 17px;
        border-radius: 20px;
    }

    .service-card p,
    .module-card p,
    .benefit-card p,
    .stat-card p,
    .testimonial-card p,
    .step-card p,
    .post-body p {
        font-size: 12px;
    }

    .cta-banner {
        padding: 34px 18px;
        border-radius: 24px;
    }

    .cta-actions .cd-btn {
        width: 100%;
    }

    .why-list {
        padding: 22px;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 230px;
    }

    .site-footer {
        padding: 50px 0 24px;
    }
}

.hero-dashboard[data-tilt] {
    will-change: transform;
    transform-style: preserve-3d;
    transition: none !important;
}

.hero-dashboard[data-tilt] .dash-window {
    transform: translateZ(24px);
}

/* =========================================================
   PÁGINA IMAGENS
   ========================================================= */

.gallery-page {
    background: var(--cd-light);
}

.gallery-hero {
    padding: 128px 0 72px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(184, 240, 90, .24), transparent 32%),
        radial-gradient(circle at 82% 22%, rgba(19, 159, 75, .15), transparent 34%),
        linear-gradient(135deg, #f8fffb 0%, #eefbf4 100%);
}

.gallery-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 24, 40, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 40, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.gallery-hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -2px;
    color: var(--cd-title);
}

.gallery-hero h1 span {
    color: var(--cd-primary);
}

.gallery-hero p {
    margin: 0 auto 22px;
    max-width: 620px;
    color: var(--cd-muted);
    font-size: 15px;
    line-height: 1.7;
}

.gallery-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(229, 231, 235, .8);
    box-shadow: var(--cd-shadow-sm);
    font-size: 12px;
    font-weight: 850;
    color: var(--cd-muted);
}

.gallery-breadcrumb a {
    color: var(--cd-primary-dark);
}

.gallery-breadcrumb strong {
    color: var(--cd-title);
}

.gallery-section {
    padding: 70px 0 86px;
}

.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.gallery-toolbar h2 {
    margin: 0 0 5px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -1px;
    color: var(--cd-title);
}

.gallery-toolbar p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 13px;
}

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

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--cd-border);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .05);
    transition: var(--cd-transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--cd-shadow);
}

.gallery-link {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 22px;
}

.gallery-link img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(6, 78, 44, .72), rgba(19, 159, 75, .48));
    color: #fff;
    opacity: 0;
    transition: opacity .25s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 22px;
}

.gallery-overlay span {
    font-size: 13px;
    font-weight: 900;
}

.gallery-empty {
    padding: 54px 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--cd-border);
    box-shadow: var(--cd-shadow-sm);
    text-align: center;
}

.gallery-empty i {
    font-size: 42px;
    color: var(--cd-primary);
}

.gallery-empty h3 {
    margin: 14px 0 8px;
    font-size: 22px;
    font-weight: 950;
    color: var(--cd-title);
}

.gallery-empty p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 13px;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .gallery-hero {
        padding: 98px 0 50px;
    }

    .gallery-hero h1 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .gallery-hero p {
        font-size: 13px;
    }

    .gallery-section {
        padding: 48px 0 62px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-link {
        aspect-ratio: 1 / .82;
    }

    .gallery-toolbar .cd-btn {
        width: 100%;
    }
}

/* =========================================================
   PÁGINA BLOG
   ========================================================= */

.blog-page {
    background: var(--cd-light);
}

.blog-hero {
    padding: 128px 0 72px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(184, 240, 90, .24), transparent 32%),
        radial-gradient(circle at 82% 22%, rgba(19, 159, 75, .15), transparent 34%),
        linear-gradient(135deg, #f8fffb 0%, #eefbf4 100%);
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 24, 40, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 40, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
    text-align: center;
    margin: 0 auto;
}

.blog-hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -2px;
    color: var(--cd-title);
}

.blog-hero h1 span {
    color: var(--cd-primary);
}

.blog-hero p {
    margin: 0 auto 22px;
    max-width: 650px;
    color: var(--cd-muted);
    font-size: 15px;
    line-height: 1.7;
}

.blog-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(229, 231, 235, .8);
    box-shadow: var(--cd-shadow-sm);
    font-size: 12px;
    font-weight: 850;
    color: var(--cd-muted);
}

.blog-breadcrumb a {
    color: var(--cd-primary-dark);
}

.blog-breadcrumb strong {
    color: var(--cd-title);
}

.blog-section {
    padding: 70px 0 86px;
}

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

.blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.blog-toolbar h2 {
    margin: 0 0 5px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -1px;
    color: var(--cd-title);
}

.blog-toolbar p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 13px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--cd-border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .05);
    transition: var(--cd-transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cd-shadow);
}

.blog-card-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e5e7eb;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .35s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.08);
}

.blog-card-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--cd-primary-dark);
    font-size: 10px;
    font-weight: 950;
}

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

.blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--cd-muted);
    font-size: 10.5px;
    font-weight: 800;
}

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

.blog-card-body h3 {
    margin: 0 0 9px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 950;
    color: var(--cd-title);
}

.blog-card-body h3 a:hover {
    color: var(--cd-primary-dark);
}

.blog-card-body p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12.5px;
    line-height: 1.65;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--cd-primary-dark);
    font-size: 12px;
    font-weight: 950;
}

.blog-pagination {
    margin-top: 30px;
}

.blog-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #fff;
    border: 1px solid var(--cd-border);
    color: var(--cd-muted);
    font-size: 13px;
    font-weight: 900;
    transition: var(--cd-transition);
}

.blog-pagination a:hover,
.blog-pagination .active a {
    background: var(--cd-primary);
    color: #fff;
    border-color: var(--cd-primary);
    box-shadow: 0 12px 24px rgba(19, 159, 75, .22);
}

.blog-sidebar {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 16px;
}

.blog-side-card {
    background: #fff;
    border: 1px solid var(--cd-border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .045);
}

.blog-side-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--cd-title);
    font-size: 15px;
    font-weight: 950;
}

.blog-side-card h3 i {
    color: var(--cd-primary);
}

.blog-side-card p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12.5px;
    line-height: 1.65;
}

.blog-recent-list {
    display: grid;
    gap: 12px;
}

.blog-recent-item {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 11px;
    align-items: center;
    padding: 9px;
    border-radius: 16px;
    transition: var(--cd-transition);
}

.blog-recent-item:hover {
    background: var(--cd-primary-soft);
}

.blog-recent-item img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 14px;
}

.blog-recent-item strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--cd-title);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 950;
}

.blog-recent-item span {
    display: block;
    margin-top: 4px;
    color: var(--cd-muted);
    font-size: 10.5px;
    font-weight: 800;
}

.blog-side-cta {
    border-radius: 26px;
    padding: 22px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(184, 240, 90, .25), transparent 28%),
        linear-gradient(135deg, #052e16, #16a34a);
    box-shadow: var(--cd-shadow);
}

.blog-side-cta span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.blog-side-cta h3 {
    margin: 12px 0 8px;
    color: #fff;
    font-size: 23px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -1px;
}

.blog-side-cta p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .78);
    font-size: 12.5px;
    line-height: 1.6;
}

.blog-empty {
    padding: 54px 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--cd-border);
    box-shadow: var(--cd-shadow-sm);
    text-align: center;
}

.blog-empty i {
    font-size: 42px;
    color: var(--cd-primary);
}

.blog-empty h3 {
    margin: 14px 0 8px;
    font-size: 22px;
    font-weight: 950;
    color: var(--cd-title);
}

.blog-empty p,
.blog-sidebar-empty {
    margin: 0;
    color: var(--cd-muted);
    font-size: 13px;
}

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

    .blog-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-side-cta {
        grid-column: 1 / -1;
    }

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

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

    .blog-hero h1 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .blog-hero p {
        font-size: 13px;
    }

    .blog-section {
        padding: 48px 0 62px;
    }

    .blog-grid,
    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-card-thumb {
        aspect-ratio: 1 / .78;
    }

    .blog-toolbar .cd-btn {
        width: 100%;
    }
}

/* =========================================================
   PÁGINA DETALHE DO BLOG
   ========================================================= */

.blog-detail-page {
    background: var(--cd-light);
}

.blog-detail-hero {
    padding: 126px 0 64px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(184, 240, 90, .24), transparent 32%),
        radial-gradient(circle at 82% 22%, rgba(19, 159, 75, .15), transparent 34%),
        linear-gradient(135deg, #f8fffb 0%, #eefbf4 100%);
}

.blog-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 24, 40, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 24, 40, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.blog-detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-detail-hero h1 {
    margin: 20px auto 18px;
    max-width: 860px;
    color: var(--cd-title);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -2px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(229, 231, 235, .8);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .04);
    color: var(--cd-muted);
    font-size: 11px;
    font-weight: 850;
}

.blog-detail-meta i {
    color: var(--cd-primary);
}

.blog-detail-section {
    padding: 70px 0 88px;
}

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

.blog-detail-main {
    background: #fff;
    border: 1px solid var(--cd-border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
}

.blog-detail-cover {
    background: #e5e7eb;
    overflow: hidden;
}

.blog-detail-cover img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    display: block;
}

.blog-detail-content {
    padding: 34px;
    color: var(--cd-text);
    font-size: 15px;
    line-height: 1.85;
}

.blog-detail-content p {
    margin: 0 0 18px;
}

.blog-detail-content h1,
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--cd-title);
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin: 28px 0 12px;
}

.blog-detail-content h2 {
    font-size: 28px;
}

.blog-detail-content h3 {
    font-size: 22px;
}

.blog-detail-content img {
    max-width: 100%;
    border-radius: 20px;
    margin: 16px 0;
}

.blog-detail-content a {
    color: var(--cd-primary-dark);
    font-weight: 850;
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.blog-detail-content li {
    margin-bottom: 8px;
}

.blog-author-card {
    margin: 0 34px 34px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fffb 0%, #eefbf4 100%);
    border: 1px solid var(--cd-border);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.blog-author-card > img {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-author-card span {
    display: inline-flex;
    margin-bottom: 5px;
    color: var(--cd-primary-dark);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.blog-author-card h3 {
    margin: 0 0 8px;
    color: var(--cd-title);
    font-size: 20px;
    font-weight: 950;
}

.blog-author-card p {
    margin: 0;
    color: var(--cd-muted);
    font-size: 12.5px;
    line-height: 1.65;
}

.blog-author-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.blog-author-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--cd-border);
    color: var(--cd-primary);
    transition: var(--cd-transition);
}

.blog-author-social a:hover {
    background: var(--cd-primary);
    color: #fff;
    transform: translateY(-2px);
}

.blog-detail-sidebar {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 16px;
}

.blog-share {
    display: grid;
    gap: 9px;
}

.blog-share a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    border-radius: 15px;
    background: var(--cd-primary-soft);
    color: var(--cd-primary-dark);
    font-size: 12px;
    font-weight: 950;
    transition: var(--cd-transition);
}

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

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

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

@media (max-width: 575px) {
    .blog-detail-hero {
        padding: 96px 0 46px;
    }

    .blog-detail-hero h1 {
        font-size: 33px;
        letter-spacing: -1.2px;
    }

    .blog-detail-section {
        padding: 46px 0 62px;
    }

    .blog-detail-content {
        padding: 22px;
        font-size: 13.5px;
        line-height: 1.75;
    }

    .blog-author-card {
        margin: 0 22px 22px;
        flex-direction: column;
    }

    .blog-detail-cover img {
        max-height: 280px;
    }
}

/* =====================================================
   CONTATO
=====================================================*/

.contact-page{

    background:var(--cd-light);

}

.contact-hero{

    padding:130px 0 70px;

    background:
        radial-gradient(circle at left,#dfffe7,transparent 45%),
        linear-gradient(135deg,#f8fffb,#eefbf4);

}

.contact-hero-content{

    max-width:760px;

    margin:auto;

    text-align:center;

}

.contact-hero h1{

    font-size:58px;

    font-weight:900;

    color:var(--cd-title);

    margin:18px 0;

}

.contact-hero h1 span{

    color:var(--cd-primary);

}

.contact-layout{

    display:grid;

    grid-template-columns:360px 1fr;

    gap:35px;

    align-items:start;

}

.contact-info{

    display:grid;

    gap:20px;

}

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:28px;

    border:1px solid var(--cd-border);

    box-shadow:var(--cd-shadow-sm);

}

.contact-card i{

    font-size:42px;

    color:var(--cd-primary);

    margin-bottom:15px;

}

.contact-card h3{

    font-size:22px;

    font-weight:900;

}

.contact-card p{

    font-size:13px;

    color:var(--cd-muted);

}

.contact-card a{

    font-weight:900;

    color:var(--cd-primary-dark);

}

.contact-highlight{

    background:linear-gradient(135deg,#0c8b46,#27b35b);

    color:#fff;

}

.contact-highlight strong{

    display:block;

    font-size:26px;

    margin:15px 0;

}

.contact-form-card{

    background:#fff;

    border-radius:30px;

    padding:35px;

    border:1px solid var(--cd-border);

    box-shadow:var(--cd-shadow);

}

.contact-form-card h2{

    font-size:34px;

    font-weight:900;

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    margin-top:25px;

}

.contact-form-card input,

.contact-form-card textarea{

    width:100%;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:15px 18px;

    margin-top:15px;

    transition:.25s;

    outline:none;

}

.contact-form-card input:focus,

.contact-form-card textarea:focus{

    border-color:var(--cd-primary);

    box-shadow:0 0 0 4px rgba(34,197,94,.12);

}

.contact-form-card button{

    margin-top:20px;

}

@media(max-width:991px){

    .contact-layout{

        grid-template-columns:1fr;

    }

}

@media(max-width:600px){

    .form-grid{

        grid-template-columns:1fr;

    }

    .contact-hero h1{

        font-size:38px;

    }

    .contact-form-card{

        padding:25px;

    }

}
.contact-highlight h3{
    color:#fff;
}

.contact-highlight strong{
    color:#fff;
}

.contact-highlight p{
    color:rgba(255,255,255,.88);
}

.contact-highlight{
    color:#fff;
}

/* =========================================================
   PÁGINA CALCULADORA - REGRA DE TRÊS
   ========================================================= */

.calc-page {
   background: var(--cd-light);
}

.calc-hero {
   padding: 128px 0 72px;
   position: relative;
   overflow: hidden;
   background:
      radial-gradient(circle at 14% 20%, rgba(184, 240, 90, .24), transparent 32%),
      radial-gradient(circle at 82% 22%, rgba(19, 159, 75, .15), transparent 34%),
      linear-gradient(135deg, #f8fffb 0%, #eefbf4 100%);
}

.calc-hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image:
      linear-gradient(rgba(16, 24, 40, .035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(16, 24, 40, .035) 1px, transparent 1px);
   background-size: 44px 44px;
   mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
   -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.calc-hero-content {
   position: relative;
   z-index: 2;
   max-width: 780px;
   text-align: center;
   margin: 0 auto;
}

.calc-hero h1 {
   margin: 16px 0 14px;
   font-size: clamp(36px, 5vw, 64px);
   line-height: 1;
   font-weight: 950;
   letter-spacing: -2px;
   color: var(--cd-title);
}

.calc-hero h1 span {
   color: var(--cd-primary);
}

.calc-hero p {
   margin: 0 auto 22px;
   max-width: 640px;
   color: var(--cd-muted);
   font-size: 15px;
   line-height: 1.7;
}

.calc-section {
   padding: 70px 0 88px;
}

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

.calc-card,
.calc-help-card,
.calc-example-card {
   background: #fff;
   border: 1px solid var(--cd-border);
   border-radius: 30px;
   box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
}

.calc-card {
   padding: 30px;
}

.calc-card-head {
   display: flex;
   justify-content: space-between;
   gap: 18px;
   align-items: flex-start;
   margin-bottom: 26px;
}

.calc-card-head span {
   display: inline-flex;
   margin-bottom: 7px;
   color: var(--cd-primary-dark);
   font-size: 11px;
   font-weight: 950;
   text-transform: uppercase;
   letter-spacing: .05em;
}

.calc-card-head h2 {
   margin: 0;
   font-size: clamp(25px, 3vw, 36px);
   line-height: 1.05;
   font-weight: 950;
   letter-spacing: -1px;
   color: var(--cd-title);
}

.calc-card-head > i {
   width: 54px;
   height: 54px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 19px;
   background: var(--cd-primary-soft);
   color: var(--cd-primary);
   font-size: 26px;
   flex-shrink: 0;
}

.rule-box {
   display: grid;
   gap: 18px;
}

.rule-row {
   display: grid;
   grid-template-columns: 1fr auto 1fr;
   gap: 14px;
   align-items: end;
}

.rule-field label {
   display: block;
   margin-bottom: 8px;
   color: var(--cd-title);
   font-size: 12px;
   font-weight: 950;
}

.rule-field input {
   width: 100%;
   height: 54px;
   padding: 0 16px;
   border-radius: 17px;
   border: 1px solid var(--cd-border);
   background: #fff;
   color: var(--cd-title);
   font-size: 16px;
   font-weight: 850;
   outline: none;
   transition: var(--cd-transition);
}

.rule-field input:focus {
   border-color: var(--cd-primary);
   box-shadow: 0 0 0 4px rgba(19, 159, 75, .12);
}

.result-field input {
   background: linear-gradient(135deg, #f8fffb, #eefbf4);
   color: var(--cd-primary-dark);
   cursor: not-allowed;
}

.rule-equal {
   height: 54px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--cd-muted);
   font-size: 11px;
   font-weight: 900;
   text-transform: uppercase;
   white-space: nowrap;
}

.rule-divider {
   display: flex;
   align-items: center;
   gap: 12px;
   color: var(--cd-muted);
   font-size: 11px;
   font-weight: 950;
   text-transform: uppercase;
   letter-spacing: .05em;
}

.rule-divider::before,
.rule-divider::after {
   content: "";
   height: 1px;
   flex: 1;
   background: var(--cd-border);
}

.calc-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 26px;
}

.calc-feedback {
   display: none;
   align-items: center;
   gap: 8px;
   margin-top: 18px;
   padding: 12px 14px;
   border-radius: 16px;
   font-size: 12.5px;
   font-weight: 850;
}

.calc-feedback.success {
   display: flex;
   background: var(--cd-primary-soft);
   color: var(--cd-primary-dark);
}

.calc-feedback.error {
   display: flex;
   background: #fef2f2;
   color: #991b1b;
}

.calc-help {
   display: grid;
   gap: 16px;
}

.calc-help-card {
   padding: 26px;
}

.calc-help-card h3 {
   margin: 14px 0 10px;
   color: var(--cd-title);
   font-size: 25px;
   line-height: 1.08;
   font-weight: 950;
   letter-spacing: -1px;
}

.calc-help-card p {
   margin: 0 0 16px;
   color: var(--cd-muted);
   font-size: 13px;
   line-height: 1.65;
}

.calc-help-card ul {
   display: grid;
   gap: 11px;
   padding: 0;
   margin: 0 0 20px;
   list-style: none;
}

.calc-help-card li {
   display: flex;
   gap: 9px;
   color: var(--cd-text);
   font-size: 12.5px;
   line-height: 1.5;
   font-weight: 700;
}

.calc-help-card li i {
   color: var(--cd-primary);
   font-size: 16px;
   flex-shrink: 0;
   margin-top: 1px;
}

.calc-example-card {
   padding: 24px;
   text-align: center;
   background:
      radial-gradient(circle at 20% 20%, rgba(184, 240, 90, .25), transparent 28%),
      linear-gradient(135deg, #052e16, #16a34a);
   color: #fff;
}

.calc-example-card small,
.calc-example-card span {
   display: block;
   color: rgba(255, 255, 255, .72);
   font-size: 11px;
   font-weight: 900;
   text-transform: uppercase;
}

.calc-example-card strong {
   display: block;
   margin: 6px 0;
   color: #fff;
   font-size: 25px;
   line-height: 1;
   font-weight: 950;
   letter-spacing: -1px;
}

.calc-example-card hr {
   margin: 16px 0;
   border-color: rgba(255, 255, 255, .22);
   opacity: 1;
}

.calc-modal {
   border: 0;
   border-radius: 26px;
   overflow: hidden;
}

.calc-modal .modal-header {
   padding: 22px 24px;
   border-bottom: 1px solid var(--cd-border);
}

.modal-kicker {
   display: block;
   margin-bottom: 5px;
   color: var(--cd-primary-dark);
   font-size: 10px;
   font-weight: 950;
   text-transform: uppercase;
   letter-spacing: .05em;
}

.calc-modal .modal-title {
   color: var(--cd-title);
   font-size: 22px;
   font-weight: 950;
}

.calc-modal .modal-body {
   padding: 24px;
   color: var(--cd-muted);
   font-size: 13.5px;
   line-height: 1.7;
}

.modal-steps {
   display: grid;
   gap: 10px;
   margin: 18px 0;
}

.modal-steps div {
   display: flex;
   gap: 12px;
   align-items: flex-start;
   padding: 13px;
   border-radius: 16px;
   background: var(--cd-primary-soft);
}

.modal-steps strong {
   width: 28px;
   height: 28px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 10px;
   background: var(--cd-primary);
   color: #fff;
   flex-shrink: 0;
   font-size: 12px;
}

.modal-steps span {
   color: var(--cd-text);
   font-size: 12.5px;
   font-weight: 750;
}

.modal-example-img {
   width: 100%;
   border-radius: 20px;
   border: 1px solid var(--cd-border);
   margin-top: 12px;
}

.calc-modal .modal-footer {
   border-top: 1px solid var(--cd-border);
   padding: 18px 24px;
}

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

@media (max-width: 575px) {
   .calc-hero {
      padding: 96px 0 46px;
   }

   .calc-hero h1 {
      font-size: 36px;
      letter-spacing: -1.2px;
   }

   .calc-section {
      padding: 46px 0 62px;
   }

   .calc-card {
      padding: 22px;
      border-radius: 24px;
   }

   .rule-row {
      grid-template-columns: 1fr;
      gap: 10px;
   }

   .rule-equal {
      height: auto;
      justify-content: flex-start;
      padding-left: 4px;
   }

   .calc-actions .cd-btn {
      width: 100%;
   }

   .calc-help-card,
   .calc-example-card {
      border-radius: 24px;
   }
}

/* =========================================================
   PÁGINA JUROS COMPOSTOS
   ========================================================= */

.compound-page {
   background: var(--cd-light);
}

.compound-section {
   padding: 70px 0 88px;
}

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

.compound-form-card,
.compound-chart-card,
.compound-summary-card {
   background: #fff;
   border: 1px solid var(--cd-border);
   border-radius: 30px;
   box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
}

.compound-form-card {
   padding: 30px;
}

.compound-fields {
   display: grid;
   gap: 15px;
}

.compound-field label {
   display: flex;
   align-items: center;
   gap: 7px;
   margin-bottom: 8px;
   color: var(--cd-title);
   font-size: 12px;
   font-weight: 950;
}

.compound-field label i {
   color: var(--cd-primary);
}

.compound-field input {
   width: 100%;
   height: 54px;
   padding: 0 16px;
   border-radius: 17px;
   border: 1px solid var(--cd-border);
   background: #fff;
   color: var(--cd-title);
   font-size: 15px;
   font-weight: 850;
   outline: none;
   transition: var(--cd-transition);
}

.compound-field input:focus {
   border-color: var(--cd-primary);
   box-shadow: 0 0 0 4px rgba(19, 159, 75, .12);
}

.compound-result-area {
   display: grid;
   gap: 18px;
}

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

.compound-summary-card {
   padding: 20px;
}

.compound-summary-card span {
   display: block;
   margin-bottom: 8px;
   color: var(--cd-muted);
   font-size: 11px;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: .04em;
}

.compound-summary-card strong {
   display: block;
   color: var(--cd-primary-dark);
   font-size: 22px;
   line-height: 1.1;
   font-weight: 950;
   letter-spacing: -1px;
}

.compound-chart-card {
   padding: 24px;
}

.compound-chart-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   margin-bottom: 18px;
}

.compound-chart-head span {
   display: block;
   margin-bottom: 5px;
   color: var(--cd-primary-dark);
   font-size: 10px;
   font-weight: 950;
   text-transform: uppercase;
   letter-spacing: .05em;
}

.compound-chart-head h3 {
   margin: 0;
   color: var(--cd-title);
   font-size: 24px;
   font-weight: 950;
   letter-spacing: -1px;
}

.compound-chart-head i {
   width: 46px;
   height: 46px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 16px;
   background: var(--cd-primary-soft);
   color: var(--cd-primary);
   font-size: 22px;
   flex-shrink: 0;
}

.compound-chart-wrap {
   height: 360px;
   position: relative;
}

.compound-table-wrap {
   width: 100%;
   overflow-x: auto;
}

.compound-table {
   width: 100%;
   border-collapse: separate;
   border-spacing: 0 8px;
}

.compound-table thead th {
   padding: 10px 12px;
   color: var(--cd-muted);
   font-size: 11px;
   font-weight: 950;
   text-transform: uppercase;
   letter-spacing: .04em;
   border: 0;
}

.compound-table tbody td {
   padding: 13px 12px;
   background: #f8fafc;
   color: var(--cd-text);
   font-size: 13px;
   font-weight: 800;
}

.compound-table tbody td:first-child {
   border-radius: 14px 0 0 14px;
}

.compound-table tbody td:last-child {
   border-radius: 0 14px 14px 0;
   color: var(--cd-primary-dark);
   font-weight: 950;
}

@media (max-width: 1199px) {
   .compound-layout {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 767px) {
   .compound-summary-grid {
      grid-template-columns: 1fr;
   }

   .compound-chart-wrap {
      height: 300px;
   }
}

@media (max-width: 575px) {
   .compound-section {
      padding: 46px 0 62px;
   }

   .compound-form-card,
   .compound-chart-card {
      padding: 22px;
      border-radius: 24px;
   }

   .compound-summary-card {
      padding: 18px;
      border-radius: 22px;
   }

   .compound-summary-card strong {
      font-size: 20px;
   }

   .compound-chart-head h3 {
      font-size: 21px;
   }

   .compound-chart-wrap {
      height: 260px;
   }

   .calc-actions .cd-btn {
      width: 100%;
   }
}

/* =========================================================
   PÁGINA GANHO POR HORA
   ========================================================= */

.hourly-page {
   background: var(--cd-light);
}

.hourly-section {
   padding: 70px 0 88px;
}

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

.hourly-form-card,
.hourly-result-main,
.hourly-result-card,
.hourly-tip-card {
   background: #fff;
   border: 1px solid var(--cd-border);
   border-radius: 30px;
   box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
}

.hourly-form-card {
   padding: 30px;
}

.hourly-fields {
   display: grid;
   gap: 15px;
}

.hourly-field label {
   display: flex;
   align-items: center;
   gap: 7px;
   margin-bottom: 8px;
   color: var(--cd-title);
   font-size: 12px;
   font-weight: 950;
}

.hourly-field label i {
   color: var(--cd-primary);
}

.hourly-field input {
   width: 100%;
   height: 54px;
   padding: 0 16px;
   border-radius: 17px;
   border: 1px solid var(--cd-border);
   background: #fff;
   color: var(--cd-title);
   font-size: 15px;
   font-weight: 850;
   outline: none;
   transition: var(--cd-transition);
}

.hourly-field input:focus {
   border-color: var(--cd-primary);
   box-shadow: 0 0 0 4px rgba(19, 159, 75, .12);
}

.hourly-results {
   display: grid;
   gap: 18px;
}

.hourly-result-main {
   padding: 32px;
   color: #fff;
   background:
      radial-gradient(circle at 20% 20%, rgba(184, 240, 90, .25), transparent 28%),
      linear-gradient(135deg, #052e16, #16a34a);
   box-shadow: var(--cd-shadow-lg);
}

.hourly-result-main span {
   display: inline-flex;
   padding: 6px 10px;
   border-radius: 999px;
   background: rgba(255, 255, 255, .14);
   color: #fff;
   font-size: 10px;
   font-weight: 950;
   text-transform: uppercase;
   letter-spacing: .04em;
}

.hourly-result-main strong {
   display: block;
   margin: 14px 0 8px;
   color: #fff;
   font-size: clamp(38px, 5vw, 62px);
   line-height: 1;
   font-weight: 950;
   letter-spacing: -2px;
}

.hourly-result-main p {
   margin: 0;
   max-width: 480px;
   color: rgba(255, 255, 255, .78);
   font-size: 13px;
   line-height: 1.65;
}

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

.hourly-result-card {
   padding: 20px;
}

.hourly-result-card i {
   width: 38px;
   height: 38px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 14px;
   background: var(--cd-primary-soft);
   color: var(--cd-primary);
   font-size: 19px;
   margin-bottom: 12px;
}

.hourly-result-card span {
   display: block;
   margin-bottom: 6px;
   color: var(--cd-muted);
   font-size: 11px;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: .04em;
}

.hourly-result-card strong {
   display: block;
   color: var(--cd-primary-dark);
   font-size: 21px;
   line-height: 1.1;
   font-weight: 950;
   letter-spacing: -1px;
}

.hourly-tip-card {
   display: flex;
   gap: 14px;
   align-items: flex-start;
   padding: 22px;
}

.hourly-tip-card > i {
   width: 42px;
   height: 42px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 15px;
   background: var(--cd-primary-soft);
   color: var(--cd-primary);
   font-size: 21px;
   flex-shrink: 0;
}

.hourly-tip-card h3 {
   margin: 0 0 8px;
   color: var(--cd-title);
   font-size: 17px;
   font-weight: 950;
}

.hourly-tip-card p {
   margin: 0;
   color: var(--cd-muted);
   font-size: 12.5px;
   line-height: 1.6;
}

@media (max-width: 1199px) {
   .hourly-layout {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 767px) {
   .hourly-result-grid {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 575px) {
   .hourly-section {
      padding: 46px 0 62px;
   }

   .hourly-form-card,
   .hourly-result-main,
   .hourly-result-card,
   .hourly-tip-card {
      border-radius: 24px;
   }

   .hourly-form-card {
      padding: 22px;
   }

   .hourly-result-main {
      padding: 24px;
   }

   .hourly-result-main strong {
      font-size: 38px;
      letter-spacing: -1px;
   }

   .hourly-tip-card {
      flex-direction: column;
   }

   .calc-actions .cd-btn {
      width: 100%;
   }
}

/* =========================================================
   PÁGINA CONSUMO DO CARRO
   ========================================================= */

.fuel-page {
   background: var(--cd-light);
}

.fuel-section {
   padding: 70px 0 88px;
}

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

.fuel-form-card,
.fuel-result-main,
.fuel-result-card,
.fuel-tip-card {
   background: #fff;
   border: 1px solid var(--cd-border);
   border-radius: 30px;
   box-shadow: 0 18px 45px rgba(16, 24, 40, .06);
}

.fuel-form-card {
   padding: 30px;
}

.fuel-fields {
   display: grid;
   gap: 15px;
}

.fuel-field label {
   display: flex;
   align-items: center;
   gap: 7px;
   margin-bottom: 8px;
   color: var(--cd-title);
   font-size: 12px;
   font-weight: 950;
}

.fuel-field label i {
   color: var(--cd-primary);
}

.fuel-field input {
   width: 100%;
   height: 54px;
   padding: 0 16px;
   border-radius: 17px;
   border: 1px solid var(--cd-border);
   background: #fff;
   color: var(--cd-title);
   font-size: 15px;
   font-weight: 850;
   outline: none;
   transition: var(--cd-transition);
}

.fuel-field input:focus {
   border-color: var(--cd-primary);
   box-shadow: 0 0 0 4px rgba(19, 159, 75, .12);
}

.fuel-results {
   display: grid;
   gap: 18px;
}

.fuel-result-main {
   padding: 32px;
   color: #fff;
   background:
      radial-gradient(circle at 20% 20%, rgba(184, 240, 90, .25), transparent 28%),
      linear-gradient(135deg, #052e16, #16a34a);
   box-shadow: var(--cd-shadow-lg);
}

.fuel-result-main span {
   display: inline-flex;
   padding: 6px 10px;
   border-radius: 999px;
   background: rgba(255, 255, 255, .14);
   color: #fff;
   font-size: 10px;
   font-weight: 950;
   text-transform: uppercase;
   letter-spacing: .04em;
}

.fuel-result-main strong {
   display: block;
   margin: 14px 0 8px;
   color: #fff;
   font-size: clamp(38px, 5vw, 62px);
   line-height: 1;
   font-weight: 950;
   letter-spacing: -2px;
}

.fuel-result-main p {
   margin: 0;
   max-width: 480px;
   color: rgba(255, 255, 255, .78);
   font-size: 13px;
   line-height: 1.65;
}

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

.fuel-result-card {
   padding: 20px;
}

.fuel-result-card i {
   width: 38px;
   height: 38px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 14px;
   background: var(--cd-primary-soft);
   color: var(--cd-primary);
   font-size: 19px;
   margin-bottom: 12px;
}

.fuel-result-card span {
   display: block;
   margin-bottom: 6px;
   color: var(--cd-muted);
   font-size: 11px;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: .04em;
}

.fuel-result-card strong {
   display: block;
   color: var(--cd-primary-dark);
   font-size: 21px;
   line-height: 1.1;
   font-weight: 950;
   letter-spacing: -1px;
}

.fuel-tip-card {
   display: flex;
   gap: 14px;
   align-items: flex-start;
   padding: 22px;
}

.fuel-tip-card > i {
   width: 42px;
   height: 42px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 15px;
   background: var(--cd-primary-soft);
   color: var(--cd-primary);
   font-size: 21px;
   flex-shrink: 0;
}

.fuel-tip-card h3 {
   margin: 0 0 8px;
   color: var(--cd-title);
   font-size: 17px;
   font-weight: 950;
}

.fuel-tip-card p {
   margin: 0;
   color: var(--cd-muted);
   font-size: 12.5px;
   line-height: 1.6;
}

@media (max-width: 1199px) {
   .fuel-layout {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 767px) {
   .fuel-result-grid {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 575px) {
   .fuel-section {
      padding: 46px 0 62px;
   }

   .fuel-form-card,
   .fuel-result-main,
   .fuel-result-card,
   .fuel-tip-card {
      border-radius: 24px;
   }

   .fuel-form-card {
      padding: 22px;
   }

   .fuel-result-main {
      padding: 24px;
   }

   .fuel-result-main strong {
      font-size: 38px;
      letter-spacing: -1px;
   }

   .fuel-tip-card {
      flex-direction: column;
   }

   .calc-actions .cd-btn {
      width: 100%;
   }
}