* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
}

body {
    background: #121212;
    font-family: "Switzer", sans-serif;
    color: #AAAAAA;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip; /* prevents horizontal scrollbar, but allows position: sticky to work */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #FFFFFF;
    letter-spacing: -1.5px;
}

/* Global Utility Classes */
.btn-prim {
    height: 48px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 24px;
    font-family: "Switzer", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #050505;
    background: #21BDEF;
    box-shadow: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-prim:hover {
    background: #21BDEF;
    box-shadow: 0 0 20px rgba(33, 189, 239, 0.6);
    transform: translateY(-2px);
}

.btn-prim:active {
    transform: translateY(0);
    opacity: 0.9;
}

.btn-sec {
    height: 48px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 24px;
    font-family: "Switzer", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sec:hover {
    background: rgba(33, 189, 239, 0.1);
    box-shadow: 0 0 15px rgba(33, 189, 239, 0.2);
    border-color: #21BDEF;
    color: #21BDEF;
    transform: translateY(-2px);
}

.btn-sec:active {
    transform: translateY(0);
    background: rgba(33, 189, 239, 0.05);
}

.btn-sec::before {
    display: none;
}

.btn-ter {
    font-size: 18px;
    color: #AAAAAA;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    font-family: "Switzer", sans-serif;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.5px;
}

.btn-ter:hover {
    color: #21BDEF;
    text-shadow: 0 0 10px rgba(33, 189, 239, 0.4);
}

.btn-ter:hover::after {
    display: none;
}

.card-gradient {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    color: #FAFAFA;
}

/* Ambient Light Utility */
.ambient-light {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 189, 239, 0.08) 0%, rgba(18, 18, 18, 0) 70%);
    z-index: -1;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ambient-light.purple {
    background: radial-gradient(circle, rgba(81, 64, 247, 0.12) 0%, rgba(18, 18, 18, 0) 70%);
}

/* Bento Grid Utility */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
}

.bento-item {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(33, 189, 239, 0.3);
}

.bento-item.wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .bento-item.wide {
        grid-column: span 1;
    }
}

.pill-input {
    background: rgba(42, 42, 42, 0.8);
    height: 48px;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    font-family: "Switzer", sans-serif;
    font-weight: 200;
    font-size: 16px;
    color: #FAFAFA;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
    border: none;
}

/* Main Wrapper */
.main-wrapper {
    width: 100%;
    margin: 0 auto;
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
}

/* ==========================================================
   HEADER — Pill / Capsule Design
   ========================================================== */

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    z-index: 100;
    transition: top 0.3s ease;
    display: flex;
    justify-content: center;
}

.header.scrolled {
    top: 10px;
}

/* The main pill wrapper */
.new-header-pill {
    width: 100%;
    background: #1a2128;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    padding: 10px 10px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled .new-header-pill {
    background: rgba(14, 14, 14, 0.589); /* cor de fundo do header quando rolado fora da hero section*/
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(8px);
    /* box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.7);  retirar do comentario se quiser deixar com sombra na parte de fora do header */
}

/* Logo */
.new-header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.new-header-logo:hover {
    opacity: 0.85;
    transform: scale(1.04);
}

/* Nav container */
.new-header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Individual pill item (link or dropdown trigger) */
.nh-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 8px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    text-decoration: none;
    font-family: 'Switzer', sans-serif;
    font-size: 13px;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    user-select: none;
}

.nh-pill:hover,
.nh-dropdown:hover > .nh-pill {
    color: #21BDEF;
    border-color: rgba(33, 189, 239, 0.4);
    background: rgba(33, 189, 239, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 189, 239, 0.15);
}

/* Active page indicator */
.nh-pill.is-active .nh-pill-label,
.nh-dropdown.is-active > .nh-pill .nh-pill-label {
    color: #21BDEF;
}

/* Icon circle inside pill */
.nh-pill-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.nh-pill:hover .nh-pill-icon,
.nh-dropdown:hover > .nh-pill .nh-pill-icon {
    background: rgba(33, 189, 239, 0.2);
}

.nh-pill-label {
    line-height: 1;
}

/* Lucide icons inside pills */
.nh-icon {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    display: inline-block;
    vertical-align: middle;
}

/* Chevron for dropdowns */
.nh-chevron {
    width: 11px;
    height: 11px;
    opacity: 0.6;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.nh-dropdown:hover > .nh-pill .nh-chevron {
    transform: rotate(180deg);
}

/* Vertical divider */
.nh-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    flex-shrink: 0;
    margin: 0 2px;
}

