/* ============================================
   DEVELOPER STARTER THEME - DARK MODE
   Design based on dantetesta.com.br
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Brand Colors */
    --color-blue: #9873FF;
    --color-blue-hover: #b49aff;
    --color-blue-light: rgba(152, 115, 255, 0.12);
    --color-green: #9873FF;
    --color-green-dark: #7C5CE0;
    --color-green-light: rgba(152, 115, 255, 0.12);
    --color-orange: #F59E0B;
    --color-gold: #D4AF37;

    /* Dark palette */
    --color-dark: #0B0F19;
    --color-dark-2: #111827;
    --color-dark-3: #1F2937;
    --color-surface: #0f1525;

    /* Text — rebalanced for dark backgrounds */
    --color-text: #F3F4F6;
    --color-text-body: #D1D5DB;
    --color-text-muted: #9CA3AF;
    --color-text-light: #6B7280;

    /* Backgrounds */
    --color-bg: #0B0F19;
    --color-bg-alt: #111827;
    --color-bg-section: #0f1525;

    /* Borders */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.05);

    /* Utility */
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #128C7E;
    --color-white: #FFFFFF;
    --color-error: #EF4444;
    --color-error-bg: rgba(239, 68, 68, 0.12);
    --color-error-text: #FCA5A5;
    --color-success-bg: rgba(74, 222, 128, 0.12);
    --color-success-border: rgba(74, 222, 128, 0.30);
    --color-success-text: #86EFAC;

    /* Aliases */
    --color-primary: #9873FF;
    --color-text-secondary: #9CA3AF;

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', var(--font-family);

    /* Shadows — darker for dark theme */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.20);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.30);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.20);
    --shadow-card-hover: 0 12px 30px rgba(0, 0, 0, 0.30);

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

    /* Transitions */
    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;

    /* Layout */
    --container: 1200px;
    --container-narrow: 800px;
    --header-height: 72px;

    /* Glassmorphism & Glow — for dark mode */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --glass-bg-light: rgba(255, 255, 255, 0.05);
    --glass-border-light: rgba(255, 255, 255, 0.10);
    --glow-green: 0 0 40px rgba(152, 115, 255, 0.15);
    --glow-blue: 0 0 40px rgba(152, 115, 255, 0.10);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-body);
    background: var(--color-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background-color: var(--color-green);
    color: var(--color-white);
}

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

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

a:hover {
    color: var(--color-blue-hover);
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: var(--font-family);
}

ul,
ol {
    list-style: none;
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal;
}

.screen-reader-text:focus {
    clip: auto;
    display: block;
    height: auto;
    width: auto;
    position: fixed;
    top: 5px;
    left: 5px;
    background: var(--color-bg);
    color: var(--color-text);
    padding: 1rem;
    z-index: 100000;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* Skip Link */
.sdt-skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    z-index: 100001;
    background: var(--color-blue);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: top var(--transition-fast);
}

.sdt-skip-link:focus {
    top: 1rem;
    text-decoration: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text);
    line-height: 1.2;
}

h1,
h2,
h3,
.sdt-hero__title,
.sdt-academy-cta__title,
.sdt-vc-hero__title {
    font-family: var(--font-heading);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ============================================
   4. LAYOUT
   ============================================ */
.sdt-container {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

.sdt-container--narrow {
    max-width: var(--container-narrow);
}

.sdt-main {
    min-height: 50vh;
}

/* Sections */
.sdt-section {
    padding: var(--space-24) 0;
}

.sdt-section--alt {
    background: transparent;
}

.sdt-section--dark {
    background-color: var(--color-dark-2);
    color: var(--color-white);
}

.sdt-section--dark .sdt-section__title {
    color: var(--color-white);
}

.sdt-section--dark .sdt-section__subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.sdt-section--contact {
    background: transparent;
}

/* Section Headers */
.sdt-section__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.sdt-section__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: var(--space-3);
    background: linear-gradient(135deg, rgba(152, 115, 255, 0.08), rgba(152, 115, 255, 0.08));
    border: 1px solid rgba(152, 115, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 0.375rem 1rem;
}

.sdt-section__title {
    margin-bottom: var(--space-4);
    color: var(--color-white);
}

.sdt-section__subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-wrap: balance;
}

/* ============================================
   5. BUTTONS
   ============================================ */
.sdt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.938rem;
    font-family: var(--font-family);
    line-height: 1;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.sdt-btn:hover {
    text-decoration: none;
}

.sdt-btn svg {
    flex-shrink: 0;
}

/* Primary - Purple */
.sdt-btn--primary {
    background-color: var(--color-green);
    color: var(--color-white);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.sdt-btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: none;
    pointer-events: none;
}

.sdt-btn--primary:hover::after {
    animation: shimmer 0.6s ease-out;
}

.sdt-btn--primary:hover {
    background-color: var(--color-green-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(152, 115, 255, 0.3), var(--glow-green);
}

/* Secondary - Blue */
.sdt-btn--secondary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.sdt-btn--secondary:hover {
    background-color: var(--color-blue-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(152, 115, 255, 0.25);
}

/* Outline - Blue border */
.sdt-btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
}

.sdt-btn--outline:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* YouTube icon button (small circle, outline red) */
.sdt-header__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid currentColor;
    background: transparent;
    transition: all var(--transition);
    flex-shrink: 0;
}

.sdt-header__icon-btn:hover {
    transform: translateY(-2px);
}

.sdt-header__icon-btn--yt {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.sdt-header__icon-btn--yt:hover {
    background: #cc0000;
    border-color: #cc0000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 0, 0, .35);
}

.sdt-header--transparent .sdt-header__icon-btn--yt {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.sdt-header--transparent .sdt-header__icon-btn--yt:hover {
    background: #cc0000;
    border-color: #cc0000;
}

/* Academy logo in header */
.sdt-header__academy {
    display: inline-flex;
    align-items: center;
    transition: opacity var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.sdt-header__academy:hover {
    opacity: .8;
    transform: translateY(-1px);
}

.sdt-header__academy-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}


/* Mobile menu actions row */
.sdt-mobile-menu__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 0;
}

.sdt-mobile-menu__academy img {
    height: 26px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Outline White */

.sdt-btn--outline-white {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.sdt-btn--outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: var(--color-white);
}

/* White */
.sdt-btn--white {
    background-color: var(--color-white);
    color: var(--color-text);
    font-weight: 700;
}

.sdt-btn--white:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* WhatsApp */
.sdt-btn--whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
}

.sdt-btn--whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Sizes */
.sdt-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
}

.sdt-btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

.sdt-btn--full {
    width: 100%;
}

/* ============================================
   6. HEADER
   ============================================ */
.sdt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background-color var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sdt-header--transparent {
    background-color: transparent;
}

.sdt-header--transparent .sdt-header__menu > li > a {
    color: rgba(255, 255, 255, 0.85);
}

.sdt-header--transparent .sdt-header__menu > li > a:hover,
.sdt-header--transparent .sdt-header__menu > li.current-menu-item > a,
.sdt-header--transparent .sdt-header__menu > li.current_page_item > a {
    color: var(--color-white);
}

.sdt-header--transparent .sdt-header__logo-text,
.sdt-header--transparent .sdt-header__site-name {
    color: var(--color-white);
}

.sdt-header--transparent .sdt-header__hamburger-line {
    background-color: var(--color-white);
}

/* Translucent state: scrolled but still over the dark hero */
.sdt-header.is-over-hero {
    background: rgba(11, 15, 25, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sdt-header.is-over-hero .sdt-header__menu > li > a {
    color: rgba(255, 255, 255, 0.85);
}

.sdt-header.is-over-hero .sdt-header__menu > li > a:hover,
.sdt-header.is-over-hero .sdt-header__menu > li.current-menu-item > a {
    color: var(--color-white);
}

.sdt-header.is-over-hero .sdt-header__logo-text,
.sdt-header.is-over-hero .sdt-header__site-name {
    color: var(--color-white);
}

.sdt-header.is-over-hero .sdt-header__hamburger-line {
    background-color: var(--color-white);
}

.sdt-header.is-over-hero .sdt-header__logo-img--dark {
    display: none;
}

.sdt-header.is-over-hero .sdt-header__logo-img--light {
    display: block;
}

/* Solid white state: light pages (blog, single, archive) */
.sdt-header.is-scrolled {
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e5e7eb;
}

.sdt-header.is-scrolled .sdt-header__menu > li > a {
    color: #374151;
}

.sdt-header.is-scrolled .sdt-header__menu > li > a:hover,
.sdt-header.is-scrolled .sdt-header__menu > li.current-menu-item > a,
.sdt-header.is-scrolled .sdt-header__menu > li.current_page_item > a {
    color: var(--color-primary, #9873ff);
}

.sdt-header.is-scrolled .sdt-header__logo-text,
.sdt-header.is-scrolled .sdt-header__site-name {
    color: #111827;
}

.sdt-header.is-scrolled .sdt-header__hamburger-line {
    background-color: #374151;
}

/* YT button always white icon on red bg */
.sdt-header.is-scrolled .sdt-header__icon-btn--yt,
.sdt-header.is-scrolled .sdt-header__icon-btn--yt:hover {
    color: #fff;
}

/* Dark page override: sdt-header--dark-page stays dark even when is-scrolled */
.sdt-header--dark-page.is-scrolled {
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sdt-header--dark-page.is-scrolled .sdt-header__menu > li > a,
.sdt-header--dark-page.sdt-header--transparent .sdt-header__menu > li > a {
    color: rgba(255, 255, 255, 0.8);
}

.sdt-header--dark-page.is-scrolled .sdt-header__menu > li > a:hover,
.sdt-header--dark-page.is-scrolled .sdt-header__menu > li.current-menu-item > a,
.sdt-header--dark-page.is-scrolled .sdt-header__menu > li.current_page_item > a {
    color: var(--color-white);
}

.sdt-header--dark-page.is-scrolled .sdt-header__logo-text,
.sdt-header--dark-page.is-scrolled .sdt-header__site-name {
    color: var(--color-white);
}

.sdt-header--dark-page.is-scrolled .sdt-header__hamburger-line {
    background-color: var(--color-white);
}

.sdt-header--dark-page.is-scrolled .sdt-header__logo-img--dark {
    display: none;
}

.sdt-header--dark-page.is-scrolled .sdt-header__logo-img--light {
    display: block;
}

/* Header Inner */
.sdt-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Brand */
.sdt-header__brand {
    flex-shrink: 0;
}

.sdt-header__logo-link,
.sdt-header__logo-text {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition);
    flex-shrink: 0;
}

.sdt-header__logo-link:hover,
.sdt-header__logo-text:hover {
    text-decoration: none;
    opacity: 0.8;
}

.sdt-header__logo-img {
    max-height: 46px;
    width: auto;
    min-width: 138px;
}

/* Logo switching: light version for transparent header, dark for scrolled */
.sdt-header__logo-img--dark {
    display: none;
}

.sdt-header__logo-img--light {
    display: block;
}

.sdt-header.is-scrolled .sdt-header__logo-img--light,
.sdt-header:not(.sdt-header--transparent) .sdt-header__logo-img--light {
    display: none;
}

.sdt-header.is-scrolled .sdt-header__logo-img--dark,
.sdt-header:not(.sdt-header--transparent) .sdt-header__logo-img--dark {
    display: block;
}

.sdt-header__site-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    transition: color var(--transition);
}

/* WordPress custom logo */
.sdt-header__brand .custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sdt-header__brand .custom-logo-link:hover {
    text-decoration: none;
    opacity: 0.8;
}

.sdt-header__brand .custom-logo {
    max-height: 40px;
    width: auto;
}

/* Navigation */
.sdt-header__nav {
    display: none;
}

.sdt-header__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sdt-header__menu > li > a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-body);
    position: relative;
    border-radius: var(--radius-md);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background-color var(--transition);
}

.sdt-header__menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary, #9873FF), #ec4899);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width .3s cubic-bezier(.34, 1.4, .64, 1);
    box-shadow: 0 0 8px rgba(152, 115, 255, 0);
}

.sdt-header__menu > li > a:hover {
    color: var(--color-blue);
    text-decoration: none;
    background: rgba(152, 115, 255, .06);
}

.sdt-header__menu > li > a:hover::after {
    width: 60%;
    box-shadow: 0 0 10px rgba(152, 115, 255, .4);
}

.sdt-header__menu > li.current-menu-item > a,
.sdt-header__menu > li.current_page_item > a {
    color: var(--color-blue);
    background: rgba(152, 115, 255, .08);
}

.sdt-header__menu > li.current-menu-item > a::after,
.sdt-header__menu > li.current_page_item > a::after {
    width: 60%;
    box-shadow: 0 0 10px rgba(152, 115, 255, .3);
}

/* Transparent header hover */
.sdt-header--transparent .sdt-header__menu > li > a:hover {
    background: rgba(255, 255, 255, .08);
}

.sdt-header--transparent .sdt-header__menu > li > a::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .8), rgba(152, 115, 255, .8));
}

/* Submenu */
.sdt-header__menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 200px;
    z-index: 100;
    list-style: none;
}

.sdt-header__menu > li {
    position: relative;
}

.sdt-header__menu > li:hover > .sub-menu {
    display: block;
}

.sdt-header__menu .sub-menu a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-body);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.sdt-header__menu .sub-menu a:hover {
    color: var(--color-blue);
    background-color: var(--color-bg-alt);
    text-decoration: none;
}

/* Header Actions */
.sdt-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.sdt-header__cta {
    display: none;
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

/* Hamburger */
.sdt-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.sdt-header__hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.sdt-header__hamburger[aria-expanded="true"] .sdt-header__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sdt-header__hamburger[aria-expanded="true"] .sdt-header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.sdt-header__hamburger[aria-expanded="true"] .sdt-header__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.sdt-mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-dark);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sdt-mobile-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.sdt-mobile-menu__inner {
    padding: calc(var(--header-height) + 2rem) 2rem 3rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.sdt-mobile-menu__logo {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sdt-mobile-menu__logo a {
    display: inline-block;
    text-decoration: none;
}

.sdt-mobile-menu__logo img {
    display: block;
}

.sdt-mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.sdt-mobile-menu__list li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sdt-mobile-menu__list li:last-child {
    border-bottom: none;
}

.sdt-mobile-menu__list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.sdt-mobile-menu__list a:hover {
    color: #fff;
    padding-left: .5rem;
    text-decoration: none;
}

.sdt-mobile-menu__list .current-menu-item > a,
.sdt-mobile-menu__list .current_page_item > a {
    color: var(--color-primary, #9873FF);
}

.sdt-mobile-menu__list .sub-menu {
    list-style: none;
    padding-left: 1rem;
}

.sdt-mobile-menu__list .sub-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    padding: .75rem 0;
}

/* CTA buttons */
.sdt-mobile-menu__ctas {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.5rem;
}

.sdt-mobile-menu__cta {
    justify-content: center;
    width: 100%;
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

/* Social row at bottom */
.sdt-mobile-menu__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.sdt-mobile-menu__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    transition: all .2s ease;
}

.sdt-mobile-menu__social-link:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    transform: translateY(-2px);
}

.sdt-mobile-menu__social-link--yt {
    background: #FF0000;
    color: #fff;
}

.sdt-mobile-menu__social-link--yt:hover {
    background: #cc0000;
    color: #fff;
}

/* Mobile Menu Overlay (body class) */
body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

/* ============================================
   7. HERO SECTION (DARK)
   ============================================ */
.sdt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

/* Hero Background */
.sdt-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Video wrapper */
.sdt-hero__video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sdt-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    border: none;
    pointer-events: none;
}

/* When video is an iframe (YouTube fallback) */
.sdt-hero__video-wrapper iframe.sdt-hero__video {
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: initial;
}

/* Gradient background */
.sdt-hero__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(152, 115, 255, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(152, 115, 255, 0.1) 0%, transparent 60%);
    animation: orbFloat 15s ease-in-out infinite;
}

/* Grid Pattern */
.sdt-hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(152, 115, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(152, 115, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

/* Floating Code Snippets */
.sdt-hero__floating-elements {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.sdt-hero__code-snippet {
    position: absolute;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.75rem;
    color: rgba(152, 115, 255, 0.3);
    border: 1px solid rgba(152, 115, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    background: rgba(152, 115, 255, 0.05);
    white-space: nowrap;
}

.sdt-hero__code-snippet--1 {
    top: 15%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.sdt-hero__code-snippet--2 {
    top: 25%;
    right: 8%;
    animation: float2 10s ease-in-out infinite;
    animation-delay: -3s;
}

.sdt-hero__code-snippet--3 {
    bottom: 30%;
    left: 10%;
    animation: float 12s ease-in-out infinite;
    animation-delay: -5s;
}

.sdt-hero__code-snippet--4 {
    bottom: 20%;
    right: 5%;
    animation: float2 9s ease-in-out infinite;
    animation-delay: -2s;
}

/* Dots */
.sdt-hero__dots {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(152, 115, 255, 0.15) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.5;
}

/* Overlay */
.sdt-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.45) 0%, rgba(11, 15, 25, 0.75) 100%);
    z-index: 3;
}

/* Dim floating elements when video is present */
.sdt-hero__video-wrapper ~ .sdt-hero__floating-elements {
    opacity: 0.35;
}

/* Replay button — discrete, bottom-right of the video wrapper */
.sdt-hero__replay-btn {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.35rem 0.75rem 0.35rem 0.6rem;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-family);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
    pointer-events: none;
}
.sdt-hero__replay-btn[hidden] {
    display: none;
}
.sdt-hero__replay-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sdt-hero__replay-btn:hover {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.sdt-hero__replay-btn svg {
    flex-shrink: 0;
}

/* Hero Content */
.sdt-hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: calc(var(--header-height) + 2rem) 0 4rem;
}

.sdt-hero__inner {
    max-width: var(--container-narrow);
    text-align: center;
    margin: 0 auto;
}

/* Hero Avatar — hidden on desktop, visible on mobile */
.sdt-hero__avatar {
    display: none; /* hidden on desktop */
    margin-bottom: var(--space-6);
}

.sdt-hero__avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-green);
    box-shadow: 0 0 0 4px rgba(152, 115, 255, 0.2), 0 0 30px rgba(152, 115, 255, 0.15);
    animation: pulseGlow 3s ease-in-out infinite;
}

.sdt-hero__title {
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
    white-space: nowrap;
}

