﻿/*
Theme Name: Grow Blog
Theme URI: https://growanimation.co/blog/
Author: Grow Animation
Description: Premium dark/glassmorphism blog theme with soft-light reading mode
Version: 1.0.0
Requires PHP: 7.4
Text Domain: grow-blog
*/

/* =====================================================================
   1. DESIGN TOKENS
   Dark chrome derived from the Grow Animation landing page, plus a
   dessaturated "Soft Light" reading palette for long-form articles.
   ===================================================================== */
:root {
    /* Brand identity */
    --primary: #FFB200;
    --primary-active: #FF9100;
    --primary-disabled: #FFDD6E;
    --ink: #371A45;

    /* Dark canvas & surfaces (chrome) */
    --canvas-dark: #0e0414;
    --canvas-section-dark: #160721;
    --surface-card-dark: rgba(30, 14, 49, 0.45);
    --surface-elevated-dark: rgba(82, 43, 109, 0.35);

    /* Text on dark */
    --text-main: #FFFFFF;
    --text-muted: #B6CAFF;
    --text-muted-strong: #986DD6;

    /* Accents & glows */
    --accent-blue: #00ABE4;
    --trading-up: #59CCC7;
    --white: #ffffff;
    --purple-glow: rgba(152, 109, 214, 0.35);
    --gold-glow: rgba(255, 178, 0, 0.35);
    --blue-glow: rgba(0, 171, 228, 0.25);

    /* --- SOFT LIGHT READING PALETTE (NN/g compliant) ---
       Never pure white / pure black. Warm, low-chroma parchment tones
       derived from the purple/gold identity for AAA contrast comfort. */
    --read-bg: #F3EFF7;            /* dessaturated lilac-white canvas */
    --read-surface: #FBFAFD;       /* slightly brighter reading sheet */
    --read-text: #241832;          /* deep desaturated plum (not #000) */
    --read-text-soft: #4A3C5C;     /* secondary body / meta */
    --read-heading: #1C1029;       /* headings, strongest ink */
    --read-border: #E2D9EE;        /* hairline rules on light */
    --read-code-bg: #EDE7F5;       /* inline code / pre background */
    --read-link: #7A3FD0;          /* accessible purple link on light */
    --read-link-hover: #5B2AA6;
    --read-quote-bar: var(--primary);

    /* Fonts (match landing page: Poppins headings, Nunito body) */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Radii & motion */
    --round-sm: 8px;
    --round-md: 15px;
    --round-lg: 24px;
    --round-full: 9999px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* Reading measure */
    --read-measure: 750px;
}

/* =====================================================================
   2. RESET & BASE
   ===================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text-muted);
    background-color: var(--canvas-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.2;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.site-content {
    flex: 1 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Accessibility: skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--primary);
    color: var(--ink);
    padding: 12px 20px;
    border-radius: 0 0 var(--round-sm) 0;
    font-family: var(--font-display);
    font-weight: 700;
}
.skip-link:focus {
    left: 0;
}

/* Global focus-visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    word-wrap: normal !important;
}

/* =====================================================================
   3. BACKGROUND GLOWS (dark chrome ambience)
   ===================================================================== */
.site-bg-glows {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
}
.bg-glow {
    position: absolute;
    border-radius: var(--round-full);
    filter: blur(150px);
    opacity: 0.12;
    mix-blend-mode: screen;
}
.glow-1 { top: -5%; left: 8%; width: 600px; height: 600px; background: var(--primary); }
.glow-2 { top: 20%; right: 2%; width: 700px; height: 700px; background: var(--accent-blue); }
.glow-3 { top: 55%; left: 10%; width: 650px; height: 650px; background: var(--text-muted-strong); }
.glow-4 { top: 85%; right: 6%; width: 700px; height: 700px; background: var(--primary-active); }

/* =====================================================================
   4. HEADER (glassmorphism, fixed)
   ===================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.site-header.scrolled {
    background: rgba(14, 4, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.site-branding .header-logo,
.site-branding .custom-logo-link img {
    width: auto;
    height: 64px;
    filter: brightness(0) invert(1); /* SVG escuro visivel no header dark (igual LP) */
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.main-nav ul a {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.85;
    position: relative;
    padding: 6px 0;
}
.main-nav ul a:hover,
.main-nav ul .current-menu-item > a {
    opacity: 1;
    color: var(--primary);
}
.main-nav ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}
.main-nav ul a:hover::after,
.main-nav ul .current-menu-item > a::after {
    width: 100%;
}

.btn-quote {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 26px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-active) 100%);
    color: var(--ink);
    border: none;
    border-radius: var(--round-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition-smooth);
}
.btn-quote:hover {
    background: linear-gradient(135deg, var(--primary-active) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--gold-glow);
    color: var(--ink);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    padding: 6px;
    line-height: 0;
}
.mobile-menu-toggle svg { width: 30px; height: 30px; }

/* Mobile overlay nav */
.navbar-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(14, 4, 20, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}
.navbar-mobile.active { right: 0; }
.navbar-mobile .close-menu {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--white);
    background: none;
    border: none;
    line-height: 0;
}
.navbar-mobile .close-menu svg { width: 34px; height: 34px; }
.navbar-mobile ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.navbar-mobile ul a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}
.navbar-mobile ul a:hover { color: var(--primary); }

/* =====================================================================
   5. SHARED BUTTONS
   ===================================================================== */
.btn-premium-solid {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-active) 100%);
    color: var(--ink);
    border: none;
    border-radius: var(--round-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px var(--gold-glow), 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.btn-premium-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--gold-glow), 0 4px 12px rgba(0, 0, 0, 0.4);
    color: var(--ink);
}
.btn-premium-outline {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 34px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--round-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-smooth);
}
.btn-premium-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 8px 20px var(--gold-glow);
    transform: translateY(-3px);
}

