@font-face {
    font-family: 'BenedictCustom';
    src: url('../fonts/benedictregular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Fallback: if Benedict fails to load, Great Vibes from Google Fonts is similar */

:root {
    --bg-main: #000000;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --whatsapp-green: #25D366;
    --neon-blue: #0ea5e9;
    --glass-border: rgba(255, 255, 255, 0.1);
}

#hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

#hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    pointer-events: none;
}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Ocultar barra de rolagem nativa completamente */
::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    min-height: 100vh;
    position: relative;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

::selection {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}


/* Ocultar elementos exclusivos de mobile por padrão (Desktop) */
.hamburger-menu,
.mobile-menu-overlay {
    display: none;
}

/* Navbar Minimalista (Apenas na Seção 1) */
.navbar.minimal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    z-index: 100;
    background: transparent;
}

.lang-selector {
    display: flex;
    gap: 1.5rem;
}

.lang-selector a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.lang-selector a:hover,
.lang-selector a.active {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.6);
}

.social-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text-primary);
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent; /* Prepare for border */
    padding: 0.4rem;
    border-radius: 50%;
}

.social-icon:hover {
    transform: translateY(-2px);
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Fundo removido conforme pedido de pureza na Seção 1 */

/* Hero Centered Section */
.hero.minimal-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 100px 5% 40px 5%;
    /* Adjusted for navbar */
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(0.5rem, 1.5vw, 1.5rem);
    width: 100%;
    max-width: 1000px;
    z-index: 2;
    opacity: 1;
}

