:root {
    --primary: #059669; 
    --primary-rgb: 5, 150, 105;
    --primary-dark: #064e3b;
    --primary-dark-rgb: 6, 78, 59;
    --secondary: #0f172a; 
    --secondary-rgb: 15, 23, 42;
    --accent: #f59e0b; 
    --accent-hover: #d97706;
    --accent-wa: #25D366;
    --accent-wa-hover: #1ebd56;
    --light: #f8fafc;
    --white: #ffffff;
    --text: #334155;
    --text-light: #64748b;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

.cft-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: var(--light);
    padding: 8px 14px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.cft-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.cft-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.cft-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.cft-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.cft-credential {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 18px 30px;
    margin: 40px auto 20px;
    max-width: 520px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.cft-credential-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.cft-credential-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cft-credential-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
}

.cft-credential-text span {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* WhatsApp icon — PNG transparente */
.wa-icon {
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

/* Hero Section */
.hero {
    padding: 160px 5% 120px;
    background: linear-gradient(135deg, rgba(var(--primary-dark-rgb), 0.95) 0%, rgba(var(--secondary-rgb), 0.95) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* NOVO: Imagem ou Vídeo de fundo no Hero */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Buttons */
.cta-button {
    background: var(--accent);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: var(--accent-hover);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.cta-button.outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.cta-button.outline:hover {
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateY(-3px);
}

.cta-button.outline-white {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
    box-shadow: none;
}

.cta-button.outline-white:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Brands Bar */
.brands {
    background: var(--white);
    padding: 40px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.brands img {
    height: 40px;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.brands img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Fallback text se não tiver imagem das marcas */
.brands span {
    font-weight: 800;
    color: #cbd5e1;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.brands span:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Services Grid */
.services {
    padding: 80px 5%;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary);
}

.card-content {
    padding: 30px;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(var(--primary-rgb), 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(var(--primary-rgb), 0.1);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(var(--primary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    transition: var(--transition);
}

.card:hover .card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 700;
}

.card p {
    color: var(--text-light);
}

/* Video Section */
.video-section {
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.video-container video {
    width: 100%;
    display: block;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
    background: var(--white);
    overflow: hidden;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials .section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 800;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.testimonial-slider {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 5px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: #64748B;
    position: absolute;
    z-index: 10;
    transition: var(--transition);
}

.slider-btn:hover {
    background: #f8fafc;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.prev-btn { left: -22px; }
.next-btn { right: -22px; }

.google-review-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #94A3B8;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 15px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
}

.verified-icon {
    width: 16px !important;
    height: 16px !important;
    margin-left: 5px;
}

.google-review-card .review-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
}

/* Confidence Section */
.confidence {
    padding: 80px 5%;
    background: linear-gradient(to bottom, var(--white), var(--light));
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    padding: 50px 40px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    flex: 1;
    min-width: 280px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.stat-item:hover .stat-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.stat-item h4 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item p {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-grid h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.cities ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cities li {
    font-size: 0.95rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cities li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.2rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 1001;
    transition: var(--transition);
    animation: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
}

/* Imagem da logo WA no botão flutuante */
.whatsapp-float .wa-icon {
    width: 65px !important;
    height: 65px !important;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0%   { filter: drop-shadow(0 0 0px   rgba(37, 211, 102, 0.9)); }
    70%  { filter: drop-shadow(0 0 18px  rgba(37, 211, 102, 0)); }
    100% { filter: drop-shadow(0 0 0px   rgba(37, 211, 102, 0)); }
}

/* FAQ Section */
.faq-section {
    background-color: var(--secondary);
    padding: 80px 5%;
    color: var(--white);
}

.faq-section .section-title h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.faq-item:hover {
    border-left: 4px solid var(--primary);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    color: var(--primary);
    background-color: #f8fafc;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.faq-item[open] summary {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item[open] summary::after {
    content: '-';
    background-color: var(--secondary);
    transform: rotate(180deg);
}

.faq-content {
    padding: 20px 25px 25px 25px;
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
}

@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    .whatsapp-float, header { display: none !important; }
    body { margin: 0; }
    .hero { padding: 40px 5% !important; }
}

@media (max-width: 992px) {
    nav { display: none; }
    .header-left { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero h1 { font-size: 2.8rem; }
    .blog-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .section-title h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    header {
        padding: 12px 4%;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .header-left {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex: 1;
        min-width: 0;
    }

    .logo-container svg {
        height: 38px !important;
    }

    .logo-img {
        height: 44px !important;
        flex-shrink: 0;
    }

    .cft-badge {
        gap: 6px;
        padding: 5px 8px;
        border-radius: 6px;
        border-left: 2px solid var(--primary);
        background: rgba(var(--primary-rgb), 0.05);
    }

    .cft-logo-img {
        height: 20px;
    }

    .cft-label {
        display: none;
    }

    .cft-number {
        font-size: 0.7rem;
        font-weight: 600;
    }

    .hero { padding: 120px 5% 80px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.05rem; }
    .stat-item { width: 100%; }

    .section-title h2 { font-size: 2rem; }
    .section-title p { font-size: 0.95rem; }

    .blog-section { padding: 60px 4%; }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .blog-image-wrapper { height: 180px; }
    .blog-card-content { padding: 22px; }

    .cft-credential {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
        max-width: 90%;
    }

    .brands {
        gap: 20px;
        padding: 25px 4%;
    }
    .brands span { font-size: 0.9rem; }

    .services { padding: 60px 4%; }
    .confidence { padding: 60px 4%; }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat-item {
        min-width: unset;
        padding: 35px 25px;
    }

    .faq-section { padding: 60px 4%; }
    .faq-item summary { font-size: 0.95rem; padding: 16px 20px; }
    .faq-content { padding: 16px 20px 20px; }

    footer { padding: 60px 4% 25px; }
    .footer-grid { gap: 35px; }

    .google-review-card {
        min-width: 280px;
        max-width: 280px;
    }

    .whatsapp-float { bottom: 18px; right: 18px; }
    .whatsapp-float .wa-icon {
        width: 55px !important;
        height: 55px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; letter-spacing: -0.5px; }
    .hero p { font-size: 0.95rem; margin-bottom: 30px; }
    .cta-button { padding: 14px 28px; font-size: 1rem; }
    .card h3 { font-size: 1.15rem; }
    .section-title h2 { font-size: 1.7rem; }
    .stat-item h4 { font-size: 1.8rem; }
    .blog-card h3 { font-size: 1.1rem; }
    .blog-btn { font-size: 0.85rem; padding: 10px 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .logo-container svg { height: 32px !important; }
    .cft-badge { padding: 4px 6px; }
    .cft-number { font-size: 0.6rem; }
}

/* ==========================================================================
   Stagger Animation for Cards
   ========================================================================== */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* ==========================================================================
   Nova Seção: Hub de Conteúdo / Blog para SEO
   ========================================================================== */
.blog-section {
    padding: 80px 5%;
    background: var(--light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(var(--primary-rgb), 0.1);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    align-self: flex-start;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    background: var(--primary);
    padding: 12px 20px;
    border-radius: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.blog-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