/* Hamburger button (plain icon, no pill) */
.nh-hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 14px;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nh-hamburger-btn:hover,
.nh-hamburger-dropdown:hover > .nh-hamburger-btn {
    color: #21BDEF;
    background: rgba(33, 189, 239, 0.06);
    border-color: rgba(33, 189, 239, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33, 189, 239, 0.15);
}

/* Dropdown wrapper */
.nh-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Dropdown menu panel */
.nh-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    width: 260px;
    background: transparent;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 200;
}

/* Left-aligned dropdown (default) */
.nh-dropdown-menu--left {
    left: 0;
}

/* Centered dropdown (hamburger) — centered below the icon */
.nh-dropdown-menu--right {
    left: 50%;
    transform: translateX(-50%) translateY(8px);
}

/* Bridge zone so hover doesn't break when moving to menu */
.nh-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

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

/* Hamburger dropdown keeps its horizontal centering on hover */
.nh-dropdown:hover .nh-dropdown-menu--right {
    transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.nh-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: pointer;
}

.nh-dropdown-item:hover {
    background: rgba(33, 189, 239, 0.08);
}

/* Icon box inside dropdown item */
.nh-dropdown-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
}

.nh-dropdown-item:hover .nh-dropdown-icon {
    background: rgba(33, 189, 239, 0.18);
    color: #21BDEF;
}

/* Text block inside dropdown item */
.nh-dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nh-dropdown-title {
    font-size: 13px;
    font-weight: 500;
    color: #e5e7eb;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.nh-dropdown-item:hover .nh-dropdown-title {
    color: #21BDEF;
}

.nh-dropdown-sub {
    font-size: 11px;
    color: #6b7280;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.nh-dropdown-item:hover .nh-dropdown-sub {
    color: #9ca3af;
}

/* Separator within dropdown */
.nh-dropdown-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 6px;
}

/* Login CTA button */
.nh-btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 24px;
    background: #1a2128;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    color: #21BDEF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 4px;
}

.header.scrolled .nh-btn-login {
    background: rgba(14, 14, 14, 0.589);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(8px);
}

.nh-btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.04);
}

/* ==========================================================
   Hero "Clean" Header (Desktop) - Global for any page
   ========================================================== */