/* Eyebrow - Shine Effect */
.eyebrow {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Only hero eyebrow gets the CSS fade-in (other eyebrows are animated by GSAP) */
.hero-ready .eyebrow {
    animation: fadeInDown 0.8s ease-out forwards, shine 4s linear infinite;
}

.shine-text {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.3) 40%,
            #ffffff 50%,
            rgba(255, 255, 255, 0.3) 60%,
            rgba(255, 255, 255, 0.3) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Title - Jump Effect */
.jump-title {
    font-size: clamp(4.5rem, 12vw, 8.5rem);
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -3px;
    color: var(--text-primary);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



/* Fonte cursiva EXCLUSIVAMENTE no titulo "Luis Caldeira" da Seção 1 */
#jump-title {
    font-family: 'BenedictCustom', cursive !important;
    font-display: swap;
}

.jump-letter {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.jump-letter:hover {
    transform: translateY(-15px);
}

/* Subtext & Neon Line */
.subtext-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}



.subtext {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.neon-line {
    height: 1px;
    width: 50px;
    background: var(--neon-blue);
    box-shadow: 0 0 5px var(--neon-blue), 0 0 10px rgba(14, 165, 233, 0.3);
    border-radius: 2px;
    opacity: 0.6;
}

/* Buttons Base */
.demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.action-wrapper {
    margin-bottom: 8rem;
    /* Spacing before the new scroll indicator */
}

.hero-content-center.hero-ready {
    opacity: 1;
}

@keyframes heroReveal {
    from {
        opacity: 1;
    }

    to {
        opacity: 1;
    }
}

/* Button variants */
.primary-demo {
    background: var(--text-primary);
    color: var(--bg-main);
    border: 2px solid var(--text-primary);
}

.primary-demo:hover {
    background: var(--bg-main);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator Moderno */
.modern-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.modern-scroll-indicator:hover {
    opacity: 1;
}

.modern-scroll-indicator .scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Horizontal Indicator Layout */
.horizontal-indicator {
    flex-direction: row;
}

.horizontal-indicator .scroll-arrow-container {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.horizontal-indicator .scroll-arrow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 15px;
    background: var(--text-primary);
    border-radius: 2px;
    animation: scrollRight 1.5s cubic-bezier(0.6, 0.05, 0.15, 0.95) infinite;
}

@keyframes scrollRight {
    0% {
        left: -15px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: 40px;
        opacity: 0;
    }
}

.scroll-arrow-container {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.scroll-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--text-primary);
    border-radius: 2px;
    animation: scrollDrop 1.5s cubic-bezier(0.6, 0.05, 0.15, 0.95) infinite;
}

@keyframes scrollDrop {
    0% {
        top: -15px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Scroll Indicator removido da Seção 1 */

/* Green WhatsApp Button (Top Bar) */
.green-btn {
    background: linear-gradient(135deg, #1b8a45, #125e2e);
    color: var(--text-primary);
    border: 2px solid transparent;
    padding: 0.5rem 1.2rem;
    /* Menor para caber na navbar */
    font-size: 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.green-btn:hover {
    background: linear-gradient(135deg, #125e2e, #0c4220);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

/* Animações Iniciais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seção 2: Projetos - Mobile-First Layout */
.portfolio-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden !important;
    background-color: var(--bg-main);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

.projects-section {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--bg-main);
    z-index: 2;
    overflow: visible;
    box-shadow: none;
    will-change: transform;
}

@media (min-width: 769px) {
    .portfolio-wrapper {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        will-change: transform;
        transform: translateZ(0);
    }

    .projects-section,
    .contact-section,
    .process-section,
    .testimonials-section,
    .journey-section,
    .footer-section {
        will-change: transform, opacity, clip-path;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
    }

    .projects-section {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 5;
        opacity: 1;
        visibility: visible;
        background-color: var(--bg-main);
        box-shadow: -15px 0 35px rgba(0, 0, 0, 0.7);
    }

    .contact-section,
    .process-section,
    .testimonials-section,
    .journey-section,
    .footer-section {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        pointer-events: none;
    }
}

.horizontal-scroll-wrapper {
    width: 100%;
    height: auto;
}

@media (min-width: 769px) {
    .horizontal-scroll-wrapper {
        height: 100vh;
    }
}

.horizontal-scroll-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    will-change: transform;
    /* Otimização GSAP */
}

@media (min-width: 769px) {
    .horizontal-scroll-container {
        flex-direction: row;
        flex-wrap: nowrap;
        height: 100vh;
        width: max-content;
    }
}

.scroll-panel {
    width: 100%;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 5% 40px 5%;
    flex-shrink: 0;
    position: relative;
}

@media (min-width: 769px) {
    .scroll-panel {
        width: 100vw;
        height: 100vh;
        padding: 0 5%;
    }
}

/* Painel Intro da Seção 2 */
.intro-panel {
    align-items: flex-start;
    padding-left: 5%;
    width: auto;
    padding-right: 2rem;
}

.intro-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Inter', var(--font-primary), sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -3px;
    color: var(--text-primary);
    margin-bottom: 0px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.section-title:hover {
    transform: scale(1.05) translateX(10px);
    /* Aumenta e move levemente para chamar atenção sem brilhar */
}

.micro-desc {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    top: 5px;
}

.scroll-indicator {
    display: none;
}

.arrow-icon {
    animation: bounceRight 2s infinite ease-in-out;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}


.project-card {
    width: 100%;
    max-width: 300px;
    /* Base for mobile */
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 1;
    /* Force visible on mobile */
    transform: none;
    /* Force no GSAP offset */
}

@media (min-width: 769px) {
    .project-card {
        width: calc(65vh * (9/16));
        opacity: 1;
        transform: none;
    }
}



.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    /* Removido backdrop-filter para ganho de FPS no scroll horizontal */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    padding-left: 4px;
    transition: all 0.3s ease;
    will-change: transform, background;
}



/* Novo layout das informações abaixo do card */
.project-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem 0.2rem;
    width: 100%;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-blue);
    opacity: 0.9;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
}

.project-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
    margin-top: 0.2rem;
}

/* Métricas */
.metrics-panel {
    width: auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.metrics-card {
    background: rgba(11, 26, 48, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    width: 100%;
    max-width: 300px;
    height: calc(300px * (16/9) + 5.2rem);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

@media (min-width: 769px) {
    .metrics-card {
        width: calc(55vh * (9/16));
        height: 55vh;
        max-width: none;
    }
}

.metrics-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Painel de Clientes (Logo Grid) */
.clients-panel {
    width: auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.clients-card {
    background: rgba(11, 26, 48, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 300px;
    height: calc(300px * (16/9) + 5.2rem);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

@media (min-width: 769px) {
    .clients-card {
        width: calc(55vh * (9/16));
        height: 55vh;
        max-width: none;
        padding: 0.8rem 0.8rem;
        gap: 0.5rem;
    }
    .clients-card .metrics-header {
        margin-bottom: 0.2rem;
    }
    .clients-card .metrics-title {
        font-size: 1.3rem;
        margin-bottom: 0.1rem;
    }
    .clients-card .metric-description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    .clients-card .clients-grid {
        gap: 0.4rem;
    }
    .clients-card .client-logo-placeholder {
        padding: 0.3rem;
        border-radius: 8px;
    }
}

.clients-card:hover {
    transform: translateY(0);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.1), inset 0 0 0 1px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.5);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    width: 100%;
}

.client-logo-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.client-logo-placeholder img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.client-logo-placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.metrics-card:hover {
    transform: translateY(0);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.2), inset 0 0 0 1px rgba(14, 165, 233, 0.4);
    border-color: var(--neon-blue);
    background: #0b1a30;
}

.metrics-card:hover::before {
    opacity: 1;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 80%);
}

.metrics-header {
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.metrics-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
}

.metrics-subtitle {
    font-size: 0.95rem;
    color: var(--neon-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.metrics-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.metric-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
}

.metrics-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.metric-number {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 0.2rem;
}

.end-panel {
    width: 50vw;
}

/* Seção 3: Contato */
.contact-section {
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    background-color: #f0f3f9;
    /* Branco gelado sutil — quase branco puro mas com tom azulado frio */
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 5% 40px 5%;
    /* Mobile default padding */
}

@media (min-width: 769px) {
    .contact-section {
        position: absolute;
        top: 0;
        left: 0;
        padding: 2rem;
        -webkit-clip-path: circle(0% at 50% 50vh);
        clip-path: circle(0% at 50% 50vh);
        will-change: transform, clip-path, -webkit-clip-path;
        transform-origin: center center;
    }
}

.contact-content {
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    width: 100%;
    margin: 0 auto;
    opacity: 1;
    transform: none;
}

@media (min-width: 769px) {
    .contact-content {
        opacity: 0;
        transform: translateY(60px);
    }
}

.contact-title-custom {
    color: #09090b;
    /* Preto profundo para contraste máximo */
    margin-bottom: 0.8rem;
}

.contact-desc {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: #3f3f46;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 3.5rem;
    text-wrap: balance;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.highlight-invite {
    text-wrap: balance;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    background-color: #ffffff;
    color: #000000;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    box-shadow: none;
    /* Sombra projetada default MUITO mais forte */
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, background 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

/* Specific Glow Colors */
.ig-glow::before {
    background: radial-gradient(circle, rgba(225, 48, 108, 0.15) 0%, transparent 70%);
}

.wa-glow::before {
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
}

.mail-glow::before {
    background: radial-gradient(circle, rgba(234, 67, 53, 0.15) 0%, transparent 70%);
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    /* Sombra colossal no hover */
    border-color: #d1d5db;
}

.glow-card:hover::before {
    width: 200%;
    height: 200%;
    opacity: 1;
}

.card-icon,
.contact-card h3,
.contact-card p,
.contact-btn {
    position: relative;
    z-index: 1;
    /* Keep content above glow */
}

.card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-contact-icon {
    stroke: url(#ig-grad);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000000;
}

.contact-card p {
    font-size: 1rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.5;
    flex-grow: 1;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    background-color: var(--neon-blue);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid var(--neon-blue);
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
}

.contact-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.03);
    border-color: #e5e7eb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.email-address-text {
    font-family: monospace;
    font-size: 0.9rem !important;
    letter-spacing: -0.5px;
    color: #a1a1aa !important;
}

/* Seção 4: Processo */
.process-section {
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    background-color: #000000;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 5% 40px 5%;
}

@media (min-width: 769px) {
    .process-section {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0;
        -webkit-clip-path: circle(0% at 50% 50vh);
        clip-path: circle(0% at 50% 50vh);
        will-change: transform, clip-path, -webkit-clip-path;
    }
}

.process-section.active-overlay {
    z-index: 15;
    /* Passa por cima da seção 3 ao ativar */
}

/* Classe ativada via JS quando termina a expansão da Section 4 */
.process-section.allow-scroll {
    overflow-y: auto;
}

.process-content {
    text-align: center;
    max-width: 1200px;
    /* Alargado para caber o grid */
    padding: 6rem 2rem 4rem 2rem;
    /* Mais respiro no topo e no fundo */
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Fica acima das partículas */
}

/* Fundo de Partículas Minimalistas Animadas */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    animation: driftParticles 25s linear infinite;
}

@keyframes driftParticles {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

.process-header {
    align-items: center;
    margin-bottom: 4rem;
    /* Distância do header para o primeiro nó */
}

.process-title {
    margin-bottom: 1.5rem;
    text-shadow: none !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), letter-spacing 0.4s ease, opacity 0.4s ease;
    cursor: default;
}

.process-title:hover {
    transform: translateY(-3px) scale(1.01);
    letter-spacing: 0.02em;
    opacity: 0.9;
}

/* Timeline Nodal (estilo Fusion DaVinci) Agora em Grid */
.nodal-timeline {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
}

@media (min-width: 769px) {
    .cta-node-wrapper {
        grid-column: span 2;
    }
}

/* Linha conectora vertical (Ocultada com o novo layout Grid) */
.nodal-connection-line {
    display: none;
}

/* Wrapper individual para cada nódulo */
.node-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
}

/* Nó do Processo principal */
.node-item {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    /* Cantos um pouco mais arredondados */
    padding: 2rem 2.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.5rem;
    row-gap: 0.5rem;
    align-items: center;
    text-align: left;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.node-item:hover {
    transform: translateY(-8px);
    /* Mudado para animação flutuante para cima em desktop grid */
    background: rgba(25, 25, 25, 0.6);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Borda brilhante à esquerda estilo categoria do Fusion */
.node-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    /* Linha de categoria cor */
}

/* Cores dos Nodes — Azul padrão do site */
.node-setup::before,
.node-tool::before,
.node-media::before,
.node-audio::before,
.node-effect::before,
.node-color::before,
.node-complete::before,
.node-output::before,
.node-davinci::before {
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}


/* Cabeçalho do Nó: Ícone + Título */
.node-header {
    display: contents;
    /* Break out children into parent CSS grid */
}

/* Bolinha do ícone que funciona como o "pino" no cabo conector */
.node-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    /* Center horizontally between rows */
    width: 54px;
    /* Levemente maior */
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    /* Transparente moderno */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    /* Fica acima da linha */
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05), 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.node-item:hover .node-icon {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.1), 0 4px 20px rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.node-header h4 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    /* Fix title to the bottom of the row closer to description */
    font-size: 1.6rem;
    /* Título com mais presença */
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Corpo do Nó */
.node-body {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    padding-left: 0;
    /* Remove old custom compensation */
}

.node-body p {
    color: #a1a1aa;
    font-size: 1.1rem;
    /* Fonte mais fácil de ler */
    line-height: 1.65;
    margin: 0;
}

.cta-node-wrapper {
    background: rgba(14, 165, 233, 0.05);
    /* Leve tom neon do fundo */
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cta-node-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.process-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.process-cta {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.process-cta-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.process-content,
.testimonials-content,
.journey-section>*,
.footer-content {
    opacity: 1;
    transform: none;
    visibility: visible;
}

@media (min-width: 769px) {

    .process-content,
    .testimonials-content,
    .footer-section {
        /* GSAP will handle these on desktop */
        will-change: transform, opacity;
    }
}

/* Footer Section / Seção 7 */
.footer-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 100%;
}

.footer-section {
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    background: var(--bg-main);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 5% 40px 5%;
}

@media (min-width: 769px) {
    .footer-section {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0;
        visibility: hidden;
    }
}

.footer-top {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-logo {
    width: clamp(120px, 20vw, 180px);
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-thanks {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-wrap: balance;
    transition: transform 0.4s ease;
    cursor: default;
}

.footer-thanks:hover {
    transform: scale(1.02);
}

.footer-subtext {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-rights {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    text-align: center;
}

.footer-back-top {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
}

.footer-back-top:hover {
    opacity: 1;
    color: #000;
    background: var(--text-primary);
    transform: translateY(-2px);
}



.process-cta-btn {
    font-size: 1.1rem;
    padding: 1.2rem 3.5rem;
    cursor: pointer;
}

/* Capitalização específica para o subtext do Processo */
.process-subtext .subtext {
    text-transform: none;
    /* Desativa o UPPERCASE global */
    letter-spacing: 1.5px;
    /* Menor gap para letras minúsculas */
    text-wrap: balance;
    /* Elimina text widows (palavras viúvas) */
}

.testimonials-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    background-color: #000000;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 5%;
}

@media (min-width: 769px) {
    .testimonials-section {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        width: 100%;
        -webkit-clip-path: circle(0% at 50% 50vh);
        clip-path: circle(0% at 50% 50vh);
        will-change: transform, clip-path, -webkit-clip-path;
        overflow: hidden;
    }
}

.testimonials-content {
    text-align: center;
    max-width: 1050px;
    padding: 2rem 1.5rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Grid de Prints Estático */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin: 1.2rem auto 1rem auto;
    overflow: visible;
}

.feedback-card {
    width: 100%;
    height: auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 30px rgba(14, 165, 233, 0);
    transition: box-shadow 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.feedback-card:hover {
    transform: translateY(-12px) scale(1.05) rotateZ(1deg);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.15), 0 10px 20px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.feedback-card:hover::before {
    box-shadow: inset 0 0 30px rgba(14, 165, 233, 0.2);
}

.feedback-card img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
    position: relative;
    border-radius: 16px;
}



/* Disclaimer */
.disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    font-weight: 400;
}

.disclaimer-icon {
    color: var(--whatsapp-green);
}

.test-cta-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}


/* Seção 6: Jornada */
.journey-section {
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    background-color: #000000;
    z-index: 13;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 5% 40px 5%;
}

@media (min-width: 769px) {
    .journey-section {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0;
        -webkit-clip-path: circle(0% at 50% 50vh);
        clip-path: circle(0% at 50% 50vh);
        will-change: transform, clip-path, -webkit-clip-path;
    }
}

.journey-scroll-container {
    width: 100%;
}

@media (min-width: 769px) {
    .journey-scroll-container {
        min-width: 100vw;
    }
}

.journey-logo-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(14, 165, 233, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease, border-color 0.5s ease;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.5);
}

.journey-logo-container:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3), inset 0 0 15px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.5);
}

.journey-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-animated-text {
    line-height: 1.6;
    color: var(--text-secondary);
    width: 100%;
}

.journey-text-card {
    min-width: unset;
    flex-basis: auto;
    flex-shrink: 0;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.journey-text-card::-webkit-scrollbar {
    display: none;
}

.blur-word {
    display: inline-block;
    will-change: opacity, filter;
    margin-right: 0.25em;
    margin-bottom: 0.2em;
}

/* GSAP sets this class to hide words before the stagger reveal animation */
.blur-word.blur-hidden {
    opacity: 0;
    filter: blur(10px);
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    max-height: 250px;
}

/* Hover effects for Journey Cards */
.journey-text-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.journey-text-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Ajustes Responsive Seção 6 */


/* =========================================================================
   Fixed UI Elements (Botões Globais)
   ========================================================================= */

.fixed-btn-home,
.fixed-btn-contact {
    position: fixed;
    z-index: 9999;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    text-decoration: none;
}

/* Visibilidade ativada via JS */
.fixed-btn-home.show,
.fixed-btn-contact.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* Botão Inicial (Home) */
.fixed-btn-home {
    top: 2rem;
    left: 2rem;
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-btn-home.show {
    transform: translateY(0);
}

.fixed-btn-home:hover {
    background-color: #2a2a2a;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Botão Contato (Seção 2) */
.fixed-btn-contact {
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

.fixed-btn-contact.show {
    transform: translateX(-50%) translateY(0);
}

.fixed-btn-contact:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Botão WhatsApp Flutuante (Mobile Only) */
.floating-wa-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: none;
    /* Desktop hidden */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa-btn:active {
    transform: scale(0.95);
}



/* Client Logo Images */
.client-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

.client-logo-placeholder:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Footer CTA */
.footer-cta-btn {
    font-size: 1.35rem;
    padding: 1.25rem 4rem;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
}

.footer-cta-caption {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.3px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.footer-social-ig:hover {
    border-color: rgba(225, 48, 108, 0.5);
    background: rgba(225, 48, 108, 0.08);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.2);
}

.footer-social-tt:hover {
    border-color: rgba(37, 244, 238, 0.5);
    background: rgba(254, 44, 85, 0.08);
    box-shadow: 0 8px 20px rgba(254, 44, 85, 0.2);
}

/* Footer Bottom Actions */
.footer-bottom-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-lang-selector {
    display: flex;
    gap: 1.5rem;
}

.footer-lang-btn {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
}

.footer-lang-btn:hover,
.footer-lang-btn.active {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.6);
}

/* =========================================================================
   Video Wrapper (Section 2 - Click to Play)
   ========================================================================= */

.project-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    background: #0a0a0a;
}

/* Base Video Poster Rules (Global - Mobile & Desktop) */
.project-video-frame .video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    border-radius: 0 !important;
}

.project-video-frame .video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.project-video-wrapper .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.project-video-wrapper:hover .video-thumbnail {
    transform: none;
    filter: none;
}

.project-video-wrapper .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.project-video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%);
}

