/**
 * CidadeTur BR - Estilos do Conteúdo Principal
 * Área principal, relógio, informações e elementos visuais
 */

/* ============================================
   ÁREA PRINCIPAL (MAIN CONTENT)
   ============================================ */

.main-content {
    flex: 1;
    background-color: var(--gray-bg);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: var(--sidebar-width);
    height: 100vh;
    width: calc(100% - var(--sidebar-width));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease, width 0.3s ease;
    overflow: hidden;
    z-index: 1;
    /* Main content fica fixo, não rola com o body */
}

.main-content.expanded {
    left: 0;
    width: 100%;
}

/* Botão Recolher no Conteúdo */
.btn-recolher-content {
    position: absolute;
    left: 30px;
    bottom: 70px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s;
    z-index: 100;
}

.btn-recolher-content:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.btn-recolher-content .icon-arrow {
    font-size: 16px;
}

.btn-recolher-content .text-recolher {
    font-weight: normal;
}

/* Informações Centrais */
.info-center {
    position: absolute;
    bottom: 70px;
    right: 60px;
    text-align: right;
    z-index: 10;
}

.clock {
    font-size: 120px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

#clock-x {
    position: absolute;
    top: 14px;
    right: -20px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.site-title {
    font-size: 24px;
    color: var(--yellow-accent);
    margin-bottom: 10px;
    font-weight: normal;
}

.date-info {
    font-size: 16px;
    color: white;
}

