.elementor-12044 .elementor-element.elementor-element-78fb733{--display:flex;--margin-top:50px;--margin-bottom:50px;--margin-left:0px;--margin-right:0px;}.elementor-12044 .elementor-element.elementor-element-f9caf35{width:100%;max-width:100%;}@media(min-width:768px){.elementor-12044 .elementor-element.elementor-element-78fb733{--content-width:1400px;}}/* Start custom CSS for shortcode, class: .elementor-element-f9caf35 *//* =========================================
   1. VARIÁVEIS & RESET (A BASE)
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

:root {
    /* Cores */
    --c-brand: #132229;
    --c-brand-hover: #000000;
    --c-bg: #FAFAFA;       /* Fundo levemente mais quente */
    --c-card: #FFFFFF;
    --c-text-main: #132229;
    --c-text-light: #757575;
    --c-border: #E0E0E0;
    
    /* Tipografia */
    --font-display: 'Didot', 'Playfair Display', 'Bodoni MT', serif;
    --font-body: 'Archivo', 'Helvetica Neue', sans-serif;
    
    /* Design System */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-pill: 50px;
    
    /* Sombras Premium */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-hover: 0 15px 30px rgba(19, 34, 41, 0.12);
    --shadow-dock: 0 10px 40px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-bg);
    -webkit-font-smoothing: antialiased; /* Texto mais nítido no Mac/iOS */
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   2. ESTRUTURA GLOBAL
   ========================================= */
#material-studio-app {
    font-family: var(--font-body);
    color: var(--c-text-main);
    width: 100%;
    line-height: 1.6;
}

.studio-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 120px; /* Padding bottom extra por causa do dock */
}

/* =========================================
   3. HEADER & PASSOS
   ========================================= */
.studio-header {
    text-align: center;
    margin-bottom: 50px;
}

.modalle-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    display: inline-block;
}

.modalle-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--c-text-light);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Guia Passo a Passo */
.tutorial-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
}

.t-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-bg);
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-brand);
    font-size: 1rem;
    font-weight: 600;
}

.t-text h4 {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-brand);
    font-weight: 700;
}

.t-text p {
    margin: 2px 0 0;
    font-size: 0.75rem;
    color: #999;
}

/* =========================================
   4. NAVEGAÇÃO (FILTROS)
   ========================================= */
.studio-nav-container {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--c-border);
    text-align: center;
    position: sticky; /* Opcional: prende o menu ao rolar */
    top: 0;
    background: var(--c-bg);
    z-index: 100;
    padding-top: 10px;
}

.studio-nav {
    display: inline-flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 0; /* Remove padding extra */
    max-width: 100%;
    scrollbar-width: none; /* Firefox */
}

.studio-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.nav-btn {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-btn:hover {
    color: var(--c-brand);
}

.nav-btn.active {
    color: var(--c-brand);
    font-weight: 700;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-brand);
    transition: width 0.3s ease;
}

.nav-btn.active::after {
    width: 100%;
}

/* =========================================
   5. GRID DE CARDS
   ========================================= */
.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.material-card {
    background: var(--c-card);
    border-radius: var(--radius-sm);
    overflow: hidden; /* Importante para bordas redondas */
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    animation: fadeUp 0.6s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    z-index: 2;
}

.material-card.selected {
    border-color: var(--c-brand);
    box-shadow: 0 0 0 2px rgba(19,34,41,0.1);
}

.img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.material-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.material-card:hover img {
    transform: scale(1.08);
}

/* Botão de Adicionar (+) */
.card-add-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    color: var(--c-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    font-size: 14px;
}

.card-add-btn:hover,
.material-card.selected .card-add-btn {
    background: var(--c-brand);
    color: #fff;
    transform: scale(1.1);
}

.material-card.selected .card-add-btn i { display: none; }
.material-card.selected .card-add-btn::after {
    content: '\f00c'; /* Check icon FontAwesome */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Legenda Hover */
.zoom-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.material-card:hover .zoom-hint {
    opacity: 1;
}

.material-info {
    padding: 18px;
    text-align: left;
    background: #fff;
}

.info-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--c-brand);
    margin-bottom: 6px;
    line-height: 1.2;
}

