/* Base styles and variables */
:root {
    /* --- PRCRIAÇÃO DESIGN SYSTEM TOKENS --- */
    --pr-blue: #2B4EA8;
    --pr-blue-deep: #1E3A85;
    --pr-blue-mid: #274FAF;
    --pr-blue-light: #4B6BC4;
    --pr-blue-tint: rgba(43, 78, 168, 0.08);
    --pr-blue-tint-md: rgba(43, 78, 168, 0.15);
    --pr-sand: #CCCABB;
    --pr-sand-light: #D8D6C9;
    --pr-sand-dark: #B4B2A0;
    --pr-teal: #3E7987;
    --pr-teal-deep: #2E6270;
    --pr-teal-light: #4A90A0;
    --pr-gradient: linear-gradient(135deg, #274FAF 0%, #3A6FA8 42%, #3E7987 100%);
    --pr-gradient-v: linear-gradient(180deg, #274FAF 0%, #3E7987 100%);
    --pr-gradient-inv: linear-gradient(315deg, #274FAF 0%, #3E7987 100%);
    --pr-black: #0F0F0F;
    --pr-ink: #1C1C1C;
    --pr-charcoal: #2D2D2D;
    --pr-gray: #6B6B6B;
    --pr-silver: #A8A8A8;
    --pr-smoke: #D8D8D8;
    --pr-white: #F8F7F4;
    --pr-bg-warm: #F0EEE7;
    --pr-bg-sand: #E8E5DC;

    --font-title: 'Syne', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* --- Theme Mappings --- */
    --bg-color: var(--pr-bg-warm);
    --card-bg: var(--pr-white);
    --text-primary: var(--pr-ink);
    --text-secondary: var(--pr-charcoal);
    --text-muted: var(--pr-gray);
    --border-color: var(--pr-bg-sand);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --font-sans: var(--font-body);
    --shadow-sm: 0 4px 24px rgba(43, 78, 168, 0.06);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 24px;
}

.page-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    background-color: rgba(248, 247, 244, 0.85); /* Translúcido com base em --pr-white (#F8F7F4) */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.45); /* Borda sutil para realçar o efeito glassmorphism */
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 116px; /* Estado completo inicial no topo */
    height: 48px;
    background-color: var(--pr-blue);
    border-radius: var(--radius-sm);
    color: var(--pr-sand);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(43, 78, 168, 0.15);
}

.logo.is-compact {
    width: 48px; /* Estado compactado ao descer a página */
}

.logo-compact-svg,
.logo-full-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    fill: currentColor;
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-compact-svg {
    height: 24px;
    width: auto;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    pointer-events: none;
}

.logo-full-svg {
    height: 44px;
    width: auto;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Transições de estados */
.logo.is-compact .logo-compact-svg {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.logo.is-compact .logo-full-svg {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    pointer-events: none;
}


.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-secondary);
}

/* --- MULTILANGUAGE SYSTEM --- */
/* Estado padrão: exibe PT, oculta EN */
.lang-en {
    display: none !important;
}

/* Quando o idioma inglês está ativo */
body.lang-en-active .lang-pt {
    display: none !important;
}

body.lang-en-active .lang-en {
    display: inline !important;
}

/* Casos onde o elemento traduzido precisa ser block, flex, etc. */
body.lang-en-active blockquote.lang-en,
body.lang-en-active div.lang-en,
body.lang-en-active p.lang-en,
body.lang-en-active h1.lang-en,
body.lang-en-active h2.lang-en,
body.lang-en-active h3.lang-en,
body.lang-en-active h4.lang-en,
body.lang-en-active section.lang-en,
body.lang-en-active span.lang-en.d-block {
    display: block !important;
}

body.lang-en-active div.lang-en.d-flex {
    display: flex !important;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    margin-left: 8px;
    border-left: 1px solid var(--pr-bg-sand);
    padding-left: 16px;
    height: 16px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--text-muted);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    transition: color 0.2s ease;
}

.lang-btn:hover {
    color: var(--text-secondary);
}