.project-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    transform: translate(-50%, -50%) !important;
    border: none;
    border-radius: 0;
    z-index: 1;
    pointer-events: none;
}

.project-video-wrapper.playing .video-thumbnail,
.project-video-wrapper.playing .play-btn,
.project-video-wrapper.playing .video-placeholder-drive {
    display: none !important;
}

.project-video-wrapper.playing iframe {
    z-index: 10;
    pointer-events: auto;
}

.video-placeholder-drive {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b1a30 0%, #050b14 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}







/* Play hint pill badge for videos */
.play-hint {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-blue);
    opacity: 0.85;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(14, 165, 233, 0.4);
    background: rgba(14, 165, 233, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 0.4rem auto;
    cursor: pointer;
    user-select: none;
}

.play-hint:hover {
    transform: scale(1.05);
    color: #ffffff !important;
    background: var(--neon-blue) !important;
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.6) !important;
    opacity: 1 !important;
}

.project-card:hover .play-hint {
    opacity: 1;
    color: #ffffff;
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}

/* Project Phrase (Section 2 - single line per card) */
.project-phrase {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    margin: 0;
    padding: 0.5rem 0;
    letter-spacing: 0.2px;
    /* Fixed height = 2 lines to keep all cards aligned vertically */
    min-height: calc(0.85rem * 1.5 * 2 + 1rem);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* =========================================================================
   Modal Close Button (shared by DemoReel)
   ========================================================================= */

.gallery-close-btn {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    line-height: 1;
}

.gallery-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

/* =========================================================================
   DemoReel Video Modal
   ========================================================================= */

.demoreel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.demoreel-modal.active {
    display: flex;
}

.demoreel-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.demoreel-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 960px;
    margin: auto;
}