/* Typed text gradient animation */
.sdt-hero__typed {
    background: linear-gradient(90deg, #9873FF, #c084fc, #e879f9, #9873FF);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sdt-hero__title .sdt-text-gradient,
.sdt-typing-animation .sdt-text-gradient {
    background: linear-gradient(135deg, var(--color-green), var(--color-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typing cursor - on the typed span, not the container */
.sdt-typing-animation::after {
    display: none;
}

.sdt-hero__typed::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 0.8em;
    background-color: var(--color-green);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}

.sdt-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: var(--space-4);
    line-height: 1.5;
}

.sdt-hero__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
}

.sdt-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero outline button variant on dark background */
.sdt-hero__actions .sdt-btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.sdt-hero__actions .sdt-btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* Scroll Indicator */
.sdt-hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

/* ============================================
   8. SERVICES SECTION
   ============================================ */
.sdt-services__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.sdt-services__card {
    display: block;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform .4s cubic-bezier(.34, 1.2, .64, 1), box-shadow .4s ease, border-color .3s ease, background .3s ease;
    overflow: hidden;
}

.sdt-services__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(152, 115, 255, 0.08) 0%, rgba(59, 130, 246, 0.06) 50%, rgba(236, 72, 153, 0.04) 100%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.sdt-services__card:hover {
    transform: translateY(-6px);
    border-color: rgba(152, 115, 255, 0.25);
    box-shadow: 0 20px 50px rgba(152, 115, 255, 0.10), 0 8px 20px rgba(0, 0, 0, 0.20);
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.08);
}

.sdt-services__card:hover::before {
    opacity: 1;
}

.sdt-services__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(152, 115, 255, 0.08);
    color: var(--color-primary, #9873FF);
    margin-bottom: var(--space-4);
    transition: all .4s ease;
    position: relative;
    z-index: 1;
}

.sdt-services__card:hover .sdt-services__icon {
    background: linear-gradient(135deg, var(--color-primary, #9873FF), #7C5CE0);
    color: #fff;
    box-shadow: 0 6px 20px rgba(152, 115, 255, 0.35);
    transform: scale(1.1);
}

.sdt-services__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.sdt-services__card-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.sdt-services__card-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--color-blue);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--transition), transform var(--transition);
}

.sdt-services__card:hover .sdt-services__card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   9. ABOUT SECTION
   ============================================ */
.sdt-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

.sdt-about__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.sdt-about__text {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: var(--space-8);
}

/* Stats */
.sdt-about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.sdt-about__stat {
    text-align: center;
}

.sdt-about__stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sdt-about__stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Image Column */
.sdt-about__image-col {
    position: relative;
}

.sdt-about__image-wrapper {
    position: relative;
}

.sdt-about__image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    filter: contrast(1.05) brightness(1.02);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sdt-about__image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    aspect-ratio: 5/6;
    background: var(--color-bg-section);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

.sdt-about__image-placeholder span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Decoration */
.sdt-about__image-decoration {
    position: absolute;
    top: -12px;
    right: -12px;
    bottom: 12px;
    left: 12px;
    pointer-events: none;
    z-index: -1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(152, 115, 255, 0.06);
    border: 1px solid rgba(152, 115, 255, 0.12);
    border-radius: var(--radius-xl);
}

.sdt-about__image-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--color-green) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.4;
}

.sdt-about__image-border {
    position: absolute;
    top: 12px;
    right: -12px;
    bottom: -12px;
    left: 12px;
    border: 2px solid var(--color-blue);
    border-radius: var(--radius-lg);
    opacity: 0.2;
}

/* ============================================
   10. BLOG / POST CARDS
   ============================================ */
.sdt-blog-latest__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.sdt-post-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
}

.sdt-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green), var(--color-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: 1;
}

.sdt-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover), var(--glow-green);
    border-color: var(--color-green);
}

.sdt-post-card:hover::before {
    transform: scaleX(1);
}

.sdt-post-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.sdt-post-card__link:hover {
    text-decoration: none;
    color: inherit;
}

/* Image */
.sdt-post-card__image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-bg-section);
}

.sdt-post-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sdt-post-card:hover .sdt-post-card__image {
    transform: scale(1.05);
}

.sdt-post-card__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-text-light);
    background: var(--color-bg-section);
}

.sdt-post-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.6) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}

.sdt-post-card:hover .sdt-post-card__image-overlay {
    opacity: 1;
}

/* Category Badge */
.sdt-post-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(152, 115, 255, 0.3);
}

.sdt-post-card__category--page {
    background: var(--color-blue);
    color: var(--color-white);
}

/* Content */
.sdt-post-card__content {
    padding: 1rem 1.125rem 1.125rem;
}

.sdt-post-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.45;
    margin-bottom: 0.4rem;
    transition: color var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sdt-post-card:hover .sdt-post-card__title {
    color: var(--color-blue);
}

.sdt-post-card__excerpt {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sdt-post-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.sdt-post-card__reading-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sdt-post-card__reading-time::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    background: var(--color-text-light);
    border-radius: 50%;
}

/* Featured Card */
.sdt-post-card--featured {
    grid-column: 1 / -1;
}

/* Compact Card */
.sdt-post-card--compact .sdt-post-card__image-wrapper {
    aspect-ratio: 3/2;
}

/* Blog Latest Footer */
.sdt-blog-latest__footer {
    text-align: center;
    margin-top: var(--space-10);
}

/* ============================================
   11. ACADEMY CTA SECTION
   ============================================ */
.sdt-academy-cta {
    position: relative;
    overflow: hidden;
    /* Gradient border-top */
    border-top: 0;
}

.sdt-academy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--color-primary) 30%,
        #22C55E 60%,
        transparent 100%
    );
    z-index: 20;
}

/* --- Background layers --- */
.sdt-academy-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sdt-academy-cta__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 50%, rgba(152, 115, 255, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 60% at 90% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 80% 80%, rgba(152, 115, 255, 0.08) 0%, transparent 55%),
        linear-gradient(160deg, #0f0f1e 0%, #0B0F19 50%, #0a1118 100%);
}

/* Glow orbs */
.sdt-academy-cta__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.sdt-academy-cta__glow--left {
    width: 420px;
    height: 420px;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(152, 115, 255, 0.22);
    animation: glowPulse 6s ease-in-out infinite;
}

.sdt-academy-cta__glow--right {
    width: 300px;
    height: 300px;
    right: 5%;
    top: 15%;
    background: rgba(34, 197, 94, 0.12);
    animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
    50%       { opacity: 1;   transform: translateY(-52%) scale(1.08); }
}

/* Grid overlay */
.sdt-academy-cta__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Floating code snippets */
.sdt-academy-cta__float {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.sdt-academy-cta__float code {
    display: block;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(152, 115, 255, 0.3);
    background: rgba(152, 115, 255, 0.05);
    border: 1px solid rgba(152, 115, 255, 0.12);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
    white-space: nowrap;
}

.sdt-academy-cta__float--1 {
    top: 10%;
    right: 8%;
    animation: float 9s ease-in-out infinite;
}

.sdt-academy-cta__float--2 {
    bottom: 12%;
    left: 6%;
    animation: float2 11s ease-in-out infinite;
}

.sdt-academy-cta__float--3 {
    top: 55%;
    left: 40%;
    animation: float 14s ease-in-out infinite;
    animation-delay: -5s;
}

.sdt-academy-cta .sdt-container {
    position: relative;
    z-index: 10;
}

/* --- 2-column layout --- */
.sdt-academy-cta__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: center;
    padding: var(--space-14) 0;
}

@media (min-width: 960px) {
    .sdt-academy-cta__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

/* --- Content column --- */
.sdt-academy-cta__content {
    text-align: left;
}

.sdt-academy-cta__logo {
    max-width: 200px;
    height: auto;
    margin-bottom: var(--space-6);
    filter: drop-shadow(0 0 20px rgba(152, 115, 255, 0.3));
}

.sdt-academy-cta__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.sdt-academy-cta__headline {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: var(--space-4);
}

.sdt-academy-cta__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    max-width: 480px;
}

/* Benefits list */
.sdt-academy-cta__benefits {
    list-style: none;
    margin: 0 0 var(--space-6) 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sdt-academy-cta__benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.sdt-academy-cta__benefits li svg {
    flex-shrink: 0;
    color: #22C55E;
}

/* Live badge */
.sdt-academy-cta__live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.125rem;
    margin-bottom: var(--space-8);
}

.sdt-academy-cta__live-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
    50%       { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.08); }
}

.sdt-academy-cta__live-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.sdt-academy-cta__live-text strong {
    color: #22C55E;
    font-weight: 700;
    margin-left: 0.25em;
}

/* CTA button */
.sdt-academy-cta__btn {
    display: inline-flex;
    box-shadow: 0 0 30px rgba(152, 115, 255, 0.35);
}

.sdt-academy-cta__btn:hover {
    box-shadow: 0 0 45px rgba(152, 115, 255, 0.5);
    transform: translateY(-2px);
}

/* --- Video column --- */
.sdt-academy-cta__video {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.sdt-academy-cta__video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 0 4px rgba(152, 115, 255, 0.1);
}

.sdt-academy-cta__video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sdt-academy-cta__video-caption {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    justify-content: center;
}

/* ============================================
   12. PARTNERS SECTION
   ============================================ */

/* Dark section background */
.sdt-partners {
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Animated mesh background */
.sdt-partners::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 30%, rgba(152, 115, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 45% 45% at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 35% 35% at 60% 20%, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: sdt-partners-mesh 20s ease-in-out infinite alternate;
}

@keyframes sdt-partners-mesh {
    0%   { opacity: .6; transform: scale(1) translate(0, 0); }
    50%  { opacity: .9; transform: scale(1.05) translate(10px, -10px); }
    100% { opacity: .6; transform: scale(1) translate(-5px, 5px); }
}

.sdt-partners .sdt-section__tag {
    background: rgba(152, 115, 255, 0.1);
    border-color: rgba(152, 115, 255, 0.2);
    color: var(--color-primary, #9873FF);
}

.sdt-partners .sdt-section__title {
    color: var(--color-white);
}

.sdt-partners .sdt-section__subtitle {
    color: var(--color-text-muted);
}

.sdt-partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* ── Card ───────────────────────────────── */
.sdt-partners__card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
}

.sdt-partners__card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(152, 115, 255, 0.35);
    box-shadow:
        0 20px 50px rgba(152, 115, 255, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06);
}

/* ── Image 3:2 ──────────────────────────── */
.sdt-partners__card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: rgba(152, 115, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdt-partners__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
    filter: brightness(1);
}

.sdt-partners__card:hover .sdt-partners__logo {
    transform: scale(1.08);
    filter: brightness(0.45) saturate(0.8);
}

.sdt-partners__logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-text-muted);
}

/* ── Cinematic overlay — slides from BOTTOM ─ */
.sdt-partners__card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.sdt-partners__overlay-inner {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    background: linear-gradient(
        to top,
        rgba(7, 9, 18, 0.98) 0%,
        rgba(7, 9, 18, 0.92) 55%,
        transparent 100%
    );
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.34, 1.3, 0.64, 1);
    will-change: transform;
}

.sdt-partners__card:hover .sdt-partners__overlay-inner {
    transform: translateY(0);
    pointer-events: auto;
}

/* Coupon inside overlay */
.sdt-partners__overlay-coupon {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sdt-partners__overlay-coupon-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-blue);
}

.sdt-partners__overlay-coupon-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sdt-partners__overlay-coupon-code {
    font-size: 1.125rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.06em;
    flex: 1;
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(152, 115, 255, 0.5);
}

/* Copy button */
.sdt-partners__coupon-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sdt-partners__coupon-copy:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: #fff;
    transform: scale(1.1);
}

.sdt-partners__coupon-copy.copied {
    background: #22C55E;
    border-color: #22C55E;
    color: #fff;
}

/* Go to site button */
.sdt-partners__overlay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--color-blue);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.03em;
}

.sdt-partners__overlay-btn:hover {
    background: var(--color-blue-hover);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(152, 115, 255, 0.4);
    color: #fff;
    text-decoration: none;
}

/* ============================================
   13. CONTACT SECTION
   ============================================ */
.sdt-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: start;
}

.sdt-contact__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--color-white);
}

.sdt-contact__description {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

/* ── Neon SVG Lines ── */
.sdt-contact__neon-svg {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 120px;
    margin-bottom: var(--space-4);
    opacity: 0.7;
}

.sdt-neon-lines {
    width: 100%;
    height: 100%;
}

/* Line draw animation on scroll */
.sdt-neon-path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sdt-neon-path--2 {
    transition-delay: 0.3s;
}

.sdt-neon-path--3 {
    transition-delay: 0.6s;
}

.is-visible .sdt-neon-path {
    stroke-dashoffset: 0;
}

/* Glowing nodes — pulse */
.sdt-neon-node {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.is-visible .sdt-neon-node {
    opacity: 1;
    animation: sdt-node-pulse 3s ease-in-out infinite;
}

.sdt-neon-node--1 { animation-delay: 0.8s; }
.sdt-neon-node--2 { animation-delay: 1.2s; }
.sdt-neon-node--3 { animation-delay: 1.6s; }
.sdt-neon-node--4 { animation-delay: 1s; }
.sdt-neon-node--5 { animation-delay: 1.4s; }

@keyframes sdt-node-pulse {
    0%, 100% { r: 3; opacity: 0.6; filter: drop-shadow(0 0 4px currentColor); }
    50%      { r: 5; opacity: 1;   filter: drop-shadow(0 0 12px currentColor) drop-shadow(0 0 24px currentColor); }
}

/* Traveling particles glow */
.sdt-neon-particle {
    opacity: 0;
    filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 12px currentColor);
}

.is-visible .sdt-neon-particle {
    opacity: 1;
}

@media (max-width: 768px) {
    .sdt-contact__neon-svg {
        height: 140px;
        margin-bottom: var(--space-3);
    }
}

/* ── Contact Left Column: Premium Design ── */
.sdt-contact__info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

/* Floating orb backgrounds */
.sdt-contact__orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sdt-contact__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.sdt-contact__orb--1 {
    width: 200px;
    height: 200px;
    background: rgba(152, 115, 255, 0.4);
    top: -40px;
    right: -30px;
    animation: sdt-orb-float 8s ease-in-out infinite;
}

.sdt-contact__orb--2 {
    width: 150px;
    height: 150px;
    background: rgba(56, 189, 248, 0.3);
    bottom: 20px;
    left: -20px;
    animation: sdt-orb-float 10s ease-in-out infinite reverse;
}

.sdt-contact__orb--3 {
    width: 100px;
    height: 100px;
    background: rgba(236, 72, 153, 0.25);
    top: 50%;
    left: 40%;
    animation: sdt-orb-float 12s ease-in-out infinite 2s;
}

@keyframes sdt-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(15px, -20px) scale(1.1); }
    66%      { transform: translate(-10px, 10px) scale(0.95); }
}

/* Eyebrow — availability badge */
.sdt-contact__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: var(--space-4);
    width: fit-content;
}

.sdt-contact__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: sdt-pulse-dot 2s ease-in-out infinite;
}

@keyframes sdt-pulse-dot {
    0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); opacity: 1; }
    50%      { box-shadow: 0 0 16px rgba(34, 197, 94, 0.9), 0 0 30px rgba(34, 197, 94, 0.3); opacity: 0.8; }
}

.sdt-contact__title {
    position: relative;
    z-index: 1;
}

.sdt-contact__description {
    position: relative;
    z-index: 1;
}

/* Channel cards */
.sdt-contact__channels {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--space-6);
    overflow: visible;
    /* Compensate translateX(6px) on hover so shadow/border isn't clipped */
    padding-right: 8px;
    margin-right: -8px;
}

.sdt-contact__channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sdt-contact__channel:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(6px);
    text-decoration: none;
}

.sdt-contact__channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sdt-contact__channel-icon--wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.sdt-contact__channel:hover .sdt-contact__channel-icon--wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.sdt-contact__channel-icon--mail {
    background: rgba(152, 115, 255, 0.15);
    color: var(--color-primary, #9873ff);
}

.sdt-contact__channel:hover .sdt-contact__channel-icon--mail {
    background: var(--color-primary, #9873ff);
    color: #fff;
    box-shadow: 0 4px 16px rgba(152, 115, 255, 0.3);
}

.sdt-contact__channel-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex: 1;
    min-width: 0;
}

.sdt-contact__channel-text strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
}

.sdt-contact__channel-text span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

.sdt-contact__channel-arrow {
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s, color 0.3s;
}

.sdt-contact__channel:hover .sdt-contact__channel-arrow {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(4px);
}

/* Contact Form Flip */
.sdt-contact__form-flipper {
    perspective: 1200px;
    position: relative;
}

.sdt-contact__form-front,
.sdt-contact__form-back {
    backface-visibility: hidden;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.sdt-contact__form-back {
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.sdt-contact__form-flipper.is-flipped .sdt-contact__form-front {
    transform: rotateY(-180deg);
    pointer-events: none;
}

.sdt-contact__form-flipper.is-flipped .sdt-contact__form-back {
    transform: rotateY(0deg);
}

.sdt-contact__thank-you {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.sdt-contact__thank-icon {
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.sdt-contact__thank-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.sdt-contact__thank-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 320px;
}

.sdt-contact__thank-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.sdt-contact__thank-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.sdt-contact__thank-reset {
    margin-top: 0.5rem;
    color: var(--color-text-muted) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.sdt-contact__thank-reset:hover {
    color: var(--color-white) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Contact Form */
.sdt-contact__form-wrapper {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
}

.sdt-contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.sdt-contact__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

.sdt-contact__form-group {
    display: flex;
    flex-direction: column;
}

.sdt-contact__form-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-text-body);
    margin-bottom: 0.375rem;
}

.sdt-contact__required {
    color: var(--color-error);
}

.sdt-contact__form-input,
.sdt-contact__form-textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition), box-shadow var(--transition);
}

/* ── intl-tel-input: campo WhatsApp com DDI ── */
.sdt-contact__tel-wrap {
    width: 100%;
}

.sdt-contact__tel-wrap .iti {
    width: 100%;
    display: block;
}

.sdt-contact__tel-wrap .iti__tel-input {
    width: 100% !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem 0.75rem 6.5rem;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
}

.sdt-contact__tel-wrap .iti__tel-input:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(152, 115, 255, 0.18);
}

