

.dado-esquerda {
    display: flex;
    align-items: center;
    gap: 8px;
}
.linha-dado {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.linha-dado:last-child {
    border-bottom: none;
}
/* Flip clock digital - visual limpo e intuitivo */
.flip-clock {
    display: flex;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00eaff;
    margin-top: 12px;
    background: #222;
    border-radius: 8px;
    padding: 8px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    justify-content: center;
   
}
.flip-digit {
    display: inline-block;
    background: #181c24;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 4px 8px;
    min-width: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Roboto Mono', monospace;
    font-size: 1.2rem;
    color: #fff;
    transition: background 0.2s;
}
.flip-digit.animate {
    animation: flipDown 0.5s;
}
@keyframes flipDown {
    0% { transform: rotateX(0deg); }
    40% { transform: rotateX(90deg); opacity: 0.5; }
    60% { transform: rotateX(90deg); opacity: 0.5; }
    100% { transform: rotateX(0deg); opacity: 1; }
}
.flip-clock-separator {
    color: #00eaff;
    font-size: 1.2rem;
    padding: 0 4px;
    user-select: none;
}
@media (max-width: 600px) {
    .flip-clock {
        font-size: 1.2rem;
        padding: 6px 8px;
    }
    .flip-digit {
        font-size: 1.2rem;
        min-width: 22px;
        padding: 4px 6px;
    }
    .flip-clock-separator {
        font-size: 1.2rem;
        padding: 0 2px;
    }
}
/* Bloco de dados em linhas simples */
.dados-linhas {
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 16px 14px;
    width: 100%;
    padding: 16px;
    margin: 18px 0;
    color: #f1f1f1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.icone-previsaoT{
    position: absolute;
    top: -25px;
    left: 4%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
}

.img-icone-umidade, .img-icone-vento, .img-icone-chuva, .img-icone-temperatura, .img-icone-nuvens, .img-icone-visibilidade{
    width: 40px;
    height: 40px;
}

.img-icone-previsaoT{ 
    width: 100%;
    height: 100%;
}


.linha-dado {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.linha-dado:last-child {
    border-bottom: none;
}
.dado-titulo {
    font-weight: 500;
    color: #00eaff;
    letter-spacing: 0.2px;
}
.dado-valor {
    font-weight: 700;
    color: #fff;
    font-size: 1.15rem;
}
/* Cards para informações do dashboard */
.card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    padding: 24px 18px;
    margin: 16px 0;
    min-width: 180px;
    max-width: 320px;
    color: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: #00eaff;
}
.card-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #00eaff;
}
.card-value {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.card-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    text-align: center;
}
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 24px;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: #222;
}

.tudo{
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    width: 100%;
}

.container-principal{
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: row;
    background: #222;
}

.container-videos-frase{
    display: flex;
    flex-direction: column;
    flex: 3;
    height: 100vh;
    position: relative;
}

.container-videos{
    display: flex;
    flex-wrap: wrap;
    height: 80vh;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
}

.container-videos video{
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.container-frase{
    display: flex; 
    background: linear-gradient(to left, #356EAE, #3A77B5);
    height: 20vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -8px 16px rgba(0,0,0,0.2);
}

.container-frase-interna{
    background: #181c24;
    border-radius: 12px;
    box-shadow: 0 0 24px #00eaff33, 0 0 4px #0ec7d8;
    border: 2px solid #00eaff44;
    height: 90%;
    width: 100%;
}

.led-tela {
    margin: 18px 0;
    width: 100%;
    height: 54px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.led-marquee {
    font-family: 'Roboto Mono', monospace;
    color: #00eaff;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 8px #00eaff, 0 0 2px #fff;
    white-space: nowrap;
    display: inline-block;
    animation: led-scroll 12s linear infinite;
    padding-left: 100%;
    height: 100%;
    
}
@keyframes led-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.container-previsao {
    flex: 1;
    padding: 0 15px;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: -8px 0 16px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.container-previsao{
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(180deg, #2A599E, #438AC3, #4692C9);
}


.animate {
    animation: flip 0.6s ease-in-out;
}

