/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ------------------------------------------------------------- */
:root {
    --bg-color: #070913; /* Azul escuro/marinho profundo e elegante */
    --text-primary: #e2e8f0; /* Branco suave levemente azulado */
    --text-secondary: #64748b; /* Slate médio editorial */
    --accent-color: #2997ff; /* Azul elétrico/neon vibrante (estilo Awwwards/Apple) */
    --accent-color-rgb: 41, 151, 255;
    --border-color: rgba(41, 151, 255, 0.08); /* Linhas de grid levemente iluminadas em azul */
    
    --font-title: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Moderno */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
}

/* Ocultar o cursor do sistema em desktops para usar o cursor customizado */
@media (hover: hover) and (pointer: fine) {
    body, a, button, .magnet-target {
        cursor: none;
    }
}

/* -------------------------------------------------------------
   BLUEPRINT BACKGROUND GRID
   ------------------------------------------------------------- */
.blueprint-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background-color: var(--border-color);
}

/* Linhas Verticais */
.line-v-1 { left: 10%; top: 0; width: 1px; height: 100%; }
.line-v-2 { left: 50%; top: 0; width: 1px; height: 100%; }
.line-v-3 { left: 90%; top: 0; width: 1px; height: 100%; }

/* Linhas Horizontais */
.line-h-1 { top: 25%; left: 0; width: 100%; height: 1px; }
.line-h-2 { top: 75%; left: 0; width: 100%; height: 1px; }

/* -------------------------------------------------------------
   CURSOR CUSTOMIZADO MINIMALISTA
   ------------------------------------------------------------- */
.custom-cursor {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    border: 1.5px solid transparent;
    transition: width 0.3s var(--transition-smooth), 
                height 0.3s var(--transition-smooth), 
                background-color 0.3s var(--transition-smooth),
                border-color 0.3s var(--transition-smooth);
}

/* Ocultar Texto do Cursor */
.cursor-text {
    display: none;
}

/* Estados de Hover do Cursor (Pequeno anel vazado ultra sutil) */
.custom-cursor.hovering,
.custom-cursor.hovering-project {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border-color: var(--accent-color);
}

/* Ocultar em telas de toque */
@media (hover: none) {
    .custom-cursor {
        display: none;
    }
}

/* -------------------------------------------------------------
   CABEÇALHO PRINCIPAL
   ------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 10%;
    z-index: 100;
    mix-blend-mode: difference;
    border-bottom: 1px solid transparent;
    transition: padding 0.4s var(--transition-smooth), 
                background-color 0.4s var(--transition-smooth), 
                border-color 0.4s var(--transition-smooth);
}

.main-header.scrolled {
    padding: 18px 10%;
    background-color: rgba(7, 9, 19, 0.85); /* Azul escuro semi-transparente */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: var(--border-color);
    mix-blend-mode: normal; /* Desativa a diferença para manter contraste perfeito sobre o conteúdo */
}

.logo-link {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo-link span {
    color: var(--accent-color);
}

.header-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* -------------------------------------------------------------
   HERO SECTION (APRESENTAÇÃO)
   ------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 10% 80px 10%;
    position: relative;
    z-index: 2;
}

.hero-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-color);
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3.5rem, 8.5vw, 11rem);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: -0.04em;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line.align-right {
    align-self: flex-end;
    text-align: right;
    margin-right: 5%;
}

.outline-text {
    -webkit-text-stroke: 1px var(--text-primary);
    color: transparent;
}

.font-italic {
    font-style: italic;
    font-weight: 300;
}

/* Detalhes assimétricos na Hero */
.hero-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    width: 100%;
    gap: 40px;
}

.hero-subtext {
    font-size: clamp(16px, 1.3vw, 24px);
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 450px;
    margin-left: 20%;
}

.hero-action {
    align-self: flex-end;
}

/* Botão CTA Principal */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--text-primary);
    color: var(--bg-color);
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 22px 35px;
    border-radius: 40px;
    transition: transform 0.3s var(--transition-smooth), 
                background-color 0.3s var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--transition-smooth);
}

.btn-primary:hover .arrow-icon {
    transform: translateX(5px) rotate(-45deg);
}