@media (min-width: 1025px) {
    .header.in-hero {
        width: 100%;
        max-width: 1400px;
        top: 30px;
    }

    .header.in-hero .new-header-pill {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0 40px !important;
    }

    .header.in-hero .nh-pill {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: #e5e7eb !important; 
        font-family: 'Switzer', sans-serif;
        font-weight: 300;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        padding: 8px 12px !important;
    }

    .header.in-hero .nh-pill:hover,
    .header.in-hero .nh-dropdown:hover > .nh-pill {
        color: #21BDEF !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .header.in-hero .new-header-nav > a > .nh-pill-icon,
    .header.in-hero .new-header-nav > .nh-dropdown > .nh-pill > .nh-pill-icon {
        display: none !important;
    }

    .header.in-hero .nh-divider {
        display: none !important;
    }

    .header.in-hero .nh-btn-login {
        background: transparent !important;
        color: #fff !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        font-size: 14px;
        font-weight: 500;
        margin-right: 0;
        letter-spacing: 0.01em;
    }

    .header.in-hero .nh-btn-login:hover {
        color: #21BDEF !important;
        transform: none !important;
    }
    
    .header.in-hero .new-header-logo svg {
        height: 27px !important;
        filter: brightness(0) invert(1);
    }
}

/* ---- Responsive ---- */

/* Tablet: hide labels on nav pills, show only icons */
@media (max-width: 1024px) {
    .nh-pill-label {
        display: none;
    }
    .nh-pill {
        padding: 8px;
    }
    .nh-chevron {
        display: none;
    }
}

/* Mobile: hide nav entirely, show hamburger + login */
@media (max-width: 768px) {
    .header {
        width: calc(100% - 24px);
        top: 12px;
    }

    .new-header-pill {
        padding: 8px 8px 8px 14px;
    }

    /* Hide all nav pills except the hamburger */
    .new-header-nav > .nh-pill,
    .new-header-nav > .nh-dropdown:not(.nh-hamburger-dropdown),
    .new-header-nav > .nh-divider {
        display: none;
    }

    /* Show hamburger */
    .nh-hamburger-dropdown {
        display: flex;
    }

    /* Suppress the desktop hover dropdown on mobile (overlay is used instead) */
    .nh-hamburger-dropdown:hover .nh-dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .nh-btn-login {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* Mobile menu overlay (shared with old header, kept working) */
.mobile-menu-overlay {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(20, 28, 36, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.97);
    transition: all 0.3s ease;
    z-index: 100;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-group {
    padding: 8px 0;
}

.mobile-menu-label {
    padding: 0 12px;
    font-size: 12px;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #E5E5E5;
    transition: all 0.2s ease;
}

.mobile-menu-item:hover, .mobile-menu-item:active {
    background: rgba(255, 255, 255, 0.05);
    color: #FAFAFA;
}

.mobile-menu-item svg {
    width: 16px;
    height: 16px;
    color: #888888;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
    width: 100%;
}

.mobile-menu-footer {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Legacy selectors kept for compatibility */
.hidden-mobile {
    display: none !important;
}

/* --- New Custom NavHeader Styles (Outside Hero) --- */
@media (min-width: 1024px) {
    .header:not(.in-hero) .new-header-pill {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }

    .header:not(.in-hero) .new-header-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(20, 28, 36, 0.445);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        padding: 4px;
        border-radius: 9999px;
        display: flex;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
        overflow: visible;
        gap: 0;
    }

    .header:not(.in-hero) .nh-pill,
    .header:not(.in-hero) .nh-hamburger-btn {
        position: relative;
        z-index: 10;
        color: white !important;
        mix-blend-mode: difference;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        font-size: 13px !important;
        font-weight: 300 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.09em !important;
        padding: 10px 20px !important;
        transform: none !important;
    }

    .header:not(.in-hero) .nh-pill-icon {
        display: none !important;
    }

    .header:not(.in-hero) .nh-hamburger-btn .nh-icon {
        display: block !important;
        stroke: white !important;
        width: 20px;
        height: 20px;
    }
    
    .header:not(.in-hero) .nh-divider {
        display: none !important;
    }

    .header:not(.in-hero) .nh-dropdown-menu {
        border-radius: 16px;
        background: #111111 !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6) !important;
        padding: 8px !important;
        top: calc(100% + 16px) !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }

    .header:not(.in-hero) .nh-dropdown-item {
        color: #e5e7eb !important;
        transition: all 0.2s !important;
        border-radius: 12px !important;
    }
    
    .header:not(.in-hero) .nh-dropdown-item:hover {
        background: rgba(255, 255, 255, 0.08) !important;
    }
    
    .header:not(.in-hero) .nh-dropdown-title,
    .header:not(.in-hero) .nh-dropdown-sub {
        color: #e5e7eb;
        transition: color 0.2s;
    }

    .header:not(.in-hero) .nh-dropdown-sub {
        color: #6b7280;
    }

    .header:not(.in-hero) .nh-dropdown-item:hover .nh-dropdown-title {
        color: #21BDEF !important;
    }

    .header:not(.in-hero) .nh-dropdown-item:hover .nh-dropdown-sub {
        color: #9ca3af !important;
    }

    .header:not(.in-hero) .nh-dropdown-icon {
        background: rgba(255, 255, 255, 0.06) !important;
        color: #6b7280 !important;
    }

    .header:not(.in-hero) .nh-dropdown-item:hover .nh-dropdown-icon {
        background: rgba(33, 189, 239, 0.18) !important;
        color: #21BDEF !important;
    }

    /* The Sliding Cursor */
    .nav-cursor {
        position: absolute;
        background: white;
        border-radius: 9999px;
        z-index: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        pointer-events: none;
    }
}
/* ---------------------------------------------------- */

/* Hero Section - Moved to home.css */

/* Section Title - Moved to home.css */

/* Imersão IA Section - Moved to home.css */

/* Stok AI Section - Moved to home.css */

/* Prova Social Section - Moved to home.css */

/* Security Section - Moved to home.css */

/* CTA Workshop Section - Moved to home.css */

/* Footer Section */
.footer-main {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #030303;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 95;
}

.blog-section-container {
    width: 92%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(24, 24, 24, 0.767);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 40px rgba(33, 189, 239, 0.02);
    border-radius: 24px;
}

@media (max-width: 1024px) {
    .blog-section-container {
        width: 90%;
        margin: 32px auto;
        padding: 24px 32px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-section-container {
        width: 92%;
        margin: 24px auto;
        padding: 20px;
        gap: 20px;
        border-radius: 20px;
    }
}

.blog-section-label {
    font-family: 'Switzer', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .blog-section-label {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

@media (max-width: 768px) {
    .blog-grid {
        gap: 16px;
    }
}

.blog-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
    justify-content: left;
}

@media (max-width: 1200px) {
    .blog-row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 12px 6px;
    gap: 12px;
    background: #161616;
    border-radius: 8px;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 120px;
    background: #1F1F1F;
    border: 1px solid #000000;
    border-radius: 12px;
}

.blog-card-label {
    display: inline-flex;
    padding: 6px 12px;
    background: linear-gradient(180deg, #2A2A2A 0%, #151515 52.41%);
    border: 1px solid #424242;
    border-radius: 8px;
    font-family: 'Switzer', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #FAFAFA;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Shared Newsletter + Footer Background */
.footer-immersive-shell {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    background: #0a0d10;
    border-radius: 48px 48px 0 0;
}

.footer-immersive-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0a0d10;
    overflow: hidden;
}

.footer-immersive-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
    opacity: 0.72;
}

.footer-immersive-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.02) 0%, rgba(6, 10, 14, 0.06) 64%, rgba(10, 13, 16, 0.12) 88%, rgba(10, 13, 16, 0.24) 100%),
        linear-gradient(90deg, rgba(4, 7, 10, 0.08) 0%, rgba(4, 7, 10, 0.02) 50%, rgba(4, 7, 10, 0.12) 100%);
}

.footer-immersive-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.18;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), #000 30%, #000 100%);
}

/* Newsletter Section */
.newsletter-section-container {
    width: 100%;
    padding: 0;
    background: transparent;
}

.newsletter-split-shell {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: min(88vh, 980px);
    padding: clamp(112px, 12vh, 160px) clamp(20px, 3vw, 32px) clamp(280px, 30vh, 380px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    border-radius: 0;
    border: none;
    box-shadow: none;
    isolation: isolate;
}

.newsletter-split-copy {
    position: relative;
    z-index: 2;
    width: min(100%, 720px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsletter-split-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Switzer', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 24px;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.newsletter-split-title {
    margin: 0 0 20px;
    font-family: 'Switzer', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    text-wrap: balance;
}

.newsletter-split-desc {
    margin: 0 0 40px;
    max-width: 520px;
    font-family: 'Switzer', sans-serif;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.64);
}

.newsletter-split-form-container {
    width: 100%;
    max-width: 580px;
}

.newsletter-split-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.newsletter-split-pill {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.newsletter-split-pill:focus-within {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.newsletter-split-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: min(100%, 580px);
    color: rgba(255, 255, 255, 0.62);
    font-family: 'Switzer', sans-serif;
    font-size: 11.5px;
    line-height: 1.5;
    cursor: pointer;
    text-align: left;
}

.newsletter-split-consent span {
    flex: 1;
}

.newsletter-split-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    flex: 0 0 16px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #141414;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-split-checkbox:hover {
    border-color: rgba(33, 189, 239, 0.45);
}

.newsletter-split-checkbox:focus {
    outline: none;
    border-color: rgba(33, 189, 239, 0.5);
    box-shadow: 0 0 0 4px rgba(33, 189, 239, 0.08);
}

.newsletter-split-checkbox:checked {
    border-color: #21BDEF;
    background: #21BDEF;
}

.newsletter-split-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #050505;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.newsletter-split-checkbox:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-split-input-wrap {
    width: 100%;
    flex: 1 1 auto;
    position: relative;
}

.newsletter-split-input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Switzer', sans-serif;
    font-size: 15px;
    transition: color 0.25s ease;
}