/* =====================================================================
   6. PAGE HERO / HEADERS (archive, blog home, search, 404)
   ===================================================================== */
.page-hero {
    padding: 170px 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.page-hero .eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 14px;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #ffffff 45%, var(--primary) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-hero p.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =====================================================================
   7. POST GRID (blog home, archives, search) â€” pure CSS Grid
   3 desktop / 2 tablet / 1 mobile
   ===================================================================== */
.blog-archive-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
@media (max-width: 992px) {
    .blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .blog-archive-grid { grid-template-columns: 1fr; }
}

/* Card */
.post-card {
    background: var(--surface-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--round-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    height: 100%;
}
.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: 0.7s ease;
    z-index: 4;
    pointer-events: none;
}
.post-card:hover::before { left: 100%; }
.post-card:hover {
    transform: translateY(-8px);
    border-color: rgba(152, 109, 214, 0.45);
    background: rgba(43, 20, 69, 0.55);
    box-shadow: 0 22px 45px rgba(152, 109, 214, 0.18), 0 8px 18px var(--gold-glow);
}

.post-card-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(180deg, #2a1240 0%, #160721 100%);
}
.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.post-card:hover .post-card-thumb img { transform: scale(1.06); }
.post-card-thumb .thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
}
.post-card-thumb .thumb-placeholder svg { width: 64px; height: 64px; }

.post-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.post-card-cat {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
    display: inline-block;
}
.post-card-cat:hover { color: var(--primary-active); }
.post-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}
.post-card-title a { color: var(--white); }
.post-card-title a:hover { color: var(--primary); }
.post-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted-strong);
    margin-bottom: 18px;
    margin-top: auto;
}
.post-card-meta time { display: inline-flex; align-items: center; gap: 6px; }
.post-card-meta svg { width: 15px; height: 15px; opacity: 0.8; }
.post-card-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}
.post-card-more svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.post-card:hover .post-card-more svg { transform: translateX(4px); }

/* Featured (first) card spanning wider on desktop for hierarchy */
.blog-archive-grid.has-featured .post-card.is-featured {
    grid-column: 1 / -1;
    flex-direction: row;
}
@media (min-width: 993px) {
    .blog-archive-grid.has-featured .post-card.is-featured .post-card-thumb {
        width: 55%;
        aspect-ratio: auto;
    }
    .blog-archive-grid.has-featured .post-card.is-featured .post-card-body {
        width: 45%;
        justify-content: center;
        padding: 40px;
    }
    .blog-archive-grid.has-featured .post-card.is-featured .post-card-title {
        font-size: 1.9rem;
    }
    .blog-archive-grid.has-featured .post-card.is-featured .post-card-excerpt {
        -webkit-line-clamp: 4;
        font-size: 1.05rem;
    }
}
@media (max-width: 992px) {
    .blog-archive-grid.has-featured .post-card.is-featured { flex-direction: column; }
}

/* =====================================================================
   8. PAGINATION
   ===================================================================== */
.grow-pagination {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.grow-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.grow-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    border-radius: var(--round-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--surface-card-dark);
    color: var(--text-muted);
    font-family: var(--font-display);
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}
.grow-pagination .page-numbers:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.grow-pagination .page-numbers.current {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-active) 100%);
    color: var(--ink);
    border-color: transparent;
    box-shadow: 0 6px 18px var(--gold-glow);
}
.grow-pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
}

/* =====================================================================
   9. CHROME â†’ LIGHT TRANSITION + SINGLE ARTICLE (Soft Light Mode)
   ===================================================================== */
/* Elegant gradient ramp from dark chrome into the light reading canvas */
.reading-ramp {
    height: 160px;
    background: linear-gradient(to bottom,
        var(--canvas-dark) 0%,
        #2a1a3d 40%,
        #7c6a90 72%,
        var(--read-bg) 100%);
    position: relative;
    z-index: 2;
}

.single-wrapper {
    background: var(--read-bg);
    color: var(--read-text);
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}

/* Breadcrumb */
.grow-breadcrumb {
    max-width: var(--read-measure);
    margin: 0 auto;
    padding: 28px 24px 0;
    font-family: var(--font-display);
    font-size: 0.82rem;
    color: var(--read-text-soft);
}
.grow-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.grow-breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.grow-breadcrumb a { color: var(--read-link); font-weight: 600; }
.grow-breadcrumb a:hover { color: var(--read-link-hover); }
.grow-breadcrumb .sep { color: var(--read-border); }
.grow-breadcrumb [aria-current="page"] { color: var(--read-text-soft); opacity: 0.85; }

/* Article header */
.single-article {
    max-width: var(--read-measure);
    margin: 0 auto;
    padding: 0 24px;
}
.single-header { padding: 24px 0 8px; }
.single-header .post-cat-line {
    margin-bottom: 16px;
}
.single-header .post-cat-line a {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--read-link);
    background: var(--read-code-bg);
    padding: 6px 14px;
    border-radius: var(--round-full);
}
.single-header .post-cat-line a:hover { background: #e2d4f5; color: var(--read-link-hover); }
.single-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 2.9rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--read-heading);
    margin-bottom: 20px;
}
.single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    font-size: 0.9rem;
    color: var(--read-text-soft);
    padding-bottom: 26px;
    border-bottom: 1px solid var(--read-border);
}
.single-meta .meta-item { display: inline-flex; align-items: center; gap: 7px; }
.single-meta svg { width: 17px; height: 17px; opacity: 0.7; }
.single-meta .author-name { font-weight: 600; color: var(--read-text); }

