/* stokai.css */

/* ===========================================
   STOK IA HERO — Full-viewport dark hero with Video Background
   =========================================== */

.stokai-hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #EEEAE9;
}

.stokai-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.stokai-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.stokai-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.95) 5%,
        rgba(0, 0, 0, 0.6) 45%,
        rgba(0, 0, 0, 0) 80%
    );
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .stokai-hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }
}

.stokai-hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35vh;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(18, 18, 18, 0.6) 50%,
        rgba(18, 18, 18, 1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.stokai-hero-content {
    position: relative;
    z-index: 3;
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 8vh auto 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vh, 20px);
}

.stokai-hero-title {
    color: #FFFFFF;
    font-family: Switzer, sans-serif;
    font-size: clamp(42px, 5vw, 56px);
    letter-spacing: -0.02em;
    font-weight: 500;
    line-height: 1.05;
    max-width: 600px;
}

.stokai-hero-subtitle {
    color: rgba(238, 234, 233, 0.75);
    font-family: Switzer, sans-serif;
    font-size: clamp(15px, 1.1vw, 16px);
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
    max-width: 520px;
    margin-top: 12px;
}

.stokai-hero-content .btn-primary-glow {
    position: relative;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 9999px;
    background: #21BDEF;
    color: #000000;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid #000000;
    z-index: 1;
}

.stokai-hero-content .btn-primary-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 0%;
    bottom: 0;
    top: auto;
    background-color: #ffffff;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.stokai-hero-content .btn-primary-glow span {
    position: relative;
    z-index: 2;
}

.stokai-hero-content .btn-primary-glow:hover {
    color: #000000;
    transform: translateY(-2px);
    text-shadow: none;
}

.stokai-hero-content .btn-primary-glow:hover::before {
    height: 100%;
}

.stokai-hero-ctas {
    font-family: 'switzer', sans-serif;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.stokai-hero-content .btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 9999px;
    background: transparent;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid #0066ff;
    box-shadow: 
        0 0 15px rgba(0, 102, 255, 0.6), 
        inset 0 0 15px rgba(0, 102, 255, 0.4);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.stokai-hero-content .btn-secondary-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 0%;
    bottom: 0;
    top: auto;
    background-color: #ffffff;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.stokai-hero-content .btn-secondary-outline span {
    position: relative;
    z-index: 2;
}

.stokai-hero-content .btn-secondary-outline:hover {
    color: #000000;
    border-color: #e0f0ff;
    box-shadow: 
        0 0 10px 2px rgba(0, 102, 255, 0.8),
        0 0 25px 6px rgba(0, 102, 255, 0.5),
        inset 0 0 12px 2px rgba(0, 102, 255, 0.8),
        inset 0 0 25px 6px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
    text-shadow: none;
}

.stokai-hero-content .btn-secondary-outline:hover::before {
    height: 100%;
}

/* ================================
   Logo Loop Section
   ================================ */

.logo-loop-section {
    position: relative;
    width: 100%;
    padding: 3rem 0 5.5rem;
    background-color: transparent;
    overflow: hidden;
    z-index: 2;
}

.logo-loop-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: switzer, sans-serif;
    font-size: 0.800rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 3rem;
}

.logo-loop-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.logo-loop-container::before,
.logo-loop-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-loop-container::before {
    left: 0;
    background: linear-gradient(to right, #121212 0%, transparent 100%);
}

.logo-loop-container::after {
    right: 0;
    background: linear-gradient(to left, #121212 0%, transparent 100%);
}

.logo-loop-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 25s linear infinite;
}

.logos-slide {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-right: 5rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 38px;
    width: auto;
}

.logo-name {
    color: #ffffff;
    font-family: switzer, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo-loop-container::before,
    .logo-loop-container::after {
        width: 80px;
    }
    .logo-loop-section {
        padding: 1.5rem 0 3.5rem;
    }
    .logos-slide {
        gap: 3rem;
        padding-right: 3rem;
    }
    .logo-item img {
        height: 28px;
    }
    .logo-name {
        font-size: 0.65rem;
    }
    .logo-loop-title {
        font-size: 0.65rem;
        letter-spacing: 1px;
        padding: 0 1rem;
    }
}

/* ===========================================
   STOK IA UNIFIED SECTION
   =========================================== */

.stokai-unified-section {
    position: relative;
    width: 100%;
    padding: clamp(72px, 8vw, 104px) 24px clamp(72px, 9vw, 120px);
    overflow: hidden;
}

.stokai-unified-glow {
    position: absolute;
    top: 48%;
    left: 50%;
    width: min(880px, 78vw);
    height: min(420px, 48vw);
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(33, 189, 239, 0.15) 0%, rgba(33, 189, 239, 0.05) 45%, rgba(33, 189, 239, 0) 72%);
    filter: blur(48px);
    pointer-events: none;
    z-index: 0;
}

.stokai-unified-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.stokai-unified-header {
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 56px);
    text-align: center;
    transform: translateY(clamp(-44px, -4vw, -28px));
}