.newsletter-split-input::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.newsletter-split-input:focus {
    outline: none;
}

.newsletter-split-input:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.newsletter-split-submit {
    width: auto;
    min-width: 144px;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-family: 'Switzer', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 0 0 auto;
}

.newsletter-split-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.newsletter-split-submit:hover {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.newsletter-split-submit:hover::before {
    opacity: 1;
}

.newsletter-split-submit:disabled {
    cursor: not-allowed;
    transform: none;
}

.newsletter-split-submit.is-loading {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.18);
}

.newsletter-split-submit.is-loading::before {
    opacity: 1;
}

.newsletter-split-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.newsletter-split-arrow,
.newsletter-split-spinner {
    position: relative;
    z-index: 1;
}

.newsletter-split-btn-text svg {
    transition: transform 0.25s ease;
}

.newsletter-split-submit:hover .newsletter-split-btn-text svg {
    transform: translateX(4px);
}

.newsletter-split-spinner {
    width: 24px;
    height: 24px;
    animation: newsletter-spin 1s linear infinite;
}

.newsletter-split-spinner-track {
    opacity: 0.25;
}

.newsletter-split-spinner-head {
    opacity: 0.85;
}

.newsletter-split-success,
.newsletter-split-error {
    width: 100%;
    margin-top: 16px;
    border-radius: 28px;
    font-family: 'Switzer', sans-serif;
}