.sdt-contact__tel-wrap .iti__selected-country {
    border-right: 1px solid var(--color-border);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    background: var(--color-bg-alt);
    padding: 0 0.625rem;
}

.sdt-contact__tel-wrap .iti__selected-country:hover {
    background: rgba(152, 115, 255, 0.09);
}

.sdt-contact__tel-wrap .iti__dropdown-content {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-family);
    font-size: 0.875rem;
    z-index: 200;
}

.sdt-contact__tel-wrap .iti__search-input {
    font-family: var(--font-family);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

.sdt-contact__tel-wrap .iti__country.iti__highlight,
.sdt-contact__tel-wrap .iti__country:hover {
    background: rgba(152, 115, 255, 0.10) !important;
}

.sdt-contact__form-input::placeholder,
.sdt-contact__form-textarea::placeholder {
    color: var(--color-text-light);
}

.sdt-contact__form-input:focus,
.sdt-contact__form-textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(152, 115, 255, 0.1);
}

.sdt-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot */
.sdt-contact__honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* GDPR Consent */
.sdt-contact__form-group--consent {
    flex-direction: row;
}

.sdt-contact__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.sdt-contact__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sdt-contact__checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

.sdt-contact__checkbox:checked + .sdt-contact__checkbox-custom {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.sdt-contact__checkbox:checked + .sdt-contact__checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sdt-contact__checkbox:focus-visible + .sdt-contact__checkbox-custom {
    box-shadow: 0 0 0 3px rgba(152, 115, 255, 0.15);
}

/* Submit */
.sdt-contact__form-submit {
    width: 100%;
    position: relative;
}

.sdt-contact__form-submit-loading {
    display: none;
    animation: spin 1s linear infinite;
}

.sdt-contact__form-submit.is-loading .sdt-contact__form-submit-text,
.sdt-contact__form-submit.is-loading .sdt-contact__form-submit-icon {
    visibility: hidden;
}

.sdt-contact__form-submit.is-loading .sdt-contact__form-submit-loading {
    display: block;
    position: absolute;
}

/* Form Messages */
.sdt-contact__form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

.sdt-contact__form-message[hidden] {
    display: none;
}

.sdt-contact__form-message--success {
    background: var(--color-success-bg);
    border: 1px solid var(--color-success-border);
    color: var(--color-success-text);
}

.sdt-contact__form-message--error {
    background: var(--color-error-bg);
    border: 1px solid var(--color-error);
    color: var(--color-error-text);
}

/* ============================================
   14. FOOTER (DARK)
   ============================================ */
.sdt-footer {
    background:
        radial-gradient(ellipse 80% 60% at 10% 90%, rgba(152, 115, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(192, 132, 252, 0.06) 0%, transparent 60%),
        linear-gradient(165deg, #0a0f1c 0%, #0d1228 35%, #10102a 65%, #15101e 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-16) 0 0;
    position: relative;
}

.sdt-footer::before {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, #7c3aed, #9873ff, #c084fc, #9873ff, #7c3aed, transparent);
}

.sdt-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}

.sdt-footer a:hover {
    color: var(--color-green);
    text-decoration: none;
}

.sdt-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-10);
}

/* Footer Brand Column */
.sdt-footer__col--brand {
    max-width: 320px;
}

.sdt-footer__logo-link,
.sdt-footer__logo-text {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
    text-decoration: none;
}

.sdt-footer__logo-link:hover,
.sdt-footer__logo-text:hover {
    color: var(--color-white);
    text-decoration: none;
}

.sdt-footer__logo-img {
    max-height: 40px;
    width: auto;
}

/* WordPress custom logo in footer */
.sdt-footer__col--brand .custom-logo-link {
    display: inline-block;
    margin-bottom: var(--space-4);
    text-decoration: none;
}

.sdt-footer__col--brand .custom-logo {
    max-height: 40px;
    width: auto;
}

.sdt-footer__description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

/* Footer Social */
.sdt-footer__social {
    display: flex;
    gap: 0.75rem;
}

.sdt-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.sdt-footer__social-link svg {
    display: block;
    pointer-events: none;
}

.sdt-footer__social-link:hover,
.sdt-footer__social-link:focus-visible {
    background: #9873FF;
    color: #ffffff;
    transform: translateY(-3px);
    outline: none;
    box-shadow: 0 4px 16px rgba(152, 115, 255, 0.4);
}

.sdt-footer__social-link:hover svg,
.sdt-footer__social-link:focus-visible svg {
    fill: #ffffff;
    color: #ffffff;
}

/* Footer Columns */
.sdt-footer__col-title {
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.sdt-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.sdt-footer__menu a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.sdt-footer__menu a:hover {
    color: var(--color-white);
}

/* Footer Contact List */
.sdt-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sdt-footer__contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.sdt-footer__contact-link:hover {
    color: var(--color-white);
}

/* Footer Bottom */
.sdt-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 0 1.25rem;
}

.sdt-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.sdt-footer__legal {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.sdt-footer__legal a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    text-decoration: none;
    transition: color var(--transition-base);
    opacity: 0.7;
}

.sdt-footer__legal a:hover {
    color: var(--color-green);
    opacity: 1;
}

@media (max-width: 640px) {
    .sdt-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
}

.sdt-footer__copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: left;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   15. FLOATING WHATSAPP
   ============================================ */
.sdt-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-whatsapp);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    text-decoration: none;
}

.sdt-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    color: var(--color-white);
}

.sdt-whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--color-whatsapp);
    animation: whatsappPulse 2s ease-out infinite;
    pointer-events: none;
}

/* ============================================
   16. BACK TO TOP
   ============================================ */
.sdt-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 92px;
    z-index: 9998;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
    color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

.sdt-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sdt-back-to-top:hover {
    background: rgba(152, 115, 255, 0.15);
    border-color: rgba(152, 115, 255, 0.35);
    color: var(--color-white);
}

/* ============================================
   17. SINGLE POST / ARTICLE PROSE
   ============================================ */

/* Reading Progress Bar */
.sdt-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 9999;
    pointer-events: none;
}

.sdt-reading-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-green), var(--color-blue));
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* Base */
/* ======================================================
   SINGLE POST — Light editorial design
   ====================================================== */

.sdt-single-post {
    padding-top: 0;
    color: #374151;
    background:
        radial-gradient(ellipse 80% 40% at 0% 60%, rgba(152, 115, 255, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 100% 20%, rgba(192, 132, 252, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 60% 100%, rgba(129, 140, 248, 0.05) 0%, transparent 55%),
        #f7f7fb;
}

/* ── Header ── */
.sdt-single-post__header {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 1.5rem;
    background: transparent;
    position: relative;
}

.sdt-single-post__header-inner {
    /* full container width */
}

/* Breadcrumbs */
.sdt-single-post__breadcrumbs {
    margin-bottom: var(--space-4);
}

.sdt-single-post__breadcrumbs .sdt-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.125rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sdt-single-post__breadcrumbs .sdt-breadcrumbs__item,
.sdt-single-post__breadcrumbs .sdt-breadcrumbs__separator {
    color: #9ca3af;
    font-size: 0.8125rem;
}

.sdt-single-post__breadcrumbs .sdt-breadcrumbs__item a,
.sdt-single-post__breadcrumbs .sdt-breadcrumbs__item span {
    color: #6b7280 !important;
    text-decoration: none;
    font-size: 0.8125rem;
}

.sdt-single-post__breadcrumbs .sdt-breadcrumbs__item a:hover {
    color: var(--color-primary, #9873ff) !important;
}

.sdt-single-post__breadcrumbs .sdt-breadcrumbs__separator {
    opacity: 0.5;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #9ca3af;
}

.sdt-single-post__breadcrumbs .sdt-breadcrumbs__list > li:last-of-type,
.sdt-single-post__breadcrumbs .sdt-breadcrumbs__list > svg:last-of-type {
    display: none;
}

/* Title */
.sdt-single-post__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: #111827;
    max-width: 820px;
}

/* Meta row: left (cat+date+time) — right (share) */
.sdt-single-post__meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sdt-single-post__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: #6b7280;
}

.sdt-single-post__meta-cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary, #9873ff);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sdt-single-post__meta-cat:hover {
    opacity: 0.7;
}

.sdt-single-post__meta-sep {
    opacity: 0.35;
    color: #9ca3af;
}

.sdt-single-post__date {
    color: #6b7280;
}

.sdt-single-post__reading-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6b7280;
}

.sdt-single-post__views-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #6b7280;
}

/* Share top — sits inside meta-row, right side */
.sdt-single-post__share--top {
    margin-top: 0;
}

.sdt-single-post__share--top .sdt-single-post__share-buttons {
    gap: 0.375rem;
}

/* ── Featured Image ── */
.sdt-single-post__featured-image {
    padding: 1rem 0 0;
}

.sdt-single-post__featured-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}

/* ── Featured Video (YouTube embed) ── */
.sdt-single-post__featured-video {
    padding: 1rem 0 0;
}

.sdt-single-post__video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.sdt-single-post__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Body ── */
.sdt-single-post__body {
    padding-top: var(--space-10);
    padding-bottom: var(--space-12);
    background: transparent;
}

/* White translucent content box */
.sdt-single-post__content-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2.5rem 3rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    color: #374151;
}

/* Layout: conteúdo + sidebar de ads */
.sdt-single-post__body-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-10);
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.sdt-single-post__body-inner {
    max-width: 720px;
    min-width: 0;
}

/* Ad sidebar — sticky desktop, hidden mobile */
.sdt-single-post__ad-sidebar {
    position: sticky;
    top: calc(var(--header-height, 72px) + var(--space-6));
    padding-top: var(--space-2);
}

/* ── Ad blocks (in-content + sidebar) ── */
.sdt-ad {
    margin: 0;
    text-align: center;
    overflow: hidden;
}

.sdt-ad--in-content {
    margin: var(--space-8) 0;
    padding: var(--space-5);
    background: #f3f3f3;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
}

.sdt-ad--in-content::before {
    content: 'Publicidade';
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: var(--space-3);
}