/* Featured banner */
.single-featured {
    max-width: 1000px;
    margin: 32px auto 8px;
    padding: 0 24px;
}
.single-featured img {
    width: 100%;
    border-radius: var(--round-lg);
    box-shadow: 0 24px 60px rgba(36, 24, 50, 0.22);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Article body â€” the reading measure lives here */
.single-content {
    max-width: var(--read-measure);
    margin: 40px auto 0;
    padding: 0 24px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--read-text);
}
.single-content > * { margin-bottom: 1.5em; }
.single-content p { color: var(--read-text); }
.single-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--read-heading);
    line-height: 1.25;
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.single-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--read-heading);
    margin-top: 1.6em;
    margin-bottom: 0.5em;
}
.single-content h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--read-heading);
    margin-top: 1.4em;
    margin-bottom: 0.5em;
}
.single-content a {
    color: var(--read-link);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(122, 63, 208, 0.4);
}
.single-content a:hover {
    color: var(--read-link-hover);
    text-decoration-color: var(--read-link-hover);
}
.single-content strong, .single-content b { color: var(--read-heading); font-weight: 700; }
.single-content ul, .single-content ol { padding-left: 1.4em; }
.single-content li { margin-bottom: 0.6em; }
.single-content img { border-radius: var(--round-md); margin: 1em auto; }

/* Blockquote */
.single-content blockquote {
    border-left: 4px solid var(--read-quote-bar);
    background: var(--read-surface);
    padding: 20px 26px;
    border-radius: 0 var(--round-md) var(--round-md) 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--read-text-soft);
    box-shadow: 0 6px 20px rgba(36, 24, 50, 0.06);
}
.single-content blockquote p:last-child { margin-bottom: 0; }
.single-content blockquote cite { display: block; margin-top: 10px; font-size: 0.9rem; font-style: normal; color: var(--read-link); font-weight: 600; }

/* Code */
.single-content code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.9em;
    background: var(--read-code-bg);
    color: var(--read-heading);
    padding: 0.15em 0.4em;
    border-radius: 6px;
}
.single-content pre {
    background: #1f1430;
    color: #ece3fb;
    padding: 22px 24px;
    border-radius: var(--round-md);
    overflow-x: auto;
    font-size: 0.92rem;
    line-height: 1.6;
    box-shadow: 0 14px 34px rgba(36, 24, 50, 0.2);
}
.single-content pre code { background: transparent; color: inherit; padding: 0; }

/* Tables */
.single-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: var(--read-surface);
    border-radius: var(--round-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(36, 24, 50, 0.08);
}
.single-content th, .single-content td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--read-border);
}
.single-content thead th {
    background: var(--read-code-bg);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--read-heading);
}
.single-content tbody tr:last-child td { border-bottom: none; }

/* WordPress / Gutenberg alignment classes (light context) */
.single-content .alignleft {
    float: left;
    margin: 0.4em 1.6em 1em 0;
    max-width: 50%;
}
.single-content .alignright {
    float: right;
    margin: 0.4em 0 1em 1.6em;
    max-width: 50%;
}
.single-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.single-content .alignwide {
    max-width: 1000px;
    margin-left: calc(-125px);
    margin-right: calc(-125px);
    width: auto;
}
.single-content .alignfull {
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}
@media (max-width: 1050px) {
    .single-content .alignwide { margin-left: 0; margin-right: 0; max-width: 100%; }
}
.single-content figure { margin-bottom: 1.6em; }
.single-content .wp-caption,
.single-content figure.wp-block-image { max-width: 100%; }
.single-content .wp-caption-text,
.single-content figcaption {
    font-size: 0.85rem;
    color: var(--read-text-soft);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}
.single-content .wp-block-button__link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-active) 100%);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 14px 30px;
    border-radius: var(--round-full);
    text-decoration: none;
    box-shadow: 0 8px 20px var(--gold-glow);
}
.single-content .wp-block-embed,
.single-content .wp-block-embed__wrapper { margin: 1.6em 0; }
.single-content iframe { max-width: 100%; border-radius: var(--round-md); }

/* Tags */
.single-tags {
    max-width: var(--read-measure);
    margin: 40px auto 0;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.single-tags .tags-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--read-text-soft);
    margin-right: 4px;
}
.single-tags a {
    font-size: 0.82rem;
    color: var(--read-link);
    background: var(--read-surface);
    border: 1px solid var(--read-border);
    padding: 6px 14px;
    border-radius: var(--round-full);
    transition: var(--transition-smooth);
}
.single-tags a:hover { background: var(--read-code-bg); border-color: var(--read-link); }

/* Author box */
.single-author-box {
    max-width: var(--read-measure);
    margin: 44px auto 0;
    padding: 26px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--read-surface);
    border: 1px solid var(--read-border);
    border-radius: var(--round-lg);
    box-shadow: 0 10px 30px rgba(36, 24, 50, 0.06);
}
.single-author-box .author-avatar img { border-radius: var(--round-full); }
.single-author-box .author-info h3 {
    font-size: 1.2rem;
    color: var(--read-heading);
    margin-bottom: 6px;
}
.single-author-box .author-info p {
    font-size: 0.95rem;
    color: var(--read-text-soft);
    line-height: 1.6;
}

/* Prev/next navigation */
.single-post-nav {
    max-width: var(--read-measure);
    margin: 40px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 620px) { .single-post-nav { grid-template-columns: 1fr; } }
.single-post-nav a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    background: var(--read-surface);
    border: 1px solid var(--read-border);
    border-radius: var(--round-md);
    transition: var(--transition-smooth);
}
.single-post-nav a:hover {
    border-color: var(--read-link);
    box-shadow: 0 12px 28px rgba(122, 63, 208, 0.1);
    transform: translateY(-3px);
}
.single-post-nav .nav-dir {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--read-link);
}
.single-post-nav .nav-next { text-align: right; align-items: flex-end; }
.single-post-nav .nav-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--read-heading);
    line-height: 1.4;
}

/* Related posts on light */
.related-posts {
    background: var(--read-bg);
    padding: 20px 0 10px;
    position: relative;
    z-index: 2;
}
.related-posts .related-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.related-posts h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--read-heading);
    text-align: center;
    margin-bottom: 30px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