.stokai-unified-title {
    margin: 0;
    color: #ffffff;
    font-family: Switzer, sans-serif;
    font-size: clamp(36px, 4.7vw, 60px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.stokai-unified-title span {
    background: linear-gradient(90deg, #8be3ff 0%, #21bdef 52%, #1d66ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stokai-unified-subtitle {
    margin: 18px auto 0;
    max-width: 720px;
    color: rgba(238, 234, 233, 0.72);
    font-family: Switzer, sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 300;
    line-height: 1.55;
}

.stokai-unified-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: center;
}

.stokai-compare-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.96) 0%, rgba(8, 8, 8, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.stokai-compare-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
}

.stokai-compare-card--separate {
    padding: clamp(28px, 3vw, 36px);
    opacity: 0.82;
    transform: scale(0.96);
}

.stokai-compare-card--separate::before {
    background: linear-gradient(180deg, rgba(255, 76, 76, 0.08) 0%, rgba(255, 76, 76, 0) 36%);
}

.stokai-compare-card--stok {
    padding: clamp(34px, 3.4vw, 42px);
    overflow: visible;
    border-color: rgba(33, 189, 239, 0.35);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(33, 189, 239, 0.06) inset, 0 0 48px rgba(33, 189, 239, 0.14);
}

.stokai-compare-card--stok::before {
    background: linear-gradient(180deg, rgba(33, 189, 239, 0.16) 0%, rgba(33, 189, 239, 0) 40%);
}

.stokai-card-badge {
    position: absolute;
    top: 0;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #21bbefec;
    color: #070707;
    font-family: Switzer, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 40px rgba(33, 189, 239, 0.26);
    white-space: nowrap;
}

.stokai-card-badge-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.stokai-card-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.78);
    font-family: Switzer, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
}

.stokai-card-heading--highlight {
    margin-top: 8px;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 500;
}

.stokai-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stokai-card-icon svg {
    width: 15px;
    height: 15px;
}

.stokai-card-icon--danger {
    background: rgba(255, 76, 76, 0.12);
    color: #ff7676;
}

.stokai-price-list {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.stokai-price-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(238, 234, 233, 0.76);
    font-family: Switzer, sans-serif;
    font-size: 0.98rem;
}

.stokai-price-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.stokai-price-brand span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stokai-price-brand-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.72;
    flex-shrink: 0;
}

.stokai-price-value {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    white-space: nowrap;
}

.stokai-card-total {
    position: relative;
    z-index: 1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stokai-card-total-label {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.42);
    font-family: Switzer, sans-serif;
    font-size: 0.88rem;
}

.stokai-card-total-value-wrap,
.stokai-card-price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stokai-card-total-value {
    color: rgba(255, 255, 255, 0.36);
    font-family: Switzer, sans-serif;
    font-size: clamp(32px, 3.8vw, 44px);
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.stokai-card-total-period {
    color: rgba(255, 255, 255, 0.42);
    font-family: Switzer, sans-serif;
    font-size: 0.94rem;
}

.stokai-avatar-fan {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin: 8px 0 30px;
}

.stokai-avatar {
    width: 58px;
    height: 58px;
    margin-left: -12px;
    border-radius: 999px;
    border: 2px solid #0b0b0b;
    background: #121212;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.3);
}

.stokai-avatar:first-child {
    margin-left: 0;
}

.stokai-avatar img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    opacity: 0.84;
}

.stokai-avatar--mid {
    z-index: 2;
}

.stokai-avatar--edge {
    z-index: 1;
}

.stokai-avatar--highlight {
    width: 72px;
    height: 72px;
    margin-left: -6px;
    margin-right: 0;
    border-color: rgba(33, 189, 239, 0.78);
    background: radial-gradient(circle at 30% 30%, rgba(33, 189, 239, 0.28), rgba(18, 18, 18, 0.98));
    color: #dff7ff;
    font-family: Switzer, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(-8px);
    z-index: 3;
    box-shadow: 0 0 24px rgba(33, 189, 239, 0.22);
}

.stokai-avatar--highlight + .stokai-avatar {
    margin-left: -6px;
}

.stokai-avatar--brand {
    flex-direction: column;
    gap: 7px;
    background: #1d1d1d;
}

.stokai-avatar-brand-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 1;
}

.stokai-avatar-brand-name {
    display: block;
    color: #dff7ff;
    font-family: Switzer, sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: none;
}

.stokai-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
}

.stokai-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(238, 234, 233, 0.78);
    font-family: Switzer, sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
}

.stokai-benefit-item p {
    margin: 0;
}

.stokai-benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 189, 239, 0.14);
    color: #6edcff;
    flex-shrink: 0;
    margin-top: 1px;
}

.stokai-benefit-icon svg {
    width: 14px;
    height: 14px;
}