.lang-btn.active {
    color: var(--text-primary);
    position: relative;
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--pr-blue);
    border-radius: var(--radius-full);
}

.lang-divider {
    color: var(--pr-bg-sand);
    user-select: none;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    margin-top: 106px; /* Compensar o navbar fixado */
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.hero-content {
    display: flex;
    height: 560px;
}

.hero-text-area {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.last-updated {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.main-heading {
    font-family: var(--font-title);
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.emoji {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0% {
        transform: rotate(0.0deg)
    }

    10% {
        transform: rotate(14.0deg)
    }

    20% {
        transform: rotate(-8.0deg)
    }

    30% {
        transform: rotate(14.0deg)
    }

    40% {
        transform: rotate(-4.0deg)
    }

    50% {
        transform: rotate(10.0deg)
    }

    60% {
        transform: rotate(0.0deg)
    }

    100% {
        transform: rotate(0.0deg)
    }
}

.sub-heading {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.sub-heading strong {
    color: var(--text-primary);
    font-weight: 700;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 460px;
    margin-bottom: auto;
    /* Pushes the button to the bottom */
}

.scroll-btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 20px;
    background-color: var(--bg-color);
    border: none;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 48px;
}

.scroll-btn:hover {
    background-color: #e8e9ea;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid var(--text-primary);
    border-radius: 50%;
}

.icon-circle svg {
    width: 10px;
    height: 10px;
}

.hero-image-area {
    flex: 1;
    padding: 24px 24px 24px 0;
    display: flex;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Botão Menu Hambúrguer (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, background-color 0.3s ease;
}

/* Estado ativo do botão hambúrguer (transforma em X) */
.menu-toggle.is-active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ffffff;
}

.menu-toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ffffff;
}

/* Menu Mobile Overlay (Gaveta com blur e fundo escuro premium) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
    width: 100%;
}

.mobile-nav-link {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.2s ease;
    letter-spacing: -0.03em;
}

.mobile-menu-overlay.is-open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.is-open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link:hover {
    color: var(--pr-sand);
}

/* Tradutor de idioma no menu mobile */
.mobile-lang-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 120px;
    justify-content: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.35s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.35s;
}

.mobile-menu-overlay.is-open .mobile-lang-switch {
    opacity: 1;
    transform: translateY(0);
}

.mobile-lang-switch .lang-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 4px 8px;
    position: relative;
    transition: color 0.2s ease;
}

.mobile-lang-switch .lang-btn.active {
    color: #ffffff;
}

.mobile-lang-switch .lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 2px;
    background-color: var(--pr-sand);
    border-radius: var(--radius-full);
}

.mobile-lang-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        height: auto;
    }

    .hero-text-area {
        padding: 80px 32px 48px;
        min-height: auto;
    }

    .last-updated {
        top: 32px;
        left: 32px;
    }

    .hero-image-area {
        padding: 0 32px 32px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 48px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        justify-content: space-between;
        padding: 16px 24px; /* Ajusta o padding no mobile para acomodar logo e menu hambúrguer elegantemente */
    }

    .hero-image-area {
        height: 350px;
        padding: 0 24px 24px;
    }

    .hero-text-area {
        padding: 64px 24px 32px;
    }
}


/* Ticker Section (Logo Marquee) */
.ticker-section {
    padding: 26px 0 18px 0; /* Padding reduzido para acomodar logos maiores sem crescer o container */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; /* Gap levemente reduzido para otimizar espaço vertical */
    background: #2B4EA8;
    overflow: hidden;
    width: 100%;
    border-radius: 24px;
}

.ticker-heading {
    font-family: var(--font-sans); /* Mesma tipografia de .last-updated (DM Sans) */
    font-size: 13px; /* Igual a .last-updated */
    font-weight: 600; /* Igual a .last-updated */
    color: var(--pr-white); /* Branca pura conforme solicitado */
    opacity: 0.9;
    align-self: flex-start; /* Alinha o título à esquerda no flexbox */
    margin-left: 48px; /* Margeamento à esquerda premium e simétrico */
    margin-bottom: 0;
    text-transform: none; /* Letras maiúsculas/minúsculas naturais */
    letter-spacing: normal; /* Sem espaçamento artificial */
}