.sdt-ad--sidebar {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.sdt-ad--sidebar::before {
    content: 'Publicidade';
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: var(--space-3);
    text-align: center;
}

/* Academy Banner — sidebar CTA */
.sdt-academy-banner {
    display: block;
    text-decoration: none;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, #1a1028 0%, #0f0a1a 60%, #1a0a2e 100%);
    border: 1px solid rgba(152, 115, 255, 0.15);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.sdt-academy-banner:hover {
    border-color: rgba(152, 115, 255, 0.35);
    box-shadow: 0 8px 32px rgba(152, 115, 255, 0.15);
    transform: translateY(-2px);
    text-decoration: none;
}

.sdt-academy-banner__inner {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    text-align: center;
}

.sdt-academy-banner__logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.sdt-academy-banner__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.sdt-academy-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: var(--color-primary, #9873ff);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.sdt-academy-banner:hover .sdt-academy-banner__btn {
    background: #7c3aed;
}

.sdt-academy-banner__btn svg {
    transition: transform 0.3s;
}

.sdt-academy-banner:hover .sdt-academy-banner__btn svg {
    transform: translateX(3px);
}

/* Responsive: esconder sidebar ad no mobile, layout single column */
@media (max-width: 1024px) {
    .sdt-single-post__body-layout {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .sdt-single-post__ad-sidebar {
        display: none;
    }
}

/* Prose - article content styling */
.sdt-prose {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #1f2937;
    font-family: 'Poppins', 'Inter', var(--font-family);
}

.sdt-prose h1,
.sdt-prose h2,
.sdt-prose h3,
.sdt-prose h4,
.sdt-prose h5,
.sdt-prose h6 {
    color: #111827;
    font-weight: 700;
    font-family: 'Inter', var(--font-family);
}

.sdt-prose h1 {
    font-size: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.sdt-prose h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.sdt-prose h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.sdt-prose h4 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.sdt-prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #374151;
}

/* Force all prose children to inherit dark colors */
.sdt-prose,
.sdt-prose p,
.sdt-prose li,
.sdt-prose td,
.sdt-prose dd,
.sdt-prose span {
    color: #374151;
}

.sdt-prose a {
    color: var(--color-primary, #9873ff);
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.sdt-prose a:hover {
    color: #6d28d9;
    background: rgba(152, 115, 255, 0.1);
}

/* Content buttons — elevated design with animated arrow */
.sdt-prose .wp-block-button {
    margin: 1.5rem 0;
}

.sdt-prose .wp-block-button__link,
.sdt-prose a.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary, #9873ff) 0%, #7c3aed 100%);
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(.34,1.2,.64,1), box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 16px rgba(152, 115, 255, 0.35), 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.sdt-prose .wp-block-button__link::after {
    content: '\2192';
    display: inline-block;
    font-size: 1.125rem;
    transition: transform 0.3s cubic-bezier(.34,1.2,.64,1);
    font-weight: 400;
}

.sdt-prose .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(152, 115, 255, 0.45), 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #fff !important;
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    background-clip: padding-box;
}

.sdt-prose .wp-block-button__link:hover::after {
    transform: translateX(4px);
    animation: sdt-arrow-bounce 0.6s ease-in-out infinite;
}

@keyframes sdt-arrow-bounce {
    0%, 100% { transform: translateX(4px); }
    50% { transform: translateX(8px); }
}

.sdt-prose .wp-block-button__link:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(152, 115, 255, 0.3);
}

/* Outline style button variant */
.sdt-prose .wp-block-button.is-style-outline .wp-block-button__link,
.sdt-prose .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: transparent !important;
    border: 2px solid var(--color-primary, #9873ff);
    color: var(--color-primary, #9873ff) !important;
    box-shadow: 0 2px 8px rgba(152, 115, 255, 0.15);
}

.sdt-prose .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: rgba(152, 115, 255, 0.08) !important;
    color: #7c3aed !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(152, 115, 255, 0.25);
}

.sdt-prose strong {
    font-weight: 600;
    color: #111827;
}

.sdt-prose blockquote {
    border-left: 4px solid var(--color-primary, #9873ff);
    padding: 1.5rem;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    background: rgba(152, 115, 255, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: #6b7280;
    font-style: italic;
}

.sdt-prose blockquote p:last-child {
    margin-bottom: 0;
}

.sdt-prose code {
    background: rgba(152, 115, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.875em;
    color: #7c3aed;
}

/* Code block — shadcn style */
.sdt-prose .sdt-code-block {
    position: relative;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.sdt-prose .sdt-code-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem 0.5rem 1rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    min-height: 40px;
}

.sdt-prose .sdt-code-block__lang {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: lowercase;
    font-family: var(--font-family);
    letter-spacing: 0.02em;
}

.sdt-prose .sdt-code-block__copy {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.625rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    line-height: 1;
}

.sdt-prose .sdt-code-block__copy:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.sdt-prose .sdt-code-block__copy--copied {
    color: #16a34a;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.sdt-prose pre {
    background: #0f172a;
    border-radius: 0;
    padding: 1.25rem 1.5rem;
    overflow-x: auto;
    margin: 0;
}

/* Pre blocks NOT wrapped in sdt-code-block get standalone style */
.sdt-prose > pre {
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    border: 1px solid #e5e7eb;
}

.sdt-prose pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    color: #e2e8f0;
    font-size: 0.8125rem;
    line-height: 1.7;
}

.sdt-prose ul,
.sdt-prose ol {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.sdt-prose ol {
    counter-reset: prose-ol;
}

.sdt-prose li {
    margin-bottom: 0.75rem;
    color: #1f2937;
    line-height: 1.7;
    position: relative;
    padding-left: 2rem;
}

/* Unordered list — purple gradient checkmark */
.sdt-prose ul > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary, #9873ff) 0%, #7c3aed 100%);
    flex-shrink: 0;
}

.sdt-prose ul > li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: calc(0.35em + 4px);
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

/* Ordered list — numbered badge */
.sdt-prose ol > li::before {
    counter-increment: prose-ol;
    content: counter(prose-ol);
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--color-primary, #9873ff) 0%, #7c3aed 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Inter', var(--font-family);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Nested list indentation */
.sdt-prose li ul,
.sdt-prose li ol {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Nested UL uses a smaller dot */
.sdt-prose ul ul > li::before {
    width: 8px;
    height: 8px;
    top: 0.55em;
    left: 4px;
    background: rgba(152, 115, 255, 0.4);
}

.sdt-prose ul ul > li::after {
    display: none;
}

.sdt-prose img {
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.sdt-prose figure {
    margin: 2rem 0;
}

.sdt-prose figcaption {
    text-align: center;
    font-size: 0.8125rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* ── Image Zoom Wrapper + Icon ── */
.sdt-img-zoom-wrap {
    position: relative;
    display: inline-block;
    cursor: zoom-in;
    line-height: 0;
}

.sdt-img-zoom-wrap img {
    margin: 0;
    transition: filter 0.25s;
}

.sdt-img-zoom-wrap:hover img {
    filter: brightness(0.92);
}

.sdt-img-zoom-icon {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
    z-index: 2;
}

.sdt-img-zoom-wrap:hover .sdt-img-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* ── Lightbox Overlay ── */
.sdt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sdt-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.sdt-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.sdt-lightbox__img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sdt-lightbox.is-open .sdt-lightbox__img {
    transform: scale(1);
}

.sdt-lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sdt-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sdt-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.sdt-prose th {
    background: #f3f4f6;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    color: #111827;
}

.sdt-prose td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.sdt-prose hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
}

/* Tags */
.sdt-single-post__tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid #e5e7eb;
}

.sdt-single-post__tags-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.sdt-single-post__tag {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.8125rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sdt-single-post__tag:hover {
    background: var(--color-blue);
    color: var(--color-white);
    text-decoration: none;
}

/* Social Share */
.sdt-single-post__share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

.sdt-single-post__share-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sdt-single-post__share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sdt-single-post__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: var(--font-family);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}

.sdt-single-post__share-btn svg {
    flex-shrink: 0;
}

.sdt-single-post__share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    text-decoration: none;
}

.sdt-single-post__share-btn--whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.sdt-single-post__share-btn--twitter:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.sdt-single-post__share-btn--linkedin:hover {
    background: #0A66C2;
    color: #fff;
    border-color: #0A66C2;
}

.sdt-single-post__share-btn--facebook:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.sdt-single-post__share-btn--copy:hover {
    background: var(--color-primary, #9873ff);
    color: #fff;
    border-color: var(--color-primary, #9873ff);
}

/* Share: mobile — icon only, no text */
@media (max-width: 640px) {
    .sdt-single-post__share-btn {
        padding: 0.5rem;
        width: 36px;
        height: 36px;
        justify-content: center;
        font-size: 0;
        gap: 0;
    }
    .sdt-single-post__share-btn svg {
        width: 18px;
        height: 18px;
    }
    .sdt-single-post__meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Share bottom */
.sdt-single-post__share--bottom {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid #e5e7eb;
}

/* Related Posts */
.sdt-single-post__related {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: var(--space-16) 0;
}

.sdt-single-post__related-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-8);
    text-align: center;
    color: #111827;
}

.sdt-single-post__related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Related posts: cards on white background need dark text */
.sdt-single-post__related .sdt-post-card {
    background: #fff;
    border: 1px solid #e5e7eb;
}

.sdt-single-post__related .sdt-post-card__title,
.sdt-single-post__related .sdt-post-card__title a {
    color: #111827;
}

.sdt-single-post__related .sdt-post-card__title a:hover {
    color: var(--color-accent, #7c3aed);
}

.sdt-single-post__related .sdt-post-card__excerpt {
    color: #374151;
}

.sdt-single-post__related .sdt-post-card__meta,
.sdt-single-post__related .sdt-post-card__date,
.sdt-single-post__related .sdt-post-card__reading-time,
.sdt-single-post__related .sdt-post-card__category {
    color: #6B7280;
}

.sdt-single-post__related .sdt-post-card__image-placeholder {
    background: #f3f4f6;
    color: #9ca3af;
}

/* Post Navigation */
.sdt-single-post__navigation {
    border-top: 1px solid #e5e7eb;
    padding: var(--space-8) 0;
    background: transparent;
}

.sdt-single-post__navigation-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sdt-single-post__nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    padding: var(--space-4);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    background: #fff;
    transition: all 0.2s;
}

.sdt-single-post__nav-link:hover {
    border-color: var(--color-primary, #9873ff);
    box-shadow: 0 4px 12px rgba(152, 115, 255, 0.1);
    text-decoration: none;
}

.sdt-single-post__nav-link--next {
    text-align: right;
}

.sdt-single-post__nav-label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdt-single-post__nav-link--next .sdt-single-post__nav-label {
    justify-content: flex-end;
}

.sdt-single-post__nav-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Comments */
.sdt-single-post__comments {
    padding: var(--space-12) 0;
    border-top: 1px solid var(--color-border);
}

/* Page Links */
.sdt-page-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
}

.sdt-page-links__label {
    font-weight: 500;
    color: var(--color-text);
}

.sdt-page-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-body);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sdt-page-links a:hover {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
    text-decoration: none;
}

/* ============================================
   18. BLOG ARCHIVE / INDEX
   ============================================ */
.sdt-blog-archive {
    padding-bottom: var(--space-16);
}

/* Hero */
.sdt-blog-archive__hero {
    position: relative;
    background: var(--color-dark);
    padding-top: var(--header-height);
    padding-bottom: var(--space-12);
    overflow: hidden;
}

.sdt-blog-archive__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 15% 50%, rgba(152, 115, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 85% 30%, rgba(152, 115, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sdt-blog-archive__hero-inner {
    position: relative;
    z-index: 1;
    padding-top: var(--space-10);
}

/* Breadcrumbs in hero */
.sdt-blog-archive__hero .sdt-breadcrumbs {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-5);
}

.sdt-blog-archive__hero .sdt-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sdt-blog-archive__hero .sdt-breadcrumbs__item,
.sdt-blog-archive__hero .sdt-breadcrumbs__separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

.sdt-blog-archive__hero .sdt-breadcrumbs__item a,
.sdt-blog-archive__hero .sdt-breadcrumbs__item span {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.sdt-blog-archive__hero .sdt-breadcrumbs__item a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.sdt-blog-archive__hero .sdt-breadcrumbs__separator {
    color: rgba(255, 255, 255, 0.3);
    opacity: 0.5;
}

.sdt-blog-archive__hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue);
    background: rgba(152, 115, 255, 0.12);
    border: 1px solid rgba(152, 115, 255, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.sdt-blog-archive__hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: var(--space-3);
    line-height: 1.15;
}

.sdt-blog-archive__hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin-bottom: 0;
    line-height: 1.6;
}

.sdt-blog-archive__hero-description {
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin-top: var(--space-3);
    margin-bottom: 0;
}

.sdt-blog-archive__hero-meta {
    margin-top: var(--space-4);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* Content area */
.sdt-blog-archive__body {
    padding-top: var(--space-10);
}

/* Layout */
.sdt-blog-archive__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}

/* Grid */
.sdt-blog-archive__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Sidebar */
.sdt-blog-archive__sidebar {
    display: none;
}

/* Sidebar Widget Styles */
.sdt-blog-archive__sidebar .widget {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sdt-blog-archive__sidebar .widget:last-child {
    margin-bottom: 0;
}

.sdt-blog-archive__sidebar .widget-title,
.sdt-blog-archive__sidebar .widgettitle,
.sdt-blog-archive__sidebar .widget h2,
.sdt-blog-archive__sidebar .widget h3,
.sdt-blog-archive__sidebar h2.wp-block-heading,
.sdt-blog-archive__sidebar h3.wp-block-heading {
    font-size: 0.75rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted) !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.4;
}

.sdt-blog-archive__sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sdt-blog-archive__sidebar .widget ul li {
    border-bottom: 1px solid var(--color-border-light);
    padding: 0.5rem 0;
}

.sdt-blog-archive__sidebar .widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sdt-blog-archive__sidebar .widget ul li a {
    color: var(--color-text-body);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sdt-blog-archive__sidebar .widget ul li a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--color-blue);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.5;
}

.sdt-blog-archive__sidebar .widget ul li a:hover {
    color: var(--color-blue);
}

.sdt-blog-archive__sidebar .widget ul li a:hover::before {
    opacity: 1;
}

/* Category list counts */
.sdt-blog-archive__sidebar .widget ul li .post-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--color-text-light);
    background: var(--color-bg-section);
    border-radius: var(--radius-full);
    padding: 0.1em 0.5em;
}

/* Block widget group resets */
.sdt-blog-archive__sidebar .wp-block-group {
    margin: 0;
    padding: 0;
}

.sdt-blog-archive__sidebar .wp-block-latest-posts,
.sdt-blog-archive__sidebar .wp-block-latest-comments {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sdt-blog-archive__sidebar .wp-block-latest-posts li,
.sdt-blog-archive__sidebar .wp-block-latest-comments li {
    border-bottom: 1px solid var(--color-border-light);
    padding: 0.5rem 0;
}

.sdt-blog-archive__sidebar .wp-block-latest-posts li:last-child,
.sdt-blog-archive__sidebar .wp-block-latest-comments li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sdt-blog-archive__sidebar .wp-block-latest-posts a,
.sdt-blog-archive__sidebar .wp-block-latest-comments a {
    color: var(--color-text-body);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.sdt-blog-archive__sidebar .wp-block-latest-posts a::before,
.sdt-blog-archive__sidebar .wp-block-latest-comments a::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--color-blue);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.5;
    margin-top: 0.45em;
}

.sdt-blog-archive__sidebar .wp-block-latest-posts a:hover,
.sdt-blog-archive__sidebar .wp-block-latest-comments a:hover {
    color: var(--color-blue);
}

/* Search widget — classic + block */
.sdt-blog-archive__sidebar .widget_search .search-form,
.sdt-blog-archive__sidebar .wp-block-search {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sdt-blog-archive__sidebar .wp-block-search__label {
    font-size: 0.75rem !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted) !important;
    margin-bottom: 0.5rem !important;
}

.sdt-blog-archive__sidebar .wp-block-search__inside-wrapper {
    display: flex;
    gap: 0.5rem;
}

.sdt-blog-archive__sidebar .widget_search input[type="search"],
.sdt-blog-archive__sidebar .wp-block-search__input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    background: var(--color-bg);
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition-fast);
    min-width: 0;
}

.sdt-blog-archive__sidebar .widget_search input[type="search"]:focus,
.sdt-blog-archive__sidebar .wp-block-search__input:focus {
    border-color: var(--color-blue);
}

.sdt-blog-archive__sidebar .widget_search button,
.sdt-blog-archive__sidebar .widget_search input[type="submit"],
.sdt-blog-archive__sidebar .wp-block-search__button {
    padding: 0.5rem 0.875rem;
    background: var(--color-blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
    white-space: nowrap;
}

.sdt-blog-archive__sidebar .widget_search button:hover,
.sdt-blog-archive__sidebar .widget_search input[type="submit"]:hover,
.sdt-blog-archive__sidebar .wp-block-search__button:hover {
    background: var(--color-blue-hover);
}

/* Breadcrumbs */
.sdt-breadcrumbs {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

.sdt-breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sdt-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
}

.sdt-breadcrumbs__item + .sdt-breadcrumbs__item::before {
    content: '›';
    display: inline-block;
    margin-right: .375rem;
    color: var(--color-text-light);
    opacity: .5;
    font-size: 1rem;
    line-height: 1;
}

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

.sdt-breadcrumbs a:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

.sdt-breadcrumbs__separator {
    color: var(--color-text-light);
    display: inline-flex;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: .5;
}

/* Pagination */
.sdt-pagination {
    margin-top: var(--space-10);
}

.sdt-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.sdt-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-body);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sdt-pagination .page-numbers:hover {
    background: var(--color-bg-alt);
    text-decoration: none;
}

.sdt-pagination .page-numbers.current {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

.sdt-pagination .page-numbers.dots {
    border: none;
    background: none;
    cursor: default;
}

.sdt-pagination .prev,
.sdt-pagination .next {
    display: inline-flex;
    align-items: center;
}

/* ============================================
   19. SEARCH FORM
   ============================================ */
.sdt-search-form {
    width: 100%;
}

.sdt-search-form__wrapper {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sdt-search-form__wrapper:focus-within {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(152, 115, 255, 0.1);
}

.sdt-search-form__input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--font-family);
    color: var(--color-text);
    background: transparent;
    outline: none;
}

.sdt-search-form__input::placeholder {
    color: var(--color-text-light);
}

.sdt-search-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: var(--color-blue);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition);
}

.sdt-search-form__submit:hover {
    background: var(--color-blue-hover);
}

/* ============================================
   20. SEARCH EMPTY STATE
   ============================================ */
.sdt-search-empty {
    text-align: center;
    padding: var(--space-16) 0;
}

.sdt-search-empty__icon {
    margin-bottom: var(--space-6);
    color: var(--color-text-light);
}

.sdt-search-empty__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.sdt-search-empty__text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Content None */
.sdt-content-none {
    text-align: center;
    padding: var(--space-16) 0;
}

.sdt-content-none__icon {
    margin-bottom: var(--space-6);
    color: var(--color-text-light);
}

.sdt-content-none__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.sdt-content-none__text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.sdt-content-none__search {
    max-width: 400px;
    margin: 0 auto var(--space-8);
}

.sdt-content-none__categories {
    margin-top: var(--space-8);
}

.sdt-content-none__categories-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.sdt-content-none__categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.sdt-content-none__category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 6px 14px;
    background: var(--color-bg-section);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-text-body);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sdt-content-none__category-link:hover {
    background: var(--color-blue);
    color: var(--color-white);
    text-decoration: none;
}

.sdt-content-none__category-count {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.sdt-content-none__category-link:hover .sdt-content-none__category-count {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   21. 404 PAGE
   ============================================ */
.sdt-404 {
    padding: calc(var(--header-height) + 2rem) 0 var(--space-16);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}

.sdt-404__content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8) 0;
}

/* Visual / Terminal */
.sdt-404__visual {
    margin-bottom: var(--space-8);
}

.sdt-404__number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-6);
}

.sdt-404__digit {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

/* Terminal */
.sdt-404__terminal {
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-dark-2);
    text-align: left;
    box-shadow: var(--shadow-lg);
}

.sdt-404__terminal-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--color-dark-3);
}

.sdt-404__terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sdt-404__terminal-dot--red {
    background: #FF5F57;
}

.sdt-404__terminal-dot--yellow {
    background: #FEBC2E;
}

.sdt-404__terminal-dot--green {
    background: #28C840;
}

.sdt-404__terminal-body {
    padding: 1rem 1.25rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.sdt-404__terminal-body p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.sdt-404__terminal-prompt {
    color: var(--color-green);
    margin-right: 0.5rem;
}

.sdt-404__terminal-error {
    color: var(--color-error) !important;
}

.sdt-404__terminal-cursor {
    color: var(--color-green);
    animation: blink 1s step-end infinite;
}

/* 404 Content */
.sdt-404__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.sdt-404__text {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto var(--space-6);
}

.sdt-404__actions {
    margin-bottom: var(--space-8);
}

.sdt-404__search {
    max-width: 400px;
    margin: 0 auto var(--space-10);
}

.sdt-404__search-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
}

/* Recent posts */
.sdt-404__recent {
    width: 100%;
    max-width: 900px;
    margin-top: var(--space-8);
}

.sdt-404__recent-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.sdt-404__recent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* ============================================
   22. GENERIC PAGE
   ============================================ */
.sdt-page {
    padding: calc(var(--header-height) + 2rem) 0 var(--space-16);
    background:
        radial-gradient(ellipse 70% 50% at 5% 10%, rgba(152, 115, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 95% 30%, rgba(192, 132, 252, 0.05) 0%, transparent 60%),
        #f7f7fb;
    color: #374151;
    min-height: 100vh;
}

.sdt-page__header {
    margin-bottom: var(--space-8);
}

.sdt-page__title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

.sdt-page__content {
    max-width: 720px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2.5rem 3rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    color: #374151;
}

/* Page breadcrumbs in light mode */
.sdt-page .sdt-breadcrumbs__item,
.sdt-page .sdt-breadcrumbs__sep,
.sdt-page .sdt-breadcrumbs__separator {
    color: #9ca3af;
    font-size: 0.8125rem;
}

.sdt-page .sdt-breadcrumbs__item a {
    color: #6b7280 !important;
    text-decoration: none;
}

.sdt-page .sdt-breadcrumbs__item a:hover {
    color: var(--color-primary, #9873ff) !important;
}

.sdt-page__comments {
    margin-top: var(--space-12);
    border-top: 1px solid #e5e7eb;
    padding-top: var(--space-8);
    color: #374151;
}

@media (max-width: 640px) {
    .sdt-page__content {
        padding: 1.5rem 1.25rem;
        border-radius: 0.75rem;
    }
}

/* ============================================
   23. VIBE CODING PAGE
   ============================================ */

/* VC Hero */
.sdt-vc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

.sdt-vc-hero__bg-effects {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sdt-vc-hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(152, 115, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(152, 115, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

.sdt-vc-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.sdt-vc-hero__glow--1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -5%;
    background: rgba(152, 115, 255, 0.15);
    animation: orbFloat 15s ease-in-out infinite;
}

.sdt-vc-hero__glow--2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: -5%;
    background: rgba(152, 115, 255, 0.1);
    animation: orbFloat 18s ease-in-out infinite;
    animation-delay: -5s;
}

/* VC Floating Code */
.sdt-vc-hero__floating-code {
    position: absolute;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.75rem;
    color: rgba(152, 115, 255, 0.3);
    border: 1px solid rgba(152, 115, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    background: rgba(152, 115, 255, 0.05);
    white-space: nowrap;
    z-index: 2;
}

.sdt-vc-hero__floating-code--1 {
    top: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.sdt-vc-hero__floating-code--2 {
    top: 30%;
    right: 8%;
    animation: float2 10s ease-in-out infinite;
    animation-delay: -3s;
}

.sdt-vc-hero__floating-code--3 {
    bottom: 25%;
    left: 12%;
    animation: float 12s ease-in-out infinite;
    animation-delay: -5s;
}

/* VC Hero Content */
.sdt-vc-hero__inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: calc(var(--header-height) + 2rem) 0 4rem;
}

.sdt-vc-hero__content {
    max-width: var(--container-narrow);
    text-align: center;
}

.sdt-vc-hero__badge {
    display: inline-block;
    background: rgba(152, 115, 255, 0.1);
    color: var(--color-green);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(152, 115, 255, 0.2);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdt-vc-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.sdt-vc-hero__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sdt-vc-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sdt-vc-hero__price-badge {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: var(--color-white);
}

.sdt-vc-hero__price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-green);
}

.sdt-vc-hero__price-unit {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* VC Steps */
.sdt-vc-steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

.sdt-vc-steps__card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-green);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
}

.sdt-vc-steps__card:nth-child(2) {
    border-left-color: #5CE040;
}

.sdt-vc-steps__card:nth-child(3) {
    border-left-color: var(--color-blue);
}

.sdt-vc-steps__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover), var(--glow-green);
    border-color: var(--color-green);
    border-left-width: 3px;
}

.sdt-vc-steps__number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(152, 115, 255, 0.1);
    line-height: 1;
    margin-bottom: var(--space-4);
}

.sdt-vc-steps__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.sdt-vc-steps__card-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.sdt-vc-steps__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.sdt-vc-steps__card-list li {
    font-size: 0.875rem;
    color: var(--color-text-body);
    padding-left: 1.25rem;
    position: relative;
}

.sdt-vc-steps__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
}

/* VC Projects */
.sdt-vc-projects__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.sdt-vc-projects__card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.sdt-vc-projects__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-green);
}

.sdt-vc-projects__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--color-blue-light);
    color: var(--color-blue);
    margin-bottom: var(--space-4);
}

.sdt-vc-projects__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.sdt-vc-projects__card-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* VC Diferenciais */
.sdt-vc-diff__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.sdt-vc-diff__card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.sdt-vc-diff__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-green);
}

.sdt-vc-diff__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-green);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: var(--space-3);
    font-variant-numeric: tabular-nums;
}

.sdt-vc-diff__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--color-green-light);
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.sdt-vc-diff__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.sdt-vc-diff__card-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* VC About Dante */
.sdt-vc-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

.sdt-vc-about__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.sdt-vc-about__text {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.sdt-vc-about__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.sdt-vc-about__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sdt-vc-about__stat-icon {
    color: var(--color-blue);
}

.sdt-vc-about__stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1;
}