@media (max-width: 992px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
    background: var(--read-surface);
    border: 1px solid var(--read-border);
    border-radius: var(--round-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(36, 24, 50, 0.06);
}
.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(122, 63, 208, 0.12);
    border-color: rgba(122, 63, 208, 0.3);
}
.related-card .related-thumb { aspect-ratio: 16/9; overflow: hidden; }
.related-card .related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.related-card:hover .related-thumb img { transform: scale(1.05); }
.related-card .related-body { padding: 20px; }
.related-card .related-cat {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--read-link);
    display: block;
    margin-bottom: 8px;
}
.related-card h3 { font-size: 1.05rem; color: var(--read-heading); line-height: 1.4; }
.related-card h3 a { color: var(--read-heading); }
.related-card h3 a:hover { color: var(--read-link); }

/* Ramp back down: light â†’ dark before CTA */
.reading-ramp-down {
    height: 140px;
    background: linear-gradient(to bottom,
        var(--read-bg) 0%,
        #7c6a90 28%,
        #2a1a3d 60%,
        var(--canvas-dark) 100%);
    position: relative;
    z-index: 2;
}

/* =====================================================================
   10. SINGLE PAGE (static page.php)
   ===================================================================== */
.page-single-wrapper {
    background: var(--read-bg);
    color: var(--read-text);
    position: relative;
    z-index: 2;
    padding: 40px 0 80px;
}

/* =====================================================================
   11. COMMENTS (light context)
   ===================================================================== */
.comments-area {
    max-width: var(--read-measure);
    margin: 50px auto 0;
    padding: 0 24px;
    color: var(--read-text);
}
.comments-area .comments-title,
.comments-area .comment-reply-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--read-heading);
    margin-bottom: 24px;
}
.comments-area .comment-list { list-style: none; }
.comments-area .comment-list ol.children { list-style: none; margin-left: 30px; }
.comments-area .comment-body {
    background: var(--read-surface);
    border: 1px solid var(--read-border);
    border-radius: var(--round-md);
    padding: 20px 22px;
    margin-bottom: 20px;
}
.comments-area .comment-author { font-family: var(--font-display); font-weight: 700; color: var(--read-heading); }
.comments-area .comment-author .avatar { border-radius: var(--round-full); vertical-align: middle; margin-right: 10px; }
.comments-area .comment-metadata { font-size: 0.8rem; color: var(--read-text-soft); margin: 6px 0 10px; }
.comments-area .comment-metadata a { color: var(--read-text-soft); }
.comments-area .reply a {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--read-link);
}
.comments-area .comment-form { margin-top: 10px; }
.comments-area .comment-form label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--read-heading);
    margin-bottom: 6px;
}
.comments-area .comment-form input[type="text"],
.comments-area .comment-form input[type="email"],
.comments-area .comment-form input[type="url"],
.comments-area .comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border: 1px solid var(--read-border);
    border-radius: var(--round-sm);
    background: var(--read-surface);
    color: var(--read-text);
    font-family: var(--font-body);
    font-size: 1rem;
}
.comments-area .comment-form input:focus,
.comments-area .comment-form textarea:focus {
    outline: none;
    border-color: var(--read-link);
    box-shadow: 0 0 0 3px rgba(122, 63, 208, 0.12);
}
.comments-area .form-submit .submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-active) 100%);
    color: var(--ink);
    border: none;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: var(--round-full);
    box-shadow: 0 8px 20px var(--gold-glow);
    transition: var(--transition-smooth);
}
.comments-area .form-submit .submit:hover { transform: translateY(-2px); }
.comments-area .no-comments { color: var(--read-text-soft); }

/* =====================================================================
   12. SEARCH FORM
   ===================================================================== */
.grow-search-form {
    display: flex;
    max-width: 560px;
    margin: 28px auto 0;
    gap: 10px;
}
.grow-search-form .search-field {
    flex: 1;
    padding: 15px 22px;
    border-radius: var(--round-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--surface-card-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
}
.grow-search-form .search-field::placeholder { color: var(--text-muted-strong); }
.grow-search-form .search-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.grow-search-form .search-submit {
    padding: 15px 30px;
    border: none;
    border-radius: var(--round-full);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-active) 100%);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px var(--gold-glow);
    transition: var(--transition-smooth);
}
.grow-search-form .search-submit:hover { transform: translateY(-2px); }

/* Empty state */
.grow-empty {
    max-width: 700px;
    margin: 40px auto 80px;
    padding: 50px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.grow-empty h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 14px; }
.grow-empty p { color: var(--text-muted); margin-bottom: 24px; }

/* 404 */
.error-404 {
    max-width: 700px;
    margin: 0 auto;
    padding: 190px 24px 90px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.error-404 .big-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 11rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 110%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.error-404 h1 { color: var(--white); font-size: 1.8rem; margin-bottom: 16px; }
.error-404 p { color: var(--text-muted); margin-bottom: 30px; font-size: 1.1rem; }

/* =====================================================================
   13. CTA (before footer, every page) â€” mirrors LP "Let's Work..."
   ===================================================================== */
.grow-cta {
    background-color: var(--canvas-dark);
    position: relative;
    z-index: 5;
    padding: 90px 0 100px;
    text-align: center;
    overflow: hidden;
}
.grow-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, var(--purple-glow) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}
.grow-cta .cta-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.grow-cta .cta-eyebrow {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 14px;
}
.grow-cta h2 {
    font-size: clamp(2rem, 5vw, 2.9rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.grow-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 34px;
    line-height: 1.6;
}

/* =====================================================================
   14. FOOTER (dark, columns + socials)
   ===================================================================== */
.site-footer {
    background-color: #0a0310;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 70px 0 40px;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .footer-logo { width: auto; height: 56px; margin-bottom: 20px; }
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 22px;
}
.social-links {
    list-style: none;
    display: flex;
    gap: 14px;
}
.social-links a {
    width: 42px;
    height: 42px;
    border-radius: var(--round-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px var(--gold-glow);
}
.social-links svg { width: 20px; height: 20px; }
.footer-col h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.95rem; }
.footer-col ul a:hover { color: var(--primary); }
.footer-base {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 30px;
}
.footer-base p { color: var(--text-muted-strong); font-size: 0.85rem; }
.footer-base .footer-legal { display: flex; gap: 20px; }
.footer-base .footer-legal a { color: var(--text-muted); font-size: 0.85rem; }
.footer-base .footer-legal a:hover { color: var(--primary); }

/* =====================================================================
   15. RESPONSIVE HEADER TOGGLE
   ===================================================================== */
@media (max-width: 860px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: inline-flex; }
}