.ticker-wrapper-outer {
    position: relative; /* Base de posicionamento absoluto para as setas laterais */
    width: 100%;
    display: flex;
    align-items: center;
}

.ticker-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    /* Fade out edges for premium marquee effect */
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.ticker-track {
    display: flex;
    align-items: center; /* Garante alinhamento vertical exato das logos no track */
    width: max-content;
    will-change: transform;
}

.ticker-group {
    display: flex;
    align-items: center; /* Garante alinhamento vertical exato das logos no grupo */
    gap: 56px; /* Espaço horizontal harmônico entre as logos menores */
    padding-right: 56px;
}

.logo-item {
    height: 84px; /* Aumentado de 64px para 84px para maior destaque visual */
    max-width: 220px; /* Largura proporcional aumentada */
    width: auto;
    object-fit: contain;
    opacity: 0.45;
    user-select: none;
    flex-shrink: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0) invert(1); /* Torna todas as logos brancas puras no fundo azul */
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.ticker-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none; /* Permite passar cliques e arrastes através do container do controle */
    z-index: 10;
}

.ticker-btn {
    pointer-events: auto; /* Restaura a interatividade apenas nos botões */
    width: 38px; /* Mais compacto e discreto */
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pr-sand);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ticker-btn:hover {
    background: var(--pr-white);
    border-color: var(--pr-white);
    color: var(--pr-blue);
    transform: scale(1.08);
}

.ticker-btn svg {
    pointer-events: none;
    /* Make sure hover doesn't break on SVG path */
}


/* Bento Grid Section */
.bento-section {
    margin-top: 24px;
    padding-bottom: 64px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    gap: 24px;
    grid-auto-flow: dense;
}

/* Compress adjacent items when one is hovered */
.bento-grid:has(.bento-item:hover) .bento-item:not(:hover) {
    transform: scale(0.96);
    filter: brightness(0.6);
    /* Compress and dim other items */
}

.bento-item {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease, filter 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    z-index: 1;
}

.bento-item:hover {
    transform: scale(1.04);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    z-index: 10;
    /* Bring hovered item to front */
}

.bento-content {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 2;
}

/* Base gradients for placeholders */
.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    opacity: 0.5;
    z-index: 1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Add varied gradients just for aesthetic */