.demoreel-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.demoreel-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}


.jump-letter {
    font-family: 'BenedictCustom' !important;
}

/* =========================================================================
   Preloader
   ========================================================================= */

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* From Uiverse.io by Shoh2008 */
.loader {
    display: block;
    width: 84px;
    height: 84px;
    position: relative;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FFF;
    transform: translate(-50%, -100%) scale(0);
    animation: push_401 0.56s infinite linear;
}

.loader:after {
    animation-delay: 0.28s;
}

@keyframes push_401 {

    0%,
    50% {
        transform: translate(-50%, 0%) scale(1);
    }

    100% {
        transform: translate(-50%, -100%) scale(0);
    }
}

/* =========================================================================
   Parallax Particles (Enhanced depth effect)
   ========================================================================= */

.particles-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 3px, transparent 3px);
    background-size: 120px 120px;
    opacity: 0.8;
    animation: driftParticlesXL 80s linear infinite;
    pointer-events: none;
}

.particles-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(14, 165, 233, 0.12) 2px, transparent 2px);
    background-size: 70px 70px;
    opacity: 0.7;
    animation: driftParticlesDeep 18s linear infinite reverse;
    pointer-events: none;
}

@keyframes driftParticlesDeep {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 140px -70px;
    }
}

@keyframes driftParticlesXL {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -60px 120px;
    }
}