/* =====================================================================
   16. REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .post-card:hover, .related-card:hover, .single-post-nav a:hover { transform: none; }
}

/* ==========================================================================
   ADDED: Stars Background & Animations
   ========================================================================== */
.site-bg-stars {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -2;
	pointer-events: none;
	overflow: hidden;
	background: transparent;
}
.star-small, .star-medium, .star-large {
	position: absolute;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 0 8px rgba(255,255,255,0.8);
	animation: twinkle 4s ease-in-out infinite alternate;
}
.star-small { width: 1.5px; height: 1.5px; }
.star-medium { width: 2.5px; height: 2.5px; }
.star-large { width: 4px; height: 4px; }
@keyframes twinkle {
	0% { opacity: 0.2; transform: scale(0.8); }
	100% { opacity: 1; transform: scale(1.2); }
}
.shooting-star {
	position: absolute;
	opacity: 0;
	transform-origin: left center;
}
.ss-glow {
	filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}
.ss-animate {
	animation: shoot 2s linear forwards;
}
@keyframes shoot {
	0% { transform: translateX(0) scaleX(0); opacity: 1; }
	30% { transform: translateX(200px) scaleX(1); opacity: 1; }
	100% { transform: translateX(800px) scaleX(0); opacity: 0; }
}


.planets-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1; /* Fica atrÃƒÂ¡s de todo o conteÃƒÂºdo, mas ÃƒÂ  frente das estrelas */
}

/* Oculta planetas em telas menores que 1200px (sem margens laterais livres) */
@media (max-width: 1200px) {
    .planets-layer {
        display: none;
    }
}

/* Elemento base de cada planeta */
.gp {
    position: absolute;
    pointer-events: none;
}

.gp img {
    width: 100%;
    height: auto;
    display: block;
    animation-fill-mode: both; /* Evita o pulo brusco de posiÃƒÂ§ÃƒÂ£o apÃƒÂ³s o delay inicial de cada planeta */
}

