/* ================= NOVOS ESTILOS ================= */
.dia-previsao {
    margin: 4rem 0;
    padding: 2rem 1rem;
    border-bottom: 2px solid #eee;
    position: relative;
}

.dia-previsao:not(:last-child) {
    border-bottom: 2px solid #e67e22;
}

.data-dia {
    color: #2c3e50;
    background: linear-gradient(90deg, #f8f9fa, #fff);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    margin: -2rem 0 2rem -2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 1.4rem;
    position: sticky;
    top: 70px;
    z-index: 50;
    border-left: 4px solid #e67e22;
}

.grid-signos {
    margin-top: 2rem;
    position: relative;
}

.grid-signos::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(230, 126, 34, 0.1);
}

.signo {
    padding: 1.5rem;
    margin: 1rem 0;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    position: relative;
}

.signo:hover {
    transform: translateY(-3px);
    border-color: #e67e22;
}

.signo h3 {
    margin-top: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #e67e22;
}

/* Melhorias na navegação */
.navegacao-dias {
    gap: 0.8rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.link-dia {
    padding: 0.7rem 1.2rem;
    border: 1px solid #ddd;
}

.link-dia:hover,
.link-dia.ativo {
    background: #e67e22;
    border-color: #e67e22;
    transform: scale(1.05);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Responsivo */
@media (max-width: 768px) {
    .data-dia {
        top: 60px;
        font-size: 1.2rem;
        margin-left: -1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .dia-previsao {
        margin: 3rem 0;
        padding: 1rem 0;
    }
    
    .signo {
        padding: 1rem;
    }
    
    .navegacao-dias {
        gap: 0.4rem;
        padding: 1rem;
    }
    
    .link-dia {
        padding: 0.5rem 0.8rem;
    }
}