.bento-item:nth-child(3n)::before {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.bento-item:nth-child(4n)::before {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.bento-item:nth-child(5n)::before {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Responsive Bento */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

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

    .bento-tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

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

    .bento-large,
    .bento-wide,
    .bento-tall,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Bento Hover Interactions */
.bento-item {
    cursor: none;
    /* Hide default cursor */
}

.bento-tags {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.bento-item:hover .bento-tags {
    opacity: 1;
    transform: translateY(0);
}

.tag {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    letter-spacing: 0.02em;
}

.bento-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(30, 58, 133, 0.85);
    /* var(--pr-blue-deep) with opacity */
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

.bento-item:hover .bento-info {
    opacity: 1;
    transform: translateY(0);
}

.bento-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-name {
    font-family: var(--font-display);
    color: white;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.project-category {
    font-family: var(--font-display);
    color: var(--pr-sand);
    /* Sand Accent */
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bento-arrow {
    color: white;
    font-size: 24px;
    font-weight: 400;
}




/* Process Section (Horizontal Scrollytelling Accordion) */
.process-scroll-section {
    position: relative;
    height: 250vh;
    /* Control how long the user scrolls to complete all steps */
    margin: 100px 0;
}

.process-sticky-container {
    position: sticky;
    top: 15vh;
    height: 70vh;
    display: flex;
    align-items: center;
}

.process-layout {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
    width: 100%;
    align-items: center;
}

.process-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.workflow-lottie-container {
    width: 280px;
    height: 280px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: floatLottie 6s ease-in-out infinite;
}

.workflow-lottie-container dotlottie-wc {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes floatLottie {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.process-subtitle {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--pr-teal);
    /* Teal Accent */
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.process-title {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.process-accordion-col {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 460px;
}

.process-panel {
    background: #1e1e1e;
    /* Match dark theme container from video */
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    /* Default collapsed state */
    flex: 0 0 80px;
    cursor: none;
}

.process-panel.active {
    /* Expanded state */
    flex: 1;
    background: #111;
    /* Sleek black background */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Collapsed view styling */
.panel-collapsed-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    opacity: 1;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.process-panel.active .panel-collapsed-view {
    opacity: 0;
    pointer-events: none;
}

.panel-num {
    font-size: 18px;
    font-weight: 700;
    color: #888;
}

.panel-icon {
    font-size: 24px;
}

/* Expanded view styling */
.panel-expanded-view {
    width: 100%;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
    box-sizing: border-box;
}

.process-panel.active .panel-expanded-view {
    opacity: 1;
    transform: translateX(0);
}

.panel-num-large {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--pr-teal);
}

.panel-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-desc h3 {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.panel-desc p {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
    margin: 0;
    font-weight: 400;
}

/* Estilização para as logos no estado colapsado (Substituindo os emojis) */
.panel-collapsed-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 8px; /* Mantém um distanciamento elegante da borda inferior */
}

.collapsed-icon-item {
    width: 26px; /* Tamanho ideal e minimalista para a barra lateral de 80px */
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.collapsed-icon-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.45); /* Uniformiza em tom claro semitransparente por padrão */
    transition: all 0.3s ease;
}

/* Acende suavemente as logos ao passar o mouse sobre o painel colapsado */
.process-panel:hover .collapsed-icon-item img {
    filter: brightness(0) invert(1) opacity(0.8);
}

/* Destaque máximo no hover do ícone individual */
.collapsed-icon-item:hover {
    transform: scale(1.2);
}

.collapsed-icon-item:hover img {
    filter: brightness(0) invert(1) opacity(1) !important;
}

/* Progress bar at the top of the container */
.progress-bar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--pr-gradient);
    /* Premium gradient progress bar */
    transition: width 0.1s ease-out;
}

@media (max-width: 992px) {
    .process-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-accordion-col {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .process-scroll-section {
        height: auto;
        /* Fallback to standard vertical view on mobile */
    }

    .workflow-lottie-container {
        width: 220px;
        height: 220px;
        margin: 16px auto 0 auto; /* Centraliza no mobile */
        justify-content: center;
    }

    .process-sticky-container {
        position: relative;
        top: 0;
        height: auto;
    }

    .process-accordion-col {
        flex-direction: column;
        height: auto;
        gap: 24px;
    }

    .process-panel {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 200px;
        background: #111;
    }

    .panel-collapsed-view {
        display: none;
    }

    .panel-expanded-view {
        opacity: 1;
        transform: none;
        padding: 32px;
        gap: 24px;
    }

    .progress-bar-container {
        display: none;
    }
}



/* ══════════════════════════════════════════════════
   PLAYGROUND SECTION
   ══════════════════════════════════════════════════ */
.playground-section {
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    overflow: hidden;
    /* Ticker não vaza da página */
}

/* Header */
.playground-header {
    padding: 0 48px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.playground-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.playground-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted, #8c949c);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.playground-title {
    font-family: var(--font-title);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary, #1a1a1a);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.playground-desc {
    font-family: var(--font-body);
    max-width: 480px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary, #555);
    font-weight: 400;
}

/* ── Ticker wrapper ──────────────────────────────── */
.pg-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    /* Fade nas bordas */
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.pg-ticker-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 12px 0;
    /* Espaço para a sombra dos cards não ser cortada */
    will-change: transform;
    transition: none;
    /* O JS controla o transform; não queremos CSS transition aqui */
}

/* ── Cards ───────────────────────────────────────── */
.pg-card {
    position: relative;
    width: 340px;
    height: 400px;
    flex-shrink: 0;
    border-radius: var(--radius-lg, 24px);
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

    /* Transição de escala (efeito bento) */
    transition:
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.5s ease,
        box-shadow 0.5s ease;
}

.pg-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Overlay com título e categoria – visível apenas no hover */
.pg-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pg-card-cat {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pg-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

/* ── Estado: card hovered ────────────────────────── */
.pg-card.pg-hovered {
    transform: scale(1.06);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.pg-card.pg-hovered img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.pg-card.pg-hovered .pg-card-overlay {
    opacity: 1;
}

/* ── Estado: vizinhos comprimem quando há hover ──── */
.pg-ticker-wrapper.pg-has-hover .pg-card:not(.pg-hovered) {
    transform: scale(0.94);
    filter: brightness(0.55);
}

@media (max-width: 768px) {
    .playground-header {
        flex-direction: column;
        padding: 0 24px;
        gap: 20px;
    }

    .playground-title {
        font-size: 36px;
    }

    .pg-card {
        width: 260px;
        height: 320px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-subtitle {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-title {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.about-card-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}

/* Intro Card */
.intro-text {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.intro-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-black {
    font-family: var(--font-body);
    background: var(--pr-blue);
    color: var(--pr-sand);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(43, 78, 168, 0.2);
}

.btn-black:hover {
    background: var(--pr-blue-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(43, 78, 168, 0.35);
}

.social-links {
    display: flex;
    gap: 8px;
}

.btn-social {
    width: 44px;
    height: 44px;
    background: #f4f5f6;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    overflow: hidden;
}

.btn-social:hover {
    background: #e8e9ea;
    transform: translateY(-2px);
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

.btn-social:hover .social-icon {
    transform: scale(1.08);
}

/* Photo Card & Slider */
.photo-card {
    padding: 0;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.about-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.about-slide.align-top {
    object-position: center top;
}

.photo-dots {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

/* Story */
.story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    font-weight: 500;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-icon {
    font-size: 20px;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.timeline-role {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-date {
    font-size: 13px;
    font-weight: 500;
    color: #888;
}

.timeline-company {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Spotify */
.spotify-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spotify-section .about-card-title {
    margin-bottom: 8px;
    margin-top: 24px;
}

.spotify-card {
    background: #222;
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: none;
    transition: background 0.3s ease;
}

.spotify-card:hover {
    background: #2a2a2a;
}

.album-art {
    width: 42px;
    height: 56px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.track-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
}

.track-name {
    color: white;
    font-size: 15px;
    font-weight: 700;
}

.track-artist {
    color: #aaa;
    font-size: 13px;
    font-weight: 500;
}

.track-actions {
    display: flex;
    align-items: center;
    padding-right: 8px;
}

.book-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.85;
}

.book-buy-btn:hover {
    transform: scale(1.1);
    opacity: 1;
}

.buy-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Hide default cursor globally */
* {
    cursor: none !important;
}

/* Custom Cursor - Global State (Bluish Gray Circle) */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;

    transform: translate(-50%, -50%);

    width: 16px;
    height: 16px;
    background: var(--pr-teal);
    /* Brand Teal */
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;

    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        background 0.4s ease,
        border-radius 0.4s ease,
        padding 0.4s ease,
        backdrop-filter 0.4s ease;

    padding: 0;
    box-sizing: border-box;
}

.custom-cursor .cursor-icon {
    min-width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;

    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-cursor .cursor-text {
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;

    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    margin-left: 10px;
}

/* Custom Cursor - Active State (Hovering Bento) */
.custom-cursor.active {
    width: 116px;
    height: 52px;
    background: rgba(248, 247, 244, 0.85);
    /* var(--pr-white) with transparency */
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 8px;
}

.custom-cursor.active .cursor-icon {
    opacity: 1;
    transform: scale(1);
}

.custom-cursor.active .cursor-text {
    opacity: 1;
    transform: translateX(0);
}

.custom-cursor.active.coming-soon-cursor {
    width: 142px;
}

/* Custom Cursor - Arrow Only State (Hovering Photo Card) */
.custom-cursor.arrow-only {
    width: 52px;
    height: 52px;
    background: rgba(248, 247, 244, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    padding: 8px;
}

.custom-cursor.arrow-only .cursor-icon {
    opacity: 1;
    transform: scale(1);
}

.custom-cursor.arrow-only .cursor-text {
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
}

/* ──────────────────────────────────────────────────
   BENTO GIF SLIDESHOW STYLES
   ────────────────────────────────────────────────── */
.bento-item.has-gif-bg::before {
    display: none !important;
}

.bento-gif-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: var(--pr-bg-sand);
}

.bento-gif-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-gif-bg img.active {
    opacity: 1;
}

/* Mantém o zoom sutil ao pairar (hover) */
.bento-item:hover .bento-gif-bg img {
    transform: scale(1.04);
}

/* ══════════════════════════════════════════════════
   RESUME MODAL STYLES
   ══════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.6); /* Fundo escuro semitransparente */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9990; /* Abaixo do custom cursor (9999) mas acima de tudo */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--pr-white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 64px rgba(43, 78, 168, 0.12);
    width: 90%;
    max-width: 480px;
    position: relative;
    padding: 48px;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.is-visible .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: none; /* Deixa o cursor customizado agir */
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
    color: var(--text-primary);
    transform: scale(1.08);
}

.modal-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--pr-blue-tint);
    color: var(--pr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pdf-icon {
    width: 28px;
    height: 28px;
}

.modal-title {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.modal-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
}

.modal-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.modal-btn-cancel {
    font-family: var(--font-body);
    background: var(--pr-bg-sand);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.modal-btn-cancel:hover {
    background: var(--pr-sand-light);
    transform: translateY(-1px);
}

.modal-btn-confirm {
    font-family: var(--font-body);
    background: var(--pr-blue);
    color: var(--pr-sand);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: none;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(43, 78, 168, 0.15);
}

.modal-btn-confirm:hover {
    background: var(--pr-blue-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(43, 78, 168, 0.3);
}

@media (max-width: 576px) {
    .modal-container {
        padding: 32px 24px;
    }
    
    .modal-actions {
        flex-direction: column-reverse;
        width: 100%;
    }
    
    .modal-btn-cancel,
    .modal-btn-confirm {
        width: 100%;
        justify-content: center;
    }
}

/* ──────────────────────────────────────────────────
   MAIN FOOTER STYLES (PRcriação Design System)
   ────────────────────────────────────────────────── */
.main-footer {
    width: 100%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 48px;
    box-shadow: var(--shadow-sm);
    margin-top: 24px; /* Garante consistência com o grid de 24px da page-wrapper */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-footer:hover {
    box-shadow: 0 8px 32px rgba(43, 78, 168, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
}

.footer-logo {
    color: var(--pr-blue);
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.03);
    color: var(--pr-blue-deep);
}

.footer-logo-svg {
    height: 38px;
    width: auto;
    fill: currentColor;
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: -0.01em;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

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

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-link:hover {
    color: var(--pr-blue);
    background-color: var(--pr-bg-sand);
    border-color: var(--pr-sand-dark);
    transform: translateY(-3px);
}

.footer-link svg {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-link:hover svg {
    transform: scale(1.08);
}

.footer-back-to-top {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: none; /* Custom cursor */
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-back-to-top:hover {
    background-color: var(--pr-bg-sand);
    border-color: var(--pr-sand-dark);
    transform: translateY(-2px);
}

.back-to-top-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--text-primary);
    color: var(--card-bg);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.footer-back-to-top:hover .back-to-top-icon {
    transform: translateY(-2px);
    background-color: var(--pr-blue);
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 24px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-left {
        align-items: center;
    }

    .footer-right {
        align-items: center;
        width: 100%;
    }

    .footer-social-links {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS (Efeito de entrada premium)
   ============================================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}