/* Responsividade Hero */
@media (max-width: 1024px) {
    .hero-details {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .hero-subtext {
        margin-left: 0;
        max-width: 100%;
    }
    
    .hero-action {
        align-self: flex-start;
    }
}

/* -------------------------------------------------------------
   PORTFÓLIO SECTION (INTERATIVO & ASSIMÉTRICO)
   ------------------------------------------------------------- */
.portfolio-section {
    padding: 120px 10% 80px 10%;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-number {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

/* Lista do Portfólio */
.portfolio-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 85px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: border-color 0.4s var(--transition-smooth);
}

.portfolio-item-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
}

.project-meta-top {
    display: flex;
    align-items: center;
    gap: 25px;
}

.project-num {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: -0.02em;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    background-color: rgba(41, 151, 255, 0.02);
    padding: 5px 12px;
    border-radius: 20px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.project-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
    transition: transform 0.4s var(--transition-smooth), 
                color 0.4s var(--transition-smooth);
}

.project-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 500px;
    transition: color 0.4s var(--transition-smooth);
}

/* Hover Efeitos do Item */
.portfolio-item:hover {
    border-color: rgba(41, 151, 255, 0.15);
}

.portfolio-item:hover .project-title {
    transform: translateX(10px);
    color: var(--accent-color);
}

.portfolio-item:hover .project-tags span {
    border-color: rgba(41, 151, 255, 0.3);
    color: var(--text-primary);
}

.portfolio-item:hover .project-desc {
    color: var(--text-primary);
}

/* PREVIEW DE PROJETOS (MOCKUPS FIXADOS À DIREITA) */
.project-preview-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 300px;
    pointer-events: auto;
    opacity: 1;
    z-index: 4;
    overflow: visible;
    border-radius: 16px;
    transition: transform 0.5s var(--transition-smooth);
}

/* Aura de Brilho Neon por Trás da Janela */
.project-preview-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: radial-gradient(circle, rgba(41, 151, 255, 0.3) 0%, transparent 70%);
    filter: blur(35px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s var(--transition-smooth);
}

.portfolio-item:hover .project-preview-wrapper {
    transform: translateY(-8px);
}

.portfolio-item:hover .project-preview-wrapper::before {
    opacity: 1;
}

.project-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Removido padding para a janela do iframe ocupar melhor o espaço */
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.5s var(--transition-smooth);
}

.portfolio-item:hover .project-preview {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(41, 151, 255, 0.1);
}