/* =========================================================================
   Toast Notification
   ========================================================================= */

.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(30, 180, 85, 0.95));
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification svg {
    flex-shrink: 0;
    stroke: #fff;
}

/* =========================================================================
   Mobile Splash Screen (Swipe Gesture)
   ========================================================================= */

.mobile-splash {
    display: none;
}

@media (max-width: 768px) {
    .mobile-splash {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99998;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        animation: splashFadeOut 0.5s ease 2s forwards;
    }

    .mobile-splash.hidden {
        display: none !important;
    }

    .splash-gesture {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        animation: splashBounce 1.2s ease-in-out infinite;
    }

    .splash-hand {
        opacity: 0.8;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    }

    .splash-arrows {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .splash-arrow {
        display: block;
        width: 12px;
        height: 12px;
        border-left: 2px solid rgba(255, 255, 255, 0.5);
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        transform: rotate(-45deg);
        animation: splashArrowPulse 1.2s ease-in-out infinite;
    }

    .splash-arrow:nth-child(1) {
        animation-delay: 0s;
        opacity: 0.3;
    }

    .splash-arrow:nth-child(2) {
        animation-delay: 0.15s;
        opacity: 0.6;
    }

    .splash-arrow:nth-child(3) {
        animation-delay: 0.3s;
        opacity: 0.9;
    }

    @keyframes splashBounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    @keyframes splashArrowPulse {

        0%,
        100% {
            opacity: 0.2;
        }

        50% {
            opacity: 1;
        }
    }

    @keyframes splashFadeOut {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
            visibility: hidden;
        }
    }
}

/* =========================================================================
   Unified Responsive Scaling
   Same layout on all devices. Only proportional adaptation, no redesign.
   ========================================================================= */

