﻿/* public/assets/css/landing.css */

/* -- Refactored Inline Styles -- */
.hero-badge {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-search {
    min-width: 300px;
}

.avatar-sm {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.dropdown-profile {
    min-width: 200px;
}

/* -- Auth Pages -- */
.card-auth {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.text-habituz {
    color: var(--primary);
    /* using logical name */
}

/* Fallback/Alias if needed */
.btn-habituz {
    background-color: var(--primary);
    color: white;
    border: none;
}


/* -- Concrete Calculator -- */
.bg-terracotta {
    background-color: var(--primary) !important;
}

.text-terracotta {
    color: var(--primary) !important;
}

.btn-check:checked+.btn {
    border-color: var(--primary) !important;
    background-color: #FDF2F1 !important;
    color: var(--primary) !important;
}

.btn-check:checked+.btn .material-symbols-outlined {
    color: var(--primary) !important;
}

/* Result Panel Components */
.custom-result-card {
    border-top: 6px solid var(--primary) !important;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.result-main-box {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.result-main-box .label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
    display: block;
}

.result-main-box h2 {
    font-size: 2.8rem;
    margin: 0;
    color: var(--secondary);
}

.result-main-box h2 small {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.result-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.result-detail-row:last-child {
    border-bottom: none;
}

.result-detail-row__label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.result-detail-row__value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Ads Standard Styling */
.tool-ad-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: white;
    border: 1px solid #F3F4F6;
    height: 100%;
    transition: all 0.2s ease;
}

.tool-ad-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tool-ad-card__img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    padding: 8px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tool-ad-card__body {
    padding: 8px 10px;
}

.tool-ad-card__title {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 1.8rem;
}

.btn-save {
    background-color: #3F3F3F;
    /* Dark from design system */
    color: #FFFFFF;
    border: none;
    transition: all 0.2s ease;
    border-radius: var(--radius-lg);
}

.btn-save:hover {
    background-color: #2D2D2D;
    color: #efcc5d;
    /* Habituz Yellow for text on hover as requested before */
}


:root {
    /* Colors */
    --primary: #9E5A53;
    --primary-hover: #8A4F49;
    --secondary: #3F3F3F;

    --background-light: #F4F6F9;
    --background-dark: #1C1616;

    --text-main: #161313;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    --card-bg: #FFFFFF;

    --hero-bg: #3F3F3F;
    --dark-bg: var(--hero-bg);
    /* Compatibility Fix */

    /* Accents */
    --accent-orange-light: #FFF7ED;
    /* Tailwind orange-50 */

    /* Semantic */
    --success: #28A745;
    --warning: #D97706;
    --danger: #DC2626;

    /* CTA Special */
    --cta-gold: #D4A373;
    --cta-gold-hover: #C29263;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .10);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .16);
}

body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background-color: var(--background-light) !important;
    /* Force gray background */
    color: var(--text-main);
    padding-top: 80px;
    /* Space for fixed header */
    overflow-x: hidden;
    line-height: 1.5;
}

/* Placeholder Styles - Cinza claro para todos os inputs */
::placeholder {
    color: #c4c9d4 !important;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #c4c9d4 !important;
}

::-moz-placeholder {
    color: #c4c9d4 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #c4c9d4 !important;
}

::-ms-input-placeholder {
    color: #c4c9d4 !important;
}

textarea::placeholder {
    color: #c4c9d4 !important;
}

/* Utilities */
.bg-gray-bg {
    background-color: var(--background-light) !important;
}

.text-terracotta {
    color: var(--primary) !important;
}

.bg-terracotta {
    background-color: var(--primary) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

.shadow-custom-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-custom-md {
    box-shadow: var(--shadow-md) !important;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    /* Bold titles */
    letter-spacing: -0.02em;
    /* Tight tracking */
    color: var(--secondary);
}

/* Ensure white text in dark headers overrides the general h1/h2 color */
.text-white h1,
.text-white h2,
.text-white h3,
.text-white span,
.text-white p,
.text-white {
    color: #ffffff !important;
}

.x-small {
    font-size: 0.75rem;
    /* 12px approx */
    letter-spacing: 0.05em;
}

/* Floating Navbar */
.navbar-floating {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    height: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 16px !important;
    /* Spacious click area */
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--primary);
    background-color: rgba(0, 0, 0, 0.02);
}

.nav-link.active {
    color: var(--secondary) !important;
    background-color: var(--accent-orange-light);
    font-weight: 700;
}

/* Buttons */
.btn {
    font-family: 'Manrope', sans-serif;
    border-radius: var(--radius-lg);
    /* 12px */
    font-weight: 600;
}

.btn-terracotta {
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 10px 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.2s;
}

.btn-terracotta:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    color: var(--text-main);
}

.btn-light:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

/* Hero Section */
.hero-section {
    background-color: var(--hero-bg);
    color: white;
    padding: 120px 0 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    /* ~60px responsive */
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
}

.hero-title span {
    color: var(--hero-accent-1);
    /* #C97C74 */
}

.hero-subtitle {
    font-size: 1.125rem;
    /* 18px */
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto 48px;
    font-weight: 300;
    line-height: 1.6;
}

/* Search Bar */
.hero-search {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 6px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s;
    position: relative;
    z-index: 2;
    /* Ensure it stays above if needed */
}

.hero-search:focus-within {
    transform: scale(1.01);
}

.hero-search input {
    border: none;
    box-shadow: none;
    padding-left: 16px;
    font-size: 1rem;
    height: 48px;
    color: var(--text-main);
    background: transparent;
}

.hero-search input:focus {
    box-shadow: none;
    background: transparent;
}

.hero-search button {
    border-radius: var(--radius-full);
    padding: 12px 32px;
    font-weight: 700;
}

/* Tool Cards */
.tool-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Extremely subtle */
    padding: 32px;
    border-radius: var(--radius-lg);
    /* 12px */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    transition: all 0.2s;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tool-icon {
    width: 48px;
    height: 48px;
    background-color: #FFF5F4;
    /* Lightest terracotta */
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.tool-title {
    font-weight: 800;
    font-size: 1.25rem;
    /* 20px */
    margin-bottom: 12px;
    color: var(--secondary);
}

.tool-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.tool-link {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.tool-card:hover .tool-link {
    gap: 8px;
    /* Icon expands */
    color: var(--primary-hover);
}

/* CTA Box - Quanto Custa */
.cta-box {
    background-color: var(--cta-gold);
    /* #D4A373 */
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.cta-box h2 {
    color: white;
}

/* Articles */
.article-card {
    border: 1px solid transparent;
    /* Remove border */
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.article-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.article-body {
    padding: 24px;
}

.article-tag {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5a3d39; /* Cor mais escura para melhor contraste (WCAG) */
    background: #f0e6e4; /* Fundo levemente rosado para combinar */
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
}

.article-title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--secondary);
    line-height: 1.3;
}

.article-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid #f3f4f6;
    color: var(--text-muted);
}

.footer-logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.newsletter-input {
    background: #FAFAFA;
    border: 1px solid #eee;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.newsletter-btn {
    background: var(--secondary);
    color: white;
    font-weight: 600;
    border: none;
    padding: 12px;
    border-radius: var(--radius-md);
    width: 100%;
    margin-top: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-section {
        /* Removed ellipse - design system mandates rectangular hero */
        padding-bottom: 120px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }
}

.hover-opacity {
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.hover-opacity:hover {
    opacity: 0.7;
}

/* --- CALCULATOR TOOLS COMPONENTS --- */

/* Step Number Badge */
.tool-step-badge {
    background-color: var(--primary);
    color: #FFFFFF !important;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

/* Step Title */
.tool-step-title {
    color: var(--primary);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Info Box (Contextual data display) - Refined: Icon | Line | Data */
.tool-info-box {
    background-color: #2D7CBF;
    /* Standard Blue for Info */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    color: white !important;
}

.tool-info-box__icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    /* Vertical Line */
}

.tool-info-box__content {
    padding: 0.8rem 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tool-info-box__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 2px;
    color: white !important;
}

.tool-info-box__value {
    font-weight: 700;
    font-size: 1rem;
    color: white !important;
    line-height: 1.2;
}

.tool-info-box__divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
}

/* Standardized Form Controls for Tools */
.tool-form-control,
.tool-form-select {
    border-radius: var(--radius-md) !important;
    padding: 0.8rem 1rem !important;
    border: 1px solid #e5e7eb !important;
    color: var(--text-main) !important;
    font-weight: 500 !important;
    box-shadow: var(--shadow-sm) !important;
    height: auto !important;
}

.tool-form-control:focus,
.tool-form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(158, 90, 83, 0.1) !important;
    background-color: #fff !important;
}

/* Add Item Button */
.tool-btn-add {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
    background: transparent;
    border: none;
    padding: 0;
}

.tool-btn-add:hover {
    color: var(--primary-hover);
    opacity: 0.8;
}

/* Responsibility Terms Box */
.tool-terms-box {
    background-color: #FFFBEB;
    /* Light Warning */
    border: 1px solid #FEF3C7;
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* Animation Classes for CTA */
@keyframes float {
    0% {
        transform: translateY(0px) scale(1.1);
    }

    50% {
        transform: translateY(-15px) scale(1.1);
    }

    100% {
        transform: translateY(0px) scale(1.1);
    }
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-5px);
}


/* Autocomplete */
.autocomplete-list {
    border: 1px solid #e1e4e8;
    max-height: 300px;
    overflow-y: auto;
}

.hover-bg-light:hover {
    background-color: #f8f9fa;
    color: var(--primary) !important;
}

.hover-bg-light span.material-symbols-outlined {
    font-size: 1.2rem;
}


/* =====================================================
   LIVE SEARCH DROPDOWN - DESIGN SYSTEM COMPLIANT
   ===================================================== */

/* Container do Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1060;
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header de Categoria */
.search-category-header {
    padding: 10px 16px 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    background: #F8F9FA;
    border-bottom: 1px solid #f0f0f0;
}

.search-category-header:not(:first-child) {
    border-top: 1px solid #f0f0f0;
}

/* Item de Resultado */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.15s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.search-result-item:hover {
    background: linear-gradient(90deg, rgba(158, 90, 83, 0.08), transparent);
}

.search-result-item:hover .search-result-item__arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

.search-result-item:hover .search-result-item__icon {
    background: var(--primary);
    color: white;
}

/* �cone do Item */
.search-result-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #F4F6F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-result-item__icon .material-symbols-outlined {
    font-size: 20px;
}

/* Conte�do do Item */
.search-result-item__content {
    flex: 1;
    min-width: 0;
}

.search-result-item__title {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-item__desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Seta do Item */
.search-result-item__arrow {
    font-size: 18px;
    color: #ccc;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}

/* Link Ver Todos */
.search-see-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #F8F9FA, #F4F6F9);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border-top: 1px solid #e8e8e8;
    transition: all 0.2s ease;
}

.search-see-all:hover {
    background: var(--primary);
    color: white;
}

.search-see-all .material-symbols-outlined {
    font-size: 20px;
}



/* --- Rich Article Components (Novo Design 2026) --- */

/* Títulos com barra lateral */
.rich-article-title {
    position: relative;
    padding-left: 20px;
    margin-bottom: 2rem;
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.75rem;
}

.rich-article-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 5px;
    background-color: var(--primary);
    /* Terracotta */
    border-radius: 4px;
}

/* Feature Cards (Grid de ícones) */
.feature-card {
    background-color: #F9FAFB;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

.feature-card:hover {
    background-color: #fff;
    border-color: #eee;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-card__icon {
    font-size: 24px;
    color: var(--primary);
    margin-right: 1rem;
    background: #FFF1F0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    float: left;
}

/* Tabela de Preços Estilizada */
.price-table-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
}

.price-table-header {
    background-color: #9E5A53;
    /* Terracota Original */
    color: #ffffff !important;
    padding: 1rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
}

.price-table-header div {
    color: #ffffff !important;
}

.price-table-row {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.price-table-row:last-child {
    border-bottom: none;
}

.price-table-row:nth-child(even) {
    background-color: #FAFAFA;
}

.price-table-row:hover {
    background-color: #FFF1F0;
}

.price-col-1 {
    flex: 2;
    font-weight: 600;
    color: var(--secondary);
}

.price-col-2 {
    flex: 1;
    text-align: right;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price-col-3 {
    flex: 1;
    text-align: right;
    color: var(--text-main);
    font-weight: 700;
}

/* CTA 'Simule o custo' limpo */
.cta-clean {
    background-color: #FCFBF9;
    /* Off-white muito sutil */
    border: 1px solid #EFEAE4;
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

@media (max-width: 768px) {
    .cta-clean {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
}

/* Cards de Exemplo com Imagem */
.example-card {
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.example-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
    border-color: #E5E7EB;
}

.example-card__img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.example-card__body {
    padding: 1.5rem;
}

.example-card__price {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.35rem;
    margin: 0.25rem 0 0.5rem;
}

/* Pills de Ferramentas */
.tool-pill {
    background-color: #F8F9FA;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.tool-pill:hover {
    background-color: #fff;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tool-pill i {
    font-size: 16px;
}


/* =====================================================
   ARTICLE CLEAN DESIGN SYSTEM v2 (2026)
   Padrão para todos os artigos do site Habituz
   ===================================================== */

/* Container do Artigo */
.article-content {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-main);
}

.article-content p {
    margin-bottom: 1.5rem;
}

/* Lead/Introdução */
.article-lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
}

/* Títulos de Seção (H2) */
.article-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Subtítulos (H3) */
.article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Subtítulos menores (H4) */
.article-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

/* Texto em Destaque (inline) */
.article-content strong {
    color: var(--secondary);
    font-weight: 700;
}

.article-content em {
    font-style: italic;
    color: var(--text-muted);
}

/* Links */
.article-content a:not(.btn) {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.article-content a:not(.btn):hover {
    color: var(--primary-hover);
}

/* Listas */
.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.6rem;
}

/* Box de Destaque Principal (use com moderação - max 2 por artigo) */
.article-highlight {
    background: linear-gradient(135deg, #FEFCFB 0%, #FDF5F3 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}

.article-highlight-title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-highlight p {
    margin-bottom: 0;
    color: var(--text-main);
}

/* Tabela Limpa */
.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.article-table thead {
    background: var(--secondary);
    color: #fff;
}

.article-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f5f5f5;
    color: var(--text-main);
}

.article-table tbody tr:last-child td {
    border-bottom: none;
}

.article-table tbody tr:hover {
    background: #FAFAFA;
}

.article-table tfoot {
    background: #F8F9FA;
    font-weight: 700;
}

.article-table tfoot td {
    border-bottom: none;
    padding: 1.25rem;
}

/* Valor Positivo/Negativo na Tabela */
.val-positive {
    color: #16A34A;
    font-weight: 600;
}

.val-negative {
    color: #DC2626;
    font-weight: 600;
}

.val-neutral {
    color: var(--text-muted);
}

/* Box de Veredito/Conclusão */
.article-verdict {
    background: #FFFBEB;
    border: 1px solid #FEF3C7;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.article-verdict-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: #B45309;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-verdict p {
    margin-bottom: 0;
    color: #78350F;
}

/* Lista de Pontos (substitui os feature cards) */
.article-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.article-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 10px;
    transition: background 0.2s;
}

.article-point:hover {
    background: #F3F4F6;
}

.article-point-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.article-point-icon.negative {
    background: #DC2626;
}

.article-point-content strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.article-point-content span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Comparativo Visual (2 colunas) */
.article-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

@media (max-width: 768px) {
    .article-compare {
        grid-template-columns: 1fr;
    }
}

.article-compare-col {
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.article-compare-col.option-a {
    background: #FEF2F2;
    border: 2px solid #FECACA;
}

.article-compare-col.option-b {
    background: #F0FDF4;
    border: 2px solid #BBF7D0;
}

.article-compare-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.article-compare-col.option-a .article-compare-value {
    color: #DC2626;
}

.article-compare-col.option-b .article-compare-value {
    color: #16A34A;
}

.article-compare-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.article-compare-list {
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-main);
}

.article-compare-list li {
    margin-bottom: 0.4rem;
}

/* CTA de Artigo (final) */
.article-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #8A4F49 100%);
    color: #fff;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.article-cta h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #fff;
}

.article-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta .btn {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mitos/FAQ Simples */
.article-myth {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.article-myth:last-child {
    border-bottom: none;
}

.article-myth-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.article-myth h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.article-myth p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.article-myth p strong {
    color: #16A34A;
}

/* Links Relacionados */
.article-related {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.article-related h4 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.article-related-link {
    display: block;
    padding: 1.25rem;
    background: #F9FAFB;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.article-related-link:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.article-related-link span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

.article-related-link strong {
    font-size: 1rem;
    color: var(--secondary);
}

.article-related-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

/* Sumário/Índice */
.article-toc {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.article-toc h4 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    margin-top: 0;
}

.article-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.article-toc li {
    margin: 0;
}

.article-toc a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    transition: color 0.2s;
}

.article-toc a:hover {
    color: var(--primary);
}

.article-toc a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
}