.info-desc {
    font-size: 0.75rem;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

/* =========================================
   6. DOCK (BARRA INFERIOR FLUTUANTE)
   ========================================= */
.moodboard-dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    
    width: auto;
    min-width: 320px;
    max-width: 90%;
    
    /* Glassmorphism */
    background: rgba(19, 34, 41, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    border-radius: var(--radius-pill);
    padding: 10px 20px 10px 30px;
    z-index: 9999;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    
    box-shadow: var(--shadow-dock);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.moodboard-dock.hidden {
    transform: translate(-50%, 150%);
}

.dock-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.dock-info span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    margin-bottom: 3px;
}

.dock-count {
    font-size: 1.4rem;
    font-family: var(--font-display);
    color: #fff;
}

.dock-thumbs {
    display: flex;
    gap: 8px;
    flex-grow: 1;
    overflow-x: auto;
    padding: 5px 0;
    max-width: 300px;
}

/* Esconde scrollbar das thumbs */
.dock-thumbs::-webkit-scrollbar { display: none; }
.dock-thumbs { -ms-overflow-style: none; scrollbar-width: none; }

.dock-img {
    width: 38px;
    height: 38px;
    border-radius: 50%; /* Bolinhas ficam mais bonitas no dock */
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    transition: 0.2s;
    cursor: pointer;
    background: #000;
}

.dock-img:hover {
    transform: scale(1.15);
    border-color: #fff;
    z-index: 10;
}

.dock-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-action-primary {
    background: #fff;
    color: var(--c-brand);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-action-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-clear {
    background: none;
    border: none;
    color: #aaa;
    text-transform: uppercase;
    font-size: 0.65rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.btn-clear:hover {
    color: #ff6b6b; /* Vermelho suave para ação destrutiva */
}

/* =========================================
   7. LIGHTBOX (MODAL)
   ========================================= */
.lb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lb-overlay.active {
    display: flex;
    opacity: 1;
}

.lb-card {
    background: #fff;
    width: 90%;
    max-width: 1100px;
    height: 80vh; /* Altura fixa para design consistente */
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
}

.lb-image-area {
    background: #f8f8f8;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-image-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 40px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.lb-details-area {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #fff;
}

.lb-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    z-index: 10;
    transition: color 0.3s;
}

.lb-close:hover { color: var(--c-brand); }

.lb-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 600;
}

.lb-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 0 0 25px 0;
    color: var(--c-brand);
}

.lb-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
    border-left: 3px solid var(--c-brand);
    padding-left: 20px;
}

.lb-btn-add {
    background: var(--c-brand);
    color: #fff;
    border: none;
    padding: 18px 45px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.lb-btn-add:hover {
    background: #000;
    transform: translateX(5px);
}

/* =========================================
   8. FOOTER
   ========================================= */
.modalle-footer {
    background-color: var(--c-brand);
    color: #fff;
    padding: 80px 5% 40px;
    margin-top: 100px;
    font-family: var(--font-body);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo-img {
    width: 160px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.footer-social a {
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.6;
    transition: 0.3s;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 70px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* =========================================
   9. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================= */
@media (max-width: 992px) {
    .lb-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        height: 90vh;
    }
    .lb-image-area {
        height: 35vh;
        background: #f4f4f4;
    }
    .lb-image-area img { padding: 20px; }
    .lb-details-area {
        padding: 30px;
        overflow-y: auto;
    }
    .lb-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .studio-content-wrapper { padding-top: 30px; }
    
    .tutorial-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    /* Grid Mobile: 2 colunas para melhor navegação */
    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .material-info { padding: 12px; }
    .info-title { font-size: 0.95rem; }
    
    /* Dock Mobile */
    .moodboard-dock {
        width: 92%;
        bottom: 20px;
        padding: 12px 15px;
        border-radius: 16px;
        flex-direction: row; /* Mantém horizontal */
    }
    
    .dock-thumbs { display: none; } /* Remove thumbs no mobile */
    .dock-count { font-size: 1.1rem; }
    .btn-action-primary {
        padding: 10px 20px;
        font-size: 0.7rem;
    }
    
    .footer-content { flex-direction: column; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}/* End custom CSS */