.sdt-vc-about__stat-text {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* VC About Image */
.sdt-vc-about__image-wrapper {
    position: relative;
}

.sdt-vc-about__image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.sdt-vc-about__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.sdt-vc-about__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 5/6;
    background: var(--color-bg-section);
    border-radius: var(--radius-lg);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

/* VC Audience */
.sdt-vc-audience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.sdt-vc-audience__card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.sdt-vc-audience__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.sdt-vc-audience__card-header {
    margin-bottom: var(--space-3);
}

.sdt-vc-audience__card-tag {
    display: inline-block;
    background: var(--color-blue-light);
    color: var(--color-blue);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdt-vc-audience__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.sdt-vc-audience__card-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* VC Pricing */
.sdt-vc-pricing__card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-white);
    border: 2px solid var(--color-green);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.sdt-section--dark .sdt-vc-pricing__card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--color-green);
}

.sdt-vc-pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-8);
}

.sdt-vc-pricing__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.sdt-section--dark .sdt-vc-pricing__currency {
    color: rgba(255, 255, 255, 0.5);
}

.sdt-vc-pricing__amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

.sdt-section--dark .sdt-vc-pricing__amount {
    color: var(--color-white);
}

.sdt-vc-pricing__period {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.sdt-section--dark .sdt-vc-pricing__period {
    color: rgba(255, 255, 255, 0.5);
}

.sdt-vc-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sdt-vc-pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-text-body);
    line-height: 1.5;
}

.sdt-section--dark .sdt-vc-pricing__feature {
    color: rgba(255, 255, 255, 0.7);
}

.sdt-vc-pricing__feature svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.sdt-vc-pricing__cta {
    width: 100%;
}

/* VC FAQ */
.sdt-vc-faq__list {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.sdt-vc-faq__item {
    border-bottom: 1px solid var(--color-border);
}

.sdt-vc-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}

.sdt-vc-faq__question::-webkit-details-marker {
    display: none;
}

.sdt-vc-faq__question::marker {
    display: none;
    content: '';
}

.sdt-vc-faq__question:hover {
    color: var(--color-blue);
}

.sdt-vc-faq__icon {
    flex-shrink: 0;
    color: var(--color-blue);
    transition: transform var(--transition);
}

.sdt-vc-faq__item[open] .sdt-vc-faq__icon {
    transform: rotate(180deg);
}

.sdt-vc-faq__answer {
    padding-bottom: 1.25rem;
}

.sdt-vc-faq__answer p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* VC Final CTA */
.sdt-vc-final-cta {
    background: var(--color-dark-2);
}

.sdt-vc-final-cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-8) 0;
}

.sdt-vc-final-cta__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.sdt-vc-final-cta__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

/* ============================================
   23b. VIBE CODING – DARK MODE OVERRIDES
   Applies when sections use sdt-section--dark
   ============================================ */

/* Alternating depth for former --alt sections */
.sdt-section--dark.sdt-section--deeper {
    background-color: var(--color-dark);
}

/* FAQ on dark */
.sdt-section--dark .sdt-vc-faq__item {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.sdt-section--dark .sdt-vc-faq__question {
    color: var(--color-white);
}
.sdt-section--dark .sdt-vc-faq__question:hover {
    color: var(--color-green);
}
.sdt-section--dark .sdt-vc-faq__answer p {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Steps cards ---- */
.sdt-section--dark .sdt-vc-steps__card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    border-left-color: var(--color-green);
}
.sdt-section--dark .sdt-vc-steps__card:nth-child(2) {
    border-left-color: #5CE040;
}
.sdt-section--dark .sdt-vc-steps__card:nth-child(3) {
    border-left-color: var(--color-blue);
}
.sdt-section--dark .sdt-vc-steps__card:hover {
    background: rgba(152, 115, 255, 0.07);
    border-color: var(--color-green);
    box-shadow: var(--glow-green);
}
.sdt-section--dark .sdt-vc-steps__number {
    color: rgba(152, 115, 255, 0.18);
}
.sdt-section--dark .sdt-vc-steps__card-title {
    color: var(--color-white);
}
.sdt-section--dark .sdt-vc-steps__card-text {
    color: rgba(255, 255, 255, 0.6);
}
.sdt-section--dark .sdt-vc-steps__card-list li {
    color: rgba(255, 255, 255, 0.65);
}

/* ---- Projects cards ---- */
.sdt-section--dark .sdt-vc-projects__card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}
.sdt-section--dark .sdt-vc-projects__card:hover {
    background: rgba(152, 115, 255, 0.07);
    border-color: var(--color-green);
    box-shadow: var(--glow-green);
}
.sdt-section--dark .sdt-vc-projects__icon {
    background: rgba(152, 115, 255, 0.12);
    color: var(--color-green);
}
.sdt-section--dark .sdt-vc-projects__card-title {
    color: var(--color-white);
}
.sdt-section--dark .sdt-vc-projects__card-text {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Diff (Diferenciais) cards ---- */
.sdt-section--dark .sdt-vc-diff__card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}
.sdt-section--dark .sdt-vc-diff__card:hover {
    background: rgba(152, 115, 255, 0.07);
    border-color: var(--color-green);
    box-shadow: var(--glow-green);
}
.sdt-section--dark .sdt-vc-diff__number {
    color: var(--color-green);
    opacity: 0.2;
}
.sdt-section--dark .sdt-vc-diff__icon {
    background: rgba(152, 115, 255, 0.12);
    color: var(--color-green);
}
.sdt-section--dark .sdt-vc-diff__card-title {
    color: var(--color-white);
}
.sdt-section--dark .sdt-vc-diff__card-text {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- About section ---- */
.sdt-section--dark .sdt-vc-about__title {
    color: var(--color-white);
}
.sdt-section--dark .sdt-vc-about__text {
    color: rgba(255, 255, 255, 0.7);
}
.sdt-section--dark .sdt-vc-about__stat-text {
    color: rgba(255, 255, 255, 0.5);
}
.sdt-section--dark .sdt-vc-about__image-placeholder {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
}

/* ---- Audience cards ---- */
.sdt-section--dark .sdt-vc-audience__card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}
.sdt-section--dark .sdt-vc-audience__card:hover {
    background: rgba(152, 115, 255, 0.07);
    border-color: var(--color-green);
    box-shadow: var(--glow-green);
}
.sdt-section--dark .sdt-vc-audience__card-tag {
    background: rgba(152, 115, 255, 0.12);
    color: var(--color-green);
}
.sdt-section--dark .sdt-vc-audience__card-title {
    color: var(--color-white);
}
.sdt-section--dark .sdt-vc-audience__card-text {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   24. ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(152, 115, 255, 0.2), 0 0 30px rgba(152, 115, 255, 0.15);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(152, 115, 255, 0.3), 0 0 40px rgba(152, 115, 255, 0.25);
    }
}

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

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -20px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 10px) scale(0.95);
    }
}

/* ============================================
   25. SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-animation="fade-left"] {
    transform: translateX(-30px);
}

.animate-on-scroll[data-animation="fade-left"].is-visible {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="fade-right"] {
    transform: translateX(30px);
}

.animate-on-scroll[data-animation="fade-right"].is-visible {
    transform: translateX(0);
}

.animate-on-scroll[data-animation="scale"] {
    transform: scale(0.95);
}

.animate-on-scroll[data-animation="scale"].is-visible {
    transform: scale(1);
}

/* scale-up: spring pop entrance — used by partner cards */
.animate-on-scroll[data-animation="scale-up"] {
    opacity: 0;
    transform: scale(0.72) translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.animate-on-scroll[data-animation="scale-up"].is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Stagger children */
.stagger-children > .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stagger-children > .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.stagger-children > .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.stagger-children > .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.stagger-children > .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.stagger-children > .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* Data-delay attribute delays */
.animate-on-scroll[data-delay="80"]  { transition-delay: 80ms; }
.animate-on-scroll[data-delay="100"] { transition-delay: 100ms; }
.animate-on-scroll[data-delay="160"] { transition-delay: 160ms; }
.animate-on-scroll[data-delay="200"] { transition-delay: 200ms; }
.animate-on-scroll[data-delay="240"] { transition-delay: 240ms; }
.animate-on-scroll[data-delay="300"] { transition-delay: 300ms; }
.animate-on-scroll[data-delay="320"] { transition-delay: 320ms; }
.animate-on-scroll[data-delay="400"] { transition-delay: 400ms; }
.animate-on-scroll[data-delay="480"] { transition-delay: 480ms; }
.animate-on-scroll[data-delay="500"] { transition-delay: 500ms; }
.animate-on-scroll[data-delay="560"] { transition-delay: 560ms; }
.animate-on-scroll[data-delay="640"] { transition-delay: 640ms; }
.animate-on-scroll[data-delay="720"] { transition-delay: 720ms; }
.animate-on-scroll[data-delay="800"] { transition-delay: 800ms; }
.animate-on-scroll[data-delay="600"] { transition-delay: 600ms; }
.animate-on-scroll[data-delay="700"] { transition-delay: 700ms; }
.animate-on-scroll[data-delay="800"] { transition-delay: 800ms; }

/* ============================================
   26. WORDPRESS SPECIFIC
   ============================================ */

/* WordPress Core Alignment */
.alignwide {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* WordPress Captions */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* WordPress Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item img {
    border-radius: var(--radius-md);
}

/* WordPress Block Editor Styles */
.wp-block-image {
    margin: 1.5rem 0;
}

.wp-block-image img {
    border-radius: var(--radius-md);
}

/* ── Fancy CTA button inside post content ── */
.wp-block-button .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.9rem 2.25rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.938rem;
    font-family: var(--font-family);
    text-decoration: none;
    background: linear-gradient(135deg, var(--color-primary, #9873ff) 0%, #7c3aed 100%);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3), 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Animated arrow appended via pseudo-element */
.wp-block-button .wp-block-button__link::after {
    content: '→';
    display: inline-flex;
    font-size: 1.1em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-button .wp-block-button__link:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4), 0 2px 6px rgba(0,0,0,0.1);
    text-decoration: none;
}

.wp-block-button .wp-block-button__link:hover::after {
    transform: translateX(5px);
}

.wp-block-button .wp-block-button__link:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Outline variant */
.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--color-primary, #9873ff);
    border: 2px solid var(--color-primary, #9873ff);
    box-shadow: none;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--color-primary, #9873ff);
    color: #fff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2rem 0;
}

.wp-block-quote {
    border-left: 4px solid var(--color-blue);
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: var(--color-bg-alt);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ============================================
   27. RESPONSIVE - TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
    /* Blog grids */
    .sdt-blog-latest__grid,
    .sdt-blog-archive__grid,
    .sdt-single-post__related-grid,
    .sdt-404__recent-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Service cards */
    .sdt-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* VC Grids */
    .sdt-vc-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sdt-vc-projects__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sdt-vc-diff__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sdt-vc-audience__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact form */
    .sdt-contact__form-wrapper {
        padding: 2.5rem;
    }
}

/* ============================================
   28. RESPONSIVE - MEDIUM (768px+)
   ============================================ */
@media (min-width: 768px) {
    /* Typography */
    h1 {
        font-size: 3rem;
    }

    /* About grid */
    .sdt-about__grid {
        grid-template-columns: 3fr 2fr;
    }

    /* Contact grid */
    .sdt-contact__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* VC About grid */
    .sdt-vc-about__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Sidebar */
    .sdt-blog-archive__sidebar {
        display: block;
    }

    .sdt-blog-archive__layout {
        grid-template-columns: 1fr 280px;
    }
}

/* ============================================
   29. RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    /* Header desktop */
    .sdt-header__nav {
        display: block;
    }

    .sdt-header__cta {
        display: inline-flex;
    }

    .sdt-header__hamburger {
        display: none;
    }

    /* Typography scale up */
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    /* Academy CTA — 2 columns on desktop */
    .sdt-academy-cta__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-14);
    }

    .sdt-academy-cta__content {
        text-align: left;
    }

    .sdt-academy-cta__live-badge {
        margin-left: 0;
        margin-right: 0;
    }

    /* Services grid */
    .sdt-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Blog grid 3 columns (home latest will go to 4 at 1280px) */
    .sdt-blog-latest__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sdt-blog-archive__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sdt-single-post__related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sdt-404__recent-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer grid */
    .sdt-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    /* Hero title */
    .sdt-hero__title {
        font-size: 4rem;
    }

    /* VC Hero title */
    .sdt-vc-hero__title {
        font-size: 4rem;
    }

    /* VC Steps 3 columns */
    .sdt-vc-steps__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* VC Projects 4 columns */
    .sdt-vc-projects__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* VC Diff 4 columns */
    .sdt-vc-diff__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* VC Audience 3 columns */
    .sdt-vc-audience__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Blog archive sidebar */
    .sdt-blog-archive__layout {
        grid-template-columns: 1fr 300px;
    }

    /* Bigger section padding */
    .sdt-section {
        padding: var(--space-24) 0;
    }

    /* Single post title */
    .sdt-single-post__title {
        font-size: 2.875rem;
    }
}

/* ============================================
   29b. RESPONSIVE - WIDE (1280px+)
   ============================================ */
@media (min-width: 1280px) {
    /* Blog 4-column grid */
    .sdt-blog-latest__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Single post hero taller */
    .sdt-single-post__hero--has-image {
        min-height: 580px;
    }

    .sdt-single-post__title {
        font-size: 3.25rem;
    }
}

/* ============================================
   30. RESPONSIVE - MOBILE (max 767px)
   ============================================ */
@media (max-width: 767px) {
    /* Typography */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Section spacing */
    .sdt-section {
        padding: var(--space-16) 0;
    }

    /* Container padding */
    .sdt-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Hero */
    .sdt-hero__title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .sdt-hero__subtitle {
        font-size: 1.0625rem;
    }

    .sdt-hero__description {
        font-size: 0.9375rem;
    }

    .sdt-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .sdt-hero__actions .sdt-btn {
        width: 100%;
        justify-content: center;
    }

    .sdt-hero__code-snippet {
        display: none;
    }

    /* Vídeo visível no mobile — personagem vem da direita */
    .sdt-hero__video-wrapper {
        display: block;
    }

    .sdt-hero__video-wrapper video {
        display: block;
        object-position: 85% center;
    }

    /* Overlay mais transparente no mobile para ver o vídeo */
    .sdt-hero__gradient {
        opacity: 0.4;
    }

    .sdt-hero__grid-pattern {
        opacity: 0.3;
    }

    /* Hero mobile: hide avatar, keep video background */
    .sdt-hero__avatar {
        display: none;
    }

    /* Contact form: keep dark glassmorphism on mobile */
    .sdt-contact__form-wrapper {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.06);
    }

    .sdt-contact__form-row {
        grid-template-columns: 1fr;
    }

    .sdt-about__image-decoration {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* VC Hero */
    .sdt-vc-hero__title {
        font-size: 2.25rem;
    }

    .sdt-vc-hero__floating-code {
        display: none;
    }

    .sdt-vc-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .sdt-vc-hero__actions .sdt-btn {
        width: 100%;
        justify-content: center;
    }

    /* About stats */
    .sdt-about__stats {
        gap: var(--space-4);
    }

    .sdt-about__stat-value {
        font-size: 2rem;
    }

    /* Single post */
    .sdt-single-post__title {
        font-size: 1.625rem;
    }

    .sdt-single-post__hero {
        min-height: 340px;
        align-items: flex-end;
    }

    .sdt-single-post__hero--has-image {
        min-height: 400px;
    }

    .sdt-single-post__hero-inner {
        padding-top: var(--space-8);
        padding-bottom: var(--space-8);
    }

    .sdt-single-post__meta {
        flex-wrap: wrap;
        gap: 0.375rem;
    }

    /* Navigation */
    .sdt-single-post__navigation-inner {
        grid-template-columns: 1fr;
    }

    /* Academy CTA — single column on mobile, centre-align */
    .sdt-academy-cta__content {
        text-align: center;
    }

    .sdt-academy-cta__description {
        max-width: 100%;
    }

    .sdt-academy-cta__live-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .sdt-academy-cta__title {
        font-size: 1.75rem;
    }

    /* 404 */
    .sdt-404__digit {
        font-size: 4rem;
    }

    .sdt-404__title {
        font-size: 1.5rem;
    }

    /* Back to top positioned */
    .sdt-back-to-top {
        right: 88px;
        bottom: 20px;
    }

    .sdt-whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    /* VC Pricing */
    .sdt-vc-pricing__card {
        padding: var(--space-6);
    }

    .sdt-vc-pricing__amount {
        font-size: 2.5rem;
    }

    /* VC Final CTA */
    .sdt-vc-final-cta__title {
        font-size: 1.75rem;
    }

    /* Footer grid */
    .sdt-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sdt-footer__col--brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

/* ============================================
   31. RESPONSIVE - SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .sdt-hero__title {
        font-size: clamp(1.25rem, 3.5vw, 2rem);
    }

    .sdt-vc-hero__title {
        font-size: 1.875rem;
    }

    .sdt-btn--lg {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Footer single column on very small */
    .sdt-footer__grid {
        grid-template-columns: 1fr;
    }

    /* Partners grid */
    .sdt-partners__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* About stats */
    .sdt-about__stat-value {
        font-size: 1.75rem;
    }

    .sdt-about__stat-label {
        font-size: 0.6875rem;
    }

    /* 404 digit */
    .sdt-404__digit {
        font-size: 3rem;
    }

    .sdt-404__digit svg {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   32. ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .sdt-hero__grid-pattern,
    .sdt-vc-hero__grid-pattern {
        animation: none;
    }

    .sdt-hero__gradient {
        animation: none;
    }

    .sdt-hero__code-snippet,
    .sdt-vc-hero__floating-code {
        animation: none;
    }

    .sdt-hero__scroll-indicator {
        animation: none;
    }

    .sdt-whatsapp-float__pulse {
        animation: none;
        display: none;
    }

    .sdt-vc-hero__glow--1,
    .sdt-vc-hero__glow--2 {
        animation: none;
    }

    .sdt-academy-cta__float {
        animation: none;
    }

    .sdt-hero__avatar img {
        animation: none;
    }

    .sdt-btn--primary::after {
        display: none;
    }

}

/* Focus Visible */
:focus-visible {
    outline: 2px solid var(--color-blue);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-blue);
    outline-offset: 2px;
}

/* ============================================
   PRODUCTS
   ============================================ */

/* ── Product Card — Premium ── */
.sdt-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.4s;
}

.sdt-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(152, 115, 255, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(152, 115, 255, 0.08);
}