/* Keyframes de drift celestial (time lapse muito lento) */
@keyframes celestialDriftA {
    0% { transform: translate(100px, 0) rotate(0deg); }
    50% { transform: translate(-120px, -15px) rotate(3deg); }
    100% { transform: translate(100px, 0) rotate(0deg); }
}
@keyframes celestialDriftB {
    0% { transform: translate(-100px, 0) rotate(0deg); }
    50% { transform: translate(120px, -25px) rotate(-4deg); }
    100% { transform: translate(-100px, 0) rotate(0deg); }
}
@keyframes celestialDriftC {
    0% { transform: translate(80px, 0) rotate(0deg); }
    50% { transform: translate(-100px, -30px) rotate(5deg); }
    100% { transform: translate(80px, 0) rotate(0deg); }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HERO (0 Ã¢â‚¬â€œ 12% da pÃƒÂ¡gina) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

/* gp-1 Ã‚Â· Hero Ã‚Â· direita superior Ã‚Â· grande Ã‚Â· plano frente */
.gp-1 {
    top: 2%;
    right: calc(50% - 950px);
    width: 340px;
    opacity: 0.95;
    z-index: 3;
}
.gp-1 > img { animation: celestialDriftA 80s ease-in-out infinite; }

/* gp-2 Ã‚Â· Hero Ã‚Â· esquerda baixo Ã‚Â· pequeno Ã‚Â· fundo com blur */
.gp-2 {
    top: 7%;
    left: calc(50% - 720px);
    width: 120px;
    opacity: 0.40;
    filter: blur(5px);
    z-index: 1;
}
.gp-2 > img { animation: celestialDriftB 95s ease-in-out infinite 5s; }

/* gp-3 Ã‚Â· Hero Ã‚Â· direita centro Ã‚Â· minÃƒÂºsculo Ã‚Â· blur profundo */
.gp-3 {
    top: 5%;
    right: calc(50% - 720px);
    width: 90px;
    opacity: 0.30;
    filter: blur(8px);
    z-index: 1;
}
.gp-3 > img { animation: celestialDriftC 110s ease-in-out infinite 2s; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ CLIENTES / COMPANY (12 Ã¢â‚¬â€œ 28%) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

/* gp-4 Ã‚Â· Company Ã‚Â· direita Ã‚Â· mÃƒÂ©dio Ã‚Â· padrÃƒÂ£o (swapped) */
.gp-4 {
    top: 14%;
    right: calc(50% - 880px);
    width: 260px;
    opacity: 0.80;
    z-index: 2;
}
.gp-4 > img { animation: celestialDriftA 85s ease-in-out infinite 12s; }

/* gp-5 Ã‚Â· Stats Ã‚Â· esquerda Ã‚Â· minÃƒÂºsculo Ã‚Â· blur distante (swapped) */
.gp-5 {
    top: 20%;
    left: calc(50% - 730px);
    width: 120px;
    opacity: 0.35;
    filter: blur(6px);
    z-index: 1;
}
.gp-5 > img { animation: celestialDriftB 100s ease-in-out infinite 8s; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ SERVIÃƒâ€¡OS / ESTILOS (28 Ã¢â‚¬â€œ 50%) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

/* gp-6 Ã‚Â· Services Ã‚Â· esquerda Ã‚Â· grande Ã‚Â· frente */
.gp-6 {
    top: 29%;
    left: calc(50% - 950px);
    width: 220px;
    opacity: 0.90;
    z-index: 3;
}
.gp-6 > img { animation: celestialDriftC 75s ease-in-out infinite; }

/* gp-7 Ã‚Â· Styles Ã‚Â· esquerda Ã‚Â· mÃƒÂ©dio Ã‚Â· blur suave (swapped) */
.gp-7 {
    top: 38%;
    left: calc(50% - 830px);
    width: 220px;
    opacity: 0.55;
    filter: blur(3px);
    z-index: 1;
}
.gp-7 > img { animation: celestialDriftA 90s ease-in-out infinite 15s; }

/* gp-13 Ã‚Â· Left side foreground asteroid Ã‚Â· new */
.gp-13 {
    top: 45%;
    left: calc(50% - 950px);
    width: 140px;
    opacity: 0.85;
    z-index: 3;
    filter: blur(1.5px);
}
.gp-13 > img { animation: celestialDriftA 95s ease-in-out infinite 3s; }

/* gp-14 Ã‚Â· Right side deep background planet Ã‚Â· new */
.gp-14 {
    top: 32%;
    right: calc(50% - 820px);
    width: 100px;
    opacity: 0.40;
    z-index: 1;
    filter: blur(6px);
}
.gp-14 > img { animation: celestialDriftB 110s ease-in-out infinite 11s; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ INDUSTRIES / PROCESS (50 Ã¢â‚¬â€œ 68%) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

/* gp-8 Ã‚Â· Industries Ã‚Â· direita Ã‚Â· mÃƒÂ©dio Ã‚Â· padrÃƒÂ£o (swapped) */
.gp-8 {
    top: 51%;
    right: calc(50% - 860px);
    width: 240px;
    opacity: 0.75;
    z-index: 2;
}
.gp-8 > img { animation: celestialDriftB 105s ease-in-out infinite 6s; }

/* gp-9 Ã‚Â· Process Ã‚Â· direita Ã‚Â· grande Ã‚Â· frente */
.gp-9 {
    top: 60%;
    right: calc(50% - 930px);
    width: 260px;
    opacity: 0.88;
    z-index: 3;
}
.gp-9 > img { animation: celestialDriftC 80s ease-in-out infinite 4s; }

/* gp-16 Ã‚Â· Right side background planet Ã‚Â· new */
.gp-16 {
    top: 67%;
    right: calc(50% - 740px);
    width: 110px;
    opacity: 0.50;
    z-index: 2;
    filter: blur(3px);
}
.gp-16 > img { animation: celestialDriftA 105s ease-in-out infinite 14s; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ WHY US / TESTIMONIALS (68 Ã¢â‚¬â€œ 82%) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

/* gp-10 Ã‚Â· Why Us Ã‚Â· esquerda Ã‚Â· pequenÃƒÂ­ssimo Ã‚Â· blur profundo */
.gp-10 {
    top: 69%;
    left: calc(50% - 750px);
    width: 100px;
    opacity: 0.30;
    filter: blur(9px);
    z-index: 1;
}
.gp-10 > img { animation: celestialDriftA 115s ease-in-out infinite 10s; }

/* gp-15 Ã‚Â· Left side midground asteroid Ã‚Â· new */
.gp-15 {
    top: 76%;
    left: calc(50% - 790px);
    width: 130px;
    opacity: 0.75;
    z-index: 2;
}
.gp-15 > img { animation: celestialDriftC 85s ease-in-out infinite 9s; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ BLOG / CTA (82 Ã¢â‚¬â€œ 100%) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

/* gp-11 Ã‚Â· Blog Ã‚Â· direita Ã‚Â· mÃƒÂ©dio Ã‚Â· padrÃƒÂ£o */
.gp-11 {
    top: 83%;
    right: calc(50% - 860px);
    width: 230px;
    opacity: 0.80;
    z-index: 2;
}
.gp-11 > img { animation: celestialDriftB 90s ease-in-out infinite; }

/* gp-12 Ã‚Â· CTA/Contact Ã‚Â· esquerda Ã‚Â· pequeno Ã‚Â· blur suave */
.gp-12 {
    top: 91%;
    left: calc(50% - 800px);
    width: 170px;
    opacity: 0.45;
    filter: blur(4px);
    z-index: 1;
}
.gp-12 > img { animation: celestialDriftC 100s ease-in-out infinite 7s; }

/* gp-17 Ã‚Â· Right side small background asteroid Ã‚Â· new */
.gp-17 {
    top: 10%;
    right: calc(50% - 800px);
    width: 60px;
    opacity: 0.50;
    z-index: 1;
    filter: blur(4px);
}
.gp-17 > img { animation: celestialDriftB 110s ease-in-out infinite 11s; }

/* gp-18 Ã‚Â· Left side medium asteroid Ã‚Â· new */
.gp-18 {
    top: 55%;
    left: calc(50% - 850px);
    width: 90px;
    opacity: 0.70;
    z-index: 2;
    filter: blur(1px);
}
.gp-18 > img { animation: celestialDriftA 95s ease-in-out infinite 3s; }

/* gp-19 Ã‚Â· Right side large foreground asteroid Ã‚Â· new */
.gp-19 {
    top: 80%;
    right: calc(50% - 900px);
    width: 150px;
    opacity: 0.90;
    z-index: 3;
}
.gp-19 > img { animation: celestialDriftC 85s ease-in-out infinite 9s; }

/* gp-20 Ã‚Â· Right side small background asteroid Ã‚Â· new */
.gp-20 {
    top: 23%;
    right: calc(50% - 750px);
    width: 70px;
    opacity: 0.40;
    z-index: 1;
    filter: blur(5px);
}
.gp-20 > img { animation: celestialDriftB 105s ease-in-out infinite 14s; }

/* Garante que todo o conteÃƒÂºdo principal fique na frente da camada de planetas */
.hero-container,
.company-container,
.why-use-container,
.services-grid,
.styles-grid,
.industries-container,
.process-grid-modern,
.why-us-container,
.blog-grid,
.cta-container,
.contact-layout,
.section-header,
nav {
    position: relative;
    z-index: 2;
}


/* --- SEÃƒâ€¡ÃƒÆ’O DE CLIENTES: CARROSSEL MARQUEE (ContÃƒÂ­nuo e Fluido) --- */
.clients-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.cta-section {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-container h3 {
    margin-bottom: 16px;
}

.cta-container h2 {
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Planet transition image — rises over the previous section and fades in at
   the top so it melts into the dark canvas (no hard edge). Mirrors landing. */
.cta-planet-img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -180px;
    position: relative;
    z-index: 1;
    line-height: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 28%);
}
@media (max-width: 768px) {
    .cta-planet-img {
        margin-top: 0;
        width: 200%;
        max-width: none;
        margin-left: -50%;
    }
}

/* Landing-parity typography for the Get Quote headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding: 0 24px;
}
.section-header h3,
.cta-container h3 {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.section-header h2,
.cta-container h2 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}
.section-header h3 { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 650px;
}


/* --- SEÃƒâ€¡ÃƒÆ’O CONTATO & CALENDLY (#get-quote) --- */
/* ContÃƒÂ©m todo o conteÃƒÂºdo "na superfÃƒÂ­cie" do planeta. Fundo sÃƒÂ³lido #0e0414. */
.contact-section {
    padding: 50px 24px;
    position: relative;
    z-index: 2;
    background-color: #0e0414;
}

.contact-layout {
    max-width: 1200px;
    margin: 48px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.calendly-mock-card {
    background-color: var(--surface-card-dark);
    border: 1px solid transparent; /* Sem borda no estado normal */
    border-radius: var(--round-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    overflow: visible;
    min-height: 580px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.calendly-mock-card:hover {
    border-color: rgba(152, 109, 214, 0.45);
    box-shadow: 0 20px 45px rgba(152, 109, 214, 0.15);
    background-color: rgba(43, 20, 69, 0.25);
}

/* Efeito de inversÃƒÂ£o de cores inteligente (CSS Filter Hack) para forÃƒÂ§ar o Calendly a renderizar no Tema Escuro da Grow Website */
.calendly-inline-widget,
.calendly-inline-widget iframe {
    filter: invert(0.92) hue-rotate(15deg) contrast(1.05) brightness(0.95);
    background: transparent !important;
    border-radius: var(--round-lg);
}

.calendly-header {
    background-color: rgba(14, 4, 20, 0.4);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.calendly-header h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.calendly-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.calendly-grid {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.calendly-calendar-mock {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 24px;
}

.calendar-month {
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--white);
}

.calendar-days-mock {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-days-mock span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
}

.calendar-day-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--round-full);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition-smooth);
}

.calendar-day-btn.available {
    background-color: rgba(0, 171, 228, 0.12);
    color: var(--accent-blue);
    font-weight: 700;
}

.calendar-day-btn.available:hover, .calendar-day-btn.selected {
    background-color: var(--accent-blue);
    color: var(--white);
}

.calendly-slots-mock {
    padding-left: 12px;
}

.slots-title {
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.slots-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slot-btn {
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    background-color: transparent;
    padding: 12px;
    border-radius: var(--round-sm);
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slot-btn:hover {
    background-color: var(--accent-blue);
    color: var(--white);
}

/* Card Contato Pessoal Dark - Reorganizado para 700px de altura no desktop */
.contact-info-card {
    background-color: var(--surface-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borda sutil */
    border-radius: var(--round-lg);
    padding: 44px 40px; /* Padding equilibrado e elegante */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto; /* Auto por padrÃƒÂ£o no mobile */
    gap: 28px; /* EspaÃƒÂ§o entre elementos no mobile */
}

@media (min-width: 992px) {
    .contact-info-card {
        height: 830px; /* Altura exata de 700px para alinhar com o Calendly widget */
        gap: 0; /* EspaÃƒÂ§amento distribuÃƒÂ­do por justify-content no desktop */
    }
}

.contact-info-card:hover {
    border-color: rgba(152, 109, 214, 0.45);
    box-shadow: 0 20px 45px rgba(152, 109, 214, 0.15);
    background-color: rgba(43, 20, 69, 0.25);
}

.contact-info-card h4 {
    font-size: 1.85rem; /* TÃƒÂ­tulo elegante e imponente */
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    text-align: center;
}

.contact-info-card p.contact-desc {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 0;
    text-align: center
}

.profile-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 25px 0;
    background-color:  rgba(255, 255, 255, 0.05); /* Divisor superior sutil */
    border-radius: 20px;
}

.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 100px; /* Aumentado para 100px */
    height: 100px; /* Aumentado para 100px */
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
    box-shadow: 0 4px 12px rgba(152, 109, 214, 0.2);
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #110722; /* Separa a imagem do aro gradiente */
    display: block;
}

.avatar-wrapper span.status-indicator {
    position: absolute;
    bottom: 3px; /* Ajustado conforme solicitado */
    right: 3px; /* Ajustado conforme solicitado */
    width: 20px; /* Ajustado para 20px */
    height: 20px; /* Ajustado para 20px */
    background-color: #3CDF7D;
    border: 3px solid #110722; /* Borda mais grossa para acompanhar o tamanho */
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(60, 223, 125, 0.6);
}

.profile-details h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.profile-details span.role {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.profile-details p {
    font-size: 0.88rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.profile-details span.status-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #3CDF7D;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-details span.status-text::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3CDF7D;
    box-shadow: 0 0 6px rgba(60, 223, 125, 0.8);
}

/* Contact Button Wrapper */
.contact-btn-wrapper {
    margin: 30px 0;
    text-align: center;
}

/* Email Box Wrapper - Ajustado para ser uma nota centralizada */
.email-box-wrapper {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.email-box-wrapper p {
    margin: 0;
}

.email-box-wrapper a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.email-box-wrapper a:hover {
    text-decoration: underline;
}

/* Features List - Mais compacta e com espaÃƒÂ§amentos harmonizados */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary);
    font-size: 18px;
    background-color: rgba(255, 178, 0, 0.06);
    padding: 6px;
    border-radius: var(--round-full);
}

.feature-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}
/* --- Hero da pÃ¡gina de estilo --- */
.style-hero-section {
    padding: 150px 5% 70px;
    position: relative;
}

.style-hero-container {
    max-width: 1240px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 32px;
    font-size: 0.85rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    color: var(--text-muted);
}

.breadcrumbs li + li::before {
    content: "â€º";
    margin-right: 8px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
}

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

.breadcrumbs li[aria-current] {
    color: var(--white);
    font-weight: 600;
}

.style-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 60px;
    align-items: center;
}

.style-hero-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.style-hero-content h1 {
    font-size: 2.9rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.style-tagline {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-blue, #00ABE4);
    margin-bottom: 18px;
}

.style-intro {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.style-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.style-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.5;
}

.style-bullets .material-icons {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

/* Thumbnail do reel com botÃ£o de play */
.reel-thumb {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--round-lg);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
}

.reel-thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.reel-thumb:hover img {
    transform: scale(1.03);
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
/* ==========================================================================
   ADDED: Article Content Card (Soft Light on Dark Background)
   ========================================================================== */
.article-content-card {
	background-color: #F8F9FA;
	color: #2D3142;
	max-width: 800px;
	margin: -60px auto 60px auto; 
	padding: 60px 50px;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.4);
	position: relative;
	z-index: 3;
}
.article-content-card h1, .article-content-card h2, .article-content-card h3, .article-content-card h4 {
	color: #1a1c23;
}
.article-content-card p, .article-content-card li {
	color: #333333;
}
.article-content-card a { color: var(--primary); }
.single-wrapper { position: relative; z-index: 3; }
.single-header { padding-top: 200px !important; }
.page-hero { padding-top: 250px !important; }
.single-header .single-title, .single-header .author-name, .single-header .meta-item, .single-header .meta-item time {
    color: #ffffff !important;
}
.single-header .post-cat-line a {
    color: var(--primary) !important;
}
@media (max-width: 768px) {
	.article-content-card { padding: 40px 20px; margin-top: -30px; }
}
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    background-color: var(--primary);
    color: var(--ink);
    box-shadow: 0 8px 25px var(--gold-glow);
}


/* --- YOUTUBE EMBED MODAL --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(14, 4, 20, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #000;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16/9;
    border-radius: var(--round-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal-btn {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}


/* --- ANIMAÃƒâ€¡Ãƒâ€¢ES --- */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 178, 0, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 178, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 178, 0, 0);
    }
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.3333%);
    }
}


/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .company-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .why-use-container {
        grid-template-columns: 1fr;
    }
    
    .why-use-intro {
        text-align: center;
    }
    
    .services-grid, .styles-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .industries-info {
        text-align: center;
    }
    
    .process-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid-modern::before {
        display: none; /* remove linha conectora em resoluÃƒÂ§ÃƒÂµes menores */
    }
    
    .why-us-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav.main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-header h2,
    .company-content h2,
    .why-use-intro h2,
    .industries-info h2,
    .why-us-data h2,
    .cta-container h2 {
        font-size: 2.1rem;
    }

    .services-grid, .styles-grid, .blog-grid, .industries-carousel-mock, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .clutch-widget-mock {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .clutch-right {
        text-align: center;
    }
    
    .calendly-grid {
        grid-template-columns: 1fr;
    }
    
    .calendly-calendar-mock {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 24px;
        padding-right: 0;
    }
    
    .calendly-slots-mock {
        padding-left: 0;
        padding-top: 12px;
    }
}


/* --- GET QUOTE FORM MODAL SPECIFICS --- */
.quote-modal-content {
    background: rgba(20, 10, 35, 0.95); /* Tom roxo/escuro profundo mais opaco para legibilidade */
    border: 1px solid rgba(152, 109, 214, 0.25);
    border-radius: var(--round-lg);
    padding: 44px 36px;
    max-width: 500px;
    width: 90%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(152, 109, 214, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar para o modal */
.quote-modal-content::-webkit-scrollbar {
    width: 6px;
}
.quote-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--round-sm);
}
.quote-modal-content::-webkit-scrollbar-thumb {
    background: rgba(152, 109, 214, 0.3);
    border-radius: var(--round-sm);
}
.quote-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(152, 109, 214, 0.5);
}

/* Responsividade de padding para telas de celulares pequenos */
@media (max-width: 480px) {
    .quote-modal-content {
        padding: 32px 20px;
    }
}

/* Custom Close Button for Quote Modal (inside the card to prevent overflow clipping) */
#close-quote-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.4);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

#close-quote-modal:hover {
    color: var(--white);
    transform: scale(1.1);
}
#close-quote-modal i {
    font-size: 28px;
}

.modal-overlay.active .quote-modal-content {
    transform: translateY(0) scale(1);
}

.quote-modal-body h3 {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

.quote-modal-body h2 {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.quote-modal-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 28px;
}

/* Form Styles */
#quote-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}

#quote-form label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

#quote-form input,
#quote-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--round-md);
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

#quote-form input:focus,
#quote-form textarea:focus {