/* Desktop-only elements: hidden below 769px */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    /* Show hamburger menu and mobile overlay on small screens */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        position: absolute;
        top: 1.5rem;
        right: 5%;
    }

    .hamburger-menu span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-overlay.active {
        display: flex;
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .mobile-lang-selector {
        display: flex;
        gap: 1rem;
    }

    .mobile-lang-btn {
        color: var(--text-secondary);
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 30px;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-lang-btn.active,
    .mobile-lang-btn:hover {
        color: var(--text-primary);
        border-color: var(--text-primary);
    }

    .mobile-social-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .mobile-social-links a {
        color: var(--text-primary);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .mobile-social-links a:hover {
        color: var(--neon-blue);
    }

    /* Hero & Typography Mobile Overrides */
    .jump-title {
        font-size: clamp(2.5rem, 9.5vw, 4.5rem) !important;
    }

    .action-wrapper {
        margin-bottom: 2.5rem !important;
    }

    /* Show floating WhatsApp button on mobile with Safe Area inset */
    .floating-wa-btn {
        display: flex;
        bottom: calc(1.5rem + env(safe-area-inset-bottom));
        right: calc(1.5rem + env(safe-area-inset-right));
    }

    /* Navbar simplification for small screens */
    .navbar.minimal {
        justify-content: flex-end;
        padding: 1rem 5%;
    }

    /* ---- Sections flow naturally on mobile (no GSAP) ---- */
    .portfolio-wrapper {
        height: auto !important;
        overflow: visible !important;
    }

    .projects-section {
        position: relative !important;
        left: 0 !important;
        height: auto !important;
        box-shadow: none !important;
    }

    .horizontal-scroll-wrapper {
        height: auto !important;
    }

    .horizontal-scroll-container {
        flex-direction: column !important;
        height: auto !important;
        width: 100% !important;
    }

    .scroll-panel {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 3rem 5% !important;
    }

    .intro-panel {
        padding: 3rem 5% !important;
        width: 100% !important;
    }

    /* Section 2: Videos Grid Layout (Mobile) */
    .videos-grid-panel {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 3rem 1.2rem 2.5rem 1.2rem !important;
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        box-sizing: border-box !important;
    }

    .sec2-top-header {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: 1.8rem !important;
        width: 100% !important;
        text-align: center !important;
    }

    .sec2-top-header .section-title {
        font-size: clamp(2.2rem, 7vw, 3.2rem) !important;
        margin-bottom: 0.3rem !important;
    }

    .sec2-top-header .micro-desc {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem) !important;
    }

    .videos-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 560px !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 auto !important;
    }

    /* Project video frames - portrait (9:16) and landscape (16:9) */
    .project-video-frame {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        aspect-ratio: 9 / 16 !important;
        border-radius: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
        background: #000;
        position: relative !important;
        cursor: pointer !important;
    }

    .project-video-frame.landscape-video-frame {
        aspect-ratio: 16 / 9 !important;
        grid-column: 1 / -1 !important;
        width: 100% !important;
        height: auto !important;
    }

    .project-video-frame .video-poster {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        background: #000 !important;
        border-radius: 0 !important;
    }

    .project-video-frame .video-poster img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 0 !important;
    }

    .project-video-frame .play-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(0, 0, 0, 0.28) !important;
        transition: background 0.3s ease !important;
    }

    .project-video-frame:active .play-button-icon {
        transform: scale(0.9) !important;
    }

    .project-video-frame iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 0 !important;
        pointer-events: auto !important;
    }


    /* Metrics panel */
    .metrics-panel {
        padding: 2rem 5% !important;
        width: 100% !important;
    }

    .metrics-card {
        max-width: 100%;
        height: auto;
    }

    /* Clients panel */
    .clients-panel {
        padding: 2rem 5% !important;
        width: 100% !important;
    }

    .clients-card {
        max-width: 100%;
        height: auto;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* Contact Section */
    .contact-section {
        position: relative !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        height: auto !important;
        min-height: auto !important;
        padding: 4rem 5% !important;
    }

    .contact-content {
        opacity: 1 !important;
        transform: none !important;
        padding: 1rem;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        min-width: unset;
        width: 100%;
        max-width: 400px;
    }

    .email-address-text {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
    }

    /* Process Section */
    .process-section {
        position: relative !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        height: auto !important;
        min-height: auto !important;
        padding: 4rem 5% !important;
        overflow: visible !important;
    }

    .process-content {
        padding: 2rem 1rem !important;
    }

    .nodal-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-node-wrapper {
        grid-column: span 1;
    }

    .node-item {
        padding: 1.5rem;
        grid-template-columns: 44px 1fr;
    }

    .node-icon {
        width: 44px;
        height: 44px;
    }

    .node-header h4 {
        font-size: 1.3rem;
    }

    .node-body p {
        font-size: 1rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        position: relative !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        height: auto !important;
        min-height: auto !important;
        padding: 4rem 5% !important;
        overflow: visible !important;
    }

    .testimonials-content {
        padding: 2rem 1rem !important;
    }

    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Journey Section */
    .journey-section {
        position: relative !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        height: auto !important;
        min-height: auto !important;
        padding: 4rem 5% !important;
        overflow: visible !important;
    }

    .journey-section .horizontal-scroll-container {
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
    }

    .journey-section .scroll-panel {
        width: 100% !important;
        height: auto !important;
    }

    .journey-content-panel {
        flex-direction: column !important;
        padding: 0 !important;
        gap: 2rem !important;
        align-items: center !important;
    }

    .journey-content-panel .intro-header {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .journey-logo-container {
        width: 180px;
        height: 180px;
    }

    .journey-text-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .journey-cards-column {
        width: 100% !important;
        padding: 0 !important;
    }

    .journey-cards-column .journey-text-card,
    .journey-partner-card,
    .journey-davinci-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    /* Footer Section */
    .footer-section {
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: auto !important;
        padding: 4rem 5% !important;
        overflow: visible !important;
    }

    .footer-content {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .footer-cta-btn {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }



    /* DemoReel modal */
    .demoreel-modal-content {
        width: 95%;
    }

    .gallery-close-btn {
        top: calc(1rem + env(safe-area-inset-top));
        right: 1rem;
    }

    /* Fixed buttons */
    .fixed-btn-home {
        top: 1rem;
        left: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Botão fixo Contato deve aparecer apenas em desktop */
    .fixed-btn-contact {
        display: none !important;
    }

    /* Journey DaVinci card - prevent CTA from being clipped on mobile */
    .journey-davinci-card {
        max-height: none !important;
        overflow: visible !important;
    }

    .journey-partner-card {
        max-height: none !important;
        overflow: visible !important;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .videos-grid {
        gap: 0.65rem !important;
    }

    .project-video-frame .play-button-icon {
        width: 52px !important;
        height: 36px !important;
    }

    .project-video-frame .play-button-icon svg {
        width: 52px !important;
        height: 36px !important;
    }

    .hero-content-center {
        padding: 0 1rem;
    }

    .jump-title {
        font-size: clamp(3.2rem, 14vw, 5.5rem);
        letter-spacing: -2px;
    }

    .subtext {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .eyebrow {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .demo-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .action-wrapper {
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-category-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-landscape {
        grid-column: span 1;
        aspect-ratio: 16 / 9;
    }

    .footer-bottom-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .process-cta-text {
        font-size: 1.2rem;
    }

    .process-cta-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .metric-number {
        font-size: 2.8rem;
    }
}

/* =========================================================================
   Section 2 Scroll Progress Bar
   ========================================================================= */
.sec2-scroll-progress-container {
    display: none !important;
}

/* =========================================================================
   Card Height Visual Alignment for Section 2 (Desktop only)
   ========================================================================= */
@media (min-width: 769px) {
    .metrics-panel,
    .clients-panel {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        padding: 0 2vw !important;
    }

    .metrics-card {
        transform: none !important;
    }
    
    .metrics-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 30px 60px rgba(14, 165, 233, 0.2), inset 0 0 0 1px rgba(14, 165, 233, 0.4);
    }
    
    .clients-card {
        transform: none !important;
    }
    
    .clients-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 30px 60px rgba(14, 165, 233, 0.15), inset 0 0 0 1px rgba(14, 165, 233, 0.3) !important;
    }
}

@media (max-width: 768px) {
    .dummy-header {
        display: none !important;
    }
}

/* =========================================================================
   Section 2: Videos Grid Layout (Horizontal Scroll)
   ========================================================================= */

/* Desktop: single panel with top header + 1-row grid */
@media (min-width: 769px) {
    .videos-grid-panel {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding: 0 !important;
        width: max-content !important;
        min-width: 100vw !important;
        height: 100vh !important;
        box-sizing: border-box !important;
        position: relative !important;
    }

    .sec2-top-header {
        position: absolute;
        top: 4vh;
        left: 50vw;
        transform: translateX(-50%);
        text-align: center;
        width: 100vw;
        z-index: 5;
    }

    .sec2-top-header .section-title {
        font-size: clamp(2rem, 3vw, 3.2rem) !important;
        margin: 0 0 0.2rem 0 !important;
        letter-spacing: -2px !important;
    }

    .sec2-top-header .micro-desc {
        font-size: clamp(0.9rem, 1.1vw, 1.15rem) !important;
        opacity: 0.8;
    }

    .videos-grid {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 2rem !important;
        height: 52vh !important;
        max-height: 480px !important;
        width: max-content !important;
        padding-left: 5vw !important;
        will-change: transform;
        transform: translateZ(0);
    }

    .project-video-frame {
        width: calc(52vh * (9/16)) !important;
        max-width: 22vw !important;
        height: 52vh !important;
        max-height: 480px !important;
        aspect-ratio: 9 / 16 !important;
        border-radius: 0 !important;
        overflow: hidden !important;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5) !important;
        flex-shrink: 0 !important;
        background: #000;
        position: relative !important;
        cursor: pointer !important;
    }

    .project-video-frame:last-child {
        margin-right: 500px !important; /* Espaço preto amplo após o 5º vídeo */
    }

    .project-video-frame.landscape-video-frame {
        width: calc(52vh * (16/9)) !important;
        max-width: 853px !important;
        height: 52vh !important;
        max-height: 480px !important;
        aspect-ratio: 16 / 9 !important;
        border-radius: 0 !important;
        flex-shrink: 0 !important;
    }

    .project-video-frame .video-poster {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: #000;
        border-radius: 0 !important;
    }

    .project-video-frame .video-poster img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 !important;
        transition: transform 0.4s ease, filter 0.4s ease;
    }

    .project-video-frame:hover .video-poster img {
        transform: scale(1.05);
        filter: brightness(0.85);
    }

    .project-video-frame .play-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.25);
        border-radius: 0 !important;
        transition: background 0.3s ease;
    }

    .project-video-frame:hover .play-overlay {
        background: rgba(0, 0, 0, 0.1);
    }

    .project-video-frame .play-button-icon {
        width: 68px;
        height: 48px;
        border-radius: 0;
        background: transparent;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        box-shadow: none;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    }

    .project-video-frame .play-button-icon svg {
        margin-left: 0;
        width: 68px;
        height: 48px;
        display: block;
    }

    .project-video-frame .play-button-icon svg .yt-bg {
        transition: fill 0.3s ease;
    }

    .project-video-frame:hover .play-button-icon {
        transform: scale(1.12);
        filter: drop-shadow(0 6px 20px rgba(255, 0, 0, 0.7));
    }

    .project-video-frame:hover .play-button-icon svg .yt-bg {
        fill: #cc0000;
    }

    .project-video-frame iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 0 !important;
        pointer-events: auto !important;
    }
}