.newsletter-split-success {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.74);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    animation: newsletter-fade-in 0.45s ease-out forwards;
}

.newsletter-split-success-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 201, 63, 0.12);
    color: #63d471;
}

.newsletter-split-success h3,
.newsletter-split-success p {
    margin: 0;
}

.newsletter-split-success h3 {
    font-size: 22px;
    letter-spacing: -0.02em;
}

.newsletter-split-success p {
    color: #a1a1aa;
    line-height: 1.6;
}

.newsletter-split-error {
    padding: 16px 18px;
    border: 1px solid rgba(255, 96, 96, 0.18);
    background: rgba(83, 18, 18, 0.42);
    color: #ff9a9a;
    line-height: 1.5;
}

.is-hidden {
    display: none !important;
}

@keyframes newsletter-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes newsletter-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {
    .footer-immersive-image {
        object-position: center 49%;
    }

    .newsletter-split-shell {
        min-height: min(82vh, 860px);
        padding-top: clamp(112px, 12vh, 144px);
        padding-bottom: clamp(200px, 26vh, 280px);
    }

    .newsletter-split-copy {
        width: min(100%, 760px);
    }
}

@media (max-width: 768px) {
    .footer-immersive-image {
        object-position: center 50%;
    }

    .newsletter-split-shell {
        min-height: min(72vh, 720px);
        padding: 108px 16px 132px;
    }

    .newsletter-split-title {
        font-size: clamp(34px, 11vw, 48px);
    }

    .newsletter-split-desc {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .newsletter-split-form {
        gap: 14px;
    }

    .newsletter-split-pill {
        flex-direction: column;
        border-radius: 28px;
        padding: 12px;
    }

    .newsletter-split-consent {
        font-size: 12px;
    }

    .newsletter-split-input {
        min-height: 54px;
        padding: 0 16px;
        font-size: 16px;
    }

    .newsletter-split-submit {
        width: 100%;
        min-height: 54px;
        padding: 0 20px;
    }

    .newsletter-split-success {
        padding: 24px;
        border-radius: 24px;
    }
}

/* --- FOOTER CONTAINER --- */
.tech-footer {
    position: relative;
    background: transparent;
    color: #fff;
    padding: 0 0 12px 0;
    overflow: hidden;
    border-top: none;
}

.footer-content {
    max-width: none;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-glass-panel {
    margin: 0 auto;
    width: calc(100% - 24px);
    padding: clamp(24px, 2.5vw, 40px) clamp(24px, 2.5vw, 40px) 16px clamp(24px, 2.5vw, 40px);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(8, 11, 14, 0.28), rgba(6, 8, 10, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(8px);
}

/* --- GRID LAYOUT --- */
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    gap: 40px;
    margin-bottom: 32px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-width: 0;
}

/* Brand Column */
.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}
.footer-brand-lockup:hover {
    transform: scale(1.02);
}

.footer-brand-logo-neon {
    width: 55px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(33, 189, 239, 0.4)) drop-shadow(0 0 4px rgba(33, 189, 239, 0.5));
}

.footer-desc {
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    line-height: 1.6;
    max-width: 380px;
}