.stokai-card-total--highlight {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.stokai-card-total-label--highlight {
    color: rgba(139, 227, 255, 0.72);
}

.stokai-card-price-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stokai-card-price-value {
    color: #ffffff;
    font-family: Switzer, sans-serif;
    font-size: clamp(42px, 5vw, 58px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}

.stokai-card-price-note {
    color: rgba(255, 255, 255, 0.46);
    font-family: Switzer, sans-serif;
    font-size: 0.82rem;
}

@media (max-width: 960px) {
    .stokai-unified-grid {
        grid-template-columns: 1fr;
    }

    .stokai-compare-card--separate,
    .stokai-compare-card--stok {
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .stokai-unified-section {
        padding: 64px 16px 64px;
    }

    .stokai-unified-header {
        margin-bottom: 32px;
        transform: translateY(-24px);
    }

    .stokai-unified-title {
        font-size: 2rem;
    }

    /* keep the explicit line break so the title stacks on two lines on mobile */
    .stokai-unified-title br {
        display: block;
        height: 0;
        content: "";
    }

    .stokai-unified-subtitle {
        font-size: 0.98rem;
    }

    .stokai-compare-card {
        border-radius: 26px;
    }

    .stokai-compare-card--separate,
    .stokai-compare-card--stok {
        padding: 26px 22px;
    }

    .stokai-card-badge {
        position: static;
        transform: none;
        margin-bottom: 18px;
    }

    .stokai-card-badge-logo {
        width: 14px;
        height: 14px;
    }

    .stokai-card-heading,
    .stokai-card-heading--highlight {
        margin-bottom: 22px;
    }

    .stokai-price-item {
        font-size: 0.94rem;
    }

    .stokai-price-brand span {
        white-space: normal;
    }

    .stokai-card-total-value {
        font-size: 2rem;
    }

    .stokai-avatar {
        width: 44px;
        height: 44px;
        margin-left: -9px;
    }

    .stokai-avatar img {
        width: 18px;
        height: 18px;
    }

    .stokai-avatar--highlight {
        width: 58px;
        height: 58px;
        margin-left: -5px;
        margin-right: 0;
    }

    .stokai-avatar--highlight + .stokai-avatar {
        margin-left: -5px;
    }

    .stokai-avatar-brand-logo {
        width: 18px;
        height: 18px;
    }

    .stokai-avatar-brand-name {
        font-size: 0.5rem;
    }

    .stokai-benefit-item {
        font-size: 0.94rem;
    }

    .stokai-card-price-value {
        font-size: 2.4rem;
    }
}

/* ===========================================
   HERO SCREEN SECTION
   =========================================== */

.hero-screen-section {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: clamp(32px, 7vw, 84px) 24px clamp(40px, 8vw, 96px);
    z-index: 20;
}

.hero-screen-stage {
    width: min(100%, 1000px);
    margin: 0 auto;
}

.hero-screen-frame {
    position: relative;
    padding: clamp(8px, 1.1vw, 12px);
    border: 2px solid rgba(255,255,255,0.92);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    box-shadow: 0 28px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.hero-screen-image {
    width: 100%;
    height: auto;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    display: block;
    background: #0b0b0b;
}

.hero-screen-video {
    position: relative;
    width: 100%;
    aspect-ratio: 426 / 228;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    overflow: hidden;
    background: #0b0b0b;
}

.hero-screen-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 640px) {
    .hero-screen-section {
        padding: 18px 12px 44px;
    }

    .hero-screen-frame {
        border-radius: 22px;
        padding: 6px;
    }

    .hero-screen-image {
        border-radius: 18px;
    }
}

/* =========================================
   AMBIENTES SECTION
   ========================================= */

.ambientes-section {
    position: relative;
    width: 100%;
    background: #121212;
    overflow: visible;
    padding: clamp(64px, 8vw, 128px) 0;
    color: #fff;
}

.ambientes-noise {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 50;
    height: 100%;
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.ambientes-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.ambientes-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto clamp(48px, 10vw, 96px);
}

.ambientes-title {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    background: #EEEAE9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ambientes-subtitle {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(15px, 1.5vw, 20px);
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    line-height: 1.6;
}

.ambientes-body {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .ambientes-body {
        flex-direction: row;
        gap: clamp(48px, 8vw, 80px);
        align-items: center;
    }
}

.ambientes-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .ambientes-left {
        width: 45%;
        align-items: flex-start;
        margin-left: -5vw;
    }
}

.ambientes-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px;
    margin-bottom: 48px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.ambientes-toggle-pill {
    position: absolute;
    top: 6px;
    height: calc(100% - 12px);
    width: calc(50% - 6px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px;
    left: 6px;
    transition: left 0.5s cubic-bezier(0.4,0,0.2,1), width 0.5s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}

.ambientes-toggle-pill--right {
    left: calc(48% + 4.5px);
}

.ambientes-tab {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    transition: color 0.5s;
}

.ambientes-tab:hover {
    color: rgba(255,255,255,0.7);
}

.ambientes-tab--active {
    color: #fff;
}

.ambientes-panels {
    position: relative;
    min-height: 320px;
    width: 100%;
}

@media (min-width: 1024px) {
    .ambientes-panels {
        min-height: 360px;
    }
}

.ambientes-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .ambientes-panel {
        text-align: left;
    }
}

.ambientes-panel--active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.ambientes-panel-title {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    letter-spacing: normal;
    color: #fff;
    margin-bottom: 16px;
}

.ambientes-panel-desc {
    font-family: 'switzer', sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 32px;
}

.ambientes-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: auto;
    align-items: stretch;
}

.ambientes-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    min-height: 92px;
}

.ambientes-feature-rail {
    flex-shrink: 0;
    width: 74px;
    min-height: 92px;
    position: relative;
    display: flex;
    justify-content: center;
}

.ambientes-feature-rail::after {
    content: "";
    position: absolute;
    top: 74px;
    bottom: -22px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 100%);
}

.ambientes-feature:last-child .ambientes-feature-rail::after {
    display: none;
}

.ambientes-feature-icon {
    width: 60px;
    height: 60px;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22,22,22,0.96) 0%, rgba(14,14,14,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 20px 48px rgba(0,0,0,0.32);
}

.ambientes-feature-content {
    padding-top: 10px;
    max-width: 420px;
    text-align: left;
}

.ambientes-feature-icon--blue {
    color: #72a9ff;
}

.ambientes-feature-icon--emerald {
    color: #34d399;
}