.sdt-product-card--featured {
    border-color: rgba(152, 115, 255, 0.2);
    background: linear-gradient(165deg, rgba(152, 115, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Badge */
.sdt-product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: linear-gradient(135deg, #9873ff, #7c3aed);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Media */
.sdt-product-card__media {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.sdt-product-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.sdt-product-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
}

.sdt-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sdt-product-card:hover .sdt-product-card__img {
    transform: scale(1.08);
}

.sdt-product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

/* Body */
.sdt-product-card__body {
    padding: 1.125rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.sdt-product-card__title-link {
    text-decoration: none;
    color: inherit;
}

.sdt-product-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sdt-product-card__excerpt {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sdt-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sdt-product-card__price {
    font-size: 1.125rem;
    font-weight: 800;
    color: #16A34A;
    letter-spacing: -0.01em;
}

.sdt-product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(152, 115, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
}

.sdt-product-card:hover .sdt-product-card__cta {
    color: #9873ff;
    gap: 8px;
}

/* ── Products Showcase — Carousel (Home) ── */
.sdt-products-showcase {
    position: relative;
    padding: var(--space-16) 0 var(--space-12);
    overflow: hidden;
    /* ponto único de verdade para o alinhamento header ↔ primeiro card */
    --showcase-indent: max(1.5rem, calc((100vw - var(--container, 1200px)) / 2 + 1.5rem));
}

.sdt-products-showcase__glow {
    position: absolute;
    top: -200px;
    left: 50%;
    width: 800px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(152, 115, 255, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.sdt-products-showcase__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: var(--space-8);
    padding-left: var(--showcase-indent);
    padding-right: var(--showcase-indent);
}

.sdt-products-showcase__header-text .sdt-section__title {
    margin-bottom: 0.5rem;
}

.sdt-products-showcase__header-text .sdt-section__subtitle {
    margin-bottom: 0;
    max-width: 480px;
}

/* Controls: arrows + "Ver Todos" agrupados à direita do header */
.sdt-products-showcase__controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sdt-products-showcase__see-all {
    white-space: nowrap;
    margin-left: 0.5rem;
}

/* Arrows — no header, sempre visíveis */
.sdt-products-carousel__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(30, 20, 60, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.sdt-products-carousel__arrow:hover {
    background: rgba(152, 115, 255, 0.45);
    border-color: rgba(152, 115, 255, 0.5);
    transform: scale(1.08);
}

.sdt-products-carousel__arrow:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Carousel wrapper */
.sdt-products-carousel {
    position: relative;
    width: 100%;
}

.sdt-products-carousel__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem var(--showcase-indent) 1.25rem;
}

.sdt-products-carousel__track::-webkit-scrollbar {
    display: none;
}

.sdt-products-carousel__slide {
    scroll-snap-align: start;
    flex: 0 0 300px;
}

.sdt-products-carousel__slide .sdt-product-card {
    height: 100%;
}

/* Fade edges */
.sdt-products-carousel::before,
.sdt-products-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 5;
    pointer-events: none;
}

.sdt-products-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--color-dark) 0%, transparent 100%);
}

.sdt-products-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--color-dark) 0%, transparent 100%);
}

@media (max-width: 767px) {
    .sdt-products-showcase {
        padding: var(--space-10) 0 var(--space-8);
    }

    .sdt-products-showcase {
        --showcase-indent: 1.5rem;
    }

    .sdt-products-showcase__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: var(--space-6);
    }

    .sdt-products-showcase__controls {
        align-self: flex-start;
    }

    .sdt-products-carousel__track {
        scroll-snap-type: x mandatory;
        gap: 1rem;
    }

    .sdt-products-carousel__slide {
        flex: 0 0 80vw;
        scroll-snap-align: center;
    }

    .sdt-products-carousel__arrow {
        display: none;
    }

    .sdt-products-carousel::before,
    .sdt-products-carousel::after {
        width: 24px;
    }
}

/* ── Products Archive ── */
.sdt-archive-products__header {
    padding: calc(var(--header-height) + 3rem) 0 2rem;
    background: var(--color-dark);
}

.sdt-archive-products__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.sdt-archive-products__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.0625rem;
    max-width: 500px;
}

.sdt-archive-products__grid-section {
    padding: var(--space-8) 0 var(--space-16);
    background: var(--color-dark);
    min-height: 50vh;
}

.sdt-archive-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.sdt-archive-products__empty {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 4rem 0;
    grid-column: 1 / -1;
}

/* ── Product Filters ── */
.sdt-product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sdt-product-filters__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.sdt-product-filters__btn:hover {
    border-color: rgba(152, 115, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(152, 115, 255, 0.08);
}

.sdt-product-filters__btn.is-active {
    background: linear-gradient(135deg, #9873ff, #7c3aed);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.sdt-product-filters__btn.is-active:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.sdt-product-filters__count {
    font-size: 0.6875rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    padding: 1px 6px;
    border-radius: 999px;
    min-width: 18px;
    text-align: center;
}

.sdt-product-filters__btn.is-active .sdt-product-filters__count {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 767px) {
    .sdt-product-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: var(--space-4);
        margin-bottom: var(--space-6);
    }

    .sdt-product-filters::-webkit-scrollbar {
        display: none;
    }

    .sdt-product-filters__btn {
        flex-shrink: 0;
    }
}

/* ── Infinite Scroll Loader ── */
.sdt-products-loader {
    display: flex;
    justify-content: center;
    padding: var(--space-8) 0;
}

.sdt-products-loader__spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #9873ff;
    border-radius: 50%;
    animation: sdt-spin 0.7s linear infinite;
}

@keyframes sdt-spin {
    to { transform: rotate(360deg); }
}

/* ── Single Product specifics ── */
.sdt-single-product__price-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.sdt-single-product__price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #16A34A;
}

.sdt-single-product__buy-btn {
    white-space: nowrap;
}

.sdt-single-product__sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Sidebar Products (Blog Single) ── */
.sdt-sidebar-products {
    margin-bottom: 1.5rem;
}

.sdt-sidebar-products__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sdt-sidebar-products .sdt-product-card {
    margin-bottom: 0.75rem;
}

.sdt-sidebar-products .sdt-product-card__image {
    aspect-ratio: 16 / 9;
}

/* Cards in sidebar adapt to light background */
.sdt-single-post__ad-sidebar .sdt-product-card {
    background: var(--color-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.sdt-single-post__ad-sidebar .sdt-sidebar-products__title {
    color: var(--color-dark);
    border-bottom-color: #e5e7eb;
}

/* Light mode sidebar for product single */
.sdt-sidebar-products--light .sdt-single-product__sidebar-title {
    color: #1e293b;
    border-bottom-color: #e5e7eb;
}

.sdt-sidebar-products--light .sdt-product-card {
    background: #f8fafc;
    border-color: #e5e7eb;
}

.sdt-sidebar-products--light .sdt-product-card:hover {
    border-color: rgba(152, 115, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.sdt-sidebar-products--light .sdt-product-card__title {
    color: #1e293b;
}

.sdt-sidebar-products--light .sdt-product-card__excerpt {
    color: #64748b;
}

.sdt-sidebar-products--light .sdt-product-card__footer {
    border-top-color: #e5e7eb;
}

.sdt-sidebar-products--light .sdt-product-card__cta {
    color: #7c3aed;
}

.sdt-sidebar-products--light .sdt-product-card {
    margin-bottom: 1.25rem;
}

.sdt-sidebar-products--light .sdt-product-card__excerpt,
.sdt-sidebar-products--light .sdt-product-card__badge {
    display: none;
}

/* Also hide excerpt/badge in blog sidebar product cards */
.sdt-sidebar-products .sdt-product-card__excerpt,
.sdt-sidebar-products .sdt-product-card__badge {
    display: none;
}

.sdt-sidebar-products .sdt-product-card {
    margin-bottom: 1.25rem;
}

input:focus-visible,
textarea:focus-visible {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(152, 115, 255, 0.1);
}

/* ============================================
   33. PORTFOLIO — PROJETOS REALIZADOS
   ============================================ */

/* ==========================================================================
   PORTFOLIO — Living Soap Bubbles with Physics
   ========================================================================== */

.sdt-portfolio {
    position: relative;
    overflow: hidden;
}

.sdt-portfolio > .sdt-container { position: relative; z-index: 1; }

/* Dust particles canvas */
.sdt-orbit__dust {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ── Orbit Container ── */
.sdt-orbit {
    position: relative;
    width: 100%;
    height: 560px;
    margin-top: var(--space-4);
}

.sdt-orbit__scene {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ── Bubble — realistic soap bubble ── */
.sdt-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    outline: none;
    will-change: transform, left, top;
    padding: 0;
    background:
        /* Primary highlight - top left specular */
        radial-gradient(ellipse 45% 30% at 28% 22%, rgba(255,255,255,0.6) 0%, transparent 50%),
        /* Secondary reflection - bottom right */
        radial-gradient(ellipse 30% 20% at 72% 78%, rgba(255,255,255,0.15) 0%, transparent 45%),
        /* Iridescent color bands - like real soap bubbles */
        radial-gradient(ellipse 60% 40% at 20% 60%, rgba(152,115,255,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 80% 30%, rgba(99,190,241,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 50% 80%, rgba(236,72,153,0.08) 0%, transparent 50%),
        /* Base film */
        linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 40%, rgba(152,115,255,0.06) 70%, rgba(99,102,241,0.04) 100%);
    box-shadow:
        inset 0 -18px 35px rgba(152,115,255,0.1),
        inset 0 8px 25px rgba(255,255,255,0.15),
        inset -12px 0 30px rgba(99,102,241,0.06),
        inset 12px 0 30px rgba(236,72,153,0.05),
        0 8px 32px rgba(0,0,0,0.18),
        0 0 2px rgba(255,255,255,0.3),
        0 0 60px rgba(152,115,255,0.04);
    transition: box-shadow 0.4s, filter 0.3s;
}

/* Sizes — bigger bubbles */
.sdt-bubble--lg { width: 170px; height: 170px; }
.sdt-bubble--md { width: 135px; height: 135px; }
.sdt-bubble--sm { width: 105px; height: 105px; }

/* Organic wobble — irregular edges like real soap bubbles (JS handles scale breathing) */
.sdt-bubble { animation: sdt-bubble-wobble 8s ease-in-out infinite; }
.sdt-bubble:nth-child(2n) { animation-delay: -2s; animation-duration: 9s; }
.sdt-bubble:nth-child(3n) { animation-delay: -4s; animation-duration: 7.5s; }
.sdt-bubble:nth-child(5n) { animation-delay: -1s; animation-duration: 10s; }
.sdt-bubble:nth-child(7n) { animation-delay: -3s; animation-duration: 8.5s; }

@keyframes sdt-bubble-wobble {
    0%, 100% { border-radius: 50% 48% 52% 50% / 48% 50% 50% 52%; }
    14% { border-radius: 48% 52% 50% 48% / 52% 48% 52% 50%; }
    28% { border-radius: 52% 50% 48% 52% / 50% 52% 48% 50%; }
    42% { border-radius: 50% 48% 50% 52% / 52% 50% 48% 52%; }
    57% { border-radius: 48% 52% 52% 48% / 48% 52% 50% 48%; }
    71% { border-radius: 52% 48% 50% 50% / 50% 48% 52% 50%; }
    85% { border-radius: 50% 52% 48% 52% / 52% 50% 50% 48%; }
}

/* Glass rim layer - simulates thickness/refraction at edges */
.sdt-bubble__glass {
    position: absolute;
    inset: 1px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.12);
    background: radial-gradient(ellipse at 50% 50%, transparent 60%, rgba(255,255,255,0.06) 100%);
    pointer-events: none;
}

/* Primary shine (top-left specular highlight) */
.sdt-bubble__shine {
    position: absolute;
    top: 8%;
    left: 14%;
    width: 42%;
    height: 32%;
    border-radius: 50%;
    background: radial-gradient(ellipse at 40% 35%, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.25) 30%, transparent 70%);
    transform: rotate(-18deg);
    pointer-events: none;
    opacity: 0.85;
    filter: blur(0.5px);
}

/* Secondary bottom-right reflection */
.sdt-bubble::after {
    content: '';
    position: absolute;
    bottom: 12%;
    right: 15%;
    width: 20%;
    height: 12%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.25) 0%, transparent 70%);
    pointer-events: none;
}

/* Name label — bold, readable */
.sdt-bubble__name {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,1);
    text-align: center;
    line-height: 1.25;
    padding: 0 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 10px rgba(0,0,0,0.7), 0 0 24px rgba(0,0,0,0.4), 0 0 4px rgba(0,0,0,0.9);
    pointer-events: none;
    word-break: break-word;
}
.sdt-bubble--lg .sdt-bubble__name { font-size: 0.9375rem; padding: 0 1rem; }
.sdt-bubble--md .sdt-bubble__name { font-size: 0.8125rem; padding: 0 0.75rem; }

/* ── Hover: rainbow iridescence ── */
.sdt-bubble:hover {
    box-shadow:
        inset 0 -15px 35px rgba(152,115,255,0.15),
        inset 0 5px 25px rgba(255,255,255,0.2),
        inset -15px 0 30px rgba(59,130,246,0.12),
        inset 15px 0 30px rgba(236,72,153,0.12),
        0 0 60px rgba(152,115,255,0.3),
        0 0 30px rgba(236,72,153,0.15),
        0 0 2px rgba(255,255,255,0.4);
    z-index: 50 !important;
    filter: hue-rotate(0deg);
    animation: sdt-rainbow-shift 2s linear infinite;
}

@keyframes sdt-rainbow-shift {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Rainbow overlay on hover */
.sdt-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(255,0,128,0.12),
        rgba(255,165,0,0.1),
        rgba(255,255,0,0.08),
        rgba(0,255,128,0.1),
        rgba(0,128,255,0.12),
        rgba(128,0,255,0.12),
        rgba(255,0,128,0.12)
    );
    z-index: 1;
    mix-blend-mode: screen;
    animation: sdt-rotate-iris 4s linear infinite;
}

.sdt-bubble:hover::before { opacity: 1; }

@keyframes sdt-rotate-iris {
    to { transform: rotate(360deg); }
}

.sdt-bubble:hover .sdt-bubble__name { color: #fff; }
.sdt-bubble:hover .sdt-bubble__shine { opacity: 1; }
.sdt-bubble:focus-visible { outline: 2px solid var(--color-primary, #9873ff); outline-offset: 4px; }

/* ── Expanded state: vibrant, colorful, alive ── */
.sdt-bubble.is-expanded {
    z-index: 10000 !important;
    pointer-events: auto;
    cursor: pointer;
    border-radius: 50%;
    filter: none !important;
    opacity: 1 !important;
    animation: sdt-living-edges 3s ease-in-out infinite, sdt-expanded-rainbow 6s linear infinite;
    background:
        /* Bright specular highlight */
        radial-gradient(ellipse 50% 35% at 25% 18%, rgba(255,255,255,0.85) 0%, transparent 50%),
        /* Secondary glow */
        radial-gradient(ellipse 40% 30% at 75% 80%, rgba(255,255,255,0.3) 0%, transparent 45%),
        /* Vivid iridescent bands */
        radial-gradient(ellipse 70% 50% at 15% 55%, rgba(152,115,255,0.35) 0%, transparent 50%),
        radial-gradient(ellipse 60% 45% at 85% 25%, rgba(56,189,248,0.3) 0%, transparent 45%),
        radial-gradient(ellipse 50% 60% at 50% 85%, rgba(236,72,153,0.25) 0%, transparent 50%),
        radial-gradient(ellipse 45% 40% at 70% 60%, rgba(52,211,153,0.2) 0%, transparent 45%),
        /* Base film — richer */
        linear-gradient(160deg, rgba(255,255,255,0.25) 0%, rgba(152,115,255,0.15) 35%, rgba(99,102,241,0.12) 65%, rgba(236,72,153,0.1) 100%);
    box-shadow:
        inset 0 -30px 60px rgba(152,115,255,0.3),
        inset 0 12px 45px rgba(255,255,255,0.4),
        inset -18px 0 40px rgba(56,189,248,0.15),
        inset 18px 0 40px rgba(236,72,153,0.12),
        0 0 120px rgba(152,115,255,0.45),
        0 0 60px rgba(99,102,241,0.25),
        0 0 30px rgba(236,72,153,0.15),
        0 0 4px rgba(255,255,255,0.5);
}

/* Rotating rainbow hue shift on expanded bubble */
@keyframes sdt-expanded-rainbow {
    0%   { filter: none !important; }
    25%  { filter: hue-rotate(30deg) saturate(1.2) !important; }
    50%  { filter: hue-rotate(60deg) saturate(1.3) !important; }
    75%  { filter: hue-rotate(30deg) saturate(1.2) !important; }
    100% { filter: none !important; }
}

.sdt-bubble.is-expanded::before {
    opacity: 1;
    animation: sdt-rotate-iris 3s linear infinite;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(255,0,128,0.25),
        rgba(255,165,0,0.2),
        rgba(255,255,0,0.15),
        rgba(0,255,128,0.2),
        rgba(0,128,255,0.25),
        rgba(128,0,255,0.25),
        rgba(255,0,128,0.25)
    );
}

.sdt-bubble.is-expanded .sdt-bubble__glass {
    border-color: rgba(255,255,255,0.25);
    background: radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(255,255,255,0.12) 100%);
}

.sdt-bubble.is-expanded .sdt-bubble__shine {
    opacity: 1;
    background: radial-gradient(ellipse, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 40%, transparent 70%);
}

/* Bump animation when other bubbles collide with expanded */
.sdt-bubble.is-expanded.is-bumped {
    animation: sdt-living-edges 3s ease-in-out infinite, sdt-bump-wobble 0.4s ease-out;
}

@keyframes sdt-bump-wobble {
    0%   { border-radius: 50% 48% 52% 50% / 48% 50% 50% 52%; }
    20%  { border-radius: 46% 54% 48% 52% / 54% 46% 54% 46%; }
    40%  { border-radius: 52% 48% 54% 46% / 46% 54% 46% 54%; }
    60%  { border-radius: 48% 52% 46% 54% / 52% 48% 52% 48%; }
    100% { border-radius: 50% 48% 52% 50% / 48% 50% 50% 52%; }
}

/* "Living" wobbly border animation */
@keyframes sdt-living-edges {
    0%   { border-radius: 50% 48% 52% 50% / 48% 50% 50% 52%; }
    25%  { border-radius: 48% 52% 50% 50% / 52% 48% 52% 48%; }
    50%  { border-radius: 52% 50% 48% 52% / 50% 52% 48% 50%; }
    75%  { border-radius: 50% 48% 52% 48% / 48% 50% 52% 50%; }
    100% { border-radius: 50% 48% 52% 50% / 48% 50% 50% 52%; }
}

.sdt-bubble.is-expanded::before { opacity: 1; }

/* CTA content shown inside expanded bubble */
.sdt-bubble__cta {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s 0.3s;
}

.sdt-bubble.is-expanded .sdt-bubble__cta {
    opacity: 1;
    pointer-events: auto;
    z-index: 100;
}

/* Ensure glass/shine/rainbow don't block CTA clicks */
.sdt-bubble.is-expanded .sdt-bubble__glass,
.sdt-bubble.is-expanded .sdt-bubble__shine,
.sdt-bubble.is-expanded::before,
.sdt-bubble.is-expanded::after {
    pointer-events: none;
    z-index: 1;
}

/* Hide regular name when expanded — cta-title takes over */
.sdt-bubble.is-expanded .sdt-bubble__name {
    display: none;
}

/* Expanded CTA title: big bold psychedelic gradient text */
.sdt-bubble__cta-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    padding: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: linear-gradient(
        90deg,
        #ff6ec7, #ffae42, #ffe742, #42ff88,
        #42d4ff, #9873ff, #ff42a1, #ff6ec7
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sdt-psychedelic-text 4s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(152,115,255,0.5)) drop-shadow(0 0 20px rgba(255,110,199,0.3));
}