/* =========================================================================
   Enhanced Resultados (Metrics) & Clientes Cards (NO EMOJIS)
   ========================================================================= */

.metrics-card,
.clients-card {
    background: linear-gradient(145deg, rgba(12, 28, 52, 0.85), rgba(4, 12, 26, 0.95)) !important;
    border: 1px solid rgba(14, 165, 233, 0.2) !important;
    border-radius: 20px !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Top accent line animation */
.metrics-card::before,
.clients-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0.8;
}

/* Animated border glow on hover */
.metrics-card::after,
.clients-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.35), rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.35));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metrics-card:hover::after,
.clients-card:hover::after {
    opacity: 1;
}

/* =========================================================================
   Combined Resultados & Clientes Card (1 Single Card Spanning 2 Rows Height)
   ========================================================================= */

.results-clients-card {
    background: linear-gradient(145deg, rgba(12, 28, 52, 0.9), rgba(4, 12, 26, 0.95)) !important;
    border: 1px solid rgba(14, 165, 233, 0.2) !important;
    border-radius: 20px !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top accent glowing line */
.results-clients-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0.8;
}

/* Animated border glow on hover */
.results-clients-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.35), rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.35));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.results-clients-card:hover::after {
    opacity: 1;
}

/* =========================================================================
   Redesigned Premium Combined Resultados & Clientes Card
   ========================================================================= */

