/* --- Reset e Fontes --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: white;
    background-color: #000;
}

/* --- Fundo e Layout Principal --- */
#background-blur {
    position: fixed;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.7);
    z-index: 1;
}

.main-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    height: 108vh;
    padding: 8rem 2.5rem 7rem 2.5rem; /* Topo, Lados, Fundo */
}

/* --- Estilo "Apple Glass" Base --- */
.glass-pane {
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0,0,0,0.4);
    /* Transição para suavizar mudanças de background/shadow */
    transition: background 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

/* --- Cabeçalho --- */
.top-header {
    position: fixed;
    top: 1rem;
    left: 2.5rem;
    right: 2.5rem;
    height: 6.5rem; /* Altura ligeiramente maior para acomodar tudo */
    z-index: 10;
    border-radius: 1.25rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { height: 85px; }

.header-right-content {
    display: flex;
    align-items: center;
    gap: 2rem; /* Espaçamento entre relógio e Wi-Fi */
}

/* NOVO: Estilo para Data e Hora Minimalista */
.datetime-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Alinha a direita */
    font-weight: 800;
    line-height: 1.2;
}
.minimal-date {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}
.minimal-clock {
    font-size: 2.2rem;
    font-weight: 700;
}

/* NOVO: Estilo para Wi-Fi e Senha */
.wifi-pass-display {
    display: flex;
    gap: 1.5rem; /* Espaçamento entre Wi-Fi e Senha */
}
.wifi-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05); /* Fundo mais suave */
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borda sutil */
    transition: background 0.3s ease;
}
.wifi-info-item svg {
    color: rgba(255, 255, 255, 0.6);
}
.wifi-info-item:hover {
    background: rgba(255, 255, 255, 0.1); /* Efeito hover suave */
}

/* --- Painéis de Conteúdo --- */
.content-pane {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem;
    position: relative;
    transition: background 0.3s ease, border 0.3s ease;
}
.content-pane:hover {
    background: rgba(255, 255, 255, 0.12); /* Efeito hover suave */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#zone1, .right-column { width: 50%; }
.right-column { display: flex; flex-direction: column; gap: 1.5rem; }
#zone2, #zone3 { flex: 1; height: calc(50% - 0.75rem); }

#slideshow-container, #zone2, #zone3 {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
#slideshow-container img, #zone2 img, #zone3 img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

/* --- Indicadores do Slideshow --- */
.slideshow-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}
.dot.active {
    background-color: white;
    transform: scale(1.2);
}