/* Gradientes premium customizados para cada projeto */
.gradient-1 { background: radial-gradient(circle at center, #0c1222, #070913); }
.gradient-2 { background: radial-gradient(circle at center, #0e1b30, #070913); }
.gradient-3 { background: radial-gradient(circle at center, #13122c, #070913); }
.gradient-4 { background: radial-gradient(circle at center, #091f33, #070913); }
.gradient-5 { background: radial-gradient(circle at center, #0a2420, #070913); }
.gradient-6 { background: radial-gradient(circle at center, #231d12, #070913); }
.gradient-7 { background: radial-gradient(circle at center, #072922, #070913); }

/* Elementos de Wireframe/UI Minimalistas em CSS puro */
.wireframe-box {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background-color: rgba(7, 9, 19, 0.95); /* Fundo no azul real */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.4s ease;
}

.portfolio-item:hover .wireframe-box {
    border-color: rgba(41, 151, 255, 0.2);
}

.wf-header {
    height: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
}

.wf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.wf-dot.red { background-color: #ff5f56; }
.wf-dot.yellow { background-color: #ffbd2e; }
.wf-dot.green { background-color: #27c93f; }

.wireframe-box:hover .wf-dot {
    opacity: 0.95;
}

.wf-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wf-line {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    width: 100%;
}

.wf-line.short { width: 60%; }
.wf-line.center { margin: 0 auto; }

.wf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
}

.wf-grid-cell {
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

/* Gráfico animado CSS */
.wf-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    padding: 10px 0;
    gap: 10px;
    flex: 1;
}

.chart-bar {
    width: 100%;
    background-color: rgba(var(--accent-color-rgb), 0.15);
    border: 1px solid var(--accent-color);
    border-radius: 4px 4px 0 0;
    animation: barGrow 1.5s ease-out forwards;
    transform-origin: bottom;
}

/* Telefone Minimalista */
.wf-phone {
    width: 140px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin: auto;
    position: relative;
    padding: 8px;
}

.wf-notch {
    width: 50px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 0 0 8px 8px;
    margin: 0 auto 10px auto;
}

.wf-phone-screen {
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.circle-graphic {
    width: 60px;
    height: 60px;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
}

/* Canvas de Arte */
.wf-canvas {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wf-blob {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(var(--accent-color-rgb), 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphingBlob 8s ease-in-out infinite;
}

/* -------------------------------------------------------------
   ANIMAÇÕES CSS
   ------------------------------------------------------------- */
@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes morphingBlob {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.animate-pulse {
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.6; }
}

.animate-spin-slow {
    animation: rotateSpin 20s infinite linear;
}

@keyframes rotateSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsividade Portfólio */
@media (max-width: 1024px) {
    .portfolio-item {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }
    
    .portfolio-item-meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .portfolio-item:hover .project-title {
        transform: none;
    }

    .project-preview-wrapper {
        width: 100%;
        max-width: 480px;
        margin: 10px auto 0 auto;
        height: 280px;
    }
}

/* -------------------------------------------------------------
   SEÇÃO O QUE FAÇO (SERVIÇOS)
   ------------------------------------------------------------- */
.services-section {
    padding: 120px 10% 80px 10%;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
}

.services-container {
    width: 100%;
}

.services-section .section-header {
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.services-section .section-number {
    color: var(--accent-color);
}

.section-subtitle {
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: border-color 0.4s var(--transition-smooth),
                background-color 0.4s var(--transition-smooth),
                transform 0.4s var(--transition-smooth);
}

.service-card:hover {
    border-color: rgba(41, 151, 255, 0.3);
    background-color: rgba(41, 151, 255, 0.02);
    transform: translateY(-5px);
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(41, 151, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: rgba(41, 151, 255, 0.15);
}

.service-icon {
    width: 20px;
    height: 20px;
}

.service-card-title {
    font-family: var(--font-title);
    font-size: clamp(18px, 1.3vw, 22px);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.service-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--accent-color);
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02em;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.service-link span {
    position: relative;
}

.service-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--transition-smooth);
}

.service-link:hover .service-arrow {
    transform: translateX(4px);
}

/* Responsividade Serviços */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px;
    }
}

/* -------------------------------------------------------------
   SEÇÃO CTA & CONTATO
   ------------------------------------------------------------- */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 10%;
    position: relative;
    z-index: 2;
}

.contact-container {
    width: 100%;
}

.contact-headline {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5.5vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.03em;
    word-spacing: 0.15em;
    margin-top: 40px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.contact-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Botões Magnéticos Grandes */
/* Botões de Contato Minimalistas */
.contact-btn {
    flex: 1;
    min-width: 260px;
    height: 90px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 500;
    position: relative;
    background-color: rgba(255, 255, 255, 0.01);
    transition: border-color 0.4s var(--transition-smooth), 
                background-color 0.4s var(--transition-smooth),
                color 0.4s var(--transition-smooth);
}

.btn-text {
    position: relative;
    transition: transform 0.4s var(--transition-smooth);
}

.contact-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.4s var(--transition-smooth),
                color 0.4s var(--transition-smooth);
}

/* Efeito Hover Minimalista e Fluido */
.contact-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: rgba(41, 151, 255, 0.05); /* Brilho sutil azul */
}

.contact-btn:hover .btn-text {
    transform: translateX(5px);
}

.contact-btn:hover .contact-arrow {
    transform: translate(5px, -5px) scale(1.1);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .contact-btn {
        height: 100px;
        border-radius: 50px;
        padding: 0 35px;
        font-size: 20px;
        min-width: 100%;
    }
}

/* -------------------------------------------------------------
   RODAPÉ EDITORIAL
   ------------------------------------------------------------- */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    gap: 40px;
    background-color: var(--bg-color);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.copyright {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.info-col {
    flex-direction: row;
    gap: 60px;
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .main-footer {
        flex-direction: column;
        align-items: stretch;
        padding: 40px 10%;
    }
    
    .info-col {
        flex-direction: column;
        gap: 30px;
    }
}

/* -------------------------------------------------------------
   ANIMAÇÃO REVEAL ON SCROLL (AESTHETIC)
   ------------------------------------------------------------- */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Iframe Responsivo com Zoom/Scale para Miniatura do Site Real */
.project-iframe-body {
    padding: 0 !important;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-iframe {
    width: 200%;
    height: 200%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.5);
    transform-origin: 0 0;
    pointer-events: none;
}

.project-iframe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border: none;
    display: block;
}