/* Links Columns */
.link-col h4 {
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 1;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-copy {
    max-width: 520px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.38);
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-social-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.social-icon {
    transition: opacity 0.2s ease, filter 0.2s ease;
    cursor: pointer;
    width: 20px;
    height: 20px;
    opacity: 0.6;
    object-fit: contain;
}

.custom-svg-black {
    filter: invert(1);
}
.custom-svg-white {
    filter: invert(0);
}

.social-icons a:hover .social-icon {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-glass-panel {
        margin-top: 0;
    }

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

    .footer-links-group {
        width: 100%;
        min-width: 0;
    }

    .brand-col {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .footer-immersive-shell {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .footer-glass-panel {
        margin: 0 auto;
        width: calc(100% - 20px);
        padding: 22px 18px;
        border-radius: 22px;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-social-row {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .footer-brand-wordmark {
        font-size: 16px;
    }
}

/* Scroll Animation Classes - Removed */

/* Sticky Split Scroll Layout - Moved to home.css */

/* Feature List Card (Glass Dark) - Moved to home.css */

/* Responsive adjustments for Notebooks (1440px and below) */
@media (max-width: 1440px) {

    /* Footer adjustments for 1440px */
    .footer-main {
        padding: 0;
        gap: 60px;
    }

    .footer-nav {
        gap: 60px !important;
        /* Force reduced gap */
    }
}

/* Responsive adjustments for Smaller Laptops/Tablets (1024px) */
@media (max-width: 1024px) {
    .header {
        grid-template-columns: 100px 1fr;
        gap: 16px;
        padding: 0 16px;
        top: 10px;
        height: 56px;
    }
}

/* Specific adjustments for smaller notebooks (1366px) */
@media (max-width: 1366px) {

    /* Header adjustments */
    .header {
        width: 95%;
        top: 10px;
        height: 56px;
        padding: 0 20px;
    }

    .header-nav {
        gap: 24px;
    }

    .header-nav .btn-ter {
        font-size: 16px !important;
    }

    .header-cta .btn-sec,
    .header-cta .btn-prim {
        height: 40px;
        font-size: 16px;
        padding: 5px 16px;
    }

    /* Footer adjustments */
    .footer-main {
        padding: 0;
        gap: 60px;
    }

    .footer-nav {
        gap: 40px !important;
        /* Force reduced gap */
        flex-wrap: wrap;
        /* Allow wrapping if needed */
        justify-content: center;
    }

    .footer-nav-group {
        min-width: 120px;
        /* Allow columns to be narrower */
    }

    .footer-nav-link {
        font-size: 16px;
        line-height: 32px;
    }

    .footer-logo {
        width: 800px;
        /* Reduce logo size further */
    }

    /* Blog Section adjustments for notebooks */
    .blog-row {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        /* Flexible columns instead of fixed 4 */
        gap: 16px;
    }

    .blog-card {
        padding: 12px;
        min-width: 0;
        /* Allow shrinking */
    }

    .blog-card-image {
        height: 140px;
        /* Reduce image height */
    }

    .blog-card-label {
        font-size: 14px;
        padding: 6px 12px;
    }

    .newsletter-split-shell {
        gap: 36px;
    }

    .newsletter-split-title {
        font-size: clamp(36px, 3.6vw, 48px);
    }

    .newsletter-split-media {
        min-height: 320px;
    }
}

/* Adjustments for larger screens/zoom out (up to 1600px) */
@media (max-width: 1600px) {
    .footer-nav {
        gap: 100px;
        /* Reduce default 336px gap */
    }
}

/* Security Hub Section - Moved to home.css */

/* --- Shared Blog Card Styles (Footer & Global) --- */
.post-card {
    display: flex;
    flex-direction: column;
    background: radial-gradient(100% 100% at 50% 0%, #2A2A2A 2.26%, #151515 69.94%);
    border: 1px solid #393939;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: inset 0 4px 4px 1px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 360px;
}

.post-card:hover {
    transform: translateY(-8px);
    border-color: rgba(33, 189, 239, 0.4);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(33, 189, 239, 0.02);
}

.post-thumb {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.9;
    transition: 0.4s;
    background: #1F1F1F;
    padding: 0;
}

.post-card:hover .post-thumb {
    opacity: 1;
}

.post-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.post-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5140F7;
    background: rgba(81, 64, 247, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.post-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.post-heading {
    font-size: 20px;
    color: #FAFAFA;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.2s;
}

.post-card:hover .post-heading {
    color: #FFF;
}

/* --- Footer Specific Blog Card Styles --- */
.blog-section-container .post-card {
    border-radius: 16px;
    min-height: 240px;
}

.blog-section-container .post-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(33, 189, 239, 0.02);
}

.blog-section-container .post-thumb {
    height: 120px;
}

.blog-section-container .post-body {
    padding: 16px;
    gap: 8px;
}

.blog-section-container .post-tag {
    font-size: 10px;
}

.blog-section-container .post-date {
    font-size: 11px;
}

.blog-section-container .post-heading {
    font-size: 16px;
}

/* Icon Glow Effect */
.icon-glow {
    color: #21BDEF;
    filter: drop-shadow(0 0 5px rgba(33, 189, 239, 0.5));
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(17, 17, 17, 0.6);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid #333;
    color: #E0E0E0;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) scale(0.92);
}

.whatsapp-float:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: #21BDEF;
    color: #21BDEF;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(33, 189, 239, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* --- Global Blog Section (Footer) --- */
.global-blog-wrapper {
    background-color: #050505;
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Switzer', sans-serif;
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); se quiser deixar com uma linha horizontal na parte de cima da seção*/
}

@media (min-width: 640px) {
    .global-blog-wrapper {
        padding: 96px 0;
    }
}

.global-blog-header {
    padding: 0 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

@media (min-width: 640px) {
    .global-blog-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 32px;
        gap: 0;
    }
}

@media (min-width: 768px) {
    .global-blog-header {
        padding: 0 48px;
    }
}

@media (min-width: 1024px) {
    .global-blog-header {
        padding: 0 64px;
    }
}

.global-blog-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .global-blog-title {
        font-size: 24px;
    }
}

.global-blog-subtitle {
    font-size: 14px;
    color: #71717a;
    margin-top: 4px;
    margin-bottom: 0;
}

.global-blog-view-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 0;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .global-blog-view-more {
        padding-bottom: 4px;
    }
}

.global-blog-view-more:hover {
    color: #fff;
}

.global-blog-view-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.global-blog-view-more:hover svg {
    transform: translateX(4px);
}

.global-blog-carousel-wrapper {
    position: relative;
}

.global-blog-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 96px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0 16px;
    opacity: 0;
}

@media (min-width: 768px) {
    .global-blog-gradient {
        width: 128px;
    }
}

.global-blog-gradient.left {
    left: 0;
    background: linear-gradient(to right, #050505, transparent);
    justify-content: flex-start;
}

.global-blog-gradient.right {
    right: 0;
    background: linear-gradient(to left, #050505, transparent);
    justify-content: flex-end;
}

.global-blog-gradient.is-visible {
    opacity: 1;
}

.global-blog-scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

@media (min-width: 768px) {
    .global-blog-scroll-btn {
        width: 48px;
        height: 48px;
    }
}

.global-blog-carousel-wrapper:hover .global-blog-scroll-btn,
.global-blog-scroll-btn:focus {
    opacity: 1;
}

.global-blog-scroll-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

.global-blog-scroll-btn svg {
    width: 24px;
    height: 24px;
}

.global-blog-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px 32px 24px;
    gap: 16px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.global-blog-scroll-container::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .global-blog-scroll-container {
        padding: 0 48px 32px 48px;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .global-blog-scroll-container {
        padding: 0 64px 32px 64px;
    }
}

.global-blog-card {
    flex: 0 0 auto;
    width: 75vw;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    position: relative;
}

@media (min-width: 640px) {
    .global-blog-card {
        width: 320px;
        scroll-snap-align: start;
    }
}

@media (min-width: 768px) {
    .global-blog-card {
        width: 380px;
    }
}

.global-blog-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.global-blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
}

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

.global-blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-blog-card:hover .global-blog-card-overlay {
    opacity: 1;
}

.global-blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px;
}

.global-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.global-blog-card-dot {
    color: #52525b;
}

.global-blog-card-date {
    color: #71717a;
}

.global-blog-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #d4d4d8;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.03em;
}

@media (min-width: 768px) {
    .global-blog-card-title {
        font-size: 16px;
    }
}

.global-blog-card:hover .global-blog-card-title {
    color: #fff;
}

.global-blog-spacer {
    flex: 0 0 auto;
    width: 24px;
}

@media (min-width: 768px) {
    .global-blog-spacer {
        width: 48px;
    }
}

@media (min-width: 1024px) {
    .global-blog-spacer {
        width: 64px;
    }
}

.text-purple-400 { color: #c084fc; }
.text-blue-400 { color: #60a5fa; }
.text-emerald-400 { color: #34d399; }
.text-indigo-400 { color: #818cf8; }
.text-orange-400 { color: #fb923c; }
.text-cyan-400 { color: #22d3ee; }