@keyframes sdt-psychedelic-text {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Hide the hint text */
.sdt-bubble__cta-hint {
    display: none;
}

.sdt-bubble__cta-close--unused {
    display: none;
}

.sdt-bubble__cta-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    line-height: 1;
    z-index: 11;
}

.sdt-bubble__cta-close:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Backdrop when bubble is expanded */
.sdt-orbit__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 16, 0.55);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    cursor: pointer;
}

.sdt-orbit__backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ── Pop burst ── */
.sdt-bubble.is-popping {
    animation: sdt-bubble-pop 0.5s ease-out forwards !important;
    pointer-events: none;
}
@keyframes sdt-bubble-pop {
    0%   { opacity: 1; }
    20%  { transform: scale(1.2); opacity: 0.8; }
    50%  { transform: scale(1.4); opacity: 0.4; }
    100% { transform: scale(0); opacity: 0; }
}

.sdt-bubble.is-hidden { opacity: 0 !important; pointer-events: none; }

.sdt-bubble.is-respawning {
    animation: sdt-bubble-respawn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}
@keyframes sdt-bubble-respawn {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

/* ── Collision ripple ── */
.sdt-bubble.is-colliding {
    animation: sdt-collision-ripple 0.4s ease-out;
}
@keyframes sdt-collision-ripple {
    0%   { box-shadow: 0 0 0 0 rgba(152,115,255,0.4); }
    50%  { box-shadow: 0 0 0 8px rgba(152,115,255,0.15); }
    100% { box-shadow: 0 0 0 0 rgba(152,115,255,0); }
}

/* ── Particles ── */
.sdt-bubble-particles { position: fixed; inset: 0; pointer-events: none; z-index: 100001; }
.sdt-bubble-particle {
    position: absolute;
    border-radius: 50%;
    animation: sdt-particle-fly 0.9s ease-out forwards;
}
.sdt-bubble-particle--glow {
    background: radial-gradient(circle, rgba(152,115,255,0.9), rgba(124,58,237,0.3));
    box-shadow: 0 0 12px rgba(152,115,255,0.6);
}
.sdt-bubble-particle--white {
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(200,200,255,0.2));
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}
.sdt-bubble-particle--rainbow {
    box-shadow: 0 0 10px currentColor;
}
@keyframes sdt-particle-fly {
    0%   { transform: translate(0,0) scale(1); opacity: 1; }
    100% { transform: translate(var(--px), var(--py)) scale(0); opacity: 0; }
}

/* ── Mobile: replace bubbles with clean list ── */
@media (max-width: 768px) {
    .sdt-orbit { height: auto; }
    .sdt-orbit__scene { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
    .sdt-orbit__dust { display: none; }
    .sdt-bubble-particles { display: none; }

    .sdt-bubble {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        border-radius: 999px;
        padding: 8px 18px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
        animation: none !important;
    }
    .sdt-bubble::before,
    .sdt-bubble::after { display: none; }
    .sdt-bubble__glass,
    .sdt-bubble__shine { display: none; }

    .sdt-bubble__name {
        font-size: 0.8125rem;
        text-shadow: none;
        color: rgba(255, 255, 255, 0.85);
        text-transform: none;
        letter-spacing: 0;
        padding: 0;
        word-break: normal;
    }

    .sdt-bubble--lg .sdt-bubble__name,
    .sdt-bubble--md .sdt-bubble__name { font-size: 0.8125rem; padding: 0; }

    .sdt-bubble:hover {
        background: rgba(152, 115, 255, 0.15);
        border-color: rgba(152, 115, 255, 0.4);
        box-shadow: none;
        filter: none;
        animation: none;
    }

    .sdt-bubble__cta-title { font-size: 1rem; }
}

/* ============================================
   33b. ABOUT — QUEM É DANTE TESTA (GRADIENT)
   ============================================ */

/* Section gradient background */
.sdt-section--gradient {
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* Animated orbs */
.sdt-about__bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sdt-about__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .45;
    animation: sdt-orb-float 12s ease-in-out infinite;
}

.sdt-about__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(152, 115, 255, .35) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-duration: 14s;
}

.sdt-about__orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, .3) 0%, transparent 70%);
    bottom: -5%;
    left: -3%;
    animation-duration: 18s;
    animation-delay: -5s;
}

.sdt-about__orb--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 72, 153, .2) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-duration: 16s;
    animation-delay: -8s;
}

@keyframes sdt-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -20px) scale(1.08); }
    66%      { transform: translate(-20px, 15px) scale(0.95); }
}

.sdt-section--gradient .sdt-container {
    position: relative;
    z-index: 1;
}

.sdt-section--gradient .sdt-section__title {
    color: var(--color-white);
}

.sdt-section--gradient .sdt-section__subtitle {
    color: var(--color-text-muted);
}

.sdt-char-sheet {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-12);
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

/* ---- Character Card (left column) ---- */
.sdt-char-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    box-shadow: 0 8px 40px rgba(152, 115, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 100px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.sdt-char-card:hover {
    box-shadow: 0 12px 50px rgba(152, 115, 255, 0.18), 0 2px 6px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

/* Photo */
.sdt-char-card__photo-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.sdt-char-card__photo {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-xl);
    transition: filter var(--transition);
}

.sdt-char-card__photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 220px;
    background: var(--color-bg-section);
    border-radius: var(--radius-xl);
    color: var(--color-text-muted);
}

/* Level badge */
.sdt-char-card__level {
    position: absolute;
    bottom: var(--space-3);
    right: var(--space-3);
    background: linear-gradient(135deg, #9873FF 0%, #7C5CE0 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-2) var(--space-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    box-shadow: 0 4px 20px rgba(152, 115, 255, 0.55);
}

.sdt-char-card__level-label {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

.sdt-char-card__level-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: var(--font-heading);
}

.sdt-char-card__level-num sup { font-size: 0.65rem; }

/* Identity */
.sdt-char-card__identity {
    text-align: center;
    width: 100%;
}

.sdt-char-card__name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 var(--space-2);
    font-family: var(--font-heading);
}

.sdt-char-card__class {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.75rem;
    color: var(--color-green);
    font-weight: 700;
    background: rgba(152, 115, 255, 0.12);
    border: 1px solid rgba(152, 115, 255, 0.28);
    border-radius: var(--radius-full);
    padding: var(--space-1) var(--space-4);
    letter-spacing: 0.02em;
}

.sdt-char-card__class-icon { font-size: 0.85rem; }

/* Core stats */
.sdt-char-card__stats {
    display: flex;
    width: 100%;
    border: 1px solid rgba(152, 115, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(152, 115, 255, 0.04) 0%, rgba(59, 130, 246, 0.04) 100%);
}

.sdt-char-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-3) var(--space-2);
    gap: 3px;
}

.sdt-char-stat + .sdt-char-stat {
    border-left: 1px solid rgba(152, 115, 255, 0.12);
}

.sdt-char-stat__val {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-green);
    font-family: var(--font-heading);
}

.sdt-char-stat__key {
    font-size: 0.6rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-align: center;
}

/* Equipment badges */
.sdt-char-card__equipment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
    width: 100%;
}

.sdt-char-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-text-body);
    background: linear-gradient(135deg, rgba(152, 115, 255, 0.06) 0%, rgba(59, 130, 246, 0.06) 100%);
    border: 1px solid rgba(152, 115, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 3px var(--space-3);
    transition: all var(--transition);
    cursor: default;
}

.sdt-char-badge:hover {
    background: linear-gradient(135deg, rgba(152, 115, 255, 0.15) 0%, rgba(59, 130, 246, 0.12) 100%);
    border-color: rgba(152, 115, 255, 0.35);
    color: var(--color-white);
    transform: translateY(-1px);
}

.sdt-char-card__cta {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-2);
}

/* ---- Skills Column (right) ---- */
.sdt-char-skills {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sdt-char-skills__bio {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-body);
}

/* Skills two-column layout */
.sdt-char-skills__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.sdt-char-skills__col {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.sdt-char-skills__col-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-heading);
    margin: 0 0 var(--space-1);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid rgba(152, 115, 255, 0.12);
}

/* Skill bars */
.sdt-skill { display: flex; flex-direction: column; gap: var(--space-2); }

.sdt-skill__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sdt-skill__name {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.sdt-skill__icon { font-size: 1rem; line-height: 1; }

.sdt-skill__xp {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-green);
    font-family: 'Courier New', monospace;
    background: rgba(152, 115, 255, 0.1);
    border: 1px solid rgba(152, 115, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 2px 6px;
    letter-spacing: 0.03em;
}

/* XP bar — delicate neon line */
.sdt-skill__track {
    position: relative;
    height: 2px;
    background: rgba(152, 115, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: visible;
    border: none;
    margin: 6px 0 4px;
}

/* Dim base rail (full width) */
.sdt-skill__track::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(152, 115, 255, 0.08);
    border-radius: var(--radius-full);
}

.sdt-skill__fill {
    height: 100%;
    width: var(--xp);
    background: linear-gradient(90deg,
        rgba(152, 115, 255, 0.2) 0%,
        rgba(192, 132, 252, 0.65) 60%,
        #c084fc 100%
    );
    border-radius: var(--radius-full);
    transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
    box-shadow: 0 0 6px rgba(192, 132, 252, 0.35);
}

/* Traveling light particle */
.sdt-skill__fill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translateY(-50%);
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
    border-radius: 1px;
    animation: sdt-skill-particle 3.5s ease-in-out infinite;
    animation-delay: 1.6s;
    opacity: 0;
}

/* Endpoint glow dot */
.sdt-skill__fill::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background: #c084fc;
    border-radius: 50%;
    box-shadow:
        0 0 6px #c084fc,
        0 0 14px rgba(192, 132, 252, 0.6);
    animation: sdt-endpoint-pulse 2.5s ease-in-out infinite;
}

/* Traveling particle keyframes */
@keyframes sdt-skill-particle {
    0%   { left: -4px; opacity: 0; }
    5%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { left: calc(100% + 4px); opacity: 0; }
}

/* Endpoint pulse keyframes */
@keyframes sdt-endpoint-pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 6px #c084fc, 0 0 12px rgba(192, 132, 252, 0.5);
    }
    50% {
        transform: translateY(-50%) scale(1.6);
        box-shadow:
            0 0 10px #c084fc,
            0 0 22px rgba(192, 132, 252, 0.75),
            0 0 40px rgba(192, 132, 252, 0.3);
    }
}

/* Glow element: secondary comet traveling the rail */
.sdt-skill__glow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: radial-gradient(ellipse at right, rgba(255, 255, 255, 0.7) 0%, transparent 80%);
    border-radius: 1px;
    pointer-events: none;
    animation: sdt-skill-comet 3.5s ease-in-out infinite;
    animation-delay: 2.8s;
    opacity: 0;
}

@keyframes sdt-skill-comet {
    0%   { left: 0;    opacity: 0; }
    8%   { opacity: 0.7; }
    90%  { opacity: 0.5; }
    100% { left: var(--xp); opacity: 0; }
}

/* Skills footer */
.sdt-char-skills__footer {
    padding-top: var(--space-4);
    border-top: 1px solid rgba(152, 115, 255, 0.1);
}

.sdt-char-skills__yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: #FF0000;
    text-decoration: none;
    transition: all var(--transition);
}

.sdt-char-skills__yt-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, .3);
    color: #fff;
    text-decoration: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .sdt-char-sheet { grid-template-columns: 260px 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
    .sdt-char-sheet { grid-template-columns: 1fr; }
    .sdt-char-card { position: static; max-width: 360px; margin: 0 auto; }
    .sdt-char-skills__columns { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* ============================================
   34. PRINT STYLES
   ============================================ */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .sdt-header,
    .sdt-header__hamburger,
    .sdt-mobile-menu,
    .sdt-footer,
    .sdt-whatsapp-float,
    .sdt-back-to-top,
    .sdt-hero__bg,
    .sdt-hero__scroll-indicator,
    .sdt-vc-hero__bg-effects,
    .sdt-single-post__share,
    .sdt-single-post__navigation,
    .sdt-single-post__related,
    .sdt-contact,
    .sdt-academy-cta,
    .sdt-vc-final-cta,
    .sdt-404__search,
    .sdt-404__recent,
    .sdt-pagination {
        display: none !important;
    }

    .sdt-hero {
        min-height: auto;
        padding: 2rem 0;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.75em;
        color: #666 !important;
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    .sdt-prose {
        max-width: 100%;
    }

    .sdt-single-post {
        padding-top: 0;
    }

    .sdt-blog-archive__hero {
        padding-bottom: var(--space-14);
    }
}

/* ==========================================================================
   Blog Redesign — lista horizontal + filtros + scroll infinito
   ========================================================================== */

/* ── Seção principal: fundo escuro forçado ── */
/* ======================================================
   BLOG — Light / editorial design
   ====================================================== */

.sdt-blog {
    color: #374151;
    background:
        radial-gradient(ellipse 70% 50% at 5% 10%, rgba(152, 115, 255, 0.09) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 95% 30%, rgba(192, 132, 252, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 90%, rgba(129, 140, 248, 0.06) 0%, transparent 60%),
        #f7f7fb;
    min-height: 100vh;
}

/* ── Hero ── */
.sdt-blog__hero {
    position: relative;
    background: transparent;
    padding-top: var(--header-height);
    padding-bottom: 2rem;
}

.sdt-blog__hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 2.5rem;
}

.sdt-blog__hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.sdt-blog__hero-left {
    flex-shrink: 0;
}

.sdt-blog__hero-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sdt-blog__hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin: 0.25rem 0 0.5rem;
    letter-spacing: -0.03em;
}

.sdt-blog__hero-sub {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
    letter-spacing: 0.02em;
}

.sdt-blog__hero .sdt-breadcrumbs {
    margin-bottom: 0.25rem;
}

.sdt-blog__hero .sdt-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sdt-blog__hero .sdt-breadcrumbs__item,
.sdt-blog__hero .sdt-breadcrumbs__sep {
    font-size: 0.8125rem;
    color: #9ca3af;
}

.sdt-blog__hero .sdt-breadcrumbs__item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.sdt-blog__hero .sdt-breadcrumbs__item a:hover {
    color: var(--color-primary, #9873ff);
}

/* Search */
.sdt-blog__search-wrap {
    position: relative;
    width: 180px;
}

.sdt-blog__search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.sdt-blog__search-input {
    width: 100%;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    color: #111827;
    font-size: 0.875rem;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.sdt-blog__search-input::placeholder {
    color: #9ca3af;
}

.sdt-blog__search-input:focus {
    border-color: var(--color-primary, #9873ff);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(152, 115, 255, .15);
}

/* Selects */
.sdt-blog__selects {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
}

.sdt-blog__select-wrap {
    position: relative;
}

.sdt-blog__select {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    color: #374151;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.625rem 2.25rem 0.625rem 1rem;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sdt-blog__select:focus {
    border-color: var(--color-primary, #9873ff);
    box-shadow: 0 0 0 3px rgba(152, 115, 255, .15);
}

.sdt-blog__select option {
    background: #fff;
    color: #111827;
}

.sdt-blog__select-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}

/* ── Corpo / grid ── */
.sdt-blog__body {
    padding-top: 2.5rem;
    padding-bottom: var(--space-16);
    min-height: 40vh;
}

.sdt-blog__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ══════════════════════════════════════════════
   Featured Card (first post — side by side)
   ══════════════════════════════════════════════ */
.sdt-blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sdt-blog-featured:hover {
    border-color: var(--color-primary, #9873ff);
    box-shadow: 0 12px 40px rgba(152, 115, 255, .12), 0 2px 8px rgba(0, 0, 0, .04);
}

.sdt-blog-featured__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.sdt-blog-featured__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.34, 1.2, .64, 1);
}

.sdt-blog-featured:hover .sdt-blog-featured__image {
    transform: scale(1.04);
}

.sdt-blog-featured__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
    gap: 0.75rem;
}

.sdt-blog-featured__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary, #9873ff);
}

.sdt-blog-featured__title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}

.sdt-blog-featured__title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.sdt-blog-featured:hover .sdt-blog-featured__title a {
    color: var(--color-primary, #9873ff);
}

.sdt-blog-featured__excerpt {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sdt-blog-featured__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
}

.sdt-blog-featured__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary, #9873ff);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.25s;
}

.sdt-blog-featured__read-more:hover {
    gap: 0.625rem;
}

/* ══════════════════════════════════════════════
   Horizontal Card (list items)
   ══════════════════════════════════════════════ */
.sdt-blog-card {
    text-decoration: none;
    transition: background 0.25s;
}

.sdt-blog-card--horizontal {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e8e8ee;
    background: transparent;
    border-radius: 0;
    overflow: visible;
}

.sdt-blog-card--horizontal:first-of-type {
    border-top: 1px solid #e8e8ee;
}

