/* Patio Super Tucano (Three.js), estudo e deck */

.tucano-patio {
    width: 100%;
    color: var(--text-primary, #111);
    min-width: 0;
}

.tucano-patio--deck {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.tucano-patio__palco {
    position: relative;
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.2));
    overflow: hidden;
    background: var(--bg-secondary, #f2f2f2);
    min-height: 280px;
}

.tucano-patio--deck .tucano-patio__palco {
    flex: 1;
    min-height: 0;
}

.tucano-patio__canvas {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    touch-action: none;
    cursor: grab;
}

.tucano-patio__canvas:active {
    cursor: grabbing;
}

.tucano-patio--deck .tucano-patio__canvas {
    min-height: 0;
    height: 100%;
}

.tucano-patio__overlay {
    position: absolute;
    left: 18px;
    bottom: 14px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    pointer-events: none;
    z-index: 2;
}

.tucano-patio__num {
    font-family: var(--font-serif, "EB Garamond", Georgia, serif);
    font-size: 3.75rem;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--text-primary, #111);
    text-shadow: 0 0 18px var(--bg-secondary, #f2f2f2);
}

.tucano-patio--deck .tucano-patio__num {
    font-size: 3.25rem;
}

.tucano-patio__cap {
    font-size: 0.8125rem;
    line-height: 1.3;
    color: var(--text-secondary, #444);
    max-width: 16ch;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tucano-patio__year {
    font-family: var(--font-serif, "EB Garamond", Georgia, serif);
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary, #111);
    font-variant-numeric: tabular-nums;
}

.tucano-patio--deck .tucano-patio__year {
    font-size: 1.25rem;
}

.tucano-patio__estado {
    position: absolute;
    top: 12px;
    left: 14px;
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-tertiary, #777);
    z-index: 2;
    pointer-events: none;
}

.tucano-patio__estado.is-ready {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tucano-patio__fonte {
    margin: 10px 0 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--text-tertiary, #777);
}

html[data-theme="dark"] .tucano-patio__palco {
    background: var(--bg-secondary, #141414);
}

html[data-theme="dark"] .tucano-patio__num {
    text-shadow: 0 0 18px var(--bg-secondary, #141414);
}