.ambientes-feature-title {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(19px, 2.0vw, 19px);
    font-weight: 400;
    color: rgba(255,255,255,0.98);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.ambientes-feature-text {
    font-family: 'switzer', sans-serif;
    font-size: clamp(15px, 1.2vw, 15px);
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
    margin: 0;
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .ambientes-features {
        gap: 28px;
    }

    .ambientes-feature {
        gap: 14px;
        min-height: unset;
        align-items: flex-start;
    }

    .ambientes-feature-rail {
        width: 48px;
        min-height: unset;
        flex-shrink: 0;
    }

    .ambientes-feature-rail::after {
        top: 56px;
        bottom: -28px;
    }

    .ambientes-feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-top: 0;
    }

    .ambientes-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .ambientes-feature-content {
        padding-top: 8px;
        flex: 1;
        min-width: 0;
    }

    .ambientes-feature-title {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .ambientes-feature-text {
        font-size: 14px;
    }
}

.ambientes-right {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .ambientes-right {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .ambientes-right {
        width: 58.333%;
        height: 600px;
        justify-content: flex-start;
        margin-right: -50vw;
    }
}

.ambientes-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    height: 80%;
    border-radius: 9999px;
    filter: blur(120px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s;
}

.ambientes-glow--blue {
    background: radial-gradient(ellipse, rgba(59,130,246,0.25) 0%, rgba(168,85,247,0.15) 100%);
}

.ambientes-glow--emerald {
    background: radial-gradient(ellipse, rgba(16,185,129,0.25) 0%, rgba(20,184,166,0.15) 100%);
}

.ambientes-glow--visible {
    opacity: 0.5;
}

.ambientes-window {
    position: relative;
    width: 123%;
    height: 100%;
    max-width: none;
    border-radius: 16px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transform: perspective(2000px) rotateY(-5deg);
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.ambientes-window:hover {
    transform: perspective(2000px) rotateY(0deg);
}

.ambientes-window-bar {
    height: 40px;
    flex-shrink: 0;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    z-index: 20;
}

.ambientes-window-dots {
    display: flex;
    gap: 6px;
}

.ambientes-dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
}

.ambientes-window-url {
    margin: 0 auto;
    padding: 4px 16px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    font-family: monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ambientes-window-body {
    flex: 1;
    position: relative;
    background: #050505;
    overflow: hidden;
}

.ambientes-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.ambientes-img--active {
    opacity: 1;
    transform: scale(1);
}

.ambientes-badge-wrap {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.ambientes-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.ambientes-badge strong {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

@media (max-width: 767px) {
    .ambientes-badge-wrap {
        margin-top: 48px;
        padding: 0 8px;
    }

    .ambientes-badge {
        display: block;
        text-align: center;
        border-radius: 16px;
        padding: 14px 20px;
        font-size: 13px;
        line-height: 1.6;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ===========================================
   ARTEFATOS SECTION
   =========================================== */

@keyframes ac-progress {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.artefatos-section {
    position: relative;
    width: 100%;
    background: #121212;
    padding: clamp(60px, 8vw, 120px) 24px;
    overflow: hidden;
    color: #fff;
}

.artefatos-glow {
    position: absolute;
    top: 15%;
    left: 20%;
    transform: translateX(-100%);
    width: 800px;
    height: 400px;
    background: #073e503d;
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.artefatos-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.artefatos-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.artefatos-title {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.02em;
}

.artefatos-subtitle {
    font-size: clamp(14px, 1.4vw, 18px);
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

.artefatos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 400px;
    gap: 20px;
}

.artefatos-card {
    position: relative;
    border-radius: 2rem;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.5s ease;
    display: flex;
    flex-direction: column;
}

.artefatos-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.ac--wide {
    grid-column: span 2;
}

.ac-hover-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    z-index: 1;
}

.artefatos-card:hover .ac-hover-glow {
    opacity: 1;
}

.ac-hover-glow--purple { background: radial-gradient(ellipse at top left, rgba(168, 85, 247, 0.1), transparent 60%); }
.ac-hover-glow--blue { background: radial-gradient(ellipse at top right, rgba(96, 165, 250, 0.1), transparent 60%); }
.ac-hover-glow--emerald { background: radial-gradient(ellipse at bottom left, rgba(16, 185, 129, 0.1), transparent 60%); }

.ac-body {
    flex: 1;
    padding: clamp(24px, 2.5vw, 40px);
    position: relative;
    z-index: 20;
}

.ac-icon-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ac-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ac-icon--purple { color: #c084fc; }
.ac-icon--blue { color: #60a5fa; }
.ac-icon--emerald { color: #34d399; }
.ac-icon--pink { color: #f472b6; }

.ac-card-title {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 500;
    letter-spacing: normal;
    color: #fff;
    margin: 0;
}

.ac-card-title--drop {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.ac-card-desc {
    font-family: 'Switzer', sans-serif;
    color: rgba(255, 255, 255, 0.4);
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.65;
    font-weight: 300;
    max-width: 420px;
    margin: 0;
    letter-spacing: normal;
}

.ac-card-desc--sm {
    font-size: clamp(13px, 1vw, 15px);
    max-width: none;
}

.ac-card-desc--bright {
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    max-width: 380px;
}

.ac-mockup-wrap {
    position: relative;
    height: 192px;
    width: 90%;
    margin: auto auto 0;
    transform: translateY(32px);
    transition: transform 0.7s ease-out;
    z-index: 10;
}

.ac--web:hover .ac-mockup-wrap {
    transform: translateY(16px);
}

.ac-mockup-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a 0%, transparent 50%);
    z-index: 20;
    pointer-events: none;
}

.ac-browser {
    width: 100%;
    height: 100%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.ac-browser-bar {
    height: 28px;
    background: #161616;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 10px;
    flex-shrink: 0;
}

.ac-win-dots {
    display: flex;
    gap: 5px;
}

.ac-win-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.ac-win-dot--red { background: rgba(239, 68, 68, 0.8); }
.ac-win-dot--yellow { background: rgba(234, 179, 8, 0.8); }
.ac-win-dot--green { background: rgba(34, 197, 94, 0.8); }

.ac-url-bar {
    margin: 0 auto;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 9px;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.4);
}

.ac-browser-body {
    flex: 1;
    display: flex;
    background: #0a0a0a;
    overflow: hidden;
}

.ac-sidebar {
    width: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
}

.ac-sidebar-icon {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
}

.ac-sidebar-icon--active {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.ac-dash-main {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ac-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ac-dash-line {
    height: 8px;
    width: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.ac-dash-avatar {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
}

.ac-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.ac-stat-card {
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.ac-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 6px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.7s ease;
}

.ac--web:hover .ac-chart {
    border-color: rgba(168, 85, 247, 0.3);
}

.ac-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    width: 100%;
    height: 100%;
}

.ac-bar {
    flex: 1;
    max-height: 100%;
    background: linear-gradient(to top, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.5));
    border-radius: 1px 1px 0 0;
    transform: scaleY(0.6);
    transform-origin: bottom;
    transition: transform 0.7s ease-out;
}

.ac--web:hover .ac-bar {
    transform: scaleY(1);
}

.ac-chart-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    font-size: 10px;
    font-weight: 500;
    color: #c084fc;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.ac--web:hover .ac-chart-badge {
    opacity: 1;
}

.ac--docs {
    justify-content: space-between;
}

.ac-docs-visual {
    position: relative;
    height: 192px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 10;
}

.ac-doc {
    position: absolute;
    bottom: -10px;
    width: 120px;
    height: 155px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ac-doc--pdf {
    transform: rotate(-12deg);
    transform-origin: bottom left;
    transition: transform 0.7s ease;
}

.ac--docs:hover .ac-doc--pdf {
    transform: rotate(-18deg);
}

.ac-doc--word {
    transform: rotate(6deg);
    transform-origin: bottom right;
    transition: transform 0.7s ease;
    background: #111;
    z-index: 10;
}

.ac--docs:hover .ac-doc--word {
    transform: rotate(12deg) translateX(8px);
}

.ac-doc-badge {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ac-doc-badge--pdf { background: rgba(239, 68, 68, 0.1); color: #f87171; }
.ac-doc-badge--word { background: rgba(96, 165, 250, 0.1); color: #60a5fa; }

.ac-doc-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.25;
}

.ac-doc-line {
    height: 5px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
}

.ac-doc-title-line {
    height: 7px;
    width: 50%;
    background: #60a5fa;
    border-radius: 3px;
    margin-bottom: 14px;
    opacity: 0.4;
}

.ac-doc-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ac-doc-dl-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
}

.ac--docs:hover .ac-doc-dl-btn {
    opacity: 1;
}

.ac--sheets {
    justify-content: space-between;
}

.ac-sheets-visual {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.ac-sheet-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 5px;
    width: 180%;
    height: 150%;
    transform: rotate(-12deg);
    transition: transform 0.7s ease-out;
    opacity: 0.8;
}

.ac--sheets:hover .ac-sheet-grid {
    transform: rotate(0deg);
}

.ac-cell {
    height: 36px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.5s ease;
}

.ac--sheets:hover .ac-cell {
    border-color: rgba(255, 255, 255, 0.2);
}

.ac-cell--hl {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4) !important;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.ac-sheet-fade {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 20;
    pointer-events: none;
}

.ac-sheet-fade--top { top: 0; background: linear-gradient(to bottom, #0a0a0a, transparent); }
.ac-sheet-fade--bot { bottom: 0; background: linear-gradient(to top, #0a0a0a, transparent); }

.ac--images {
    position: relative;
}

.ac-img-bg {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 0;
}

.ac-img-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    filter: blur(4px);
    transition: opacity 2s ease-out, transform 2s ease-out, filter 2s ease-out;
}

.ac-img-slide.is-active {
    opacity: 0.5;
    transform: scale(1);
    filter: blur(0);
}

.ac-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #050505 0%, rgba(5,5,5,0.92) 40%, rgba(5,5,5,0.7) 70%, transparent 100%);
    z-index: 1;
}

.ac-body--images {
    flex: unset;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ac-progress-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.ac-dot-pill {
    height: 4px;
    width: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: width 0.5s ease, background 0.5s ease;
}

.ac-dot-pill.is-active {
    width: 32px;
    background: #414141a9;
}

.ac-dot-fill {
    display: block;
    height: 100%;
    width: 100%;
    background: #21BDEF;
    transform: translateX(-100%);
}

.ac-render-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 8px;
}

@media (max-width: 900px) {
    .artefatos-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 380px;
    }

    .ac--wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .artefatos-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .ac--wide {
        grid-column: span 1;
    }

    .artefatos-card {
        min-height: 360px;
    }

    .ac--sheets {
        min-height: 400px;
    }
}

/* ===========================================
   GALERIA SECTION
   =========================================== */

.galeria-section {
    position: relative;
    width: 100%;
    background: #121212;
    padding: clamp(60px, 8vw, 140px) clamp(24px, 4vw, 64px);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    max-width: 1920px;
    margin: 50px auto;
    overflow: hidden;
}

.galeria-text {
    position: relative;
    z-index: 20;
    flex: 0 0 auto;
    width: min(100%, 420px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(0px, 2vw, 32px);
}

.galeria-title {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.08;
    margin-bottom: 24px;
    background: #EEEAE9;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.galeria-desc {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(15px, 1.3vw, 19px);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    font-weight: 300;
    max-width: 400px;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}

.galeria-desc-hl {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.galeria-stack-wrap {
    position: relative;
    flex: 1;
    height: clamp(300px, 42vw, 580px);
    z-index: 20;
    overflow: visible;
}

.galeria-stage {
    position: absolute;
    top: 4px;
    left: clamp(48px, 12vw, 320px);
    width: clamp(600px, 80vw, 1200px);
    height: 100%;
    transform: perspective(1200px) rotate(-8deg) rotateY(-4deg) rotateX(4deg);
    transform-style: preserve-3d;
}

.galeria-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: #030303;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), z-index 0s;
    will-change: transform;
}

.galeria-card[data-position="0"] {
    transform: translate3d(0px, 0px, 0px);
    z-index: 30;
}

.galeria-card[data-position="1"] {
    transform: translate3d(45px, -70px, -50px);
    z-index: 20;
}

.galeria-card[data-position="2"] {
    transform: translate3d(90px, -140px, -100px);
    z-index: 10;
}

.galeria-card-dark-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    pointer-events: none;
    z-index: 50;
    transition: opacity 0.7s ease;
}

.galeria-card[data-position="0"] .galeria-card-dark-overlay { opacity: 0; }
.galeria-card[data-position="1"] .galeria-card-dark-overlay { opacity: 0.40; }
.galeria-card[data-position="2"] .galeria-card-dark-overlay { opacity: 0.70; }

.galeria-card-header {
    height: 48px;
    flex-shrink: 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    position: relative;
    z-index: 40;
}

.galeria-card-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    display: none;
}

.galeria-card[data-position="0"] .galeria-card-dot { display: block; }
.galeria-card[data-position="0"] .galeria-card-icon { display: none; }

.galeria-card-icon {
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.galeria-card-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.galeria-card-body {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050505;
}

@media (max-width: 900px) {
    .galeria-section {
        flex-direction: column;
        padding-bottom: clamp(60px, 8vw, 100px);
    }

    .galeria-text {
        width: 100%;
        max-width: none;
        padding-left: 0;
    }

    .galeria-stack-wrap {
        width: 100%;
        height: clamp(260px, 60vw, 420px);
    }

    .galeria-stage {
        left: clamp(20px, 5vw, 80px);
        width: clamp(500px, 95vw, 800px);
    }
}

@media (max-width: 767px) {
    .galeria-section {
        gap: 28px;
        padding-top: 56px;
        padding-bottom: 72px;
    }

    .galeria-text {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .galeria-title {
        font-size: clamp(28px, 10vw, 52px);
        margin-bottom: 18px;
    }

    .galeria-desc {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 0;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .galeria-stack-wrap {
        height: 340px;
        min-height: 340px;
        overflow: hidden;
    }

    .galeria-stage {
        inset: 24px 0 0;
        width: 100%;
        min-width: 0;
        height: auto;
        transform: none;
    }

    .galeria-card[data-position="0"] {
        transform: translate3d(0px, 0px, 0px) scale(1);
    }

    .galeria-card[data-position="1"] {
        transform: translate3d(0px, -18px, 0px) scale(0.95);
    }

    .galeria-card[data-position="2"] {
        transform: translate3d(0px, -36px, 0px) scale(0.9);
    }

    .galeria-card-header {
        height: 42px;
        gap: 10px;
        padding: 0 14px;
    }

    .galeria-card-label {
        font-size: 13px;
    }
}

.galeria-card-body--dashboard {
    background: #111114;
    padding: 0;
}

.wf-dash {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    box-sizing: border-box;
}

.wf-pill { border-radius: 999px; background: #3e404b; }
.wf-circle { border-radius: 50%; background: #3e404b; flex-shrink: 0; }
.wf-box { border-radius: 6px; background: #3e404b; }

.wf-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 6px;
}

.wf-topbar-left,
.wf-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wf-pill--logo { width: 28px; height: 28px; border-radius: 8px; background: #c6c7d0; }
.wf-pill--nav { height: 8px; }
.wf-circle--sm { width: 12px; height: 12px; }
.wf-circle--md { width: 16px; height: 16px; }
.wf-circle--lg { width: 26px; height: 26px; background: #c6c7d0; }

.wf-dash-main-row {
    display: flex;
    gap: 16px;
    flex: 1;
}

.wf-widget {
    background: #1c1d22;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.wf-widget--chart { flex: 2; }
.wf-widget--pie {
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wf-widget--bottom {
    flex: 0 0 auto;
    height: 70px;
    padding: 14px 20px;
    justify-content: space-between;
}

.wf-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: auto;
}

.wf-widget-titles {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wf-pill--title { width: 140px; height: 12px; background: #c6c7d0; }
.wf-pill--subtitle { width: 80px; height: 8px; }

.wf-widget-actions {
    display: flex;
    gap: 8px;
}

.wf-widget-actions .wf-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.wf-chart {
    height: 60%;
    min-height: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.wf-chart-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4px;
    border-bottom: 2px solid #2d2e38;
    padding-bottom: 12px;
}

.wf-bar {
    flex: 1;
    max-width: 32px;
    background: linear-gradient(to top, #484a57, #666978);
    border-radius: 4px 4px 0 0;
    transition: transform 0.3s ease, filter 0.3s ease;
    transform-origin: bottom;
}

.wf-chart:hover .wf-bar {
    transform: scaleY(0.9);
}

.wf-chart:hover .wf-bar:nth-child(even) {
    transform: scaleY(1.1);
}

.wf-bar--active {
    background: #c6c7d0;
}

.wf-chart-x {
    display: flex;
    justify-content: space-between;
    padding: 12px 6px 0;
}

.wf-pill--axis {
    width: 24px;
    height: 6px;
}

.wf-donut {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#c6c7d0 0deg 120deg, #666978 120deg 260deg, #484a57 260deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.wf-donut::after {
    content: "";
    width: 70px;
    height: 70px;
    background: #1c1d22;
    border-radius: 50%;
    position: absolute;
}

.wf-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.wf-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wf-legend-item .wf-pill {
    flex: 1;
}

.wf-list-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.wf-pill--list { flex: 1; height: 10px; }
.wf-pill--list-end { width: 30px; height: 8px; background: #c6c7d0; }

.wf-sheet-body {
    flex: 1;
    background: #1c1d22;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.wf-sheet-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2d2e38;
}

.wf-sheet-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.wf-sheet-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wf-sheet-header {
    margin-bottom: 4px;
}

.wf-sheet-index {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wf-sheet-cell {
    flex: 1;
    height: 24px;
    background: #2d2e38;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border: 1px solid transparent;
}

.wf-sheet-cell--header {
    background: transparent;
    justify-content: center;
}

.wf-sheet-cell--active {
    background: #363845;
    border-color: #666978;
}

.wf-doc-body {
    flex: 1;
    background: #1c1d22;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.wf-doc-toolbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2d2e38;
}

.wf-doc-toolbar-group {
    display: flex;
    gap: 6px;
    align-items: center;
}

.wf-doc-page {
    width: 85%;
    flex: 1;
    background: #2d2e38;
    border-radius: 4px 4px 0 0;
    margin-top: 16px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.wf-doc-title-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.wf-doc-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===========================================
   ESPECIALISTAS SECTION
   =========================================== */

.especialistas-section {
    position: relative;
    width: 100%;
    background: #121212;
    overflow: hidden;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    padding: clamp(80px, 10vw, 128px) 0;
    color: #fff;
}

.esp-bg-images {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.esp-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    mix-blend-mode: luminosity;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.esp-bg-img--active {
    opacity: 100;
}

.esp-bg-grad-h {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: linear-gradient(to right, #0E0E0E, rgba(14, 14, 14, 0.3));
}

.esp-bg-grad-v {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: linear-gradient(to bottom, #121212, transparent, #121212);
}

.esp-container {
    width: 100%;
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.esp-header {
    text-align: center;
    margin-bottom: clamp(60px, 6vw, 96px);
    padding: 0 24px;
}

.esp-title {
    font-family: 'Switzer', sans-serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 400;
    letter-spacing: normal;
    margin-bottom: 16px;
    background: #EEEAE9;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.esp-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.7;
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
}

.esp-hl {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.esp-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex: 1;
}

.esp-menu {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 20;
    padding-left: clamp(24px, 5vw, 80px);
}

.esp-menu-track {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.esp-menu-item {
    position: relative;
    padding-left: 24px;
    padding-top: 6px;
    padding-bottom: 6px;
    cursor: pointer;
}

.esp-menu-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    border-radius: 3px;
    background: transparent;
    transition: background 0.5s ease;
}

.esp-menu-item:hover:not(.esp-menu-item--active) .esp-menu-indicator {
    background: rgba(255, 255, 255, 0.2);
}

.esp-menu-item--active .esp-indicator--pink { background: #ec4899; }
.esp-menu-item--active .esp-indicator--purple { background: #a855f7; }
.esp-menu-item--active .esp-indicator--emerald { background: #10b981; }
.esp-menu-item--active .esp-indicator--blue { background: #3b82f6; }

.esp-menu-title {
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.5s ease;
}

.esp-menu-item:hover .esp-menu-title {
    color: rgba(255, 255, 255, 0.5);
}

.esp-menu-item--active .esp-menu-title {
    color: #fff;
}

.esp-menu-desc {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    margin-top: 0;
    transition: grid-template-rows 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 300;
    overflow: hidden;
}

.esp-menu-item--active .esp-menu-desc {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 8px;
}

.esp-visual {
    width: 65%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: clamp(24px, 5vw, 80px);
}

.esp-window {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    z-index: 20;
    overflow: hidden;
}

.esp-window-header {
    height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    flex-shrink: 0;
}

.esp-window-dots {
    display: flex;
    gap: 6px;
}

.esp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.esp-window-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 500;
}

.esp-window-bot-icon {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.5s ease;
}

.esp-window-spacer {
    width: 40px;
}

.esp-window-body {
    flex: 1;
    background: rgba(5, 5, 5, 0.5);
    display: flex;
    flex-direction: column;
    padding: clamp(16px, 3vw, 24px);
    min-height: 420px;
    position: relative;
}

.esp-context-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
    align-self: center;
}

.esp-context-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.esp-context-tags {
    position: relative;
    min-height: 32px;
    width: 100%;
}

.esp-context-panel {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.esp-context-panel--active {
    display: flex;
}

.esp-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #050505;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.esp-tag--pink { border: 1px solid rgba(236, 72, 153, 0.3); }
.esp-tag--pink svg { color: #f472b6; }
.esp-tag--purple { border: 1px solid rgba(168, 85, 247, 0.3); }
.esp-tag--purple svg { color: #c084fc; }
.esp-tag--emerald { border: 1px solid rgba(16, 185, 129, 0.3); }
.esp-tag--emerald svg { color: #34d399; }
.esp-tag--blue { border: 1px solid rgba(59, 130, 246, 0.3); }
.esp-tag--blue svg { color: #60a5fa; }

.esp-chat-container {
    position: relative;
    flex: 1;
    width: 100%;
}

.esp-chat {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.esp-chat--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.esp-msg {
    display: flex;
    gap: 12px;
}

.esp-msg--user {
    align-self: flex-end;
    width: 83%;
    justify-content: flex-end;
}

.esp-msg--expert {
    align-self: flex-start;
    width: 95%;
}

.esp-msg-bubble {
    border-radius: 16px;
    padding: clamp(12px, 2vw, 16px);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
}

.esp-msg-bubble--user {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px 4px 16px 16px;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.esp-msg-bubble--expert {
    border-radius: 4px 16px 16px 16px;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: clamp(16px, 2vw, 20px);
}

.esp-bubble--pink { background: rgba(236, 72, 153, 0.1); border: 1px solid rgba(236, 72, 153, 0.2); }
.esp-bubble--purple { background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.2); }
.esp-bubble--emerald { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); }
.esp-bubble--blue { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }

.esp-msg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.esp-msg-avatar--user {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.esp-msg-avatar--expert {
    background: #111;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.esp-avatar--pink { border: 1px solid rgba(236, 72, 153, 0.3); color: #f472b6; }
.esp-avatar--purple { border: 1px solid rgba(168, 85, 247, 0.3); color: #c084fc; }
.esp-avatar--emerald { border: 1px solid rgba(16, 185, 129, 0.3); color: #34d399; }
.esp-avatar--blue { border: 1px solid rgba(59, 130, 246, 0.3); color: #60a5fa; }

.esp-skeleton-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.3;
    margin-top: 16px;
}

.esp-skeleton-lines span {
    height: 6px;
    background: #fff;
    border-radius: 6px;
}

.esp-skeleton-lines span:nth-child(1) { width: 100%; }
.esp-skeleton-lines span:nth-child(2) { width: 83%; }
.esp-skeleton-lines span:nth-child(3) { width: 75%; }

@media (max-width: 1024px) {
    .esp-body {
        flex-direction: column;
        gap: 48px;
    }

    .esp-menu,
    .esp-visual {
        width: 100%;
    }

    .esp-visual {
        justify-content: center;
        padding-right: 24px;
        padding-left: 24px;
    }

    .esp-window {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .especialistas-section {
        min-height: auto;
        padding: 64px 0;
    }

    .esp-header {
        margin-bottom: 40px;
    }

    .esp-menu-title {
        font-size: 22px;
    }

    .esp-window-body {
        min-height: 380px;
    }

    .esp-msg--user {
        width: 90%;
    }

    .esp-msg--expert {
        width: 100%;
    }
}

/* =============================================
   PRIVACIDADE E CONTROLE DE DADOS SECTION
   ============================================= */

.privacy-section {
    position: relative;
    padding: 6rem 0;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .privacy-section {
        padding: 8rem 0;
    }
}

.privacy-noise {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.privacy-glow-1 {
    position: absolute;
    top: 20rem;
    left: -10rem;
    width: 400px;
    height: 400px;
    background-color: rgba(30, 58, 138, 0.1);
    filter: blur(155px);
    border-radius: 50%;
}

.privacy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.privacy-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .privacy-header {
        margin-bottom: 5rem;
    }
}

.privacy-title {
    font-family: switzer, sans-serif;
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: normal;
    margin-bottom: 1.5rem;
    background: #FFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media (min-width: 768px) {
    .privacy-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .privacy-title {
        font-size: 3.75rem;
    }
}

.privacy-subtitle {
    font-family: 'Switzer', sans-serif;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.125rem;
    line-height: 1.625;
    font-weight: 300;
}

@media (min-width: 768px) {
    .privacy-subtitle {
        font-size: 1.25rem;
    }
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
    z-index: 20;
}

@media (min-width: 640px) {
    .privacy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .privacy-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .privacy-grid {
        gap: 1.5rem;
    }
}

.privacy-card-wrap {
    position: relative;
    border-radius: 1.5rem;
    padding: 1px;
    overflow: hidden;
    cursor: pointer;
    height: 320px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
    .privacy-card-wrap {
        height: 340px;
    }
}

.privacy-card-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), var(--glow-color, rgba(255,255,255,0.8)), transparent 40%);
}

.privacy-card-wrap:hover .privacy-card-glow {
    opacity: 1 !important;
}

.privacy-card {
    position: relative;
    z-index: 10;
    background-color: #0a0a0a;
    border-radius: calc(1.5rem - 1px);
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 1280px) {
    .privacy-card {
        padding: 2rem;
    }
}

.privacy-card-inner-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle at bottom left, var(--tw-gradient-stops));
}

.privacy-card-wrap:hover .privacy-card-inner-glow {
    opacity: 1;
}

.privacy-card-wrap[data-theme="blue"] { --glow-color: rgba(59, 130, 246, 0.8); }
.privacy-card-wrap[data-theme="blue"]:hover { box-shadow: 0 20px 60px -10px rgba(59,130,246,0.15); }
.privacy-card-wrap[data-theme="blue"] .privacy-card-inner-glow { --tw-gradient-stops: rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.05), transparent; }
.privacy-card-wrap[data-theme="blue"] .privacy-icon { color: #60A5FA; }

.privacy-icon-box {
    position: relative;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: transform 0.5s;
}

.privacy-card-wrap:hover .privacy-icon-box {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .privacy-icon-box {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.privacy-icon-box i,
.privacy-icon-box svg {
    width: 22px !important;
    height: 22px !important;
}

.privacy-content-box {
    margin-top: auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.privacy-card-title {
    font-family: 'Switzer', sans-serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.5s;
}

.privacy-card-wrap:hover .privacy-card-title {
    color: #ffffff;
}

@media (min-width: 1280px) {
    .privacy-card-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

.privacy-card-desc-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-card-wrap:hover .privacy-card-desc-wrap {
    grid-template-rows: 1fr;
}

.privacy-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.625;
    font-weight: 300;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: all 0.5s;
}

.privacy-card-wrap:hover .privacy-card-desc {
    opacity: 1;
    padding-top: 0.75rem;
}

@media (min-width: 1280px) {
    .privacy-card-desc {
        font-size: 1rem;
    }
}