.sdt-blog-card--horizontal:hover {
    background: rgba(152, 115, 255, 0.03);
    border-color: #e8e8ee;
    box-shadow: none;
    transform: none;
}

/* Imagem */
.sdt-blog-card__image-link {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 0.75rem;
}

.sdt-blog-card__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
    transition: transform 0.5s cubic-bezier(.34, 1.2, .64, 1);
}

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

.sdt-blog-card__image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #d1d5db;
    border-radius: 0.75rem;
}

/* Corpo do card */
.sdt-blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    padding: 0;
}

.sdt-blog-card__cat,
.sdt-blog-card__cat-inline {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary, #9873ff);
    text-decoration: none;
    transition: opacity 0.2s;
    width: fit-content;
}

.sdt-blog-card__cat:hover {
    opacity: 0.75;
}

/* Meta row at top of horizontal card */
.sdt-blog-card__meta--top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    padding: 0;
    margin: 0;
}

/* Read more link */
.sdt-blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary, #9873ff);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.25s;
}

.sdt-blog-card__read-more:hover {
    gap: 0.625rem;
    text-decoration: none;
}

.sdt-blog-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
}

.sdt-blog-card__title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s;
}

.sdt-blog-card:hover .sdt-blog-card__title a {
    color: var(--color-primary, #9873ff);
}

.sdt-blog-card__excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sdt-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
    flex-wrap: wrap;
}

.sdt-blog-card__sep { opacity: 0.5; }

.sdt-blog-card__reading,
.sdt-blog-card__views {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.sdt-blog-card__reading svg,
.sdt-blog-card__views svg {
    opacity: 0.6;
}

.sdt-blog-card__date { color: #9ca3af; }

/* ── Loader (3 dots bounce) ── */
.sdt-blog__sentinel {
    height: 1px;
    margin: var(--space-4) 0;
    grid-column: 1 / -1;
}

.sdt-blog__loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: var(--space-8) 0;
    grid-column: 1 / -1;
}

.sdt-blog__loader-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: sdt-bounce 1.2s infinite ease-in-out;
    opacity: 0.7;
}

.sdt-blog__loader-dot:nth-child(1) { animation-delay: -0.32s; }
.sdt-blog__loader-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes sdt-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%            { transform: scale(1);   opacity: 1;   }
}

.sdt-blog__end,
.sdt-blog__empty {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    padding: var(--space-6) 0;
    margin: 0;
    grid-column: 1 / -1;
}

/* ── View counter no single post ── */
.sdt-single-post__views {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-top: var(--space-6);
    width: fit-content;
}

.sdt-single-post__views strong {
    color: #374151;
    font-weight: 600;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
    .sdt-blog-featured {
        grid-template-columns: 1fr;
    }

    .sdt-blog-featured__body {
        padding: 1.5rem;
    }

    .sdt-blog-card--horizontal {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sdt-blog-card--horizontal .sdt-blog-card__image-link {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 640px) {
    .sdt-blog__filters-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .sdt-blog__search-wrap {
        min-width: unset;
    }

    .sdt-blog__selects {
        flex-direction: row;
        gap: var(--space-2);
    }

    .sdt-blog__select {
        flex: 1;
        font-size: 0.8125rem;
    }

    .sdt-blog-featured__title {
        font-size: 1.25rem;
    }

    .sdt-blog__list {
        padding: 0 1rem;
    }

    .sdt-blog-card--horizontal {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 1rem 0;
    }

    .sdt-blog-card--horizontal .sdt-blog-card__image-link {
        aspect-ratio: 16 / 9;
        border-radius: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .sdt-blog-card__title {
        font-size: 0.9375rem;
    }

    .sdt-blog-card--horizontal .sdt-blog-card__excerpt {
        display: none;
    }

    .sdt-blog-featured__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Blog hero stacks on mobile */
    .sdt-blog__hero-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .sdt-blog__hero-right {
        width: 100%;
    }

    .sdt-blog__search-wrap {
        flex: 1;
        width: auto;
    }

    /* Single post: full width content, 5% lateral padding */
    .sdt-single-post__content-box {
        padding: 1.25rem 1rem;
        border-radius: 0.75rem;
    }

    .sdt-single-post__header-inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .sdt-single-post__featured-image .sdt-container,
    .sdt-single-post__featured-video .sdt-container {
        padding-left: 0;
        padding-right: 0;
    }

    .sdt-single-post__featured-img {
        border-radius: 0;
    }

    .sdt-single-post__video-wrapper {
        border-radius: 0;
    }

    /* Blog cards: tighter padding */
    .sdt-blog__body {
        padding-left: 0;
        padding-right: 0;
    }

    .sdt-blog-card__body {
        padding: 1rem;
    }
}

/* ==========================================================================
   SKILL LANDING PAGE - Vibe Coding sem Cara de IA
   Purple/Dark theme (consistente com identidade visual do site)
   ========================================================================== */

.page-template-page-skill-vibe-coding {
    --sk-accent: #9873FF;
    --sk-accent-hover: #b49aff;
    --sk-accent-light: rgba(152, 115, 255, 0.12);
    --sk-accent-glow: rgba(152, 115, 255, 0.25);
    --sk-accent-border: rgba(152, 115, 255, 0.20);
    --sk-accent-deep: #7C5CE0;
    --sk-green-terminal: #79FF60;
    --sk-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', 'Consolas', monospace;
}

/* Hero
   ========================================================================== */

.sdt-sk-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
    padding: 8rem 0 4rem;
}

.sdt-sk-hero__bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sdt-sk-hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--sk-accent-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--sk-accent-border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.sdt-sk-hero__scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(152, 115, 255, 0.03) 2px,
        rgba(152, 115, 255, 0.03) 4px
    );
    animation: sdt-sk-scanline 8s linear infinite;
}

@keyframes sdt-sk-scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

.sdt-sk-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.sdt-sk-hero__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--sk-accent);
    top: -10%;
    right: -5%;
    opacity: 0.15;
}

.sdt-sk-hero__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--sk-accent);
    bottom: -15%;
    left: -10%;
    opacity: 0.1;
}

.sdt-sk-hero__floating-code {
    position: absolute;
    font-family: var(--sk-mono);
    font-size: 0.8rem;
    color: var(--sk-accent);
    opacity: 0.15;
    white-space: nowrap;
    animation: sdt-sk-float 6s ease-in-out infinite;
}

.sdt-sk-hero__floating-code--1 {
    top: 20%;
    right: 8%;
    animation-delay: 0s;
}

.sdt-sk-hero__floating-code--2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.sdt-sk-hero__floating-code--3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes sdt-sk-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); opacity: 0.15; }
    50% { transform: translateY(-15px) rotate(1deg); opacity: 0.25; }
}

.sdt-sk-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdt-sk-hero__content {
    max-width: 720px;
    text-align: center;
}

.sdt-sk-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--sk-mono);
    font-size: 0.85rem;
    color: var(--sk-green-terminal);
    background: rgba(121, 255, 96, 0.08);
    border: 1px solid rgba(121, 255, 96, 0.20);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.sdt-sk-hero__badge-prompt {
    color: var(--sk-accent);
    font-weight: 700;
}

.sdt-sk-hero__cursor {
    animation: sdt-sk-blink 1s step-end infinite;
}

@keyframes sdt-sk-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.sdt-sk-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.sdt-sk-hero__title-accent {
    background: linear-gradient(135deg, var(--sk-accent) 0%, #b49aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sdt-sk-hero__description {
    font-size: 1.15rem;
    color: var(--color-text-body);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.sdt-sk-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sdt-sk-hero__price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.sdt-sk-hero__price-currency {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.sdt-sk-hero__price-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.sdt-sk-hero__price-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buy Button (purple accent)
   ========================================================================== */

.sdt-sk-btn--buy {
    background: linear-gradient(135deg, var(--sk-accent) 0%, var(--sk-accent-deep) 100%);
    color: var(--color-white);
    border: 1px solid var(--sk-accent);
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sdt-sk-btn--buy::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sdt-sk-btn--buy:hover {
    background: linear-gradient(135deg, var(--sk-accent-hover) 0%, var(--sk-accent) 100%);
    box-shadow: 0 0 30px var(--sk-accent-glow), 0 0 60px rgba(152, 115, 255, 0.15);
    transform: translateY(-2px);
}

.sdt-sk-btn--buy:hover::after {
    opacity: 1;
}

/* Problem Section
   ========================================================================== */

.sdt-sk-problem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.sdt-sk-problem__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.sdt-sk-problem__card:hover {
    border-color: var(--sk-accent-border);
    box-shadow: 0 0 20px rgba(152, 115, 255, 0.08);
}

.sdt-sk-problem__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sk-accent-light);
    border-radius: 10px;
    color: var(--sk-accent);
    margin-bottom: 1.25rem;
}

.sdt-sk-problem__card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.sdt-sk-problem__card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Solution Section
   ========================================================================== */

.sdt-sk-solution__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.sdt-sk-solution__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sdt-sk-solution__card:hover {
    border-color: var(--sk-accent-border);
    box-shadow: 0 0 25px rgba(152, 115, 255, 0.08);
    transform: translateY(-3px);
}

.sdt-sk-solution__number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--sk-mono);
    font-size: 0.75rem;
    color: var(--sk-accent);
    opacity: 0.4;
    font-weight: 700;
}

.sdt-sk-solution__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sk-accent-light);
    border-radius: 10px;
    color: var(--sk-accent);
    margin-bottom: 1.25rem;
}

.sdt-sk-solution__card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.sdt-sk-solution__card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Compare Section (Before/After)
   ========================================================================== */

.sdt-sk-compare__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-top: 3rem;
    align-items: stretch;
}

.sdt-sk-compare__col {
    padding: 2.5rem;
    border-radius: 12px;
}

.sdt-sk-compare__col--before {
    background: rgba(152, 115, 255, 0.05);
    border: 1px solid var(--sk-accent-border);
}

.sdt-sk-compare__col--after {
    background: rgba(121, 255, 96, 0.04);
    border: 1px solid rgba(121, 255, 96, 0.20);
}

.sdt-sk-compare__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.sdt-sk-compare__col--before .sdt-sk-compare__header {
    color: var(--sk-accent);
}

.sdt-sk-compare__col--after .sdt-sk-compare__header {
    color: var(--sk-green-terminal);
}

.sdt-sk-compare__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.sdt-sk-compare__list li {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.sdt-sk-compare__col--before .sdt-sk-compare__list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--sk-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.sdt-sk-compare__col--after .sdt-sk-compare__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sk-green-terminal);
    font-weight: 700;
}

.sdt-sk-compare__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
}

.sdt-sk-compare__vs {
    font-family: var(--sk-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    background: var(--color-dark-2);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    letter-spacing: 0.1em;
}

/* Steps Section
   ========================================================================== */

.sdt-sk-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.sdt-sk-steps__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.sdt-sk-steps__card:hover {
    border-color: var(--sk-accent-border);
    box-shadow: 0 0 20px rgba(152, 115, 255, 0.08);
}

.sdt-sk-steps__number {
    font-family: var(--sk-mono);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sk-accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.sdt-sk-steps__card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.sdt-sk-steps__card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.sdt-sk-steps__card-tag {
    display: inline-block;
    font-family: var(--sk-mono);
    font-size: 0.75rem;
    color: var(--sk-green-terminal);
    background: rgba(121, 255, 96, 0.08);
    border: 1px solid rgba(121, 255, 96, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

/* Audience Section
   ========================================================================== */

.sdt-sk-audience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.sdt-sk-audience__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sdt-sk-audience__card:hover {
    border-color: var(--sk-accent-border);
    box-shadow: 0 0 20px rgba(152, 115, 255, 0.08);
}

.sdt-sk-audience__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sk-accent-light);
    border-radius: 10px;
    color: var(--sk-accent);
    margin: 0 auto 1.25rem;
}

.sdt-sk-audience__card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.sdt-sk-audience__card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Author Section
   ========================================================================== */

.sdt-sk-author__grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.sdt-sk-author__image-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--sk-accent-border);
    box-shadow: 0 0 40px rgba(152, 115, 255, 0.1);
}

.sdt-sk-author__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sdt-sk-author__image-placeholder {
    width: 100%;
    aspect-ratio: 5/6;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-2);
    color: var(--color-text-muted);
}

.sdt-sk-author__badge {
    display: inline-block;
    font-family: var(--sk-mono);
    font-size: 0.8rem;
    color: var(--sk-accent);
    background: var(--sk-accent-light);
    border: 1px solid var(--sk-accent-border);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.sdt-sk-author__name {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.sdt-sk-author__bio {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sdt-sk-author__stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.sdt-sk-author__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sdt-sk-author__stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sk-accent);
}

.sdt-sk-author__stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Checkout Section
   ========================================================================== */

.sdt-sk-checkout__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.sdt-sk-checkout__card {
    background: var(--color-surface);
    border: 2px solid var(--sk-accent-border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(152, 115, 255, 0.08);
}

.sdt-sk-checkout__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sk-accent), var(--sk-accent-hover), var(--sk-accent));
}

.sdt-sk-checkout__header {
    margin-bottom: 2rem;
}

.sdt-sk-checkout__label {
    display: inline-block;
    font-family: var(--sk-mono);
    font-size: 0.75rem;
    color: var(--sk-green-terminal);
    background: rgba(121, 255, 96, 0.08);
    border: 1px solid rgba(121, 255, 96, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.sdt-sk-checkout__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
}

.sdt-sk-checkout__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 0.5rem;
}

.sdt-sk-checkout__currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    margin-right: 0.25rem;
}

.sdt-sk-checkout__amount {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.sdt-sk-checkout__cents {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-top: 0.5rem;
}

.sdt-sk-checkout__price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdt-sk-checkout__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sdt-sk-checkout__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-text-body);
}

.sdt-sk-checkout__features li svg {
    flex-shrink: 0;
    stroke: var(--sk-green-terminal);
}

.sdt-sk-checkout__cta {
    margin-bottom: 1rem;
}

.sdt-sk-checkout__disclaimer {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.sdt-sk-checkout__extra {
    text-align: center;
}

.sdt-sk-checkout__question {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

/* Skill Page Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .sdt-sk-solution__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sdt-sk-author__grid {
        grid-template-columns: 280px 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sdt-sk-hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }

    .sdt-sk-hero__title {
        font-size: 2.25rem;
    }

    .sdt-sk-hero__floating-code {
        display: none;
    }

    .sdt-sk-problem__grid,
    .sdt-sk-steps__grid,
    .sdt-sk-audience__grid {
        grid-template-columns: 1fr;
    }

    .sdt-sk-solution__grid {
        grid-template-columns: 1fr;
    }

    .sdt-sk-compare__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sdt-sk-compare__divider {
        padding: 0.5rem 0;
    }

    .sdt-sk-compare__col {
        padding: 1.5rem;
    }

    .sdt-sk-author__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .sdt-sk-author__image-frame {
        max-width: 280px;
        margin: 0 auto;
    }

    .sdt-sk-author__stats {
        justify-content: center;
    }

    .sdt-sk-checkout__card {
        padding: 2rem 1.5rem;
    }

    .sdt-sk-checkout__amount {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .sdt-sk-hero__title {
        font-size: 1.85rem;
    }

    .sdt-sk-hero__actions {
        flex-direction: column;
        gap: 1rem;
    }

    .sdt-sk-hero__description {
        font-size: 1rem;
    }

    .sdt-sk-author__stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ==========================================================================
   CRO ELEMENTS - Social Proof, FAQ, Mid CTA, Sticky Bar, Trust Badges
   ========================================================================== */

/* Hero price tag (urgência) */
.sdt-sk-hero__price-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--sk-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}

/* Social Proof Strip */
.sdt-sk-proof {
    background: var(--color-dark-2);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.sdt-sk-proof__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sdt-sk-proof__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sdt-sk-proof__icon {
    color: var(--sk-accent);
    display: flex;
    align-items: center;
}

.sdt-sk-proof__text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.sdt-sk-proof__divider {
    width: 1px;
    height: 20px;
    background: var(--color-border);
}

/* Mid-page CTA */
.sdt-sk-midcta {
    margin-top: 3.5rem;
    text-align: center;
    padding: 2.5rem;
    background: var(--color-dark-2);
    border: 1px solid var(--sk-accent-border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.sdt-sk-midcta__text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-body);
}

/* FAQ Section (reusa padrão do sdt-vc-faq) */
.sdt-sk-faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sdt-sk-faq__item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sdt-sk-faq__item[open] {
    border-color: var(--sk-accent-border);
}

.sdt-sk-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.sdt-sk-faq__question::-webkit-details-marker {
    display: none;
}

.sdt-sk-faq__question:hover {
    color: var(--sk-accent);
}

.sdt-sk-faq__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.sdt-sk-faq__item[open] .sdt-sk-faq__icon {
    transform: rotate(180deg);
    color: var(--sk-accent);
}

.sdt-sk-faq__answer {
    padding: 0 1.5rem 1.25rem;
}

.sdt-sk-faq__answer p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Checkout price anchoring */
.sdt-sk-checkout__anchor {
    margin-bottom: 0.5rem;
}

.sdt-sk-checkout__anchor-text {
    font-size: 0.8rem;
    color: var(--sk-accent);
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

/* Trust badges */
.sdt-sk-checkout__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.sdt-sk-checkout__trust-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.sdt-sk-checkout__trust-item svg {
    color: var(--sk-green-terminal);
    flex-shrink: 0;
}

/* Sticky CTA Bar */
.sdt-sk-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--sk-accent-border);
    padding: 0.75rem 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sdt-sk-sticky.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.sdt-sk-sticky__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sdt-sk-sticky__info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sdt-sk-sticky__name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
}

.sdt-sk-sticky__price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--sk-accent);
}

.sdt-sk-sticky__btn {
    white-space: nowrap;
}

/* Responsive for new CRO elements */
@media (max-width: 768px) {
    .sdt-sk-proof__grid {
        flex-direction: column;
        gap: 0.75rem;
    }

    .sdt-sk-proof__divider {
        display: none;
    }

    .sdt-sk-midcta {
        padding: 1.5rem;
    }

    .sdt-sk-midcta__text {
        font-size: 1rem;
    }

    .sdt-sk-checkout__trust {
        gap: 1rem;
    }

    .sdt-sk-sticky__name {
        display: none;
    }

    .sdt-sk-sticky__inner {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sdt-sk-checkout__trust {
        flex-direction: column;
        gap: 0.5rem;
    }
}