/* Desktop Layout */
@media (min-width: 769px) {
    .results-clients-panel {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding: 2.5vh 1vw 8.5vh 2vw !important;
        width: auto !important;
        height: 100vh !important;
        box-sizing: border-box !important;
    }

    .results-clients-card {
        height: 65vh !important;
        width: 820px !important;
        max-width: 820px !important;
        padding: 1.8rem 2.2rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        background: linear-gradient(145deg, rgba(12, 28, 52, 0.96), rgba(4, 12, 26, 0.99)) !important;
        border: 1.5px solid rgba(14, 165, 233, 0.3) !important;
        border-radius: 20px !important;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 35px rgba(14, 165, 233, 0.12) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        position: relative;
        overflow: hidden;
        box-sizing: border-box !important;
    }
}

/* Accent top border glow */
.results-clients-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0.9;
}

/* Hover border animation */
.results-clients-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.4), rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.4));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.results-clients-card:hover::after {
    opacity: 1;
}

/* Linha Superior: Métricas Chave Unificadas */
.unified-metrics-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 0.8rem 1.8rem;
    width: 100%;
}

.unified-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.1rem;
}

.unified-metric-item .metric-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.unified-metric-item .metric-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unified-metric-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

/* Corpo Unificado (2 Colunas Integradas) */
.unified-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    align-items: center;
    margin: 0.6rem 0;
    flex-grow: 1;
}

.unified-info-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

/* Badge Neon */
.card-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.3);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    width: fit-content;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-blue);
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.3); }
}

.card-badge-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--neon-blue);
    text-transform: uppercase;
}

.unified-desc-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.unified-pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.unified-pill {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.25);
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
    border-radius: 30px;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Coluna de Logos dos Clientes */
.unified-logos-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    width: 100%;
}

.client-logo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.45rem;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.client-logo-card img {
    max-height: 36px;
    max-width: 88%;
    object-fit: contain;
    filter: brightness(0.95) contrast(1.05);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo-card:hover {
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-3px) scale(1.04);
}

.client-logo-card:hover img {
    filter: brightness(1.15) contrast(1.1);
}

/* Rodapé Unificado com CTA */
.unified-card-footer {
    width: 100%;
}

.card-glow-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.4rem;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-glow-cta:hover {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.6);
}

.card-glow-cta svg {
    transition: transform 0.3s ease;
}

.card-glow-cta:hover svg {
    transform: translateX(4px);
}

/* Mobile Layout Unificado */
@media (max-width: 768px) {
    .results-clients-panel {
        padding: 0.5rem 1.5rem 3rem 1.5rem !important;
        width: 100% !important;
    }

    .results-clients-card {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        padding: 1.6rem 1.4rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        height: auto !important;
        background: linear-gradient(145deg, rgba(14, 27, 49, 0.95), rgba(6, 14, 28, 0.98)) !important;
        border: 1px solid rgba(14, 165, 233, 0.25) !important;
        border-radius: 20px !important;
    }

    .unified-metrics-row {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }

    .unified-metric-divider {
        width: 80%;
        height: 1px;
    }

    .unified-body-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* Vertical Scaling for Horizontal-encoded Vertical Videos (Google Drive) */
.project-video-wrapper.force-portrait-ratio img,
.project-video-wrapper.force-portrait-ratio iframe {
    width: 316.05% !important;
    height: 100% !important;
    max-width: none !important;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0) !important;
}

.project-video-wrapper.force-portrait-ratio:hover img {
    transform: translate(-50%, 0) scale(1.05) !important;
}

/* Hide old category elements that no longer exist */
.category-info,
.category-name,
.category-desc-text {
    display: none !important;
}

/* Hide project details and play hints (videos autoplay now) */
.project-details {
    display: none !important;
}

/* Pointer cursor on video cards for focus interaction */
.videos-grid .project-card {
    cursor: pointer;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

